summaryrefslogtreecommitdiff
path: root/resolvers/deno
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-09-30 09:33:32 -0400
committerGitHub <noreply@github.com>2024-09-30 13:33:32 +0000
commit69ab72002550b5797185b7651de28c700b220bb2 (patch)
treece224c0631f42e3ad73e6bd848d1a597d19f1a9f /resolvers/deno
parentc8f692057b256dac57342867b7606a74309449fc (diff)
refactor: move ByonmNpmResolver to deno_resolver (#25937)
Some more slow progress on moving all the resolution code into deno_resolver.
Diffstat (limited to 'resolvers/deno')
-rw-r--r--resolvers/deno/Cargo.toml5
-rw-r--r--resolvers/deno/clippy.toml52
-rw-r--r--resolvers/deno/fs.rs27
-rw-r--r--resolvers/deno/lib.rs2
-rw-r--r--resolvers/deno/npm/byonm.rs348
-rw-r--r--resolvers/deno/npm/local.rs27
-rw-r--r--resolvers/deno/npm/mod.rs8
-rw-r--r--resolvers/deno/sloppy_imports.rs4
8 files changed, 472 insertions, 1 deletions
diff --git a/resolvers/deno/Cargo.toml b/resolvers/deno/Cargo.toml
index 23c43810a..a14635c38 100644
--- a/resolvers/deno/Cargo.toml
+++ b/resolvers/deno/Cargo.toml
@@ -16,8 +16,13 @@ path = "lib.rs"
[features]
[dependencies]
+anyhow.workspace = true
+base32.workspace = true
deno_media_type.workspace = true
+deno_package_json.workspace = true
deno_path_util.workspace = true
+deno_semver.workspace = true
+node_resolver.workspace = true
url.workspace = true
[dev-dependencies]
diff --git a/resolvers/deno/clippy.toml b/resolvers/deno/clippy.toml
new file mode 100644
index 000000000..733ac83da
--- /dev/null
+++ b/resolvers/deno/clippy.toml
@@ -0,0 +1,52 @@
+disallowed-methods = [
+ { path = "std::env::current_dir", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::canonicalize", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::is_dir", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::is_file", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::is_symlink", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::metadata", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::read_dir", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::read_link", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::symlink_metadata", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::try_exists", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::PathBuf::exists", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::PathBuf::canonicalize", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::PathBuf::is_dir", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::PathBuf::is_file", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::PathBuf::is_symlink", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::PathBuf::metadata", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::PathBuf::read_dir", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::PathBuf::read_link", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::PathBuf::symlink_metadata", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::PathBuf::try_exists", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::env::set_current_dir", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::env::temp_dir", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::canonicalize", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::copy", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::create_dir_all", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::create_dir", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::DirBuilder::new", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::hard_link", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::metadata", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::OpenOptions::new", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::read_dir", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::read_link", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::read_to_string", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::read", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::remove_dir_all", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::remove_dir", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::remove_file", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::rename", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::set_permissions", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::symlink_metadata", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::fs::write", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::canonicalize", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "std::path::Path::exists", reason = "File system operations should be done using DenoResolverFs trait" },
+ { path = "url::Url::to_file_path", reason = "Use deno_path_util instead so it works in Wasm" },
+ { path = "url::Url::from_file_path", reason = "Use deno_path_util instead so it works in Wasm" },
+ { path = "url::Url::from_directory_path", reason = "Use deno_path_util instead so it works in Wasm" },
+]
+disallowed-types = [
+ # todo(dsherret): consider for the future
+ # { path = "std::sync::Arc", reason = "use crate::sync::MaybeArc instead" },
+]
diff --git a/resolvers/deno/fs.rs b/resolvers/deno/fs.rs
new file mode 100644
index 000000000..b08be3798
--- /dev/null
+++ b/resolvers/deno/fs.rs
@@ -0,0 +1,27 @@
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
+
+use std::path::Path;
+use std::path::PathBuf;
+
+pub struct DirEntry {
+ pub name: String,
+ pub is_file: bool,
+ pub is_directory: bool,
+}
+
+pub trait DenoResolverFs {
+ fn read_to_string_lossy(&self, path: &Path) -> std::io::Result<String>;
+ fn realpath_sync(&self, path: &Path) -> std::io::Result<PathBuf>;
+ fn is_dir_sync(&self, path: &Path) -> bool;
+ fn read_dir_sync(&self, dir_path: &Path) -> std::io::Result<Vec<DirEntry>>;
+}
+
+pub(crate) struct DenoPkgJsonFsAdapter<'a, Fs: DenoResolverFs>(pub &'a Fs);
+
+impl<'a, Fs: DenoResolverFs> deno_package_json::fs::DenoPkgJsonFs
+ for DenoPkgJsonFsAdapter<'a, Fs>
+{
+ fn read_to_string_lossy(&self, path: &Path) -> std::io::Result<String> {
+ self.0.read_to_string_lossy(path)
+ }
+}
diff --git a/resolvers/deno/lib.rs b/resolvers/deno/lib.rs
index 7d7796d77..57fa67512 100644
--- a/resolvers/deno/lib.rs
+++ b/resolvers/deno/lib.rs
@@ -1,3 +1,5 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
+pub mod fs;
+pub mod npm;
pub mod sloppy_imports;
diff --git a/resolvers/deno/npm/byonm.rs b/resolvers/deno/npm/byonm.rs
new file mode 100644
index 000000000..c847cee0f
--- /dev/null
+++ b/resolvers/deno/npm/byonm.rs
@@ -0,0 +1,348 @@
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
+
+use std::borrow::Cow;
+use std::path::Path;
+use std::path::PathBuf;
+use std::sync::Arc;
+
+use anyhow::bail;
+use anyhow::Error as AnyError;
+use deno_package_json::PackageJson;
+use deno_package_json::PackageJsonDepValue;
+use deno_path_util::url_to_file_path;
+use deno_semver::package::PackageReq;
+use deno_semver::Version;
+use node_resolver::errors::PackageFolderResolveError;
+use node_resolver::errors::PackageFolderResolveIoError;
+use node_resolver::errors::PackageJsonLoadError;
+use node_resolver::errors::PackageNotFoundError;
+use node_resolver::load_pkg_json;
+use node_resolver::NpmResolver;
+use url::Url;
+
+use crate::fs::DenoPkgJsonFsAdapter;
+use crate::fs::DenoResolverFs;
+
+use super::local::normalize_pkg_name_for_node_modules_deno_folder;
+
+pub struct ByonmNpmResolverCreateOptions<Fs: DenoResolverFs> {
+ pub fs: Fs,
+ // todo(dsherret): investigate removing this
+ pub root_node_modules_dir: Option<PathBuf>,
+}
+
+#[derive(Debug)]
+pub struct ByonmNpmResolver<Fs: DenoResolverFs> {
+ fs: Fs,
+ root_node_modules_dir: Option<PathBuf>,
+}
+
+impl<Fs: DenoResolverFs + Clone> Clone for ByonmNpmResolver<Fs> {
+ fn clone(&self) -> Self {
+ Self {
+ fs: self.fs.clone(),
+ root_node_modules_dir: self.root_node_modules_dir.clone(),
+ }
+ }
+}
+
+impl<Fs: DenoResolverFs> ByonmNpmResolver<Fs> {
+ pub fn new(options: ByonmNpmResolverCreateOptions<Fs>) -> Self {
+ Self {
+ fs: options.fs,
+ root_node_modules_dir: options.root_node_modules_dir,
+ }
+ }
+
+ pub fn root_node_modules_dir(&self) -> Option<&Path> {
+ self.root_node_modules_dir.as_deref()
+ }
+
+ fn load_pkg_json(
+ &self,
+ path: &Path,
+ ) -> Result<Option<Arc<PackageJson>>, PackageJsonLoadError> {
+ load_pkg_json(&DenoPkgJsonFsAdapter(&self.fs), path)
+ }
+
+ /// Finds the ancestor package.json that contains the specified dependency.
+ pub fn find_ancestor_package_json_with_dep(
+ &self,
+ dep_name: &str,
+ referrer: &Url,
+ ) -> Option<Arc<PackageJson>> {
+ let referrer_path = url_to_file_path(referrer).ok()?;
+ let mut current_folder = referrer_path.parent()?;
+ loop {
+ let pkg_json_path = current_folder.join("package.json");
+ if let Ok(Some(pkg_json)) = self.load_pkg_json(&pkg_json_path) {
+ if let Some(deps) = &pkg_json.dependencies {
+ if deps.contains_key(dep_name) {
+ return Some(pkg_json);
+ }
+ }
+ if let Some(deps) = &pkg_json.dev_dependencies {
+ if deps.contains_key(dep_name) {
+ return Some(pkg_json);
+ }
+ }
+ }
+
+ if let Some(parent) = current_folder.parent() {
+ current_folder = parent;
+ } else {
+ return None;
+ }
+ }
+ }
+
+ pub fn resolve_pkg_folder_from_deno_module_req(
+ &self,
+ req: &PackageReq,
+ referrer: &Url,
+ ) -> Result<PathBuf, AnyError> {
+ fn node_resolve_dir<Fs: DenoResolverFs>(
+ fs: &Fs,
+ alias: &str,
+ start_dir: &Path,
+ ) -> Result<Option<PathBuf>, AnyError> {
+ for ancestor in start_dir.ancestors() {
+ let node_modules_folder = ancestor.join("node_modules");
+ let sub_dir = join_package_name(&node_modules_folder, alias);
+ if fs.is_dir_sync(&sub_dir) {
+ return Ok(Some(deno_path_util::canonicalize_path_maybe_not_exists(
+ &sub_dir,
+ &|path| fs.realpath_sync(path),
+ )?));
+ }
+ }
+ Ok(None)
+ }
+
+ // now attempt to resolve if it's found in any package.json
+ let maybe_pkg_json_and_alias =
+ self.resolve_pkg_json_and_alias_for_req(req, referrer)?;
+ match maybe_pkg_json_and_alias {
+ Some((pkg_json, alias)) => {
+ // now try node resolution
+ if let Some(resolved) =
+ node_resolve_dir(&self.fs, &alias, pkg_json.dir_path())?
+ {
+ return Ok(resolved);
+ }
+
+ bail!(
+ concat!(
+ "Could not find \"{}\" in a node_modules folder. ",
+ "Deno expects the node_modules/ directory to be up to date. ",
+ "Did you forget to run `deno install`?"
+ ),
+ alias,
+ );
+ }
+ None => {
+ // now check if node_modules/.deno/ matches this constraint
+ if let Some(folder) = self.resolve_folder_in_root_node_modules(req) {
+ return Ok(folder);
+ }
+
+ bail!(
+ concat!(
+ "Could not find a matching package for 'npm:{}' in the node_modules ",
+ "directory. Ensure you have all your JSR and npm dependencies listed ",
+ "in your deno.json or package.json, then run `deno install`. Alternatively, ",
+ r#"turn on auto-install by specifying `"nodeModulesDir": "auto"` in your "#,
+ "deno.json file."
+ ),
+ req,
+ );
+ }
+ }
+ }
+
+ fn resolve_pkg_json_and_alias_for_req(
+ &self,
+ req: &PackageReq,
+ referrer: &Url,
+ ) -> Result<Option<(Arc<PackageJson>, String)>, AnyError> {
+ fn resolve_alias_from_pkg_json(
+ req: &PackageReq,
+ pkg_json: &PackageJson,
+ ) -> Option<String> {
+ let deps = pkg_json.resolve_local_package_json_deps();
+ for (key, value) in deps {
+ if let Ok(value) = value {
+ match value {
+ PackageJsonDepValue::Req(dep_req) => {
+ if dep_req.name == req.name
+ && dep_req.version_req.intersects(&req.version_req)
+ {
+ return Some(key);
+ }
+ }
+ PackageJsonDepValue::Workspace(_workspace) => {
+ if key == req.name && req.version_req.tag() == Some("workspace") {
+ return Some(key);
+ }
+ }
+ }
+ }
+ }
+ None
+ }
+
+ // attempt to resolve the npm specifier from the referrer's package.json,
+ if let Ok(file_path) = url_to_file_path(referrer) {
+ let mut current_path = file_path.as_path();
+ while let Some(dir_path) = current_path.parent() {
+ let package_json_path = dir_path.join("package.json");
+ if let Some(pkg_json) = self.load_pkg_json(&package_json_path)? {
+ if let Some(alias) =
+ resolve_alias_from_pkg_json(req, pkg_json.as_ref())
+ {
+ return Ok(Some((pkg_json, alias)));
+ }
+ }
+ current_path = dir_path;
+ }
+ }
+
+ // otherwise, fall fallback to the project's package.json
+ if let Some(root_node_modules_dir) = &self.root_node_modules_dir {
+ let root_pkg_json_path =
+ root_node_modules_dir.parent().unwrap().join("package.json");
+ if let Some(pkg_json) = self.load_pkg_json(&root_pkg_json_path)? {
+ if let Some(alias) = resolve_alias_from_pkg_json(req, pkg_json.as_ref())
+ {
+ return Ok(Some((pkg_json, alias)));
+ }
+ }
+ }
+
+ Ok(None)
+ }
+
+ fn resolve_folder_in_root_node_modules(
+ &self,
+ req: &PackageReq,
+ ) -> Option<PathBuf> {
+ // now check if node_modules/.deno/ matches this constraint
+ let root_node_modules_dir = self.root_node_modules_dir.as_ref()?;
+ let node_modules_deno_dir = root_node_modules_dir.join(".deno");
+ let Ok(entries) = self.fs.read_dir_sync(&node_modules_deno_dir) else {
+ return None;
+ };
+ let search_prefix = format!(
+ "{}@",
+ normalize_pkg_name_for_node_modules_deno_folder(&req.name)
+ );
+ let mut best_version = None;
+
+ // example entries:
+ // - @denotest+add@1.0.0
+ // - @denotest+add@1.0.0_1
+ for entry in entries {
+ if !entry.is_directory {
+ continue;
+ }
+ let Some(version_and_copy_idx) = entry.name.strip_prefix(&search_prefix)
+ else {
+ continue;
+ };
+ let version = version_and_copy_idx
+ .rsplit_once('_')
+ .map(|(v, _)| v)
+ .unwrap_or(version_and_copy_idx);
+ let Ok(version) = Version::parse_from_npm(version) else {
+ continue;
+ };
+ if req.version_req.matches(&version) {
+ if let Some((best_version_version, _)) = &best_version {
+ if version > *best_version_version {
+ best_version = Some((version, entry.name));
+ }
+ } else {
+ best_version = Some((version, entry.name));
+ }
+ }
+ }
+
+ best_version.map(|(_version, entry_name)| {
+ join_package_name(
+ &node_modules_deno_dir.join(entry_name).join("node_modules"),
+ &req.name,
+ )
+ })
+ }
+}
+
+impl<Fs: DenoResolverFs + Send + Sync + std::fmt::Debug> NpmResolver
+ for ByonmNpmResolver<Fs>
+{
+ fn resolve_package_folder_from_package(
+ &self,
+ name: &str,
+ referrer: &Url,
+ ) -> Result<PathBuf, PackageFolderResolveError> {
+ fn inner<Fs: DenoResolverFs>(
+ fs: &Fs,
+ name: &str,
+ referrer: &Url,
+ ) -> Result<PathBuf, PackageFolderResolveError> {
+ let maybe_referrer_file = url_to_file_path(referrer).ok();
+ let maybe_start_folder =
+ maybe_referrer_file.as_ref().and_then(|f| f.parent());
+ if let Some(start_folder) = maybe_start_folder {
+ for current_folder in start_folder.ancestors() {
+ let node_modules_folder = if current_folder.ends_with("node_modules")
+ {
+ Cow::Borrowed(current_folder)
+ } else {
+ Cow::Owned(current_folder.join("node_modules"))
+ };
+
+ let sub_dir = join_package_name(&node_modules_folder, name);
+ if fs.is_dir_sync(&sub_dir) {
+ return Ok(sub_dir);
+ }
+ }
+ }
+
+ Err(
+ PackageNotFoundError {
+ package_name: name.to_string(),
+ referrer: referrer.clone(),
+ referrer_extra: None,
+ }
+ .into(),
+ )
+ }
+
+ let path = inner(&self.fs, name, referrer)?;
+ self.fs.realpath_sync(&path).map_err(|err| {
+ PackageFolderResolveIoError {
+ package_name: name.to_string(),
+ referrer: referrer.clone(),
+ source: err,
+ }
+ .into()
+ })
+ }
+
+ fn in_npm_package(&self, specifier: &Url) -> bool {
+ specifier.scheme() == "file"
+ && specifier
+ .path()
+ .to_ascii_lowercase()
+ .contains("/node_modules/")
+ }
+}
+
+fn join_package_name(path: &Path, package_name: &str) -> PathBuf {
+ let mut path = path.to_path_buf();
+ // ensure backslashes are used on windows
+ for part in package_name.split('/') {
+ path = path.join(part);
+ }
+ path
+}
diff --git a/resolvers/deno/npm/local.rs b/resolvers/deno/npm/local.rs
new file mode 100644
index 000000000..aef476ad9
--- /dev/null
+++ b/resolvers/deno/npm/local.rs
@@ -0,0 +1,27 @@
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
+
+use std::borrow::Cow;
+
+/// Normalizes a package name for use at `node_modules/.deno/<pkg-name>@<version>[_<copy_index>]`
+pub fn normalize_pkg_name_for_node_modules_deno_folder(name: &str) -> Cow<str> {
+ let name = if name.to_lowercase() == name {
+ Cow::Borrowed(name)
+ } else {
+ Cow::Owned(format!("_{}", mixed_case_package_name_encode(name)))
+ };
+ if name.starts_with('@') {
+ name.replace('/', "+").into()
+ } else {
+ name
+ }
+}
+
+fn mixed_case_package_name_encode(name: &str) -> String {
+ // use base32 encoding because it's reversible and the character set
+ // only includes the characters within 0-9 and A-Z so it can be lower cased
+ base32::encode(
+ base32::Alphabet::Rfc4648Lower { padding: false },
+ name.as_bytes(),
+ )
+ .to_lowercase()
+}
diff --git a/resolvers/deno/npm/mod.rs b/resolvers/deno/npm/mod.rs
new file mode 100644
index 000000000..2e24144cd
--- /dev/null
+++ b/resolvers/deno/npm/mod.rs
@@ -0,0 +1,8 @@
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
+
+mod byonm;
+mod local;
+
+pub use byonm::ByonmNpmResolver;
+pub use byonm::ByonmNpmResolverCreateOptions;
+pub use local::normalize_pkg_name_for_node_modules_deno_folder;
diff --git a/resolvers/deno/sloppy_imports.rs b/resolvers/deno/sloppy_imports.rs
index e4d0898e5..e215e8768 100644
--- a/resolvers/deno/sloppy_imports.rs
+++ b/resolvers/deno/sloppy_imports.rs
@@ -5,6 +5,7 @@ use std::path::Path;
use std::path::PathBuf;
use deno_media_type::MediaType;
+use deno_path_util::url_from_file_path;
use deno_path_util::url_to_file_path;
use url::Url;
@@ -343,7 +344,7 @@ impl<Fs: SloppyImportResolverFs> SloppyImportsResolver<Fs> {
for (probe_path, reason) in probe_paths {
if self.fs.is_file(&probe_path) {
- if let Ok(specifier) = Url::from_file_path(probe_path) {
+ if let Ok(specifier) = url_from_file_path(&probe_path) {
match reason {
SloppyImportsResolutionReason::JsToTs => {
return Some(SloppyImportsResolution::JsToTs(specifier));
@@ -386,6 +387,7 @@ mod test {
struct RealSloppyImportsResolverFs;
impl SloppyImportResolverFs for RealSloppyImportsResolverFs {
fn stat_sync(&self, path: &Path) -> Option<SloppyImportsFsEntry> {
+ #[allow(clippy::disallowed_methods)]
let stat = std::fs::metadata(path).ok()?;
if stat.is_dir() {
Some(SloppyImportsFsEntry::Dir)