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 cobertura.xml
tarpaulin-report.html tarpaulin-report.html
build_rs_cov.profraw 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 { 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 AnyPackageIdentifier::Url((url, _)) => url
.path .path
.to_string() .to_string()
@ -189,7 +189,7 @@ impl AddCommand {
.last() .last()
.map(|s| s.to_string()) .map(|s| s.to_string())
.unwrap_or(url.path.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 AnyPackageIdentifier::Path(path) => path
.file_name() .file_name()
.map(|s| s.to_string_lossy().to_string()) .map(|s| s.to_string_lossy().to_string())

View file

@ -49,18 +49,13 @@ impl DependencyGraphNode {
let (name, version) = package_id.parts(); let (name, version) = package_id.parts();
if self.pkg_ref.is_wally_package() { if self.pkg_ref.is_wally_package() {
return PathBuf::from(format!( return PathBuf::from(format!("{}_{}@{}", name.scope(), name.name(), version))
"{}_{}@{}", .join(name.name());
name.as_str().0,
name.as_str().1,
version
))
.join(name.as_str().1);
} }
PathBuf::from(name.escaped()) PathBuf::from(name.escaped())
.join(version.to_string()) .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 /// 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> { pub fn from_escaped(s: &str) -> Result<Self, errors::PackageNamesError> {
PackageNames::from_str(s.replacen('+', "/", 1).as_str()) 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 { impl Display for PackageNames {
@ -251,6 +269,16 @@ pub mod wally {
pub fn escaped(&self) -> String { pub fn escaped(&self) -> String {
format!("wally#{}+{}", self.0, self.1) 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 let url = config
.download() .download()
.replace("{PACKAGE}", &urlencoding::encode(&id.name().to_string())) .replace("{PACKAGE}", &urlencoding::encode(&id.name().to_string()))
.replace("{PACKAGE_VERSION}", &urlencoding::encode(&id.version_id().version().to_string())) .replace(
.replace("{PACKAGE_TARGET}", &urlencoding::encode(&id.version_id().target().to_string())); "{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"); let mut request = reqwest.get(&url).header(ACCEPT, "application/octet-stream");