2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
use crate::cache;
|
2021-08-09 10:53:21 -04:00
|
|
|
use crate::colors;
|
2021-10-06 13:07:04 -04:00
|
|
|
use crate::compat;
|
2021-10-18 13:36:28 -04:00
|
|
|
use crate::compat::NodeEsmResolver;
|
2021-05-10 12:16:39 -04:00
|
|
|
use crate::config_file::ConfigFile;
|
2021-11-08 20:26:39 -05:00
|
|
|
use crate::config_file::MaybeImportsResult;
|
2019-11-04 10:38:52 -05:00
|
|
|
use crate::deno_dir;
|
2021-10-10 17:26:22 -04:00
|
|
|
use crate::emit;
|
2022-01-23 19:27:52 -05:00
|
|
|
use crate::file_fetcher::get_root_cert_store;
|
2020-11-05 19:38:21 -05:00
|
|
|
use crate::file_fetcher::CacheSetting;
|
|
|
|
use crate::file_fetcher::FileFetcher;
|
2019-11-04 10:38:52 -05:00
|
|
|
use crate::flags;
|
2021-12-16 05:45:41 -05:00
|
|
|
use crate::graph_util::graph_lock_or_exit;
|
|
|
|
use crate::graph_util::GraphData;
|
|
|
|
use crate::graph_util::ModuleEntry;
|
2020-02-19 08:17:13 -05:00
|
|
|
use crate::http_cache;
|
2021-10-10 17:26:22 -04:00
|
|
|
use crate::lockfile::as_maybe_locker;
|
2019-11-04 10:38:52 -05:00
|
|
|
use crate::lockfile::Lockfile;
|
2021-10-10 17:26:22 -04:00
|
|
|
use crate::resolver::ImportMapResolver;
|
2021-11-08 20:26:39 -05:00
|
|
|
use crate::resolver::JsxResolver;
|
2020-10-22 20:50:15 -04:00
|
|
|
use crate::source_maps::SourceMapGetter;
|
2021-01-07 21:08:51 -05:00
|
|
|
use crate::version;
|
2020-10-22 20:50:15 -04:00
|
|
|
|
2021-11-16 09:02:28 -05:00
|
|
|
use deno_core::anyhow::anyhow;
|
|
|
|
use deno_core::anyhow::Context;
|
2021-10-10 17:26:22 -04:00
|
|
|
use deno_core::error::custom_error;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::AnyError;
|
2021-12-16 05:45:41 -05:00
|
|
|
use deno_core::futures;
|
2021-07-06 23:48:01 -04:00
|
|
|
use deno_core::parking_lot::Mutex;
|
2021-12-16 05:45:41 -05:00
|
|
|
use deno_core::parking_lot::RwLock;
|
2021-02-17 13:47:18 -05:00
|
|
|
use deno_core::resolve_url;
|
2020-10-22 20:50:15 -04:00
|
|
|
use deno_core::url::Url;
|
2021-09-29 04:47:24 -04:00
|
|
|
use deno_core::CompiledWasmModuleStore;
|
2020-12-15 00:52:55 -05:00
|
|
|
use deno_core::ModuleSource;
|
2020-01-05 11:56:18 -05:00
|
|
|
use deno_core::ModuleSpecifier;
|
2021-12-15 13:22:36 -05:00
|
|
|
use deno_core::ModuleType;
|
2021-09-10 21:38:24 -04:00
|
|
|
use deno_core::SharedArrayBufferStore;
|
2021-11-15 18:25:52 -05:00
|
|
|
use deno_graph::create_graph;
|
2021-12-16 05:45:41 -05:00
|
|
|
use deno_graph::source::CacheInfo;
|
|
|
|
use deno_graph::source::LoadFuture;
|
|
|
|
use deno_graph::source::Loader;
|
2021-11-15 18:25:52 -05:00
|
|
|
use deno_graph::MediaType;
|
2021-09-10 21:38:24 -04:00
|
|
|
use deno_runtime::deno_broadcast_channel::InMemoryBroadcastChannel;
|
2021-12-01 11:13:11 -05:00
|
|
|
use deno_runtime::deno_tls::rustls::RootCertStore;
|
2021-09-10 21:38:24 -04:00
|
|
|
use deno_runtime::deno_web::BlobStore;
|
|
|
|
use deno_runtime::inspector_server::InspectorServer;
|
|
|
|
use deno_runtime::permissions::Permissions;
|
|
|
|
use import_map::ImportMap;
|
2022-01-13 18:17:56 -05:00
|
|
|
use log::warn;
|
2021-06-19 10:14:43 -04:00
|
|
|
use std::collections::HashSet;
|
2019-11-04 10:38:52 -05:00
|
|
|
use std::env;
|
2021-09-24 11:10:42 -04:00
|
|
|
use std::ops::Deref;
|
2019-11-04 10:38:52 -05:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
/// This structure represents state of single "deno" program.
|
|
|
|
///
|
|
|
|
/// It is shared by all created workers (thus V8 isolates).
|
2021-09-24 11:10:42 -04:00
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct ProcState(Arc<Inner>);
|
|
|
|
|
|
|
|
pub struct Inner {
|
2019-11-04 10:38:52 -05:00
|
|
|
/// Flags parsed from `argv` contents.
|
2020-02-26 05:52:15 -05:00
|
|
|
pub flags: flags::Flags,
|
2019-11-04 10:38:52 -05:00
|
|
|
pub dir: deno_dir::DenoDir,
|
2020-12-21 08:04:25 -05:00
|
|
|
pub coverage_dir: Option<String>,
|
2020-11-05 19:38:21 -05:00
|
|
|
pub file_fetcher: FileFetcher,
|
2021-12-16 05:45:41 -05:00
|
|
|
graph_data: Arc<RwLock<GraphData>>,
|
2020-10-23 17:01:54 -04:00
|
|
|
pub lockfile: Option<Arc<Mutex<Lockfile>>>,
|
2021-05-10 12:16:39 -04:00
|
|
|
pub maybe_config_file: Option<ConfigFile>,
|
2021-11-08 20:26:39 -05:00
|
|
|
pub maybe_import_map: Option<Arc<ImportMap>>,
|
2020-09-25 04:24:51 -04:00
|
|
|
pub maybe_inspector_server: Option<Arc<InspectorServer>>,
|
2021-08-07 08:49:38 -04:00
|
|
|
pub root_cert_store: Option<RootCertStore>,
|
2021-07-05 09:34:37 -04:00
|
|
|
pub blob_store: BlobStore,
|
2021-05-22 12:08:24 -04:00
|
|
|
pub broadcast_channel: InMemoryBroadcastChannel,
|
2021-07-06 13:42:52 -04:00
|
|
|
pub shared_array_buffer_store: SharedArrayBufferStore,
|
2021-09-29 04:47:24 -04:00
|
|
|
pub compiled_wasm_module_store: CompiledWasmModuleStore,
|
2021-11-24 10:55:10 -05:00
|
|
|
maybe_resolver: Option<Arc<dyn deno_graph::source::Resolver + Send + Sync>>,
|
2019-11-04 10:38:52 -05:00
|
|
|
}
|
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
impl Deref for ProcState {
|
|
|
|
type Target = Arc<Inner>;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ProcState {
|
|
|
|
pub async fn build(flags: flags::Flags) -> Result<Self, AnyError> {
|
2021-07-27 17:25:09 -04:00
|
|
|
let maybe_custom_root = flags
|
|
|
|
.cache_path
|
|
|
|
.clone()
|
|
|
|
.or_else(|| env::var("DENO_DIR").map(String::into).ok());
|
|
|
|
let dir = deno_dir::DenoDir::new(maybe_custom_root)?;
|
2020-02-19 08:17:13 -05:00
|
|
|
let deps_cache_location = dir.root.join("deps");
|
2020-05-07 08:32:57 -04:00
|
|
|
let http_cache = http_cache::HttpCache::new(&deps_cache_location);
|
2021-08-07 08:49:38 -04:00
|
|
|
|
2022-01-23 19:27:52 -05:00
|
|
|
let root_cert_store = get_root_cert_store(
|
|
|
|
None,
|
|
|
|
flags.ca_stores.clone(),
|
|
|
|
flags.ca_file.clone(),
|
|
|
|
)?;
|
2019-11-04 10:38:52 -05:00
|
|
|
|
2021-08-09 10:53:21 -04:00
|
|
|
if let Some(insecure_allowlist) =
|
2021-08-10 07:19:45 -04:00
|
|
|
flags.unsafely_ignore_certificate_errors.as_ref()
|
2021-08-09 10:53:21 -04:00
|
|
|
{
|
|
|
|
let domains = if insecure_allowlist.is_empty() {
|
2021-08-10 07:19:45 -04:00
|
|
|
"for all hostnames".to_string()
|
2021-08-09 10:53:21 -04:00
|
|
|
} else {
|
|
|
|
format!("for: {}", insecure_allowlist.join(", "))
|
|
|
|
};
|
2021-08-10 12:47:44 -04:00
|
|
|
let msg =
|
|
|
|
format!("DANGER: TLS certificate validation is disabled {}", domains);
|
2021-08-09 10:53:21 -04:00
|
|
|
eprintln!("{}", colors::yellow(msg));
|
|
|
|
}
|
|
|
|
|
2020-11-05 19:38:21 -05:00
|
|
|
let cache_usage = if flags.cached_only {
|
|
|
|
CacheSetting::Only
|
|
|
|
} else if !flags.cache_blocklist.is_empty() {
|
|
|
|
CacheSetting::ReloadSome(flags.cache_blocklist.clone())
|
|
|
|
} else if flags.reload {
|
|
|
|
CacheSetting::ReloadAll
|
|
|
|
} else {
|
|
|
|
CacheSetting::Use
|
|
|
|
};
|
|
|
|
|
2021-07-05 09:34:37 -04:00
|
|
|
let blob_store = BlobStore::default();
|
2021-05-22 12:08:24 -04:00
|
|
|
let broadcast_channel = InMemoryBroadcastChannel::default();
|
2021-07-06 13:42:52 -04:00
|
|
|
let shared_array_buffer_store = SharedArrayBufferStore::default();
|
2021-09-29 04:47:24 -04:00
|
|
|
let compiled_wasm_module_store = CompiledWasmModuleStore::default();
|
2021-04-07 09:22:14 -04:00
|
|
|
|
2020-11-05 19:38:21 -05:00
|
|
|
let file_fetcher = FileFetcher::new(
|
2020-02-19 08:17:13 -05:00
|
|
|
http_cache,
|
2020-11-05 19:38:21 -05:00
|
|
|
cache_usage,
|
|
|
|
!flags.no_remote,
|
2021-08-07 08:49:38 -04:00
|
|
|
Some(root_cert_store.clone()),
|
2021-07-05 09:34:37 -04:00
|
|
|
blob_store.clone(),
|
2021-08-10 07:19:45 -04:00
|
|
|
flags.unsafely_ignore_certificate_errors.clone(),
|
2019-11-04 10:38:52 -05:00
|
|
|
)?;
|
|
|
|
|
|
|
|
let lockfile = if let Some(filename) = &flags.lock {
|
2020-09-24 18:31:17 -04:00
|
|
|
let lockfile = Lockfile::new(filename.clone(), flags.lock_write)?;
|
2020-10-23 17:01:54 -04:00
|
|
|
Some(Arc::new(Mutex::new(lockfile)))
|
2019-11-04 10:38:52 -05:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2022-01-17 20:10:17 -05:00
|
|
|
let maybe_config_file = crate::config_file::discover(&flags)?;
|
2021-05-10 12:16:39 -04:00
|
|
|
|
2021-11-08 20:26:39 -05:00
|
|
|
let maybe_import_map: Option<Arc<ImportMap>> =
|
2020-05-29 10:32:15 -04:00
|
|
|
match flags.import_map_path.as_ref() {
|
|
|
|
None => None,
|
2021-02-17 08:32:57 -05:00
|
|
|
Some(import_map_url) => {
|
|
|
|
let import_map_specifier =
|
2021-07-30 09:03:41 -04:00
|
|
|
deno_core::resolve_url_or_path(import_map_url).context(format!(
|
|
|
|
"Bad URL (\"{}\") for import map.",
|
|
|
|
import_map_url
|
|
|
|
))?;
|
2021-02-17 08:32:57 -05:00
|
|
|
let file = file_fetcher
|
2021-04-11 22:15:43 -04:00
|
|
|
.fetch(&import_map_specifier, &mut Permissions::allow_all())
|
2021-05-04 08:27:20 -04:00
|
|
|
.await
|
|
|
|
.context(format!(
|
|
|
|
"Unable to load '{}' import map",
|
|
|
|
import_map_specifier
|
|
|
|
))?;
|
2021-02-17 08:32:57 -05:00
|
|
|
let import_map =
|
2022-01-13 18:17:56 -05:00
|
|
|
import_map_from_text(&import_map_specifier, &file.source)?;
|
2021-11-08 20:26:39 -05:00
|
|
|
Some(Arc::new(import_map))
|
2020-05-29 10:32:15 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-09-25 04:24:51 -04:00
|
|
|
let maybe_inspect_host = flags.inspect.or(flags.inspect_brk);
|
2021-03-25 14:17:37 -04:00
|
|
|
let maybe_inspector_server = maybe_inspect_host.map(|host| {
|
|
|
|
Arc::new(InspectorServer::new(host, version::get_user_agent()))
|
|
|
|
});
|
2020-09-25 04:24:51 -04:00
|
|
|
|
2020-12-21 08:04:25 -05:00
|
|
|
let coverage_dir = flags
|
|
|
|
.coverage_dir
|
|
|
|
.clone()
|
|
|
|
.or_else(|| env::var("DENO_UNSTABLE_COVERAGE_DIR").ok());
|
|
|
|
|
2021-11-24 10:55:10 -05:00
|
|
|
// FIXME(bartlomieju): `NodeEsmResolver` is not aware of JSX resolver
|
|
|
|
// created below
|
|
|
|
let node_resolver = NodeEsmResolver::new(
|
|
|
|
maybe_import_map.clone().map(ImportMapResolver::new),
|
|
|
|
);
|
|
|
|
let maybe_import_map_resolver =
|
|
|
|
maybe_import_map.clone().map(ImportMapResolver::new);
|
|
|
|
let maybe_jsx_resolver = maybe_config_file
|
|
|
|
.as_ref()
|
|
|
|
.map(|cf| {
|
|
|
|
cf.to_maybe_jsx_import_source_module()
|
|
|
|
.map(|im| JsxResolver::new(im, maybe_import_map_resolver.clone()))
|
|
|
|
})
|
|
|
|
.flatten();
|
|
|
|
let maybe_resolver: Option<
|
|
|
|
Arc<dyn deno_graph::source::Resolver + Send + Sync>,
|
|
|
|
> = if flags.compat {
|
|
|
|
Some(Arc::new(node_resolver))
|
|
|
|
} else if let Some(jsx_resolver) = maybe_jsx_resolver {
|
|
|
|
// the JSX resolver offloads to the import map if present, otherwise uses
|
|
|
|
// the default Deno explicit import resolution.
|
|
|
|
Some(Arc::new(jsx_resolver))
|
|
|
|
} else if let Some(import_map_resolver) = maybe_import_map_resolver {
|
|
|
|
Some(Arc::new(import_map_resolver))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
Ok(ProcState(Arc::new(Inner {
|
2019-11-04 10:38:52 -05:00
|
|
|
dir,
|
2020-12-21 08:04:25 -05:00
|
|
|
coverage_dir,
|
2019-11-04 10:38:52 -05:00
|
|
|
flags,
|
|
|
|
file_fetcher,
|
2021-10-19 10:01:46 -04:00
|
|
|
graph_data: Default::default(),
|
2019-11-04 10:38:52 -05:00
|
|
|
lockfile,
|
2021-05-10 12:16:39 -04:00
|
|
|
maybe_config_file,
|
2020-05-29 10:32:15 -04:00
|
|
|
maybe_import_map,
|
2020-09-25 04:24:51 -04:00
|
|
|
maybe_inspector_server,
|
2021-08-07 08:49:38 -04:00
|
|
|
root_cert_store: Some(root_cert_store.clone()),
|
2021-07-05 09:34:37 -04:00
|
|
|
blob_store,
|
2021-05-22 12:08:24 -04:00
|
|
|
broadcast_channel,
|
2021-07-06 13:42:52 -04:00
|
|
|
shared_array_buffer_store,
|
2021-09-29 04:47:24 -04:00
|
|
|
compiled_wasm_module_store,
|
2021-11-24 10:55:10 -05:00
|
|
|
maybe_resolver,
|
2021-09-24 11:10:42 -04:00
|
|
|
})))
|
2019-11-04 10:38:52 -05:00
|
|
|
}
|
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
/// Return any imports that should be brought into the scope of the module
|
|
|
|
/// graph.
|
2021-11-08 20:26:39 -05:00
|
|
|
fn get_maybe_imports(&self) -> MaybeImportsResult {
|
2021-10-10 17:26:22 -04:00
|
|
|
let mut imports = Vec::new();
|
|
|
|
if let Some(config_file) = &self.maybe_config_file {
|
2021-11-08 20:26:39 -05:00
|
|
|
if let Some(config_imports) = config_file.to_maybe_imports()? {
|
2021-10-10 17:26:22 -04:00
|
|
|
imports.extend(config_imports);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if self.flags.compat {
|
|
|
|
imports.extend(compat::get_node_imports());
|
|
|
|
}
|
|
|
|
if imports.is_empty() {
|
2021-11-08 20:26:39 -05:00
|
|
|
Ok(None)
|
2021-10-10 17:26:22 -04:00
|
|
|
} else {
|
2021-11-08 20:26:39 -05:00
|
|
|
Ok(Some(imports))
|
2021-10-10 17:26:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-15 18:25:52 -05:00
|
|
|
/// This method must be called for a module or a static importer of that
|
|
|
|
/// module before attempting to `load()` it from a `JsRuntime`. It will
|
2021-12-16 05:45:41 -05:00
|
|
|
/// populate `self.graph_data` in memory with the necessary source code, write
|
|
|
|
/// emits where necessary or report any module graph / type checking errors.
|
2021-10-10 17:26:22 -04:00
|
|
|
pub(crate) async fn prepare_module_load(
|
2021-09-24 11:10:42 -04:00
|
|
|
&self,
|
2021-10-10 17:26:22 -04:00
|
|
|
roots: Vec<ModuleSpecifier>,
|
|
|
|
is_dynamic: bool,
|
|
|
|
lib: emit::TypeLib,
|
2021-05-17 03:44:38 -04:00
|
|
|
root_permissions: Permissions,
|
|
|
|
dynamic_permissions: Permissions,
|
2021-11-15 18:25:52 -05:00
|
|
|
reload_on_watch: bool,
|
2021-04-28 14:17:04 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2021-11-15 18:25:52 -05:00
|
|
|
// TODO(bartlomieju): this is very make-shift, is there an existing API
|
|
|
|
// that we could include it like with "maybe_imports"?
|
|
|
|
let roots = if self.flags.compat {
|
|
|
|
let mut r = vec![compat::GLOBAL_URL.clone()];
|
|
|
|
r.extend(roots);
|
|
|
|
r
|
|
|
|
} else {
|
|
|
|
roots
|
|
|
|
};
|
|
|
|
if !reload_on_watch {
|
2021-12-16 05:45:41 -05:00
|
|
|
let graph_data = self.graph_data.read();
|
2021-11-29 17:23:30 -05:00
|
|
|
if self.flags.check == flags::CheckFlag::None
|
2021-12-16 05:45:41 -05:00
|
|
|
|| graph_data.is_type_checked(&roots, &lib)
|
2021-11-15 18:25:52 -05:00
|
|
|
{
|
2021-12-22 08:25:06 -05:00
|
|
|
if let Some(result) = graph_data.check(
|
|
|
|
&roots,
|
|
|
|
self.flags.check != flags::CheckFlag::None,
|
|
|
|
false,
|
|
|
|
) {
|
2021-11-15 18:25:52 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-10 17:26:22 -04:00
|
|
|
let mut cache = cache::FetchCacher::new(
|
|
|
|
self.dir.gen_cache.clone(),
|
|
|
|
self.file_fetcher.clone(),
|
|
|
|
root_permissions.clone(),
|
|
|
|
dynamic_permissions.clone(),
|
|
|
|
);
|
|
|
|
let maybe_locker = as_maybe_locker(self.lockfile.clone());
|
2021-11-08 20:26:39 -05:00
|
|
|
let maybe_imports = self.get_maybe_imports()?;
|
2021-11-24 10:55:10 -05:00
|
|
|
let maybe_resolver: Option<&dyn deno_graph::source::Resolver> =
|
|
|
|
if let Some(resolver) = &self.maybe_resolver {
|
|
|
|
Some(resolver.as_ref())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2021-12-16 05:45:41 -05:00
|
|
|
|
|
|
|
struct ProcStateLoader<'a> {
|
|
|
|
inner: &'a mut cache::FetchCacher,
|
|
|
|
graph_data: Arc<RwLock<GraphData>>,
|
|
|
|
reload: bool,
|
|
|
|
}
|
|
|
|
impl Loader for ProcStateLoader<'_> {
|
|
|
|
fn get_cache_info(
|
|
|
|
&self,
|
|
|
|
specifier: &ModuleSpecifier,
|
|
|
|
) -> Option<CacheInfo> {
|
|
|
|
self.inner.get_cache_info(specifier)
|
|
|
|
}
|
|
|
|
fn load(
|
|
|
|
&mut self,
|
|
|
|
specifier: &ModuleSpecifier,
|
|
|
|
is_dynamic: bool,
|
|
|
|
) -> LoadFuture {
|
|
|
|
let graph_data = self.graph_data.read();
|
|
|
|
let found_specifier = graph_data.follow_redirect(specifier);
|
|
|
|
match graph_data.get(&found_specifier) {
|
2022-01-13 11:58:00 -05:00
|
|
|
Some(_) if !self.reload => {
|
|
|
|
Box::pin(futures::future::ready(Err(anyhow!(""))))
|
|
|
|
}
|
2021-12-16 05:45:41 -05:00
|
|
|
_ => self.inner.load(specifier, is_dynamic),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let mut loader = ProcStateLoader {
|
|
|
|
inner: &mut cache,
|
|
|
|
graph_data: self.graph_data.clone(),
|
|
|
|
reload: reload_on_watch,
|
|
|
|
};
|
2021-11-15 18:25:52 -05:00
|
|
|
let graph = create_graph(
|
|
|
|
roots.clone(),
|
2021-10-10 17:26:22 -04:00
|
|
|
is_dynamic,
|
|
|
|
maybe_imports,
|
2021-12-16 05:45:41 -05:00
|
|
|
&mut loader,
|
2021-10-18 13:36:28 -04:00
|
|
|
maybe_resolver,
|
2021-10-10 17:26:22 -04:00
|
|
|
maybe_locker,
|
|
|
|
None,
|
2022-01-13 11:58:00 -05:00
|
|
|
None,
|
2021-10-10 17:26:22 -04:00
|
|
|
)
|
|
|
|
.await;
|
|
|
|
// If there was a locker, validate the integrity of all the modules in the
|
|
|
|
// locker.
|
2021-12-16 05:45:41 -05:00
|
|
|
graph_lock_or_exit(&graph);
|
2021-10-10 17:26:22 -04:00
|
|
|
|
|
|
|
// Determine any modules that have already been emitted this session and
|
|
|
|
// should be skipped.
|
|
|
|
let reload_exclusions: HashSet<ModuleSpecifier> = {
|
2021-12-16 05:45:41 -05:00
|
|
|
let graph_data = self.graph_data.read();
|
|
|
|
graph_data.entries().into_keys().cloned().collect()
|
2021-06-19 10:14:43 -04:00
|
|
|
};
|
2021-04-28 14:17:04 -04:00
|
|
|
|
2021-12-16 05:45:41 -05:00
|
|
|
{
|
|
|
|
let mut graph_data = self.graph_data.write();
|
|
|
|
graph_data.add_graph(&graph, reload_on_watch);
|
2021-12-22 08:25:06 -05:00
|
|
|
let check_js = self
|
|
|
|
.maybe_config_file
|
|
|
|
.as_ref()
|
|
|
|
.map(|cf| cf.get_check_js())
|
|
|
|
.unwrap_or(false);
|
2021-12-16 05:45:41 -05:00
|
|
|
graph_data
|
2021-12-22 08:25:06 -05:00
|
|
|
.check(&roots, self.flags.check != flags::CheckFlag::None, check_js)
|
2021-12-16 05:45:41 -05:00
|
|
|
.unwrap()?;
|
|
|
|
}
|
|
|
|
|
2021-11-29 17:23:30 -05:00
|
|
|
let config_type = if self.flags.check == flags::CheckFlag::None {
|
2021-10-10 17:26:22 -04:00
|
|
|
emit::ConfigType::Emit
|
2021-04-28 14:17:04 -04:00
|
|
|
} else {
|
2021-10-10 17:26:22 -04:00
|
|
|
emit::ConfigType::Check {
|
|
|
|
tsc_emit: true,
|
2021-11-15 18:25:52 -05:00
|
|
|
lib: lib.clone(),
|
2021-04-28 14:17:04 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
let (ts_config, maybe_ignored_options) =
|
|
|
|
emit::get_ts_config(config_type, self.maybe_config_file.as_ref(), None)?;
|
2021-12-16 05:45:41 -05:00
|
|
|
|
|
|
|
if let Some(ignored_options) = maybe_ignored_options {
|
|
|
|
log::warn!("{}", ignored_options);
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.flags.check == flags::CheckFlag::None {
|
|
|
|
let options = emit::EmitOptions {
|
|
|
|
ts_config,
|
|
|
|
reload: self.flags.reload,
|
|
|
|
reload_exclusions,
|
2021-10-10 17:26:22 -04:00
|
|
|
};
|
2021-12-16 05:45:41 -05:00
|
|
|
let emit_result = emit::emit(&graph, &mut cache, options)?;
|
2021-10-10 17:26:22 -04:00
|
|
|
log::debug!("{}", emit_result.stats);
|
2021-12-16 05:45:41 -05:00
|
|
|
} else {
|
|
|
|
let maybe_config_specifier = self
|
|
|
|
.maybe_config_file
|
|
|
|
.as_ref()
|
|
|
|
.map(|cf| cf.specifier.clone());
|
|
|
|
let options = emit::CheckOptions {
|
|
|
|
check: self.flags.check.clone(),
|
|
|
|
debug: self.flags.log_level == Some(log::Level::Debug),
|
|
|
|
emit_with_diagnostics: false,
|
|
|
|
maybe_config_specifier,
|
|
|
|
ts_config,
|
|
|
|
log_checks: true,
|
|
|
|
reload: self.flags.reload,
|
|
|
|
reload_exclusions,
|
|
|
|
};
|
|
|
|
let emit_result = emit::check_and_maybe_emit(
|
|
|
|
&roots,
|
|
|
|
self.graph_data.clone(),
|
|
|
|
&mut cache,
|
|
|
|
options,
|
|
|
|
)?;
|
2021-11-15 18:25:52 -05:00
|
|
|
if !emit_result.diagnostics.is_empty() {
|
2021-12-16 05:45:41 -05:00
|
|
|
return Err(anyhow!(emit_result.diagnostics));
|
2021-10-10 17:26:22 -04:00
|
|
|
}
|
2021-12-16 05:45:41 -05:00
|
|
|
log::debug!("{}", emit_result.stats);
|
2021-10-10 17:26:22 -04:00
|
|
|
}
|
|
|
|
|
2021-12-16 05:45:41 -05:00
|
|
|
if self.flags.check != flags::CheckFlag::None {
|
|
|
|
let mut graph_data = self.graph_data.write();
|
|
|
|
graph_data.set_type_checked(&roots, &lib);
|
2021-10-10 17:26:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// any updates to the lockfile should be updated now
|
2021-04-28 14:17:04 -04:00
|
|
|
if let Some(ref lockfile) = self.lockfile {
|
2021-07-06 23:48:01 -04:00
|
|
|
let g = lockfile.lock();
|
2021-04-28 14:17:04 -04:00
|
|
|
g.write()?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
pub(crate) fn resolve(
|
2021-09-24 11:10:42 -04:00
|
|
|
&self,
|
2021-10-10 17:26:22 -04:00
|
|
|
specifier: &str,
|
|
|
|
referrer: &str,
|
|
|
|
) -> Result<ModuleSpecifier, AnyError> {
|
2021-11-23 16:30:52 -05:00
|
|
|
if let Ok(referrer) = deno_core::resolve_url_or_path(referrer) {
|
2021-12-16 05:45:41 -05:00
|
|
|
let graph_data = self.graph_data.read();
|
|
|
|
let found_referrer = graph_data.follow_redirect(&referrer);
|
|
|
|
let maybe_resolved = match graph_data.get(&found_referrer) {
|
2021-11-23 16:30:52 -05:00
|
|
|
Some(ModuleEntry::Module { dependencies, .. }) => dependencies
|
|
|
|
.get(specifier)
|
|
|
|
.and_then(|dep| dep.maybe_code.clone()),
|
|
|
|
_ => None,
|
2021-10-19 10:01:46 -04:00
|
|
|
};
|
|
|
|
|
2021-11-23 16:30:52 -05:00
|
|
|
match maybe_resolved {
|
|
|
|
Some(Ok((specifier, _))) => return Ok(specifier),
|
|
|
|
Some(Err(err)) => {
|
|
|
|
return Err(custom_error(
|
|
|
|
"TypeError",
|
|
|
|
format!("{}\n", err.to_string_with_range()),
|
|
|
|
))
|
2021-10-10 17:26:22 -04:00
|
|
|
}
|
2021-11-23 16:30:52 -05:00
|
|
|
None => {}
|
2020-09-24 18:31:17 -04:00
|
|
|
}
|
2021-10-10 17:26:22 -04:00
|
|
|
}
|
2021-10-19 10:01:46 -04:00
|
|
|
|
2021-11-24 10:55:10 -05:00
|
|
|
// FIXME(bartlomieju): this is a hacky way to provide compatibility with REPL
|
|
|
|
// and `Deno.core.evalContext` API. Ideally we should always have a referrer filled
|
|
|
|
// but sadly that's not the case due to missing APIs in V8.
|
2021-10-10 17:26:22 -04:00
|
|
|
let referrer = if referrer.is_empty() && self.flags.repl {
|
2021-11-24 10:55:10 -05:00
|
|
|
deno_core::resolve_url_or_path("./$deno$repl.ts").unwrap()
|
2020-09-24 18:31:17 -04:00
|
|
|
} else {
|
2021-11-24 10:55:10 -05:00
|
|
|
deno_core::resolve_url_or_path(referrer).unwrap()
|
2020-10-22 20:50:15 -04:00
|
|
|
};
|
2021-11-24 10:55:10 -05:00
|
|
|
|
|
|
|
let maybe_resolver: Option<&dyn deno_graph::source::Resolver> =
|
|
|
|
if let Some(resolver) = &self.maybe_resolver {
|
|
|
|
Some(resolver.as_ref())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
if let Some(resolver) = &maybe_resolver {
|
|
|
|
resolver.resolve(specifier, &referrer)
|
2021-10-10 17:26:22 -04:00
|
|
|
} else {
|
2021-11-24 10:55:10 -05:00
|
|
|
deno_core::resolve_import(specifier, referrer.as_str())
|
|
|
|
.map_err(|err| err.into())
|
2020-07-02 11:54:51 -04:00
|
|
|
}
|
2020-05-29 10:32:15 -04:00
|
|
|
}
|
|
|
|
|
2020-12-15 00:52:55 -05:00
|
|
|
pub fn load(
|
2020-05-29 10:32:15 -04:00
|
|
|
&self,
|
2020-12-15 00:52:55 -05:00
|
|
|
specifier: ModuleSpecifier,
|
2020-10-22 20:50:15 -04:00
|
|
|
maybe_referrer: Option<ModuleSpecifier>,
|
2021-10-10 17:26:22 -04:00
|
|
|
is_dynamic: bool,
|
2020-12-15 00:52:55 -05:00
|
|
|
) -> Result<ModuleSource, AnyError> {
|
2021-10-10 17:26:22 -04:00
|
|
|
log::debug!(
|
|
|
|
"specifier: {} maybe_referrer: {} is_dynamic: {}",
|
|
|
|
specifier,
|
|
|
|
maybe_referrer
|
|
|
|
.as_ref()
|
|
|
|
.map(|s| s.to_string())
|
|
|
|
.unwrap_or_else(|| "<none>".to_string()),
|
|
|
|
is_dynamic
|
|
|
|
);
|
2021-10-19 10:01:46 -04:00
|
|
|
|
2021-12-16 05:45:41 -05:00
|
|
|
let graph_data = self.graph_data.read();
|
|
|
|
let found = graph_data.follow_redirect(&specifier);
|
|
|
|
match graph_data.get(&found) {
|
2021-12-15 13:22:36 -05:00
|
|
|
Some(ModuleEntry::Module {
|
|
|
|
code, media_type, ..
|
2021-12-16 05:45:41 -05:00
|
|
|
}) => {
|
|
|
|
let code = match media_type {
|
|
|
|
MediaType::JavaScript
|
|
|
|
| MediaType::Unknown
|
|
|
|
| MediaType::Cjs
|
|
|
|
| MediaType::Mjs
|
|
|
|
| MediaType::Json => code.as_ref().clone(),
|
|
|
|
MediaType::Dts => "".to_string(),
|
|
|
|
_ => {
|
|
|
|
let emit_path = self
|
|
|
|
.dir
|
|
|
|
.gen_cache
|
|
|
|
.get_cache_filename_with_extension(&found, "js")
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
unreachable!("Unable to get cache filename: {}", &found)
|
|
|
|
});
|
|
|
|
match self.dir.gen_cache.get(&emit_path) {
|
|
|
|
Ok(b) => String::from_utf8(b).unwrap(),
|
|
|
|
Err(_) => unreachable!("Unexpected missing emit: {}", found),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ok(ModuleSource {
|
|
|
|
code,
|
|
|
|
module_url_specified: specifier.to_string(),
|
|
|
|
module_url_found: found.to_string(),
|
|
|
|
module_type: match media_type {
|
|
|
|
MediaType::Json => ModuleType::Json,
|
|
|
|
_ => ModuleType::JavaScript,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2021-11-15 18:25:52 -05:00
|
|
|
_ => Err(anyhow!(
|
|
|
|
"Loading unprepared module: {}",
|
|
|
|
specifier.to_string()
|
|
|
|
)),
|
2021-10-19 10:01:46 -04:00
|
|
|
}
|
2019-11-04 10:38:52 -05:00
|
|
|
}
|
|
|
|
|
2020-12-15 00:52:55 -05:00
|
|
|
// TODO(@kitsonk) this should be refactored to get it from the module graph
|
2020-10-22 20:50:15 -04:00
|
|
|
fn get_emit(&self, url: &Url) -> Option<(Vec<u8>, Option<Vec<u8>>)> {
|
|
|
|
let emit_path = self
|
|
|
|
.dir
|
|
|
|
.gen_cache
|
2021-07-30 09:03:41 -04:00
|
|
|
.get_cache_filename_with_extension(url, "js")?;
|
2020-10-22 20:50:15 -04:00
|
|
|
let emit_map_path = self
|
|
|
|
.dir
|
|
|
|
.gen_cache
|
2021-07-30 09:03:41 -04:00
|
|
|
.get_cache_filename_with_extension(url, "js.map")?;
|
2020-10-22 20:50:15 -04:00
|
|
|
if let Ok(code) = self.dir.gen_cache.get(&emit_path) {
|
|
|
|
let maybe_map = if let Ok(map) = self.dir.gen_cache.get(&emit_map_path) {
|
|
|
|
Some(map)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
Some((code, maybe_map))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2019-11-04 10:38:52 -05:00
|
|
|
}
|
|
|
|
|
2020-10-22 20:50:15 -04:00
|
|
|
// TODO(@kitsonk) this is only temporary, but should be refactored to somewhere
|
|
|
|
// else, like a refactored file_fetcher.
|
2021-09-24 11:10:42 -04:00
|
|
|
impl SourceMapGetter for ProcState {
|
2020-10-22 20:50:15 -04:00
|
|
|
fn get_source_map(&self, file_name: &str) -> Option<Vec<u8>> {
|
2021-02-17 13:47:18 -05:00
|
|
|
if let Ok(specifier) = resolve_url(file_name) {
|
2021-11-15 18:25:52 -05:00
|
|
|
match specifier.scheme() {
|
|
|
|
// we should only be looking for emits for schemes that denote external
|
|
|
|
// modules, which the disk_cache supports
|
|
|
|
"wasm" | "file" | "http" | "https" | "data" | "blob" => (),
|
|
|
|
_ => return None,
|
|
|
|
}
|
2021-02-17 13:47:18 -05:00
|
|
|
if let Some((code, maybe_map)) = self.get_emit(&specifier) {
|
2021-02-07 18:14:05 -05:00
|
|
|
let code = String::from_utf8(code).unwrap();
|
|
|
|
source_map_from_code(code).or(maybe_map)
|
2021-10-10 17:26:22 -04:00
|
|
|
} else if let Ok(source) = self.load(specifier, None, false) {
|
2021-01-05 18:10:36 -05:00
|
|
|
source_map_from_code(source.code)
|
2020-10-22 20:50:15 -04:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2020-06-15 11:53:05 -04:00
|
|
|
} else {
|
2020-10-22 20:50:15 -04:00
|
|
|
None
|
2020-06-10 10:02:41 -04:00
|
|
|
}
|
2020-10-22 20:50:15 -04:00
|
|
|
}
|
2020-06-01 15:01:51 -04:00
|
|
|
|
2020-10-22 20:50:15 -04:00
|
|
|
fn get_source_line(
|
|
|
|
&self,
|
|
|
|
file_name: &str,
|
|
|
|
line_number: usize,
|
|
|
|
) -> Option<String> {
|
2021-02-17 13:47:18 -05:00
|
|
|
if let Ok(specifier) = resolve_url(file_name) {
|
2020-11-15 21:19:31 -05:00
|
|
|
self.file_fetcher.get_source(&specifier).map(|out| {
|
2020-11-05 19:38:21 -05:00
|
|
|
// Do NOT use .lines(): it skips the terminating empty line.
|
|
|
|
// (due to internally using .split_terminator() instead of .split())
|
|
|
|
let lines: Vec<&str> = out.source.split('\n').collect();
|
2021-10-18 12:05:36 -04:00
|
|
|
if line_number >= lines.len() {
|
|
|
|
format!(
|
|
|
|
"{} Couldn't format source line: Line {} is out of bounds (source may have changed at runtime)",
|
|
|
|
crate::colors::yellow("Warning"), line_number + 1,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
lines[line_number].to_string()
|
|
|
|
}
|
2020-11-05 19:38:21 -05:00
|
|
|
})
|
2020-10-22 20:50:15 -04:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2020-06-01 15:01:51 -04:00
|
|
|
}
|
|
|
|
|
2022-01-13 18:17:56 -05:00
|
|
|
pub fn import_map_from_text(
|
|
|
|
specifier: &Url,
|
|
|
|
json_text: &str,
|
|
|
|
) -> Result<ImportMap, AnyError> {
|
|
|
|
let result = ImportMap::from_json_with_diagnostics(specifier, json_text)?;
|
|
|
|
if !result.diagnostics.is_empty() {
|
|
|
|
warn!(
|
|
|
|
"Import map diagnostics:\n{}",
|
|
|
|
result
|
|
|
|
.diagnostics
|
|
|
|
.into_iter()
|
|
|
|
.map(|d| format!(" - {}", d))
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.join("\n")
|
|
|
|
)
|
|
|
|
}
|
|
|
|
Ok(result.import_map)
|
|
|
|
}
|
|
|
|
|
2021-01-05 18:10:36 -05:00
|
|
|
fn source_map_from_code(code: String) -> Option<Vec<u8>> {
|
|
|
|
let lines: Vec<&str> = code.split('\n').collect();
|
|
|
|
if let Some(last_line) = lines.last() {
|
|
|
|
if last_line
|
|
|
|
.starts_with("//# sourceMappingURL=data:application/json;base64,")
|
|
|
|
{
|
|
|
|
let input = last_line.trim_start_matches(
|
|
|
|
"//# sourceMappingURL=data:application/json;base64,",
|
|
|
|
);
|
|
|
|
let decoded_map = base64::decode(input)
|
|
|
|
.expect("Unable to decode source map from emitted file.");
|
|
|
|
Some(decoded_map)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|