refactor: make specifier index not an option

Instead, we use the `default` serde attribute
to deserialize the index as `DEFAULT_INDEX_NAME`
if it is not present. This removes a lot of
redundancy around the codebase about getting
the index name.
This commit is contained in:
daimond113 2025-02-12 17:41:49 +01:00
parent b384dbe6a0
commit 04aaa40c69
No known key found for this signature in database
GPG key ID: 640DC95EC1190354
13 changed files with 284 additions and 331 deletions

View file

@ -289,32 +289,26 @@ pub async fn publish_package(
match specifier { match specifier {
DependencySpecifiers::Pesde(specifier) => { DependencySpecifiers::Pesde(specifier) => {
if specifier let allowed = match gix::Url::try_from(&*specifier.index) {
.index
.as_deref()
.filter(|index| match gix::Url::try_from(*index) {
Ok(url) => config Ok(url) => config
.other_registries_allowed .other_registries_allowed
.is_allowed_or_same(source.repo_url().clone(), url), .is_allowed_or_same(source.repo_url().clone(), url),
Err(_) => false, Err(_) => false,
}) };
.is_none()
{ if !allowed {
return Err(RegistryError::InvalidArchive(format!( return Err(RegistryError::InvalidArchive(format!(
"invalid index in pesde dependency {specifier}" "invalid index in pesde dependency {specifier}"
))); )));
} }
} }
DependencySpecifiers::Wally(specifier) => { DependencySpecifiers::Wally(specifier) => {
if specifier let allowed = match gix::Url::try_from(&*specifier.index) {
.index
.as_deref()
.filter(|index| match gix::Url::try_from(*index) {
Ok(url) => config.wally_allowed.is_allowed(url), Ok(url) => config.wally_allowed.is_allowed(url),
Err(_) => false, Err(_) => false,
}) };
.is_none()
{ if !allowed {
return Err(RegistryError::InvalidArchive(format!( return Err(RegistryError::InvalidArchive(format!(
"invalid index in wally dependency {specifier}" "invalid index in wally dependency {specifier}"
))); )));

View file

@ -77,7 +77,7 @@ impl AddCommand {
let specifier = DependencySpecifiers::Pesde(PesdeDependencySpecifier { let specifier = DependencySpecifiers::Pesde(PesdeDependencySpecifier {
name: name.clone(), name: name.clone(),
version: version.clone().unwrap_or(VersionReq::STAR), version: version.clone().unwrap_or(VersionReq::STAR),
index: self.index, index: self.index.unwrap_or_else(|| DEFAULT_INDEX_NAME.to_string()),
target: self.target, target: self.target,
}); });
@ -102,7 +102,7 @@ impl AddCommand {
pesde::source::wally::specifier::WallyDependencySpecifier { pesde::source::wally::specifier::WallyDependencySpecifier {
name: name.clone(), name: name.clone(),
version: version.clone().unwrap_or(VersionReq::STAR), version: version.clone().unwrap_or(VersionReq::STAR),
index: self.index, index: self.index.unwrap_or_else(|| DEFAULT_INDEX_NAME.to_string()),
}, },
); );
@ -210,8 +210,8 @@ impl AddCommand {
field["target"] = toml_edit::value(version_id.target().to_string()); field["target"] = toml_edit::value(version_id.target().to_string());
} }
if let Some(index) = spec.index.filter(|i| i != DEFAULT_INDEX_NAME) { if spec.index != DEFAULT_INDEX_NAME {
field["index"] = toml_edit::value(index); field["index"] = toml_edit::value(spec.index);
} }
println!( println!(
@ -228,8 +228,8 @@ impl AddCommand {
field["wally"] = toml_edit::value(name_str); field["wally"] = toml_edit::value(name_str);
field["version"] = toml_edit::value(format!("^{}", version_id.version())); field["version"] = toml_edit::value(format!("^{}", version_id.version()));
if let Some(index) = spec.index.filter(|i| i != DEFAULT_INDEX_NAME) { if spec.index != DEFAULT_INDEX_NAME {
field["index"] = toml_edit::value(index); field["index"] = toml_edit::value(spec.index);
} }
println!( println!(

View file

@ -21,7 +21,7 @@ use pesde::{
}, },
PackageSources, PackageSources,
}, },
Project, RefreshedSources, Project, RefreshedSources, DEFAULT_INDEX_NAME,
}; };
use semver::VersionReq; use semver::VersionReq;
use std::{ use std::{
@ -86,7 +86,7 @@ impl ExecuteCommand {
let specifier = PesdeDependencySpecifier { let specifier = PesdeDependencySpecifier {
name: self.package.0.clone(), name: self.package.0.clone(),
version: version_req.clone(), version: version_req.clone(),
index: None, index: DEFAULT_INDEX_NAME.into(),
target: None, target: None,
}; };

View file

@ -199,7 +199,7 @@ impl InitCommand {
&PesdeDependencySpecifier { &PesdeDependencySpecifier {
name: scripts_pkg_name.clone(), name: scripts_pkg_name.clone(),
version: VersionReq::STAR, version: VersionReq::STAR,
index: None, index: DEFAULT_INDEX_NAME.into(),
target: None, target: None,
}, },
&ResolveOptions { &ResolveOptions {

View file

@ -429,37 +429,23 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p
{ {
match specifier { match specifier {
DependencySpecifiers::Pesde(specifier) => { DependencySpecifiers::Pesde(specifier) => {
let index_name = specifier specifier.index = manifest
.index
.as_deref()
.unwrap_or(DEFAULT_INDEX_NAME)
.to_string();
specifier.index = Some(
manifest
.indices .indices
.get(&index_name) .get(&specifier.index)
.with_context(|| { .with_context(|| {
format!("index {index_name} not found in indices field") format!("index {} not found in indices field", specifier.index)
})? })?
.to_string(), .to_string();
);
} }
#[cfg(feature = "wally-compat")] #[cfg(feature = "wally-compat")]
DependencySpecifiers::Wally(specifier) => { DependencySpecifiers::Wally(specifier) => {
let index_name = specifier specifier.index = manifest
.index
.as_deref()
.unwrap_or(DEFAULT_INDEX_NAME)
.to_string();
specifier.index = Some(
manifest
.wally_indices .wally_indices
.get(&index_name) .get(&specifier.index)
.with_context(|| { .with_context(|| {
format!("index {index_name} not found in wally_indices field") format!("index {} not found in wally_indices field", specifier.index)
})? })?
.to_string(), .to_string();
);
} }
DependencySpecifiers::Git(_) => {} DependencySpecifiers::Git(_) => {}
DependencySpecifiers::Workspace(spec) => { DependencySpecifiers::Workspace(spec) => {
@ -503,13 +489,11 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p
v => VersionReq::parse(&format!("{v}{}", manifest.version)) v => VersionReq::parse(&format!("{v}{}", manifest.version))
.with_context(|| format!("failed to parse version for {v}"))?, .with_context(|| format!("failed to parse version for {v}"))?,
}, },
index: Some( index: manifest
manifest
.indices .indices
.get(DEFAULT_INDEX_NAME) .get(DEFAULT_INDEX_NAME)
.context("missing default index in workspace package manifest")? .context("missing default index in workspace package manifest")?
.to_string(), .to_string(),
),
target: Some(spec.target.unwrap_or(manifest.target.kind())), target: Some(spec.target.unwrap_or(manifest.target.kind())),
}); });
} }

View file

@ -66,6 +66,10 @@ pub(crate) const LINK_LIB_NO_FILE_FOUND: &str = "____pesde_no_export_file_found"
/// The folder in which scripts are linked /// The folder in which scripts are linked
pub const SCRIPTS_LINK_FOLDER: &str = ".pesde"; pub const SCRIPTS_LINK_FOLDER: &str = ".pesde";
pub(crate) fn default_index_name() -> String {
DEFAULT_INDEX_NAME.into()
}
#[derive(Debug, Default)] #[derive(Debug, Default)]
struct AuthConfigShared { struct AuthConfigShared {
tokens: HashMap<gix::Url, String>, tokens: HashMap<gix::Url, String>,

View file

@ -8,7 +8,7 @@ use crate::{
traits::{PackageRef, PackageSource, RefreshOptions, ResolveOptions}, traits::{PackageRef, PackageSource, RefreshOptions, ResolveOptions},
PackageSources, PackageSources,
}, },
Project, RefreshedSources, DEFAULT_INDEX_NAME, Project, RefreshedSources,
}; };
use std::collections::{btree_map::Entry, HashMap, VecDeque}; use std::collections::{btree_map::Entry, HashMap, VecDeque};
use tracing::{instrument, Instrument}; use tracing::{instrument, Instrument};
@ -179,17 +179,16 @@ impl Project {
let source = match &specifier { let source = match &specifier {
DependencySpecifiers::Pesde(specifier) => { DependencySpecifiers::Pesde(specifier) => {
let index_url = if !is_published_package && (depth == 0 || overridden) { let index_url = if !is_published_package && (depth == 0 || overridden) {
let index_name = specifier.index.as_deref().unwrap_or(DEFAULT_INDEX_NAME);
manifest manifest
.indices .indices
.get(index_name) .get(&specifier.index)
.ok_or(errors::DependencyGraphError::IndexNotFound( .ok_or(errors::DependencyGraphError::IndexNotFound(
index_name.to_string(), specifier.index.to_string(),
))? ))?
.clone() .clone()
} else { } else {
specifier.index.as_deref().unwrap() specifier.index
.as_str()
.try_into() .try_into()
// specifiers in indices store the index url in this field // specifiers in indices store the index url in this field
.unwrap() .unwrap()
@ -200,17 +199,16 @@ impl Project {
#[cfg(feature = "wally-compat")] #[cfg(feature = "wally-compat")]
DependencySpecifiers::Wally(specifier) => { DependencySpecifiers::Wally(specifier) => {
let index_url = if !is_published_package && (depth == 0 || overridden) { let index_url = if !is_published_package && (depth == 0 || overridden) {
let index_name = specifier.index.as_deref().unwrap_or(DEFAULT_INDEX_NAME);
manifest manifest
.wally_indices .wally_indices
.get(index_name) .get(&specifier.index)
.ok_or(errors::DependencyGraphError::WallyIndexNotFound( .ok_or(errors::DependencyGraphError::WallyIndexNotFound(
index_name.to_string(), specifier.index.to_string(),
))? ))?
.clone() .clone()
} else { } else {
specifier.index.as_deref().unwrap() specifier.index
.as_str()
.try_into() .try_into()
// specifiers in indices store the index url in this field // specifiers in indices store the index url in this field
.unwrap() .unwrap()

View file

@ -13,7 +13,7 @@ use crate::{
IGNORED_FILES, IGNORED_FILES,
}, },
util::hash, util::hash,
Project, DEFAULT_INDEX_NAME, LOCKFILE_FILE_NAME, MANIFEST_FILE_NAME, Project, LOCKFILE_FILE_NAME, MANIFEST_FILE_NAME,
}; };
use fs_err::tokio as fs; use fs_err::tokio as fs;
use gix::{bstr::BStr, traverse::tree::Recorder, ObjectId, Url}; use gix::{bstr::BStr, traverse::tree::Recorder, ObjectId, Url};
@ -72,43 +72,29 @@ fn transform_pesde_dependencies(
.map(|(alias, (mut spec, ty))| { .map(|(alias, (mut spec, ty))| {
match &mut spec { match &mut spec {
DependencySpecifiers::Pesde(specifier) => { DependencySpecifiers::Pesde(specifier) => {
let index_name = specifier specifier.index = manifest
.index
.as_deref()
.unwrap_or(DEFAULT_INDEX_NAME)
.to_string();
specifier.index = Some(
manifest
.indices .indices
.get(&index_name) .get(&specifier.index)
.ok_or_else(|| { .ok_or_else(|| {
errors::ResolveError::PesdeIndexNotFound( errors::ResolveError::PesdeIndexNotFound(
index_name.clone(), specifier.index.to_string(),
Box::new(repo_url.clone()), Box::new(repo_url.clone()),
) )
})? })?
.to_string(), .to_string();
);
} }
#[cfg(feature = "wally-compat")] #[cfg(feature = "wally-compat")]
DependencySpecifiers::Wally(specifier) => { DependencySpecifiers::Wally(specifier) => {
let index_name = specifier specifier.index = manifest
.index
.as_deref()
.unwrap_or(DEFAULT_INDEX_NAME)
.to_string();
specifier.index = Some(
manifest
.wally_indices .wally_indices
.get(&index_name) .get(&specifier.index)
.ok_or_else(|| { .ok_or_else(|| {
errors::ResolveError::WallyIndexNotFound( errors::ResolveError::WallyIndexNotFound(
index_name.clone(), specifier.index.to_string(),
Box::new(repo_url.clone()), Box::new(repo_url.clone()),
) )
})? })?
.to_string(), .to_string();
);
} }
DependencySpecifiers::Git(_) => {} DependencySpecifiers::Git(_) => {}
DependencySpecifiers::Workspace(specifier) => { DependencySpecifiers::Workspace(specifier) => {

View file

@ -11,7 +11,6 @@ use crate::{
traits::{DownloadOptions, GetTargetOptions, PackageSource, ResolveOptions}, traits::{DownloadOptions, GetTargetOptions, PackageSource, ResolveOptions},
ResolveResult, ResolveResult,
}, },
DEFAULT_INDEX_NAME,
}; };
use std::collections::BTreeMap; use std::collections::BTreeMap;
use tracing::instrument; use tracing::instrument;
@ -49,37 +48,29 @@ impl PackageSource for PathPackageSource {
.map(|(alias, (mut spec, ty))| { .map(|(alias, (mut spec, ty))| {
match &mut spec { match &mut spec {
DependencySpecifiers::Pesde(spec) => { DependencySpecifiers::Pesde(spec) => {
let index_name = spec.index.as_deref().unwrap_or(DEFAULT_INDEX_NAME); spec.index = manifest
spec.index = Some(
manifest
.indices .indices
.get(index_name) .get(&spec.index)
.ok_or_else(|| { .ok_or_else(|| {
errors::ResolveError::IndexNotFound( errors::ResolveError::IndexNotFound(
index_name.to_string(), spec.index.to_string(),
specifier.path.clone(), specifier.path.clone(),
) )
})? })?
.to_string(), .to_string();
)
} }
#[cfg(feature = "wally-compat")] #[cfg(feature = "wally-compat")]
DependencySpecifiers::Wally(spec) => { DependencySpecifiers::Wally(spec) => {
let index_name = spec.index.as_deref().unwrap_or(DEFAULT_INDEX_NAME); spec.index = manifest
spec.index = Some(
manifest
.wally_indices .wally_indices
.get(index_name) .get(&spec.index)
.ok_or_else(|| { .ok_or_else(|| {
errors::ResolveError::IndexNotFound( errors::ResolveError::IndexNotFound(
index_name.to_string(), spec.index.to_string(),
specifier.path.clone(), specifier.path.clone(),
) )
})? })?
.to_string(), .to_string();
)
} }
DependencySpecifiers::Git(_) => {} DependencySpecifiers::Git(_) => {}
DependencySpecifiers::Workspace(_) => {} DependencySpecifiers::Workspace(_) => {}

View file

@ -13,8 +13,8 @@ pub struct PesdeDependencySpecifier {
#[cfg_attr(test, schemars(with = "String"))] #[cfg_attr(test, schemars(with = "String"))]
pub version: VersionReq, pub version: VersionReq,
/// The index to use for the package /// The index to use for the package
#[serde(default, skip_serializing_if = "Option::is_none")] #[serde(default = "crate::default_index_name")]
pub index: Option<String>, pub index: String,
/// The target to use for the package /// The target to use for the package
#[serde(default, skip_serializing_if = "Option::is_none")] #[serde(default, skip_serializing_if = "Option::is_none")]
pub target: Option<TargetKind>, pub target: Option<TargetKind>,

View file

@ -42,7 +42,8 @@ pub fn deserialize_specifiers<'de, D: Deserializer<'de>>(
WallyDependencySpecifier { WallyDependencySpecifier {
name: name.parse().map_err(serde::de::Error::custom)?, name: name.parse().map_err(serde::de::Error::custom)?,
version: VersionReq::parse(version).map_err(serde::de::Error::custom)?, version: VersionReq::parse(version).map_err(serde::de::Error::custom)?,
index: None, // doesn't matter, will be replaced later
index: "".to_string(),
}, },
)) ))
}) })
@ -54,11 +55,11 @@ pub fn deserialize_specifiers<'de, D: Deserializer<'de>>(
pub struct WallyManifest { pub struct WallyManifest {
pub package: WallyPackage, pub package: WallyPackage,
#[serde(default, deserialize_with = "deserialize_specifiers")] #[serde(default, deserialize_with = "deserialize_specifiers")]
pub dependencies: BTreeMap<Alias, WallyDependencySpecifier>, dependencies: BTreeMap<Alias, WallyDependencySpecifier>,
#[serde(default, deserialize_with = "deserialize_specifiers")] #[serde(default, deserialize_with = "deserialize_specifiers")]
pub server_dependencies: BTreeMap<Alias, WallyDependencySpecifier>, server_dependencies: BTreeMap<Alias, WallyDependencySpecifier>,
#[serde(default, deserialize_with = "deserialize_specifiers")] #[serde(default, deserialize_with = "deserialize_specifiers")]
pub dev_dependencies: BTreeMap<Alias, WallyDependencySpecifier>, dev_dependencies: BTreeMap<Alias, WallyDependencySpecifier>,
} }
impl WallyManifest { impl WallyManifest {
@ -77,7 +78,7 @@ impl WallyManifest {
] { ] {
for (alias, spec) in deps { for (alias, spec) in deps {
let mut spec = spec.clone(); let mut spec = spec.clone();
spec.index = Some(self.package.registry.to_string()); spec.index = self.package.registry.to_string();
if all_deps if all_deps
.insert(alias.clone(), (DependencySpecifiers::Wally(spec), ty)) .insert(alias.clone(), (DependencySpecifiers::Wally(spec), ty))

View file

@ -16,8 +16,8 @@ pub struct WallyDependencySpecifier {
#[cfg_attr(test, schemars(with = "String"))] #[cfg_attr(test, schemars(with = "String"))]
pub version: VersionReq, pub version: VersionReq,
/// The index to use for the package /// The index to use for the package
#[serde(default, skip_serializing_if = "Option::is_none")] #[serde(default = "crate::default_index_name")]
pub index: Option<String>, pub index: String,
} }
impl DependencySpecifier for WallyDependencySpecifier {} impl DependencySpecifier for WallyDependencySpecifier {}

View file

@ -11,7 +11,6 @@ use crate::{
workspace::pkg_ref::WorkspacePackageRef, workspace::pkg_ref::WorkspacePackageRef,
ResolveResult, ResolveResult,
}, },
DEFAULT_INDEX_NAME,
}; };
use futures::StreamExt; use futures::StreamExt;
use relative_path::RelativePathBuf; use relative_path::RelativePathBuf;
@ -82,33 +81,29 @@ impl PackageSource for WorkspacePackageSource {
.map(|(alias, (mut spec, ty))| { .map(|(alias, (mut spec, ty))| {
match &mut spec { match &mut spec {
DependencySpecifiers::Pesde(spec) => { DependencySpecifiers::Pesde(spec) => {
let index_name = spec.index.as_deref().unwrap_or(DEFAULT_INDEX_NAME); spec.index = manifest
spec.index = Some(
manifest
.indices .indices
.get(index_name) .get(&spec.index)
.ok_or(errors::ResolveError::IndexNotFound( .ok_or_else(|| {
index_name.to_string(), errors::ResolveError::IndexNotFound(
spec.index.to_string(),
manifest.name.to_string(), manifest.name.to_string(),
))?
.to_string(),
) )
})?
.to_string();
} }
#[cfg(feature = "wally-compat")] #[cfg(feature = "wally-compat")]
DependencySpecifiers::Wally(spec) => { DependencySpecifiers::Wally(spec) => {
let index_name = spec.index.as_deref().unwrap_or(DEFAULT_INDEX_NAME); spec.index = manifest
spec.index = Some(
manifest
.wally_indices .wally_indices
.get(index_name) .get(&spec.index)
.ok_or(errors::ResolveError::IndexNotFound( .ok_or_else(|| {
index_name.to_string(), errors::ResolveError::IndexNotFound(
spec.index.to_string(),
manifest.name.to_string(), manifest.name.to_string(),
))?
.to_string(),
) )
})?
.to_string();
} }
DependencySpecifiers::Git(_) => {} DependencySpecifiers::Git(_) => {}
DependencySpecifiers::Workspace(_) => {} DependencySpecifiers::Workspace(_) => {}