mirror of
https://github.com/denoland/deno.git
synced 2025-09-22 10:22:34 +00:00

Extracted out of https://github.com/denoland/deno/pull/30330 This is to reduce code duplication.
94 lines
2.1 KiB
Rust
94 lines
2.1 KiB
Rust
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
mod npm;
|
|
|
|
#[cfg(all(feature = "graph", feature = "deno_ast"))]
|
|
mod module_loader;
|
|
|
|
use std::borrow::Cow;
|
|
use std::collections::HashMap;
|
|
|
|
use deno_cache_dir::file_fetcher::File;
|
|
use deno_media_type::MediaType;
|
|
#[cfg(all(feature = "graph", feature = "deno_ast"))]
|
|
pub use module_loader::*;
|
|
pub use npm::*;
|
|
use parking_lot::RwLock;
|
|
use url::Url;
|
|
|
|
#[derive(Debug, Clone, Copy, Default)]
|
|
pub enum AllowJsonImports {
|
|
Always,
|
|
#[default]
|
|
WithAttribute,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub enum RequestedModuleType<'a> {
|
|
None,
|
|
Json,
|
|
Text,
|
|
Bytes,
|
|
Other(&'a str),
|
|
}
|
|
|
|
#[allow(clippy::disallowed_types)]
|
|
type ArcStr = std::sync::Arc<str>;
|
|
#[allow(clippy::disallowed_types)]
|
|
type ArcBytes = std::sync::Arc<[u8]>;
|
|
|
|
pub enum LoadedModuleOrAsset<'a> {
|
|
Module(LoadedModule<'a>),
|
|
/// An external asset that the caller must fetch.
|
|
ExternalAsset {
|
|
specifier: Cow<'a, Url>,
|
|
/// Whether this was a module the graph knows about.
|
|
statically_analyzable: bool,
|
|
},
|
|
}
|
|
|
|
pub struct LoadedModule<'a> {
|
|
pub specifier: Cow<'a, Url>,
|
|
pub media_type: MediaType,
|
|
pub source: LoadedModuleSource,
|
|
}
|
|
|
|
pub enum LoadedModuleSource {
|
|
ArcStr(ArcStr),
|
|
ArcBytes(ArcBytes),
|
|
String(Cow<'static, str>),
|
|
Bytes(Cow<'static, [u8]>),
|
|
}
|
|
|
|
impl LoadedModuleSource {
|
|
pub fn as_bytes(&self) -> &[u8] {
|
|
match self {
|
|
LoadedModuleSource::ArcStr(text) => text.as_bytes(),
|
|
LoadedModuleSource::ArcBytes(bytes) => bytes,
|
|
LoadedModuleSource::String(text) => text.as_bytes(),
|
|
LoadedModuleSource::Bytes(bytes) => bytes,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[allow(clippy::disallowed_types)]
|
|
pub type MemoryFilesRc = deno_maybe_sync::MaybeArc<MemoryFiles>;
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct MemoryFiles(RwLock<HashMap<Url, File>>);
|
|
|
|
impl MemoryFiles {
|
|
pub fn insert(&self, specifier: Url, file: File) -> Option<File> {
|
|
self.0.write().insert(specifier, file)
|
|
}
|
|
|
|
pub fn clear(&self) {
|
|
self.0.write().clear();
|
|
}
|
|
}
|
|
|
|
impl deno_cache_dir::file_fetcher::MemoryFiles for MemoryFiles {
|
|
fn get(&self, specifier: &Url) -> Option<File> {
|
|
self.0.read().get(specifier).cloned()
|
|
}
|
|
}
|