mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
617350e79c
Follow-up to cjs refactor. This moves most of the resolution code into the deno_resolver crate. Still pending is the npm resolution code.
53 lines
1.5 KiB
Rust
53 lines
1.5 KiB
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use std::path::Path;
|
|
use std::path::PathBuf;
|
|
|
|
use deno_path_util::url_from_directory_path;
|
|
use deno_path_util::url_from_file_path;
|
|
use url::Url;
|
|
|
|
use crate::errors;
|
|
use crate::path::PathClean;
|
|
use crate::sync::MaybeSend;
|
|
use crate::sync::MaybeSync;
|
|
|
|
#[allow(clippy::disallowed_types)]
|
|
pub type NpmPackageFolderResolverRc =
|
|
crate::sync::MaybeArc<dyn NpmPackageFolderResolver>;
|
|
|
|
pub trait NpmPackageFolderResolver:
|
|
std::fmt::Debug + MaybeSend + MaybeSync
|
|
{
|
|
/// Resolves an npm package folder path from the specified referrer.
|
|
fn resolve_package_folder_from_package(
|
|
&self,
|
|
specifier: &str,
|
|
referrer: &Url,
|
|
) -> Result<PathBuf, errors::PackageFolderResolveError>;
|
|
}
|
|
|
|
#[allow(clippy::disallowed_types)]
|
|
pub type InNpmPackageCheckerRc = crate::sync::MaybeArc<dyn InNpmPackageChecker>;
|
|
|
|
/// Checks if a provided specifier is in an npm package.
|
|
pub trait InNpmPackageChecker: std::fmt::Debug + MaybeSend + MaybeSync {
|
|
fn in_npm_package(&self, specifier: &Url) -> bool;
|
|
|
|
fn in_npm_package_at_dir_path(&self, path: &Path) -> bool {
|
|
let specifier = match url_from_directory_path(&path.to_path_buf().clean()) {
|
|
Ok(p) => p,
|
|
Err(_) => return false,
|
|
};
|
|
self.in_npm_package(&specifier)
|
|
}
|
|
|
|
fn in_npm_package_at_file_path(&self, path: &Path) -> bool {
|
|
let specifier = match url_from_file_path(&path.to_path_buf().clean()) {
|
|
Ok(p) => p,
|
|
Err(_) => return false,
|
|
};
|
|
self.in_npm_package(&specifier)
|
|
}
|
|
}
|