wasm_pkg_core/resolver.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
//! A resolver for resolving dependencies from a component registry.
// NOTE(thomastaylor312): This is copied and adapted from the `cargo-component` crate: https://github.com/bytecodealliance/cargo-component/blob/f0be1c7d9917aa97e9102e69e3b838dae38d624b/crates/core/src/registry.rs
use std::{
collections::{hash_map, HashMap, HashSet},
fmt::Debug,
ops::{Deref, DerefMut},
path::{Path, PathBuf},
str::FromStr,
};
use anyhow::{bail, Context, Result};
use futures_util::TryStreamExt;
use indexmap::{IndexMap, IndexSet};
use semver::{Comparator, Op, Version, VersionReq};
use tokio::io::{AsyncRead, AsyncReadExt};
use wasm_pkg_client::{
caching::{CachingClient, FileCache},
Client, Config, ContentDigest, Error as WasmPkgError, PackageRef, Release, VersionInfo,
};
use wit_component::DecodedWasm;
use wit_parser::{PackageId, PackageName, Resolve, UnresolvedPackageGroup, WorldId};
use crate::{lock::LockFile, wit::get_packages};
/// The name of the default registry.
pub const DEFAULT_REGISTRY_NAME: &str = "default";
// TODO: functions for resolving dependencies from a lock file
/// Represents a WIT package dependency.
#[derive(Debug, Clone)]
pub enum Dependency {
/// The dependency is a registry package.
Package(RegistryPackage),
/// The dependency is a path to a local directory or file.
Local(PathBuf),
}
impl FromStr for Dependency {
type Err = anyhow::Error;
fn from_str(s: &str) -> Result<Self> {
Ok(Self::Package(s.parse()?))
}
}
/// Represents a reference to a registry package.
#[derive(Debug, Clone)]
pub struct RegistryPackage {
/// The name of the package.
///
/// If not specified, the name from the mapping will be used.
pub name: Option<PackageRef>,
/// The version requirement of the package.
pub version: VersionReq,
/// The name of the component registry containing the package.
///
/// If not specified, the default registry is used.
pub registry: Option<String>,
}
impl FromStr for RegistryPackage {
type Err = anyhow::Error;
fn from_str(s: &str) -> Result<Self> {
Ok(Self {
name: None,
version: s
.parse()
.with_context(|| format!("'{s}' is an invalid registry package version"))?,
registry: None,
})
}
}
/// Represents information about a resolution of a registry package.
#[derive(Clone)]
pub struct RegistryResolution {
/// The name of the dependency that was resolved.
///
/// This may differ from `package` if the dependency was renamed.
pub name: PackageRef,
/// The name of the package from the registry that was resolved.
pub package: PackageRef,
/// The name of the registry used to resolve the package if one was provided
pub registry: Option<String>,
/// The version requirement that was used to resolve the package.
pub requirement: VersionReq,
/// The package version that was resolved.
pub version: Version,
/// The digest of the package contents.
pub digest: ContentDigest,
/// The client to use for fetching the package contents.
client: CachingClient<FileCache>,
}
impl Debug for RegistryResolution {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
f.debug_struct("RegistryResolution")
.field("name", &self.name)
.field("package", &self.package)
.field("registry", &self.registry)
.field("requirement", &self.requirement)
.field("version", &self.version)
.field("digest", &self.digest)
.finish()
}
}
impl RegistryResolution {
/// Fetches the raw package bytes from the registry. Returns an AsyncRead that will stream the
/// package contents
pub async fn fetch(&self) -> Result<impl AsyncRead> {
let stream = self
.client
.get_content(
&self.package,
&Release {
version: self.version.clone(),
content_digest: self.digest.clone(),
},
)
.await?;
Ok(tokio_util::io::StreamReader::new(stream.map_err(|e| {
std::io::Error::new(std::io::ErrorKind::Other, e)
})))
}
}
/// Represents information about a resolution of a local file.
#[derive(Clone, Debug)]
pub struct LocalResolution {
/// The name of the dependency that was resolved.
pub name: PackageRef,
/// The path to the resolved dependency.
pub path: PathBuf,
}
/// Represents a resolution of a dependency.
#[derive(Debug, Clone)]
#[allow(clippy::large_enum_variant)]
pub enum DependencyResolution {
/// The dependency is resolved from a registry package.
Registry(RegistryResolution),
/// The dependency is resolved from a local path.
Local(LocalResolution),
}
impl DependencyResolution {
/// Gets the name of the dependency that was resolved.
pub fn name(&self) -> &PackageRef {
match self {
Self::Registry(res) => &res.name,
Self::Local(res) => &res.name,
}
}
/// Gets the resolved version.
///
/// Returns `None` if the dependency is not resolved from a registry package.
pub fn version(&self) -> Option<&Version> {
match self {
Self::Registry(res) => Some(&res.version),
Self::Local(_) => None,
}
}
/// The key used in sorting and searching the lock file package list.
///
/// Returns `None` if the dependency is not resolved from a registry package.
pub fn key(&self) -> Option<(&PackageRef, Option<&str>)> {
match self {
DependencyResolution::Registry(pkg) => Some((&pkg.package, pkg.registry.as_deref())),
DependencyResolution::Local(_) => None,
}
}
/// Decodes the resolved dependency.
pub async fn decode(&self) -> Result<DecodedDependency> {
// If the dependency path is a directory, assume it contains wit to parse as a package.
let bytes = match self {
DependencyResolution::Local(LocalResolution { path, .. })
if tokio::fs::metadata(path).await?.is_dir() =>
{
return Ok(DecodedDependency::Wit {
resolution: self,
package: UnresolvedPackageGroup::parse_dir(path).with_context(|| {
format!("failed to parse dependency `{path}`", path = path.display())
})?,
});
}
DependencyResolution::Local(LocalResolution { path, .. }) => {
tokio::fs::read(path).await.with_context(|| {
format!(
"failed to read content of dependency `{name}` at path `{path}`",
name = self.name(),
path = path.display()
)
})?
}
DependencyResolution::Registry(res) => {
let mut reader = res.fetch().await?;
let mut buf = Vec::new();
reader.read_to_end(&mut buf).await?;
buf
}
};
if &bytes[0..4] != b"\0asm" {
return Ok(DecodedDependency::Wit {
resolution: self,
package: UnresolvedPackageGroup::parse(
// This is fake, but it's needed for the parser to work.
self.name().to_string(),
std::str::from_utf8(&bytes).with_context(|| {
format!(
"dependency `{name}` is not UTF-8 encoded",
name = self.name()
)
})?,
)?,
});
}
Ok(DecodedDependency::Wasm {
resolution: self,
decoded: wit_component::decode(&bytes).with_context(|| {
format!(
"failed to decode content of dependency `{name}`",
name = self.name(),
)
})?,
})
}
}
/// Represents a decoded dependency.
pub enum DecodedDependency<'a> {
/// The dependency decoded from an unresolved WIT package.
Wit {
/// The resolution related to the decoded dependency.
resolution: &'a DependencyResolution,
/// The unresolved WIT package.
package: UnresolvedPackageGroup,
},
/// The dependency decoded from a Wasm file.
Wasm {
/// The resolution related to the decoded dependency.
resolution: &'a DependencyResolution,
/// The decoded Wasm file.
decoded: DecodedWasm,
},
}
impl<'a> DecodedDependency<'a> {
/// Fully resolves the dependency.
///
/// If the dependency is an unresolved WIT package, it will assume that the
/// package has no foreign dependencies.
pub fn resolve(self) -> Result<(Resolve, PackageId, Vec<PathBuf>)> {
match self {
Self::Wit { package, .. } => {
let mut resolve = Resolve::new();
let source_files = package
.source_map
.source_files()
.map(Path::to_path_buf)
.collect();
let pkg = resolve.push_group(package)?;
Ok((resolve, pkg, source_files))
}
Self::Wasm { decoded, .. } => match decoded {
DecodedWasm::WitPackage(resolve, pkg) => Ok((resolve, pkg, Vec::new())),
DecodedWasm::Component(resolve, world) => {
let pkg = resolve.worlds[world].package.unwrap();
Ok((resolve, pkg, Vec::new()))
}
},
}
}
/// Gets the package name of the decoded dependency.
pub fn package_name(&self) -> &PackageName {
match self {
Self::Wit { package, .. } => &package.main.name,
Self::Wasm { decoded, .. } => &decoded.resolve().packages[decoded.package()].name,
}
}
/// Converts the decoded dependency into a component world.
///
/// Returns an error if the dependency is not a decoded component.
pub fn into_component_world(self) -> Result<(Resolve, WorldId)> {
match self {
Self::Wasm {
decoded: DecodedWasm::Component(resolve, world),
..
} => Ok((resolve, world)),
_ => bail!("dependency is not a WebAssembly component"),
}
}
}
/// Used to resolve dependencies for a WIT package.
pub struct DependencyResolver<'a> {
client: CachingClient<FileCache>,
lock_file: Option<&'a LockFile>,
packages: HashMap<PackageRef, Vec<VersionInfo>>,
dependencies: HashMap<PackageRef, RegistryDependency>,
resolutions: DependencyResolutionMap,
}
impl<'a> DependencyResolver<'a> {
/// Creates a new dependency resolver. If `config` is `None`, then the resolver will be set to
/// offline mode and a lock file must be given as well. Anything that will require network
/// access will fail in offline mode.
pub fn new(
config: Option<Config>,
lock_file: Option<&'a LockFile>,
cache: FileCache,
) -> anyhow::Result<Self> {
if config.is_none() && lock_file.is_none() {
anyhow::bail!("lock file must be provided when offline mode is enabled");
}
let client = CachingClient::new(config.map(Client::new), cache);
Ok(DependencyResolver {
client,
lock_file,
resolutions: Default::default(),
packages: Default::default(),
dependencies: Default::default(),
})
}
/// Creates a new dependency resolver with the given client. This is useful when you already
/// have a client available. If the client is set to offline mode, then a lock file must be
/// given or this will error
pub fn new_with_client(
client: CachingClient<FileCache>,
lock_file: Option<&'a LockFile>,
) -> anyhow::Result<Self> {
if client.is_readonly() && lock_file.is_none() {
anyhow::bail!("lock file must be provided when offline mode is enabled");
}
Ok(DependencyResolver {
client,
lock_file,
resolutions: Default::default(),
packages: Default::default(),
dependencies: Default::default(),
})
}
/// Add a dependency to the resolver. If the dependency already exists, then it will be ignored.
/// To override an existing dependency, use [`override_dependency`](Self::override_dependency).
pub async fn add_dependency(
&mut self,
name: &PackageRef,
dependency: &Dependency,
) -> Result<()> {
self.add_dependency_internal(name, dependency, false).await
}
/// Add a dependency to the resolver. If the dependency already exists, then it will be
/// overridden.
pub async fn override_dependency(
&mut self,
name: &PackageRef,
dependency: &Dependency,
) -> Result<()> {
self.add_dependency_internal(name, dependency, true).await
}
async fn add_dependency_internal(
&mut self,
name: &PackageRef,
dependency: &Dependency,
force_override: bool,
) -> Result<()> {
match dependency {
Dependency::Package(package) => {
// Dependency comes from a registry, add a dependency to the resolver
let registry_name = package.registry.as_deref().or_else(|| {
self.client.client().ok().and_then(|client| {
client
.config()
.resolve_registry(name)
.map(|reg| reg.as_ref())
})
});
let package_name = package.name.clone().unwrap_or_else(|| name.clone());
// Resolve the version from the lock file if there is one
let locked = match self.lock_file.as_ref().and_then(|resolver| {
resolver
.resolve(registry_name, &package_name, &package.version)
.transpose()
}) {
Some(Ok(locked)) => Some(locked),
Some(Err(e)) => return Err(e),
_ => None,
};
if !force_override
&& (self.resolutions.contains_key(name) || self.dependencies.contains_key(name))
{
tracing::debug!(%name, "dependency already exists and override is not set, ignoring");
return Ok(());
}
self.dependencies.insert(
name.to_owned(),
RegistryDependency {
package: package_name,
version: package.version.clone(),
locked: locked.map(|l| (l.version.clone(), l.digest.clone())),
},
);
}
Dependency::Local(p) => {
// A local path dependency, insert a resolution immediately
let res = DependencyResolution::Local(LocalResolution {
name: name.clone(),
path: p.clone(),
});
if !force_override && self.resolutions.contains_key(name) {
tracing::debug!(%name, "dependency already exists and override is not set, ignoring");
return Ok(());
}
// Now that we check we haven't already inserted this dep, get the packages from the
// local dependency and add those to the resolver before adding the dependency
let (_, packages) = get_packages(p)
.context("Error getting dependent packages from local dependency")?;
Box::pin(self.add_packages(packages))
.await
.context("Error adding packages to resolver for local dependency")?;
let prev = self.resolutions.insert(name.clone(), res);
assert!(prev.is_none());
}
}
Ok(())
}
/// A helper function for adding an iterator of package refs and their associated version
/// requirements to the resolver
pub async fn add_packages(
&mut self,
packages: impl IntoIterator<Item = (PackageRef, VersionReq)>,
) -> Result<()> {
for (package, req) in packages {
self.add_dependency(
&package,
&Dependency::Package(RegistryPackage {
name: Some(package.clone()),
version: req,
registry: None,
}),
)
.await?;
}
Ok(())
}
/// Resolve all dependencies.
///
/// This will download all dependencies that are not already present in client storage.
///
/// Returns the dependency resolution map.
pub async fn resolve(mut self) -> Result<DependencyResolutionMap> {
let mut resolutions = self.resolutions;
for (name, dependency) in self.dependencies.into_iter() {
// We need to clone a handle to the client because we mutably borrow self below. Might
// be worth replacing the mutable borrow with a RwLock down the line.
let client = self.client.clone();
let (selected_version, digest) = if client.is_readonly() {
dependency
.locked
.as_ref()
.map(|(ver, digest)| (ver, Some(digest)))
.ok_or_else(|| {
anyhow::anyhow!("Couldn't find locked dependency while in offline mode")
})?
} else {
let versions =
load_package(&mut self.packages, &self.client, dependency.package.clone())
.await?
.with_context(|| {
format!(
"package `{name}` was not found in component registry",
name = dependency.package
)
})?;
match &dependency.locked {
Some((version, digest)) => {
// The dependency had a lock file entry, so attempt to do an exact match first
let exact_req = VersionReq {
comparators: vec![Comparator {
op: Op::Exact,
major: version.major,
minor: Some(version.minor),
patch: Some(version.patch),
pre: version.pre.clone(),
}],
};
// If an exact match can't be found, fallback to the latest release to satisfy
// the version requirement; this can happen when packages are yanked. If we did
// find an exact match, return the digest for comparison after fetching the
// release
find_latest_release(versions, &exact_req).map(|v| (&v.version, Some(digest))).or_else(|| find_latest_release(versions, &dependency.version).map(|v| (&v.version, None)))
}
None => find_latest_release(versions, &dependency.version).map(|v| (&v.version, None)),
}.with_context(|| format!("component registry package `{name}` has no release matching version requirement `{version}`", name = dependency.package, version = dependency.version))?
};
// We need to clone a handle to the client because we mutably borrow self above. Might
// be worth replacing the mutable borrow with a RwLock down the line.
let release = client
.get_release(&dependency.package, selected_version)
.await?;
if let Some(digest) = digest {
if &release.content_digest != digest {
bail!(
"component registry package `{name}` (v`{version}`) has digest `{content}` but the lock file specifies digest `{digest}`",
name = dependency.package,
version = release.version,
content = release.content_digest,
);
}
}
let resolution = RegistryResolution {
name: name.clone(),
package: dependency.package.clone(),
registry: self.client.client().ok().and_then(|client| {
client
.config()
.resolve_registry(&name)
.map(ToString::to_string)
}),
requirement: dependency.version.clone(),
version: release.version.clone(),
digest: release.content_digest.clone(),
client: self.client.clone(),
};
resolutions.insert(name, DependencyResolution::Registry(resolution));
}
Ok(resolutions)
}
}
async fn load_package<'b>(
packages: &'b mut HashMap<PackageRef, Vec<VersionInfo>>,
client: &CachingClient<FileCache>,
package: PackageRef,
) -> Result<Option<&'b Vec<VersionInfo>>> {
match packages.entry(package) {
hash_map::Entry::Occupied(e) => Ok(Some(e.into_mut())),
hash_map::Entry::Vacant(e) => match client.list_all_versions(e.key()).await {
Ok(p) => Ok(Some(e.insert(p))),
Err(WasmPkgError::PackageNotFound) => Ok(None),
Err(err) => Err(err.into()),
},
}
}
#[derive(Debug)]
struct RegistryDependency {
/// The canonical package name of the registry package. In most cases, this is the same as the
/// name but could be different if the given package name has been remapped
package: PackageRef,
version: VersionReq,
locked: Option<(Version, ContentDigest)>,
}
fn find_latest_release<'a>(
versions: &'a [VersionInfo],
req: &VersionReq,
) -> Option<&'a VersionInfo> {
versions
.iter()
.filter(|info| !info.yanked && req.matches(&info.version))
.max_by(|a, b| a.version.cmp(&b.version))
}
// NOTE(thomastaylor312): This is copied from the old wit package in the cargo-component and broken
// out for some reuse. I don't know enough about resolvers to know if there is an easier way to
// write this, so any future people seeing this should feel free to refactor it if they know a
// better way to do it.
/// Represents a map of dependency resolutions.
///
/// The key to the map is the package name of the dependency.
#[derive(Debug, Clone, Default)]
pub struct DependencyResolutionMap(HashMap<PackageRef, DependencyResolution>);
impl AsRef<HashMap<PackageRef, DependencyResolution>> for DependencyResolutionMap {
fn as_ref(&self) -> &HashMap<PackageRef, DependencyResolution> {
&self.0
}
}
impl Deref for DependencyResolutionMap {
type Target = HashMap<PackageRef, DependencyResolution>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for DependencyResolutionMap {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl DependencyResolutionMap {
/// Fetch all dependencies and ensure there are no circular dependencies. Returns the decoded
/// dependencies (sorted topologically), ready to use for output or adding to a [`Resolve`].
pub async fn decode_dependencies(
&self,
) -> Result<IndexMap<PackageName, DecodedDependency<'_>>> {
// Start by decoding all of the dependencies
let mut deps = IndexMap::new();
for (name, resolution) in self.0.iter() {
let decoded = resolution.decode().await?;
if let Some(prev) = deps.insert(decoded.package_name().clone(), decoded) {
anyhow::bail!(
"duplicate definitions of package `{prev}` found while decoding dependency `{name}`",
prev = prev.package_name()
);
}
}
// Do a topological sort of the dependencies
let mut order = IndexSet::new();
let mut visiting = HashSet::new();
for dep in deps.values() {
visit(dep, &deps, &mut order, &mut visiting)?;
}
assert!(visiting.is_empty());
// Now that we have the right order, re-order the dependencies to match
deps.sort_by(|name_a, _, name_b, _| {
order.get_index_of(name_a).cmp(&order.get_index_of(name_b))
});
Ok(deps)
}
/// Given a path to a component or a directory containing wit, use the given dependencies to
/// generate a [`Resolve`] for the root package.
pub async fn generate_resolve(&self, dir: impl AsRef<Path>) -> Result<(Resolve, PackageId)> {
let mut merged = Resolve::default();
let deps = self.decode_dependencies().await?;
// Parse the root package itself
let root = UnresolvedPackageGroup::parse_dir(&dir).with_context(|| {
format!(
"failed to parse package from directory `{dir}`",
dir = dir.as_ref().display()
)
})?;
let mut source_files: Vec<_> = root
.source_map
.source_files()
.map(Path::to_path_buf)
.collect();
// Merge all of the dependencies first
for decoded in deps.into_values() {
match decoded {
DecodedDependency::Wit {
resolution,
package,
} => {
source_files.extend(package.source_map.source_files().map(Path::to_path_buf));
merged.push_group(package).with_context(|| {
format!(
"failed to merge dependency `{name}`",
name = resolution.name()
)
})?;
}
DecodedDependency::Wasm {
resolution,
decoded,
} => {
let resolve = match decoded {
DecodedWasm::WitPackage(resolve, _) => resolve,
DecodedWasm::Component(resolve, _) => resolve,
};
merged.merge(resolve).with_context(|| {
format!(
"failed to merge world of dependency `{name}`",
name = resolution.name()
)
})?;
}
};
}
let package = merged.push_group(root).with_context(|| {
format!(
"failed to merge package from directory `{dir}`",
dir = dir.as_ref().display()
)
})?;
Ok((merged, package))
}
}
fn visit<'a>(
dep: &'a DecodedDependency<'a>,
deps: &'a IndexMap<PackageName, DecodedDependency>,
order: &mut IndexSet<PackageName>,
visiting: &mut HashSet<&'a PackageName>,
) -> Result<()> {
if order.contains(dep.package_name()) {
return Ok(());
}
// Visit any unresolved foreign dependencies
match dep {
DecodedDependency::Wit {
package,
resolution,
} => {
for name in package.main.foreign_deps.keys() {
// Only visit known dependencies
// wit-parser will error on unknown foreign dependencies when
// the package is resolved
if let Some(dep) = deps.get(name) {
if !visiting.insert(name) {
anyhow::bail!("foreign dependency `{name}` forms a dependency cycle while parsing dependency `{other}`", other = resolution.name());
}
visit(dep, deps, order, visiting)?;
assert!(visiting.remove(name));
}
}
}
DecodedDependency::Wasm {
decoded,
resolution,
} => {
// Look for foreign packages in the decoded dependency
for (_, package) in &decoded.resolve().packages {
if package.name.namespace == dep.package_name().namespace
&& package.name.name == dep.package_name().name
{
continue;
}
if let Some(dep) = deps.get(&package.name) {
if !visiting.insert(&package.name) {
anyhow::bail!("foreign dependency `{name}` forms a dependency cycle while parsing dependency `{other}`", name = package.name, other = resolution.name());
}
visit(dep, deps, order, visiting)?;
assert!(visiting.remove(&package.name));
}
}
}
}
assert!(order.insert(dep.package_name().clone()));
Ok(())
}