4d5041dc00
Instead of using junctions, we can just write files that contain (as the file contents) the target path. This requires a little more finesse in that, as readers, we need to know where to expect these. But it also means we get to avoid junctions, which have led to a variety of confusing behaviors. Further, `replace_symlink` should now be on atomic on Windows. Closes #11263.
40 lines
862 B
Rust
40 lines
862 B
Rust
use std::path::Path;
|
|
use std::str::FromStr;
|
|
|
|
/// A unique identifier for an archive (unzipped wheel) in the cache.
|
|
#[derive(Debug, Clone, Eq, PartialEq, Hash, serde::Serialize, serde::Deserialize)]
|
|
pub struct ArchiveId(String);
|
|
|
|
impl Default for ArchiveId {
|
|
fn default() -> Self {
|
|
Self::new()
|
|
}
|
|
}
|
|
|
|
impl ArchiveId {
|
|
/// Generate a new unique identifier for an archive.
|
|
pub fn new() -> Self {
|
|
Self(nanoid::nanoid!())
|
|
}
|
|
}
|
|
|
|
impl AsRef<Path> for ArchiveId {
|
|
fn as_ref(&self) -> &Path {
|
|
self.0.as_ref()
|
|
}
|
|
}
|
|
|
|
impl std::fmt::Display for ArchiveId {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
self.0.fmt(f)
|
|
}
|
|
}
|
|
|
|
impl FromStr for ArchiveId {
|
|
type Err = <String as FromStr>::Err;
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
Ok(Self(s.to_string()))
|
|
}
|
|
}
|