feat: add name.scope and name.name apis
Some checks are pending
Debug / Get build version (push) Waiting to run
Debug / Build for linux-x86_64 (push) Blocked by required conditions
Debug / Build for macos-aarch64 (push) Blocked by required conditions
Debug / Build for macos-x86_64 (push) Blocked by required conditions
Debug / Build for windows-x86_64 (push) Blocked by required conditions
Test & Lint / lint (push) Waiting to run

This commit is contained in:
daimond113 2025-01-10 00:01:02 +01:00
parent e8c3a66524
commit 6f4c7137c0
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
5 changed files with 43 additions and 13 deletions

3
.gitignore vendored
View file

@ -4,4 +4,5 @@
cobertura.xml
tarpaulin-report.html
build_rs_cov.profraw
registry/data
registry/data
data

View file

@ -181,7 +181,7 @@ impl AddCommand {
};
let alias = self.alias.unwrap_or_else(|| match &self.name {
AnyPackageIdentifier::PackageName(versioned) => versioned.0.as_str().1.to_string(),
AnyPackageIdentifier::PackageName(versioned) => versioned.0.name().to_string(),
AnyPackageIdentifier::Url((url, _)) => url
.path
.to_string()
@ -189,7 +189,7 @@ impl AddCommand {
.last()
.map(|s| s.to_string())
.unwrap_or(url.path.to_string()),
AnyPackageIdentifier::Workspace(versioned) => versioned.0.as_str().1.to_string(),
AnyPackageIdentifier::Workspace(versioned) => versioned.0.name().to_string(),
AnyPackageIdentifier::Path(path) => path
.file_name()
.map(|s| s.to_string_lossy().to_string())

View file

@ -49,18 +49,13 @@ impl DependencyGraphNode {
let (name, version) = package_id.parts();
if self.pkg_ref.is_wally_package() {
return PathBuf::from(format!(
"{}_{}@{}",
name.as_str().0,
name.as_str().1,
version
))
.join(name.as_str().1);
return PathBuf::from(format!("{}_{}@{}", name.scope(), name.name(), version))
.join(name.name());
}
PathBuf::from(name.escaped())
.join(version.to_string())
.join(name.as_str().1)
.join(name.name())
}
/// Returns the folder to store the contents of the package in starting from the project's package directory

View file

@ -146,6 +146,24 @@ impl PackageNames {
pub fn from_escaped(s: &str) -> Result<Self, errors::PackageNamesError> {
PackageNames::from_str(s.replacen('+', "/", 1).as_str())
}
/// Returns the scope of the package name
pub fn scope(&self) -> &str {
match self {
PackageNames::Pesde(name) => name.scope(),
#[cfg(feature = "wally-compat")]
PackageNames::Wally(name) => name.scope(),
}
}
/// Returns the name of the package name
pub fn name(&self) -> &str {
match self {
PackageNames::Pesde(name) => name.name(),
#[cfg(feature = "wally-compat")]
PackageNames::Wally(name) => name.name(),
}
}
}
impl Display for PackageNames {
@ -251,6 +269,16 @@ pub mod wally {
pub fn escaped(&self) -> String {
format!("wally#{}+{}", self.0, self.1)
}
/// Returns the scope of the package name
pub fn scope(&self) -> &str {
&self.0
}
/// Returns the name of the package name
pub fn name(&self) -> &str {
&self.1
}
}
}

View file

@ -211,8 +211,14 @@ impl PackageSource for PesdePackageSource {
let url = config
.download()
.replace("{PACKAGE}", &urlencoding::encode(&id.name().to_string()))
.replace("{PACKAGE_VERSION}", &urlencoding::encode(&id.version_id().version().to_string()))
.replace("{PACKAGE_TARGET}", &urlencoding::encode(&id.version_id().target().to_string()));
.replace(
"{PACKAGE_VERSION}",
&urlencoding::encode(&id.version_id().version().to_string()),
)
.replace(
"{PACKAGE_TARGET}",
&urlencoding::encode(&id.version_id().target().to_string()),
);
let mut request = reqwest.get(&url).header(ACCEPT, "application/octet-stream");