2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2019-09-03 22:12:21 -04:00
|
|
|
|
2020-09-14 08:27:44 -04:00
|
|
|
mod ast;
|
2021-02-15 21:50:27 -05:00
|
|
|
mod auth_tokens;
|
2021-10-10 17:26:22 -04:00
|
|
|
mod cache;
|
2020-05-11 17:33:36 -04:00
|
|
|
mod checksum;
|
2021-10-04 19:35:55 -04:00
|
|
|
mod compat;
|
2021-05-10 12:16:39 -04:00
|
|
|
mod config_file;
|
2020-10-12 07:25:25 -04:00
|
|
|
mod deno_dir;
|
|
|
|
mod diagnostics;
|
2020-05-23 09:22:08 -04:00
|
|
|
mod diff;
|
2020-05-11 17:33:36 -04:00
|
|
|
mod disk_cache;
|
2021-10-10 17:26:22 -04:00
|
|
|
mod emit;
|
2020-10-12 07:25:25 -04:00
|
|
|
mod errors;
|
2020-05-11 17:33:36 -04:00
|
|
|
mod file_fetcher;
|
2020-09-11 12:19:49 -04:00
|
|
|
mod file_watcher;
|
2020-10-12 07:25:25 -04:00
|
|
|
mod flags;
|
2020-06-26 08:09:02 -04:00
|
|
|
mod flags_allow_net;
|
2020-10-12 07:25:25 -04:00
|
|
|
mod fmt_errors;
|
2020-11-16 14:48:50 -05:00
|
|
|
mod fs_util;
|
2020-10-12 07:25:25 -04:00
|
|
|
mod http_cache;
|
2020-05-11 17:33:36 -04:00
|
|
|
mod http_util;
|
|
|
|
mod lockfile;
|
2021-05-11 00:54:10 -04:00
|
|
|
mod logger;
|
2020-12-07 05:46:39 -05:00
|
|
|
mod lsp;
|
2020-10-13 07:35:35 -04:00
|
|
|
mod module_loader;
|
2020-10-12 07:25:25 -04:00
|
|
|
mod ops;
|
2021-09-24 11:10:42 -04:00
|
|
|
mod proc_state;
|
2021-10-10 17:26:22 -04:00
|
|
|
mod resolver;
|
2020-10-12 07:25:25 -04:00
|
|
|
mod source_maps;
|
2020-11-30 14:35:12 -05:00
|
|
|
mod standalone;
|
2020-08-03 17:39:48 -04:00
|
|
|
mod text_encoding;
|
2020-05-11 17:33:36 -04:00
|
|
|
mod tokio_util;
|
2020-11-19 13:19:34 -05:00
|
|
|
mod tools;
|
2020-11-02 14:41:20 -05:00
|
|
|
mod tsc;
|
2021-04-13 10:24:45 -04:00
|
|
|
mod unix_util;
|
2020-10-12 07:25:25 -04:00
|
|
|
mod version;
|
2021-10-25 11:16:16 -04:00
|
|
|
mod windows_util;
|
2020-05-11 17:33:36 -04:00
|
|
|
|
2020-11-05 19:38:21 -05:00
|
|
|
use crate::file_fetcher::File;
|
2021-05-10 02:06:13 -04:00
|
|
|
use crate::file_watcher::ResolutionResult;
|
2021-09-03 19:33:35 -04:00
|
|
|
use crate::flags::BundleFlags;
|
|
|
|
use crate::flags::CacheFlags;
|
|
|
|
use crate::flags::CompileFlags;
|
|
|
|
use crate::flags::CompletionsFlags;
|
|
|
|
use crate::flags::CoverageFlags;
|
2020-11-30 14:35:12 -05:00
|
|
|
use crate::flags::DenoSubcommand;
|
2021-09-03 19:33:35 -04:00
|
|
|
use crate::flags::DocFlags;
|
|
|
|
use crate::flags::EvalFlags;
|
2020-11-30 14:35:12 -05:00
|
|
|
use crate::flags::Flags;
|
2021-09-03 19:33:35 -04:00
|
|
|
use crate::flags::FmtFlags;
|
|
|
|
use crate::flags::InfoFlags;
|
|
|
|
use crate::flags::InstallFlags;
|
|
|
|
use crate::flags::LintFlags;
|
|
|
|
use crate::flags::ReplFlags;
|
|
|
|
use crate::flags::RunFlags;
|
|
|
|
use crate::flags::TestFlags;
|
2021-09-30 11:38:07 -04:00
|
|
|
use crate::flags::UninstallFlags;
|
2021-09-03 19:33:35 -04:00
|
|
|
use crate::flags::UpgradeFlags;
|
2020-12-11 12:49:26 -05:00
|
|
|
use crate::fmt_errors::PrettyJsError;
|
|
|
|
use crate::module_loader::CliModuleLoader;
|
2021-09-24 11:10:42 -04:00
|
|
|
use crate::proc_state::ProcState;
|
2021-10-10 17:26:22 -04:00
|
|
|
use crate::resolver::ImportMapResolver;
|
2020-12-11 12:49:26 -05:00
|
|
|
use crate::source_maps::apply_source_map;
|
2020-11-30 14:35:12 -05:00
|
|
|
use crate::tools::installer::infer_name_from_url;
|
2021-09-07 10:39:32 -04:00
|
|
|
use deno_ast::MediaType;
|
2020-10-23 07:05:41 -04:00
|
|
|
use deno_core::error::generic_error;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::AnyError;
|
2020-09-21 12:36:37 -04:00
|
|
|
use deno_core::futures::future::FutureExt;
|
|
|
|
use deno_core::futures::Future;
|
2021-06-21 19:45:41 -04:00
|
|
|
use deno_core::located_script_name;
|
2021-02-17 13:47:18 -05:00
|
|
|
use deno_core::resolve_url_or_path;
|
2020-09-21 12:36:37 -04:00
|
|
|
use deno_core::serde_json;
|
|
|
|
use deno_core::serde_json::json;
|
2020-05-11 17:33:36 -04:00
|
|
|
use deno_core::v8_set_flags;
|
2021-08-17 06:08:39 -04:00
|
|
|
use deno_core::JsRuntime;
|
2020-05-11 17:33:36 -04:00
|
|
|
use deno_core::ModuleSpecifier;
|
2021-09-12 12:04:17 -04:00
|
|
|
use deno_runtime::colors;
|
2020-12-13 13:45:53 -05:00
|
|
|
use deno_runtime::ops::worker_host::CreateWebWorkerCb;
|
|
|
|
use deno_runtime::permissions::Permissions;
|
|
|
|
use deno_runtime::web_worker::WebWorker;
|
|
|
|
use deno_runtime::web_worker::WebWorkerOptions;
|
|
|
|
use deno_runtime::worker::MainWorker;
|
|
|
|
use deno_runtime::worker::WorkerOptions;
|
2021-10-05 16:41:14 -04:00
|
|
|
use deno_runtime::BootstrapOptions;
|
2021-03-26 12:34:25 -04:00
|
|
|
use log::debug;
|
|
|
|
use log::info;
|
2020-05-11 17:33:36 -04:00
|
|
|
use std::env;
|
2020-06-11 10:58:09 -04:00
|
|
|
use std::io::Read;
|
2020-05-11 17:33:36 -04:00
|
|
|
use std::io::Write;
|
2020-08-07 18:51:59 -04:00
|
|
|
use std::iter::once;
|
2020-05-11 17:33:36 -04:00
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::pin::Pin;
|
2020-10-11 22:25:27 -04:00
|
|
|
use std::rc::Rc;
|
2020-08-18 12:30:13 -04:00
|
|
|
use std::sync::Arc;
|
2020-05-11 17:33:36 -04:00
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
fn create_web_worker_callback(ps: ProcState) -> Arc<CreateWebWorkerCb> {
|
2020-12-11 12:49:26 -05:00
|
|
|
Arc::new(move |args| {
|
2021-09-24 11:10:42 -04:00
|
|
|
let global_state_ = ps.clone();
|
2020-12-11 12:49:26 -05:00
|
|
|
let js_error_create_fn = Rc::new(move |core_js_error| {
|
|
|
|
let source_mapped_error =
|
|
|
|
apply_source_map(&core_js_error, global_state_.clone());
|
|
|
|
PrettyJsError::create(source_mapped_error)
|
|
|
|
});
|
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
let maybe_inspector_server = ps.maybe_inspector_server.clone();
|
2020-12-11 12:49:26 -05:00
|
|
|
|
2021-01-06 15:31:16 -05:00
|
|
|
let module_loader = CliModuleLoader::new_for_worker(
|
2021-09-24 11:10:42 -04:00
|
|
|
ps.clone(),
|
2021-01-06 15:31:16 -05:00
|
|
|
args.parent_permissions.clone(),
|
|
|
|
);
|
2021-09-24 11:10:42 -04:00
|
|
|
let create_web_worker_cb = create_web_worker_callback(ps.clone());
|
2020-12-11 12:49:26 -05:00
|
|
|
|
|
|
|
let options = WebWorkerOptions {
|
2021-10-05 16:41:14 -04:00
|
|
|
bootstrap: BootstrapOptions {
|
|
|
|
args: ps.flags.argv.clone(),
|
|
|
|
apply_source_maps: true,
|
|
|
|
cpu_count: num_cpus::get(),
|
|
|
|
debug_flag: ps
|
|
|
|
.flags
|
|
|
|
.log_level
|
|
|
|
.map_or(false, |l| l == log::Level::Debug),
|
|
|
|
enable_testing_features: ps.flags.enable_testing_features,
|
|
|
|
location: Some(args.main_module.clone()),
|
|
|
|
no_color: !colors::use_color(),
|
|
|
|
runtime_version: version::deno(),
|
|
|
|
ts_version: version::TYPESCRIPT.to_string(),
|
|
|
|
unstable: ps.flags.unstable,
|
|
|
|
},
|
2021-10-08 11:03:49 -04:00
|
|
|
extensions: vec![],
|
2021-09-24 11:10:42 -04:00
|
|
|
unsafely_ignore_certificate_errors: ps
|
2021-08-09 10:53:21 -04:00
|
|
|
.flags
|
2021-08-10 07:19:45 -04:00
|
|
|
.unsafely_ignore_certificate_errors
|
2021-08-09 10:53:21 -04:00
|
|
|
.clone(),
|
2021-09-24 11:10:42 -04:00
|
|
|
root_cert_store: ps.root_cert_store.clone(),
|
2021-01-07 21:08:51 -05:00
|
|
|
user_agent: version::get_user_agent(),
|
2021-09-24 11:10:42 -04:00
|
|
|
seed: ps.flags.seed,
|
2020-12-11 12:49:26 -05:00
|
|
|
module_loader,
|
|
|
|
create_web_worker_cb,
|
|
|
|
js_error_create_fn: Some(js_error_create_fn),
|
|
|
|
use_deno_namespace: args.use_deno_namespace,
|
2021-08-16 08:29:54 -04:00
|
|
|
worker_type: args.worker_type,
|
2020-12-11 12:49:26 -05:00
|
|
|
maybe_inspector_server,
|
2020-12-13 13:45:53 -05:00
|
|
|
get_error_class_fn: Some(&crate::errors::get_error_class_name),
|
2021-09-24 11:10:42 -04:00
|
|
|
blob_store: ps.blob_store.clone(),
|
|
|
|
broadcast_channel: ps.broadcast_channel.clone(),
|
|
|
|
shared_array_buffer_store: Some(ps.shared_array_buffer_store.clone()),
|
2021-09-29 04:47:24 -04:00
|
|
|
compiled_wasm_module_store: Some(ps.compiled_wasm_module_store.clone()),
|
2020-12-11 12:49:26 -05:00
|
|
|
};
|
2021-10-05 16:41:14 -04:00
|
|
|
let bootstrap_options = options.bootstrap.clone();
|
2020-12-11 12:49:26 -05:00
|
|
|
|
2021-10-05 16:41:14 -04:00
|
|
|
// TODO(@AaronO): switch to bootstrap_from_options() once ops below are an extension
|
|
|
|
// since it uses sync_ops_cache() which currently depends on the Deno namespace
|
|
|
|
// which can be nuked when bootstrapping workers (use_deno_namespace: false)
|
2021-06-22 10:30:16 -04:00
|
|
|
let (mut worker, external_handle) = WebWorker::from_options(
|
2020-12-11 12:49:26 -05:00
|
|
|
args.name,
|
|
|
|
args.permissions,
|
|
|
|
args.main_module,
|
|
|
|
args.worker_id,
|
2021-10-05 16:41:14 -04:00
|
|
|
options,
|
2020-12-11 12:49:26 -05:00
|
|
|
);
|
|
|
|
|
2021-10-05 16:41:14 -04:00
|
|
|
// TODO(@AaronO): move to a JsRuntime Extension passed into options
|
2020-12-11 12:49:26 -05:00
|
|
|
// This block registers additional ops and state that
|
|
|
|
// are only available in the CLI
|
|
|
|
{
|
|
|
|
let js_runtime = &mut worker.js_runtime;
|
|
|
|
js_runtime
|
|
|
|
.op_state()
|
|
|
|
.borrow_mut()
|
2021-09-24 11:10:42 -04:00
|
|
|
.put::<ProcState>(ps.clone());
|
2020-12-11 12:49:26 -05:00
|
|
|
// Applies source maps - works in conjuction with `js_error_create_fn`
|
|
|
|
// above
|
|
|
|
ops::errors::init(js_runtime);
|
|
|
|
if args.use_deno_namespace {
|
|
|
|
ops::runtime_compiler::init(js_runtime);
|
|
|
|
}
|
2021-04-25 16:00:05 -04:00
|
|
|
js_runtime.sync_ops_cache();
|
2020-12-11 12:49:26 -05:00
|
|
|
}
|
2021-10-05 16:41:14 -04:00
|
|
|
worker.bootstrap(&bootstrap_options);
|
2020-12-11 12:49:26 -05:00
|
|
|
|
2021-06-22 10:30:16 -04:00
|
|
|
(worker, external_handle)
|
2020-12-11 12:49:26 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn create_main_worker(
|
2021-09-24 11:10:42 -04:00
|
|
|
ps: &ProcState,
|
2020-12-11 12:49:26 -05:00
|
|
|
main_module: ModuleSpecifier,
|
|
|
|
permissions: Permissions,
|
2021-08-17 06:08:39 -04:00
|
|
|
maybe_op_init: Option<&dyn Fn(&mut JsRuntime)>,
|
2020-12-11 12:49:26 -05:00
|
|
|
) -> MainWorker {
|
2021-09-24 11:10:42 -04:00
|
|
|
let module_loader = CliModuleLoader::new(ps.clone());
|
2020-12-11 12:49:26 -05:00
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
let global_state_ = ps.clone();
|
2020-12-11 12:49:26 -05:00
|
|
|
|
|
|
|
let js_error_create_fn = Rc::new(move |core_js_error| {
|
|
|
|
let source_mapped_error =
|
|
|
|
apply_source_map(&core_js_error, global_state_.clone());
|
|
|
|
PrettyJsError::create(source_mapped_error)
|
|
|
|
});
|
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
let maybe_inspector_server = ps.maybe_inspector_server.clone();
|
|
|
|
let should_break_on_first_statement = ps.flags.inspect_brk.is_some();
|
2020-12-11 12:49:26 -05:00
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
let create_web_worker_cb = create_web_worker_callback(ps.clone());
|
2020-12-11 12:49:26 -05:00
|
|
|
|
2021-10-26 20:10:27 -04:00
|
|
|
let maybe_storage_key = if let Some(location) = &ps.flags.location {
|
|
|
|
// if a location is set, then the ascii serialization of the location is
|
|
|
|
// used, unless the origin is opaque, and then no storage origin is set, as
|
|
|
|
// we can't expect the origin to be reproducible
|
|
|
|
let storage_origin = location.origin().ascii_serialization();
|
|
|
|
if storage_origin == "null" {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(storage_origin)
|
|
|
|
}
|
|
|
|
} else if let Some(config_file) = &ps.maybe_config_file {
|
|
|
|
// otherwise we will use the path to the config file
|
|
|
|
config_file.path.to_str().map(|s| s.to_string())
|
|
|
|
} else {
|
|
|
|
// otherwise we will use the path to the main module
|
|
|
|
Some(main_module.to_string())
|
|
|
|
};
|
|
|
|
|
|
|
|
let origin_storage_dir = maybe_storage_key.map(|key| {
|
|
|
|
ps.dir
|
|
|
|
.root
|
|
|
|
// TODO(@crowlKats): change to origin_data for 2.0
|
|
|
|
.join("location_data")
|
|
|
|
.join(checksum::gen(&[key.as_bytes()]))
|
|
|
|
});
|
|
|
|
|
2020-12-11 12:49:26 -05:00
|
|
|
let options = WorkerOptions {
|
2021-10-05 16:41:14 -04:00
|
|
|
bootstrap: BootstrapOptions {
|
|
|
|
apply_source_maps: true,
|
|
|
|
args: ps.flags.argv.clone(),
|
|
|
|
cpu_count: num_cpus::get(),
|
|
|
|
debug_flag: ps.flags.log_level.map_or(false, |l| l == log::Level::Debug),
|
|
|
|
enable_testing_features: ps.flags.enable_testing_features,
|
|
|
|
location: ps.flags.location.clone(),
|
|
|
|
no_color: !colors::use_color(),
|
|
|
|
runtime_version: version::deno(),
|
|
|
|
ts_version: version::TYPESCRIPT.to_string(),
|
|
|
|
unstable: ps.flags.unstable,
|
|
|
|
},
|
2021-10-08 11:03:49 -04:00
|
|
|
extensions: vec![],
|
2021-09-24 11:10:42 -04:00
|
|
|
unsafely_ignore_certificate_errors: ps
|
2021-08-09 10:53:21 -04:00
|
|
|
.flags
|
2021-08-10 07:19:45 -04:00
|
|
|
.unsafely_ignore_certificate_errors
|
2021-08-09 10:53:21 -04:00
|
|
|
.clone(),
|
2021-09-24 11:10:42 -04:00
|
|
|
root_cert_store: ps.root_cert_store.clone(),
|
2021-01-07 21:08:51 -05:00
|
|
|
user_agent: version::get_user_agent(),
|
2021-09-24 11:10:42 -04:00
|
|
|
seed: ps.flags.seed,
|
2020-12-11 12:49:26 -05:00
|
|
|
js_error_create_fn: Some(js_error_create_fn),
|
|
|
|
create_web_worker_cb,
|
|
|
|
maybe_inspector_server,
|
|
|
|
should_break_on_first_statement,
|
|
|
|
module_loader,
|
2020-12-13 13:45:53 -05:00
|
|
|
get_error_class_fn: Some(&crate::errors::get_error_class_name),
|
2021-10-26 20:10:27 -04:00
|
|
|
origin_storage_dir,
|
2021-09-24 11:10:42 -04:00
|
|
|
blob_store: ps.blob_store.clone(),
|
|
|
|
broadcast_channel: ps.broadcast_channel.clone(),
|
|
|
|
shared_array_buffer_store: Some(ps.shared_array_buffer_store.clone()),
|
2021-09-29 04:47:24 -04:00
|
|
|
compiled_wasm_module_store: Some(ps.compiled_wasm_module_store.clone()),
|
2020-12-11 12:49:26 -05:00
|
|
|
};
|
|
|
|
|
2021-10-05 16:41:14 -04:00
|
|
|
let mut worker =
|
|
|
|
MainWorker::bootstrap_from_options(main_module, permissions, options);
|
2020-12-11 12:49:26 -05:00
|
|
|
|
2021-10-05 16:41:14 -04:00
|
|
|
// TODO(@AaronO): move to a JsRuntime Extension passed into options
|
2020-12-11 12:49:26 -05:00
|
|
|
// This block registers additional ops and state that
|
|
|
|
// are only available in the CLI
|
|
|
|
{
|
|
|
|
let js_runtime = &mut worker.js_runtime;
|
|
|
|
js_runtime
|
|
|
|
.op_state()
|
|
|
|
.borrow_mut()
|
2021-09-24 11:10:42 -04:00
|
|
|
.put::<ProcState>(ps.clone());
|
2020-12-11 12:49:26 -05:00
|
|
|
// Applies source maps - works in conjuction with `js_error_create_fn`
|
|
|
|
// above
|
|
|
|
ops::errors::init(js_runtime);
|
|
|
|
ops::runtime_compiler::init(js_runtime);
|
2021-04-25 17:38:59 -04:00
|
|
|
|
2021-08-17 06:08:39 -04:00
|
|
|
if let Some(op_init) = maybe_op_init {
|
|
|
|
op_init(js_runtime);
|
2021-04-25 17:38:59 -04:00
|
|
|
}
|
|
|
|
|
2021-04-25 16:00:05 -04:00
|
|
|
js_runtime.sync_ops_cache();
|
2020-12-11 12:49:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
worker
|
|
|
|
}
|
|
|
|
|
2021-02-25 10:24:05 -05:00
|
|
|
pub fn write_to_stdout_ignore_sigpipe(
|
|
|
|
bytes: &[u8],
|
|
|
|
) -> Result<(), std::io::Error> {
|
2020-05-11 17:33:36 -04:00
|
|
|
use std::io::ErrorKind;
|
|
|
|
|
|
|
|
match std::io::stdout().write_all(bytes) {
|
|
|
|
Ok(()) => Ok(()),
|
|
|
|
Err(e) => match e.kind() {
|
|
|
|
ErrorKind::BrokenPipe => Ok(()),
|
|
|
|
_ => Err(e),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-25 10:24:05 -05:00
|
|
|
pub fn write_json_to_stdout<T>(value: &T) -> Result<(), AnyError>
|
2020-07-08 10:50:12 -04:00
|
|
|
where
|
|
|
|
T: ?Sized + serde::ser::Serialize,
|
|
|
|
{
|
2021-06-03 14:49:02 -04:00
|
|
|
let mut writer = std::io::BufWriter::new(std::io::stdout());
|
|
|
|
serde_json::to_writer_pretty(&mut writer, value)?;
|
|
|
|
writeln!(&mut writer)?;
|
|
|
|
Ok(())
|
2020-07-08 10:50:12 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 12:30:13 -04:00
|
|
|
fn print_cache_info(
|
2021-09-24 11:10:42 -04:00
|
|
|
state: &ProcState,
|
2020-08-18 12:30:13 -04:00
|
|
|
json: bool,
|
2021-10-10 17:26:22 -04:00
|
|
|
location: Option<&deno_core::url::Url>,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-07-08 10:50:12 -04:00
|
|
|
let deno_dir = &state.dir.root;
|
2020-11-05 19:38:21 -05:00
|
|
|
let modules_cache = &state.file_fetcher.get_http_cache_location();
|
2020-07-08 10:50:12 -04:00
|
|
|
let typescript_cache = &state.dir.gen_cache.location;
|
2021-04-08 21:27:27 -04:00
|
|
|
let registry_cache =
|
|
|
|
&state.dir.root.join(lsp::language_server::REGISTRIES_PATH);
|
2021-05-27 01:23:12 -04:00
|
|
|
let mut origin_dir = state.dir.root.join("location_data");
|
|
|
|
|
|
|
|
if let Some(location) = &location {
|
|
|
|
origin_dir =
|
|
|
|
origin_dir.join(&checksum::gen(&[location.to_string().as_bytes()]));
|
|
|
|
}
|
|
|
|
|
2020-07-08 10:50:12 -04:00
|
|
|
if json {
|
2021-05-27 01:23:12 -04:00
|
|
|
let mut output = json!({
|
|
|
|
"denoDir": deno_dir,
|
|
|
|
"modulesCache": modules_cache,
|
|
|
|
"typescriptCache": typescript_cache,
|
|
|
|
"registryCache": registry_cache,
|
|
|
|
"originStorage": origin_dir,
|
2020-07-08 10:50:12 -04:00
|
|
|
});
|
2021-05-27 01:23:12 -04:00
|
|
|
|
|
|
|
if location.is_some() {
|
|
|
|
output["localStorage"] =
|
|
|
|
serde_json::to_value(origin_dir.join("local_storage"))?;
|
|
|
|
}
|
|
|
|
|
2020-07-08 10:50:12 -04:00
|
|
|
write_json_to_stdout(&output)
|
|
|
|
} else {
|
|
|
|
println!("{} {:?}", colors::bold("DENO_DIR location:"), deno_dir);
|
|
|
|
println!(
|
|
|
|
"{} {:?}",
|
|
|
|
colors::bold("Remote modules cache:"),
|
|
|
|
modules_cache
|
|
|
|
);
|
|
|
|
println!(
|
|
|
|
"{} {:?}",
|
2021-04-08 21:27:27 -04:00
|
|
|
colors::bold("Emitted modules cache:"),
|
2020-07-08 10:50:12 -04:00
|
|
|
typescript_cache
|
|
|
|
);
|
2021-04-08 21:27:27 -04:00
|
|
|
println!(
|
|
|
|
"{} {:?}",
|
|
|
|
colors::bold("Language server registries cache:"),
|
|
|
|
registry_cache,
|
|
|
|
);
|
2021-05-27 01:23:12 -04:00
|
|
|
println!("{} {:?}", colors::bold("Origin storage:"), origin_dir);
|
|
|
|
if location.is_some() {
|
|
|
|
println!(
|
|
|
|
"{} {:?}",
|
|
|
|
colors::bold("Local Storage:"),
|
|
|
|
origin_dir.join("local_storage"),
|
|
|
|
);
|
|
|
|
}
|
2020-07-08 10:50:12 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-25 10:24:05 -05:00
|
|
|
pub fn get_types(unstable: bool) -> String {
|
2021-06-10 10:18:13 -04:00
|
|
|
let mut types = vec![
|
2021-01-05 20:38:23 -05:00
|
|
|
crate::tsc::DENO_NS_LIB,
|
2021-03-12 15:23:59 -05:00
|
|
|
crate::tsc::DENO_CONSOLE_LIB,
|
chore: split web op crate (#9635)
This commit starts splitting out the deno_web op crate into multiple
smaller crates. This commit splits out WebIDL and URL API, but in the
future I want to split out each spec into its own crate. That means we
will have (in rough order of loading): `webidl`, `dom`, `streams`,
`console`, `encoding`, `url`, `file`, `fetch`, `websocket`, and
`webgpu` crates.
2021-03-12 10:17:18 -05:00
|
|
|
crate::tsc::DENO_URL_LIB,
|
2021-01-05 20:38:23 -05:00
|
|
|
crate::tsc::DENO_WEB_LIB,
|
|
|
|
crate::tsc::DENO_FETCH_LIB,
|
2021-03-01 05:31:13 -05:00
|
|
|
crate::tsc::DENO_WEBGPU_LIB,
|
2021-01-06 10:57:28 -05:00
|
|
|
crate::tsc::DENO_WEBSOCKET_LIB,
|
2021-05-10 06:02:47 -04:00
|
|
|
crate::tsc::DENO_WEBSTORAGE_LIB,
|
2021-03-26 03:43:58 -04:00
|
|
|
crate::tsc::DENO_CRYPTO_LIB,
|
2021-05-22 12:08:24 -04:00
|
|
|
crate::tsc::DENO_BROADCAST_CHANNEL_LIB,
|
2021-06-28 19:43:03 -04:00
|
|
|
crate::tsc::DENO_NET_LIB,
|
2021-01-05 20:38:23 -05:00
|
|
|
crate::tsc::SHARED_GLOBALS_LIB,
|
|
|
|
crate::tsc::WINDOW_LIB,
|
2021-06-10 10:18:13 -04:00
|
|
|
];
|
2020-08-04 10:08:41 -04:00
|
|
|
|
2020-05-11 17:33:36 -04:00
|
|
|
if unstable {
|
2021-06-10 10:18:13 -04:00
|
|
|
types.push(crate::tsc::UNSTABLE_NS_LIB);
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
2020-08-04 10:08:41 -04:00
|
|
|
|
2021-06-10 10:18:13 -04:00
|
|
|
types.join("\n")
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
|
|
|
|
2020-11-30 14:35:12 -05:00
|
|
|
async fn compile_command(
|
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
compile_flags: CompileFlags,
|
2020-11-30 14:35:12 -05:00
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
let debug = flags.log_level == Some(log::Level::Debug);
|
|
|
|
|
2021-09-03 19:33:35 -04:00
|
|
|
let run_flags = tools::standalone::compile_to_runtime_flags(
|
|
|
|
flags.clone(),
|
|
|
|
compile_flags.args,
|
|
|
|
)?;
|
2021-01-04 18:15:52 -05:00
|
|
|
|
2021-09-03 19:33:35 -04:00
|
|
|
let module_specifier = resolve_url_or_path(&compile_flags.source_file)?;
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = ProcState::build(flags.clone()).await?;
|
|
|
|
let deno_dir = &ps.dir;
|
2020-11-30 14:35:12 -05:00
|
|
|
|
2021-09-03 19:33:35 -04:00
|
|
|
let output = compile_flags.output.or_else(|| {
|
2021-02-17 13:47:18 -05:00
|
|
|
infer_name_from_url(&module_specifier).map(PathBuf::from)
|
2020-12-01 09:11:02 -05:00
|
|
|
}).ok_or_else(|| generic_error(
|
|
|
|
"An executable name was not provided. One could not be inferred from the URL. Aborting.",
|
|
|
|
))?;
|
2020-11-30 14:35:12 -05:00
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
let graph =
|
|
|
|
create_graph_and_maybe_check(module_specifier.clone(), &ps, debug).await?;
|
|
|
|
let (bundle_str, _) = bundle_module_graph(graph.as_ref(), &ps, &flags)?;
|
2020-11-30 14:35:12 -05:00
|
|
|
|
|
|
|
info!(
|
|
|
|
"{} {}",
|
|
|
|
colors::green("Compile"),
|
|
|
|
module_specifier.to_string()
|
|
|
|
);
|
2021-01-18 21:40:22 -05:00
|
|
|
|
2021-04-26 13:28:38 -04:00
|
|
|
// Select base binary based on target
|
2021-01-18 21:40:22 -05:00
|
|
|
let original_binary =
|
2021-09-03 19:33:35 -04:00
|
|
|
tools::standalone::get_base_binary(deno_dir, compile_flags.target.clone())
|
|
|
|
.await?;
|
2021-01-18 21:40:22 -05:00
|
|
|
|
|
|
|
let final_bin = tools::standalone::create_standalone_binary(
|
|
|
|
original_binary,
|
2021-01-07 21:08:51 -05:00
|
|
|
bundle_str,
|
|
|
|
run_flags,
|
2021-01-18 21:40:22 -05:00
|
|
|
)?;
|
2020-11-30 14:35:12 -05:00
|
|
|
|
2020-12-01 09:11:02 -05:00
|
|
|
info!("{} {}", colors::green("Emit"), output.display());
|
2020-11-30 14:35:12 -05:00
|
|
|
|
2021-09-03 19:33:35 -04:00
|
|
|
tools::standalone::write_standalone_binary(
|
|
|
|
output.clone(),
|
|
|
|
compile_flags.target,
|
|
|
|
final_bin,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-01-18 21:40:22 -05:00
|
|
|
|
2020-11-30 14:35:12 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-05-11 17:33:36 -04:00
|
|
|
async fn info_command(
|
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
info_flags: InfoFlags,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = ProcState::build(flags).await?;
|
2021-09-03 19:33:35 -04:00
|
|
|
if let Some(specifier) = info_flags.file {
|
2021-02-17 13:47:18 -05:00
|
|
|
let specifier = resolve_url_or_path(&specifier)?;
|
2021-10-10 17:26:22 -04:00
|
|
|
let mut cache = cache::FetchCacher::new(
|
|
|
|
ps.dir.gen_cache.clone(),
|
|
|
|
ps.file_fetcher.clone(),
|
2020-10-11 22:25:27 -04:00
|
|
|
Permissions::allow_all(),
|
2021-05-17 03:44:38 -04:00
|
|
|
Permissions::allow_all(),
|
2020-10-11 22:25:27 -04:00
|
|
|
);
|
2021-10-10 17:26:22 -04:00
|
|
|
let maybe_locker = lockfile::as_maybe_locker(ps.lockfile.clone());
|
|
|
|
let maybe_resolver =
|
|
|
|
ps.maybe_import_map.as_ref().map(ImportMapResolver::new);
|
|
|
|
let graph = deno_graph::create_graph(
|
|
|
|
vec![specifier],
|
|
|
|
false,
|
|
|
|
None,
|
|
|
|
&mut cache,
|
|
|
|
maybe_resolver.as_ref().map(|r| r.as_resolver()),
|
|
|
|
maybe_locker,
|
|
|
|
None,
|
|
|
|
)
|
|
|
|
.await;
|
2020-09-07 09:59:47 -04:00
|
|
|
|
2021-09-03 19:33:35 -04:00
|
|
|
if info_flags.json {
|
2021-10-10 17:26:22 -04:00
|
|
|
write_json_to_stdout(&json!(graph))
|
2020-09-07 09:59:47 -04:00
|
|
|
} else {
|
2021-10-10 17:26:22 -04:00
|
|
|
write_to_stdout_ignore_sigpipe(graph.to_string().as_bytes())
|
2021-03-01 06:49:58 -05:00
|
|
|
.map_err(|err| err.into())
|
2020-09-07 09:59:47 -04:00
|
|
|
}
|
2020-10-11 22:25:27 -04:00
|
|
|
} else {
|
|
|
|
// If it was just "deno info" print location of caches and exit
|
2021-10-10 17:26:22 -04:00
|
|
|
print_cache_info(&ps, info_flags.json, ps.flags.location.as_ref())
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn install_command(
|
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
install_flags: InstallFlags,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-10-19 15:19:20 -04:00
|
|
|
let mut preload_flags = flags.clone();
|
|
|
|
preload_flags.inspect = None;
|
|
|
|
preload_flags.inspect_brk = None;
|
2020-12-13 13:45:53 -05:00
|
|
|
let permissions = Permissions::from_options(&preload_flags.clone().into());
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = ProcState::build(preload_flags).await?;
|
2021-09-03 19:33:35 -04:00
|
|
|
let main_module = resolve_url_or_path(&install_flags.module_url)?;
|
2020-11-02 17:37:55 -05:00
|
|
|
let mut worker =
|
2021-09-24 11:10:42 -04:00
|
|
|
create_main_worker(&ps, main_module.clone(), permissions, None);
|
2020-09-20 08:05:11 -04:00
|
|
|
// First, fetch and compile the module; this step ensures that the module exists.
|
2021-09-17 21:44:53 -04:00
|
|
|
worker.preload_module(&main_module, true).await?;
|
2021-09-03 19:33:35 -04:00
|
|
|
tools::installer::install(
|
|
|
|
flags,
|
|
|
|
&install_flags.module_url,
|
|
|
|
install_flags.args,
|
|
|
|
install_flags.name,
|
|
|
|
install_flags.root,
|
|
|
|
install_flags.force,
|
|
|
|
)
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
|
|
|
|
2021-09-30 11:38:07 -04:00
|
|
|
async fn uninstall_command(
|
|
|
|
uninstall_flags: UninstallFlags,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
tools::installer::uninstall(uninstall_flags.name, uninstall_flags.root)
|
|
|
|
}
|
|
|
|
|
2021-06-22 21:48:01 -04:00
|
|
|
async fn lsp_command() -> Result<(), AnyError> {
|
|
|
|
lsp::start().await
|
2020-12-07 05:46:39 -05:00
|
|
|
}
|
|
|
|
|
2021-09-03 11:01:58 -04:00
|
|
|
#[allow(clippy::too_many_arguments)]
|
2020-06-12 10:42:12 -04:00
|
|
|
async fn lint_command(
|
2021-09-03 11:01:58 -04:00
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
lint_flags: LintFlags,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2021-09-03 19:33:35 -04:00
|
|
|
if lint_flags.rules {
|
|
|
|
tools::lint::print_rules_list(lint_flags.json);
|
2020-06-12 10:42:12 -04:00
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = ProcState::build(flags.clone()).await?;
|
|
|
|
let maybe_lint_config = if let Some(config_file) = &ps.maybe_config_file {
|
|
|
|
config_file.to_lint_config()?
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2021-09-03 11:01:58 -04:00
|
|
|
|
2021-10-05 17:07:38 -04:00
|
|
|
tools::lint::lint(maybe_lint_config, lint_flags, flags.watch).await
|
2020-06-08 08:06:20 -04:00
|
|
|
}
|
|
|
|
|
2020-09-14 12:48:57 -04:00
|
|
|
async fn cache_command(
|
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
cache_flags: CacheFlags,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-11-01 21:51:56 -05:00
|
|
|
let lib = if flags.unstable {
|
2021-10-10 17:26:22 -04:00
|
|
|
emit::TypeLib::UnstableDenoWindow
|
2020-11-01 21:51:56 -05:00
|
|
|
} else {
|
2021-10-10 17:26:22 -04:00
|
|
|
emit::TypeLib::DenoWindow
|
2020-11-01 21:51:56 -05:00
|
|
|
};
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = ProcState::build(flags).await?;
|
2020-05-11 17:33:36 -04:00
|
|
|
|
2021-09-03 19:33:35 -04:00
|
|
|
for file in cache_flags.files {
|
2021-02-17 13:47:18 -05:00
|
|
|
let specifier = resolve_url_or_path(&file)?;
|
2021-09-24 11:10:42 -04:00
|
|
|
ps.prepare_module_load(
|
2021-10-10 17:26:22 -04:00
|
|
|
vec![specifier],
|
|
|
|
false,
|
2021-09-24 11:10:42 -04:00
|
|
|
lib.clone(),
|
|
|
|
Permissions::allow_all(),
|
|
|
|
Permissions::allow_all(),
|
|
|
|
)
|
|
|
|
.await?;
|
2021-10-19 10:01:46 -04:00
|
|
|
if let Some(graph_error) = ps.take_graph_error() {
|
2021-10-10 17:26:22 -04:00
|
|
|
return Err(graph_error.into());
|
|
|
|
}
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn eval_command(
|
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
eval_flags: EvalFlags,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2021-10-10 17:26:22 -04:00
|
|
|
// deno_graph works off of extensions for local files to determine the media
|
|
|
|
// type, and so our "fake" specifier needs to have the proper extension.
|
|
|
|
let main_module =
|
|
|
|
resolve_url_or_path(&format!("./$deno$eval.{}", eval_flags.ext)).unwrap();
|
2020-12-13 13:45:53 -05:00
|
|
|
let permissions = Permissions::from_options(&flags.clone().into());
|
2021-10-06 13:07:04 -04:00
|
|
|
let ps = ProcState::build(flags.clone()).await?;
|
2020-11-02 17:37:55 -05:00
|
|
|
let mut worker =
|
2021-09-24 11:10:42 -04:00
|
|
|
create_main_worker(&ps, main_module.clone(), permissions, None);
|
2020-05-11 17:33:36 -04:00
|
|
|
// Create a dummy source file.
|
2021-09-03 19:33:35 -04:00
|
|
|
let source_code = if eval_flags.print {
|
|
|
|
format!("console.log({})", eval_flags.code)
|
2020-05-21 10:35:36 -04:00
|
|
|
} else {
|
2021-09-03 19:33:35 -04:00
|
|
|
eval_flags.code
|
2020-05-21 10:35:36 -04:00
|
|
|
}
|
|
|
|
.into_bytes();
|
|
|
|
|
2020-11-05 19:38:21 -05:00
|
|
|
let file = File {
|
2021-02-17 13:47:18 -05:00
|
|
|
local: main_module.clone().to_file_path().unwrap(),
|
2020-11-05 19:38:21 -05:00
|
|
|
maybe_types: None,
|
2021-10-10 17:26:22 -04:00
|
|
|
media_type: MediaType::Unknown,
|
2021-09-07 10:39:32 -04:00
|
|
|
source: Arc::new(String::from_utf8(source_code)?),
|
2021-02-17 13:47:18 -05:00
|
|
|
specifier: main_module.clone(),
|
2021-09-02 11:38:19 -04:00
|
|
|
maybe_headers: None,
|
2020-05-11 17:33:36 -04:00
|
|
|
};
|
2020-11-05 19:38:21 -05:00
|
|
|
|
2020-05-11 17:33:36 -04:00
|
|
|
// Save our fake file into file fetcher cache
|
2020-08-04 10:08:41 -04:00
|
|
|
// to allow module access by TS compiler.
|
2021-09-24 11:10:42 -04:00
|
|
|
ps.file_fetcher.insert_cached(file);
|
2020-05-11 17:33:36 -04:00
|
|
|
debug!("main_module {}", &main_module);
|
2021-10-06 13:07:04 -04:00
|
|
|
if flags.compat {
|
2021-10-10 17:26:22 -04:00
|
|
|
worker.execute_side_module(&compat::GLOBAL_URL).await?;
|
2021-10-06 13:07:04 -04:00
|
|
|
}
|
2021-09-17 21:44:53 -04:00
|
|
|
worker.execute_main_module(&main_module).await?;
|
2021-06-21 19:45:41 -04:00
|
|
|
worker.execute_script(
|
|
|
|
&located_script_name!(),
|
|
|
|
"window.dispatchEvent(new Event('load'))",
|
|
|
|
)?;
|
2021-05-26 15:07:12 -04:00
|
|
|
worker.run_event_loop(false).await?;
|
2021-06-21 19:45:41 -04:00
|
|
|
worker.execute_script(
|
|
|
|
&located_script_name!(),
|
|
|
|
"window.dispatchEvent(new Event('unload'))",
|
|
|
|
)?;
|
2020-05-11 17:33:36 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
async fn create_graph_and_maybe_check(
|
|
|
|
root: ModuleSpecifier,
|
|
|
|
ps: &ProcState,
|
2020-11-30 14:35:12 -05:00
|
|
|
debug: bool,
|
2021-10-10 17:26:22 -04:00
|
|
|
) -> Result<Arc<deno_graph::ModuleGraph>, AnyError> {
|
|
|
|
let mut cache = cache::FetchCacher::new(
|
|
|
|
ps.dir.gen_cache.clone(),
|
|
|
|
ps.file_fetcher.clone(),
|
2020-11-30 14:35:12 -05:00
|
|
|
Permissions::allow_all(),
|
2021-05-17 03:44:38 -04:00
|
|
|
Permissions::allow_all(),
|
2020-11-30 14:35:12 -05:00
|
|
|
);
|
2021-10-10 17:26:22 -04:00
|
|
|
let maybe_locker = lockfile::as_maybe_locker(ps.lockfile.clone());
|
|
|
|
let maybe_imports = ps
|
|
|
|
.maybe_config_file
|
|
|
|
.as_ref()
|
|
|
|
.map(|cf| cf.to_maybe_imports())
|
|
|
|
.flatten();
|
|
|
|
let maybe_resolver = ps.maybe_import_map.as_ref().map(ImportMapResolver::new);
|
|
|
|
let graph = Arc::new(
|
|
|
|
deno_graph::create_graph(
|
|
|
|
vec![root],
|
|
|
|
false,
|
|
|
|
maybe_imports,
|
|
|
|
&mut cache,
|
|
|
|
maybe_resolver.as_ref().map(|r| r.as_resolver()),
|
|
|
|
maybe_locker,
|
|
|
|
None,
|
|
|
|
)
|
|
|
|
.await,
|
|
|
|
);
|
|
|
|
|
|
|
|
// Ensure that all non-dynamic, non-type only imports are properly loaded and
|
|
|
|
// if not, error with the first issue encountered.
|
|
|
|
graph.valid().map_err(emit::GraphError::from)?;
|
|
|
|
// If there was a locker, validate the integrity of all the modules in the
|
|
|
|
// locker.
|
|
|
|
emit::lock(graph.as_ref());
|
2020-11-30 14:35:12 -05:00
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
if !ps.flags.no_check {
|
2021-10-10 17:26:22 -04:00
|
|
|
graph.valid_types_only().map_err(emit::GraphError::from)?;
|
2021-09-24 11:10:42 -04:00
|
|
|
let lib = if ps.flags.unstable {
|
2021-10-10 17:26:22 -04:00
|
|
|
emit::TypeLib::UnstableDenoWindow
|
2020-11-30 14:35:12 -05:00
|
|
|
} else {
|
2021-10-10 17:26:22 -04:00
|
|
|
emit::TypeLib::DenoWindow
|
2020-11-30 14:35:12 -05:00
|
|
|
};
|
2021-10-10 17:26:22 -04:00
|
|
|
let (ts_config, maybe_ignored_options) = emit::get_ts_config(
|
|
|
|
emit::ConfigType::Check {
|
|
|
|
tsc_emit: false,
|
2020-11-30 14:35:12 -05:00
|
|
|
lib,
|
2021-10-10 17:26:22 -04:00
|
|
|
},
|
|
|
|
ps.maybe_config_file.as_ref(),
|
|
|
|
None,
|
|
|
|
)?;
|
|
|
|
log::info!("{} {}", colors::green("Check"), graph.roots[0]);
|
|
|
|
if let Some(ignored_options) = maybe_ignored_options {
|
2020-11-30 14:35:12 -05:00
|
|
|
eprintln!("{}", ignored_options);
|
|
|
|
}
|
2021-10-10 17:26:22 -04:00
|
|
|
let maybe_config_specifier = ps
|
|
|
|
.maybe_config_file
|
|
|
|
.as_ref()
|
|
|
|
.map(|cf| ModuleSpecifier::from_file_path(&cf.path).unwrap());
|
|
|
|
let check_result = emit::check_and_maybe_emit(
|
|
|
|
graph.clone(),
|
|
|
|
&mut cache,
|
|
|
|
emit::CheckOptions {
|
|
|
|
debug,
|
|
|
|
emit_with_diagnostics: false,
|
|
|
|
maybe_config_specifier,
|
|
|
|
ts_config,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
debug!("{}", check_result.stats);
|
|
|
|
if !check_result.diagnostics.is_empty() {
|
|
|
|
return Err(check_result.diagnostics.into());
|
2020-11-30 14:35:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
Ok(graph)
|
2020-11-30 14:35:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bundle_module_graph(
|
2021-10-10 17:26:22 -04:00
|
|
|
graph: &deno_graph::ModuleGraph,
|
|
|
|
ps: &ProcState,
|
|
|
|
flags: &Flags,
|
|
|
|
) -> Result<(String, Option<String>), AnyError> {
|
|
|
|
info!("{} {}", colors::green("Bundle"), graph.roots[0]);
|
|
|
|
|
|
|
|
let (ts_config, maybe_ignored_options) = emit::get_ts_config(
|
|
|
|
emit::ConfigType::Bundle,
|
|
|
|
ps.maybe_config_file.as_ref(),
|
|
|
|
None,
|
|
|
|
)?;
|
|
|
|
if flags.no_check {
|
|
|
|
if let Some(ignored_options) = maybe_ignored_options {
|
2020-11-30 14:35:12 -05:00
|
|
|
eprintln!("{}", ignored_options);
|
|
|
|
}
|
|
|
|
}
|
2021-10-10 17:26:22 -04:00
|
|
|
|
|
|
|
emit::bundle(
|
|
|
|
graph,
|
|
|
|
emit::BundleOptions {
|
|
|
|
bundle_type: emit::BundleType::Module,
|
|
|
|
ts_config,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A function that converts a float to a string the represents a human
|
|
|
|
/// readable version of that number.
|
|
|
|
fn human_size(size: f64) -> String {
|
|
|
|
let negative = if size.is_sign_positive() { "" } else { "-" };
|
|
|
|
let size = size.abs();
|
|
|
|
let units = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
|
|
|
|
if size < 1_f64 {
|
|
|
|
return format!("{}{}{}", negative, size, "B");
|
|
|
|
}
|
|
|
|
let delimiter = 1024_f64;
|
|
|
|
let exponent = std::cmp::min(
|
|
|
|
(size.ln() / delimiter.ln()).floor() as i32,
|
|
|
|
(units.len() - 1) as i32,
|
|
|
|
);
|
|
|
|
let pretty_bytes = format!("{:.2}", size / delimiter.powi(exponent))
|
|
|
|
.parse::<f64>()
|
|
|
|
.unwrap()
|
|
|
|
* 1_f64;
|
|
|
|
let unit = units[exponent as usize];
|
|
|
|
format!("{}{}{}", negative, pretty_bytes, unit)
|
2020-11-30 14:35:12 -05:00
|
|
|
}
|
|
|
|
|
2020-05-11 17:33:36 -04:00
|
|
|
async fn bundle_command(
|
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
bundle_flags: BundleFlags,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-11-22 15:45:44 -05:00
|
|
|
let debug = flags.log_level == Some(log::Level::Debug);
|
2020-05-18 06:59:29 -04:00
|
|
|
|
2021-05-10 02:06:13 -04:00
|
|
|
let resolver = |_| {
|
2020-11-22 15:45:44 -05:00
|
|
|
let flags = flags.clone();
|
2021-09-03 19:33:35 -04:00
|
|
|
let source_file1 = bundle_flags.source_file.clone();
|
|
|
|
let source_file2 = bundle_flags.source_file.clone();
|
2020-11-22 15:45:44 -05:00
|
|
|
async move {
|
2021-02-17 13:47:18 -05:00
|
|
|
let module_specifier = resolve_url_or_path(&source_file1)?;
|
2020-11-22 15:45:44 -05:00
|
|
|
|
|
|
|
debug!(">>>>> bundle START");
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = ProcState::build(flags.clone()).await?;
|
2020-11-22 15:45:44 -05:00
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
let graph =
|
|
|
|
create_graph_and_maybe_check(module_specifier, &ps, debug).await?;
|
2020-05-20 10:25:40 -04:00
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
let mut paths_to_watch: Vec<PathBuf> = graph
|
|
|
|
.specifiers()
|
2020-11-22 15:45:44 -05:00
|
|
|
.iter()
|
2021-10-10 17:26:22 -04:00
|
|
|
.filter_map(|(_, r)| {
|
|
|
|
r.as_ref()
|
|
|
|
.ok()
|
|
|
|
.map(|(s, _)| s.to_file_path().ok())
|
|
|
|
.flatten()
|
|
|
|
})
|
2020-11-22 15:45:44 -05:00
|
|
|
.collect();
|
2020-05-29 10:32:15 -04:00
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
if let Some(import_map) = ps.flags.import_map_path.as_ref() {
|
2020-11-22 15:45:44 -05:00
|
|
|
paths_to_watch
|
|
|
|
.push(fs_util::resolve_from_cwd(std::path::Path::new(import_map))?);
|
|
|
|
}
|
2020-10-23 07:05:41 -04:00
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
Ok((paths_to_watch, graph, ps))
|
2020-10-19 23:10:42 -04:00
|
|
|
}
|
2020-11-28 09:18:13 -05:00
|
|
|
.map(move |result| match result {
|
2021-10-10 17:26:22 -04:00
|
|
|
Ok((paths_to_watch, graph, ps)) => ResolutionResult::Restart {
|
2021-09-24 11:10:42 -04:00
|
|
|
paths_to_watch,
|
2021-10-10 17:26:22 -04:00
|
|
|
result: Ok((ps, graph)),
|
2021-09-24 11:10:42 -04:00
|
|
|
},
|
2021-05-10 02:06:13 -04:00
|
|
|
Err(e) => ResolutionResult::Restart {
|
|
|
|
paths_to_watch: vec![PathBuf::from(source_file2)],
|
|
|
|
result: Err(e),
|
2020-11-28 09:18:13 -05:00
|
|
|
},
|
|
|
|
})
|
2020-11-22 15:45:44 -05:00
|
|
|
};
|
2020-10-19 23:10:42 -04:00
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
let operation = |(ps, graph): (ProcState, Arc<deno_graph::ModuleGraph>)| {
|
2020-11-22 15:45:44 -05:00
|
|
|
let flags = flags.clone();
|
2021-09-03 19:33:35 -04:00
|
|
|
let out_file = bundle_flags.out_file.clone();
|
2020-11-22 15:45:44 -05:00
|
|
|
async move {
|
2021-10-10 17:26:22 -04:00
|
|
|
let (bundle_emit, maybe_bundle_map) =
|
|
|
|
bundle_module_graph(graph.as_ref(), &ps, &flags)?;
|
2020-11-22 15:45:44 -05:00
|
|
|
debug!(">>>>> bundle END");
|
|
|
|
|
|
|
|
if let Some(out_file) = out_file.as_ref() {
|
2021-10-10 17:26:22 -04:00
|
|
|
let output_bytes = bundle_emit.as_bytes();
|
2020-11-22 15:45:44 -05:00
|
|
|
let output_len = output_bytes.len();
|
|
|
|
fs_util::write_file(out_file, output_bytes, 0o644)?;
|
|
|
|
info!(
|
|
|
|
"{} {:?} ({})",
|
|
|
|
colors::green("Emit"),
|
|
|
|
out_file,
|
2021-10-10 17:26:22 -04:00
|
|
|
colors::gray(human_size(output_len as f64))
|
2020-11-22 15:45:44 -05:00
|
|
|
);
|
2021-10-10 17:26:22 -04:00
|
|
|
if let Some(bundle_map) = maybe_bundle_map {
|
|
|
|
let map_bytes = bundle_map.as_bytes();
|
|
|
|
let map_len = map_bytes.len();
|
|
|
|
let ext = if let Some(curr_ext) = out_file.extension() {
|
|
|
|
format!("{}.map", curr_ext.to_string_lossy())
|
|
|
|
} else {
|
|
|
|
"map".to_string()
|
|
|
|
};
|
|
|
|
let map_out_file = out_file.with_extension(ext);
|
|
|
|
fs_util::write_file(&map_out_file, map_bytes, 0o644)?;
|
|
|
|
info!(
|
|
|
|
"{} {:?} ({})",
|
|
|
|
colors::green("Emit"),
|
|
|
|
map_out_file,
|
|
|
|
colors::gray(human_size(map_len as f64))
|
|
|
|
);
|
|
|
|
}
|
2020-11-22 15:45:44 -05:00
|
|
|
} else {
|
2021-10-10 17:26:22 -04:00
|
|
|
println!("{}", bundle_emit);
|
2020-11-22 15:45:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if flags.watch {
|
2021-05-10 02:06:13 -04:00
|
|
|
file_watcher::watch_func(resolver, operation, "Bundle").await?;
|
2020-05-29 10:32:15 -04:00
|
|
|
} else {
|
2021-05-10 02:06:13 -04:00
|
|
|
let module_graph =
|
|
|
|
if let ResolutionResult::Restart { result, .. } = resolver(None).await {
|
|
|
|
result?
|
|
|
|
} else {
|
|
|
|
unreachable!();
|
|
|
|
};
|
2020-11-22 15:45:44 -05:00
|
|
|
operation(module_graph).await?;
|
2020-05-29 10:32:15 -04:00
|
|
|
}
|
2020-11-22 15:45:44 -05:00
|
|
|
|
2020-05-29 10:32:15 -04:00
|
|
|
Ok(())
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn doc_command(
|
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
doc_flags: DocFlags,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2021-09-03 19:33:35 -04:00
|
|
|
tools::doc::print_docs(
|
|
|
|
flags,
|
|
|
|
doc_flags.source_file,
|
|
|
|
doc_flags.json,
|
|
|
|
doc_flags.filter,
|
|
|
|
doc_flags.private,
|
|
|
|
)
|
|
|
|
.await
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
|
|
|
|
2020-11-22 15:45:44 -05:00
|
|
|
async fn format_command(
|
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
fmt_flags: FmtFlags,
|
2020-11-22 15:45:44 -05:00
|
|
|
) -> Result<(), AnyError> {
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = ProcState::build(flags.clone()).await?;
|
|
|
|
let maybe_fmt_config = if let Some(config_file) = &ps.maybe_config_file {
|
|
|
|
config_file.to_fmt_config()?
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2021-09-13 14:19:10 -04:00
|
|
|
|
2021-09-03 19:33:35 -04:00
|
|
|
if fmt_flags.files.len() == 1 && fmt_flags.files[0].to_string_lossy() == "-" {
|
2021-09-13 14:19:10 -04:00
|
|
|
return tools::fmt::format_stdin(
|
2021-09-13 16:06:45 -04:00
|
|
|
fmt_flags,
|
2021-09-13 14:19:10 -04:00
|
|
|
maybe_fmt_config.map(|c| c.options).unwrap_or_default(),
|
|
|
|
);
|
2020-11-22 15:45:44 -05:00
|
|
|
}
|
|
|
|
|
2021-09-13 16:06:45 -04:00
|
|
|
tools::fmt::format(fmt_flags, flags.watch, maybe_fmt_config).await?;
|
2020-11-22 15:45:44 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-09-03 19:33:35 -04:00
|
|
|
async fn run_repl(flags: Flags, repl_flags: ReplFlags) -> Result<(), AnyError> {
|
2021-02-17 13:47:18 -05:00
|
|
|
let main_module = resolve_url_or_path("./$deno$repl.ts").unwrap();
|
2020-12-13 13:45:53 -05:00
|
|
|
let permissions = Permissions::from_options(&flags.clone().into());
|
2021-10-08 11:11:33 -04:00
|
|
|
let ps = ProcState::build(flags.clone()).await?;
|
2020-11-02 17:37:55 -05:00
|
|
|
let mut worker =
|
2021-09-24 11:10:42 -04:00
|
|
|
create_main_worker(&ps, main_module.clone(), permissions, None);
|
2021-10-08 11:11:33 -04:00
|
|
|
if flags.compat {
|
2021-10-10 17:26:22 -04:00
|
|
|
worker.execute_side_module(&compat::GLOBAL_URL).await?;
|
2021-10-08 11:11:33 -04:00
|
|
|
}
|
2021-05-26 15:07:12 -04:00
|
|
|
worker.run_event_loop(false).await?;
|
2020-10-01 19:14:55 -04:00
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
tools::repl::run(&ps, worker, repl_flags.eval).await
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
|
|
|
|
2020-09-14 12:48:57 -04:00
|
|
|
async fn run_from_stdin(flags: Flags) -> Result<(), AnyError> {
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = ProcState::build(flags.clone()).await?;
|
2020-12-13 13:45:53 -05:00
|
|
|
let permissions = Permissions::from_options(&flags.clone().into());
|
2021-02-17 13:47:18 -05:00
|
|
|
let main_module = resolve_url_or_path("./$deno$stdin.ts").unwrap();
|
2021-09-24 11:10:42 -04:00
|
|
|
let mut worker =
|
|
|
|
create_main_worker(&ps.clone(), main_module.clone(), permissions, None);
|
2020-09-11 12:19:49 -04:00
|
|
|
|
|
|
|
let mut source = Vec::new();
|
|
|
|
std::io::stdin().read_to_end(&mut source)?;
|
|
|
|
// Create a dummy source file.
|
2020-11-05 19:38:21 -05:00
|
|
|
let source_file = File {
|
2021-02-17 13:47:18 -05:00
|
|
|
local: main_module.clone().to_file_path().unwrap(),
|
2020-11-05 19:38:21 -05:00
|
|
|
maybe_types: None,
|
2020-09-11 12:19:49 -04:00
|
|
|
media_type: MediaType::TypeScript,
|
2021-09-07 10:39:32 -04:00
|
|
|
source: Arc::new(String::from_utf8(source)?),
|
2020-11-05 19:38:21 -05:00
|
|
|
specifier: main_module.clone(),
|
2021-09-02 11:38:19 -04:00
|
|
|
maybe_headers: None,
|
2020-06-11 10:58:09 -04:00
|
|
|
};
|
2020-09-11 12:19:49 -04:00
|
|
|
// Save our fake file into file fetcher cache
|
|
|
|
// to allow module access by TS compiler
|
2021-09-24 11:10:42 -04:00
|
|
|
ps.file_fetcher.insert_cached(source_file);
|
2020-09-11 12:19:49 -04:00
|
|
|
|
|
|
|
debug!("main_module {}", main_module);
|
2021-10-06 13:07:04 -04:00
|
|
|
if flags.compat {
|
2021-10-10 17:26:22 -04:00
|
|
|
worker.execute_side_module(&compat::GLOBAL_URL).await?;
|
2021-10-06 13:07:04 -04:00
|
|
|
}
|
2021-09-17 21:44:53 -04:00
|
|
|
worker.execute_main_module(&main_module).await?;
|
2021-06-21 19:45:41 -04:00
|
|
|
worker.execute_script(
|
|
|
|
&located_script_name!(),
|
|
|
|
"window.dispatchEvent(new Event('load'))",
|
|
|
|
)?;
|
2021-05-26 15:07:12 -04:00
|
|
|
worker.run_event_loop(false).await?;
|
2021-06-21 19:45:41 -04:00
|
|
|
worker.execute_script(
|
|
|
|
&located_script_name!(),
|
|
|
|
"window.dispatchEvent(new Event('unload'))",
|
|
|
|
)?;
|
2020-09-11 12:19:49 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-09-14 12:48:57 -04:00
|
|
|
async fn run_with_watch(flags: Flags, script: String) -> Result<(), AnyError> {
|
2021-05-10 02:06:13 -04:00
|
|
|
let resolver = |_| {
|
2020-11-28 09:18:13 -05:00
|
|
|
let script1 = script.clone();
|
|
|
|
let script2 = script.clone();
|
2020-11-22 15:45:44 -05:00
|
|
|
let flags = flags.clone();
|
|
|
|
async move {
|
2021-02-17 13:47:18 -05:00
|
|
|
let main_module = resolve_url_or_path(&script1)?;
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = ProcState::build(flags).await?;
|
2021-10-10 17:26:22 -04:00
|
|
|
let mut cache = cache::FetchCacher::new(
|
|
|
|
ps.dir.gen_cache.clone(),
|
|
|
|
ps.file_fetcher.clone(),
|
2020-11-22 15:45:44 -05:00
|
|
|
Permissions::allow_all(),
|
2021-05-17 03:44:38 -04:00
|
|
|
Permissions::allow_all(),
|
2020-11-22 15:45:44 -05:00
|
|
|
);
|
2021-10-10 17:26:22 -04:00
|
|
|
let maybe_locker = lockfile::as_maybe_locker(ps.lockfile.clone());
|
|
|
|
let maybe_imports = ps
|
|
|
|
.maybe_config_file
|
|
|
|
.as_ref()
|
|
|
|
.map(|cf| cf.to_maybe_imports())
|
|
|
|
.flatten();
|
|
|
|
let maybe_resolver =
|
|
|
|
ps.maybe_import_map.as_ref().map(ImportMapResolver::new);
|
|
|
|
let graph = deno_graph::create_graph(
|
|
|
|
vec![main_module.clone()],
|
|
|
|
false,
|
|
|
|
maybe_imports,
|
|
|
|
&mut cache,
|
|
|
|
maybe_resolver.as_ref().map(|r| r.as_resolver()),
|
|
|
|
maybe_locker,
|
|
|
|
None,
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
graph.valid()?;
|
2020-11-22 15:45:44 -05:00
|
|
|
|
|
|
|
// Find all local files in graph
|
2021-10-10 17:26:22 -04:00
|
|
|
let mut paths_to_watch: Vec<PathBuf> = graph
|
|
|
|
.specifiers()
|
2020-11-22 15:45:44 -05:00
|
|
|
.iter()
|
2021-10-10 17:26:22 -04:00
|
|
|
.filter_map(|(_, r)| {
|
|
|
|
r.as_ref()
|
|
|
|
.ok()
|
|
|
|
.map(|(s, _)| s.to_file_path().ok())
|
|
|
|
.flatten()
|
|
|
|
})
|
2020-11-22 15:45:44 -05:00
|
|
|
.collect();
|
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
if let Some(import_map) = ps.flags.import_map_path.as_ref() {
|
2020-11-22 15:45:44 -05:00
|
|
|
paths_to_watch
|
|
|
|
.push(fs_util::resolve_from_cwd(std::path::Path::new(import_map))?);
|
|
|
|
}
|
2020-09-11 12:19:49 -04:00
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
Ok((paths_to_watch, main_module, ps))
|
2020-11-22 15:45:44 -05:00
|
|
|
}
|
2020-11-28 09:18:13 -05:00
|
|
|
.map(move |result| match result {
|
2021-09-24 11:10:42 -04:00
|
|
|
Ok((paths_to_watch, module_info, ps)) => ResolutionResult::Restart {
|
|
|
|
paths_to_watch,
|
|
|
|
result: Ok((ps, module_info)),
|
|
|
|
},
|
2021-05-10 02:06:13 -04:00
|
|
|
Err(e) => ResolutionResult::Restart {
|
|
|
|
paths_to_watch: vec![PathBuf::from(script2)],
|
|
|
|
result: Err(e),
|
2020-11-28 09:18:13 -05:00
|
|
|
},
|
|
|
|
})
|
2020-11-22 15:45:44 -05:00
|
|
|
};
|
2020-09-23 07:56:16 -04:00
|
|
|
|
2021-08-24 16:34:09 -04:00
|
|
|
/// The FileWatcherModuleExecutor provides module execution with safe dispatching of life-cycle events by tracking the
|
|
|
|
/// state of any pending events and emitting accordingly on drop in the case of a future
|
|
|
|
/// cancellation.
|
|
|
|
struct FileWatcherModuleExecutor {
|
|
|
|
worker: MainWorker,
|
|
|
|
pending_unload: bool,
|
2021-10-06 13:07:04 -04:00
|
|
|
compat: bool,
|
2021-08-24 16:34:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FileWatcherModuleExecutor {
|
2021-10-06 13:07:04 -04:00
|
|
|
pub fn new(worker: MainWorker, compat: bool) -> FileWatcherModuleExecutor {
|
2021-08-24 16:34:09 -04:00
|
|
|
FileWatcherModuleExecutor {
|
|
|
|
worker,
|
|
|
|
pending_unload: false,
|
2021-10-06 13:07:04 -04:00
|
|
|
compat,
|
2021-08-24 16:34:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Execute the given main module emitting load and unload events before and after execution
|
|
|
|
/// respectively.
|
|
|
|
pub async fn execute(
|
|
|
|
&mut self,
|
|
|
|
main_module: &ModuleSpecifier,
|
|
|
|
) -> Result<(), AnyError> {
|
2021-10-06 13:07:04 -04:00
|
|
|
if self.compat {
|
2021-10-10 17:26:22 -04:00
|
|
|
self.worker.execute_side_module(&compat::GLOBAL_URL).await?;
|
2021-10-06 13:07:04 -04:00
|
|
|
}
|
2021-09-17 21:44:53 -04:00
|
|
|
self.worker.execute_main_module(main_module).await?;
|
2021-08-24 16:34:09 -04:00
|
|
|
self.worker.execute_script(
|
|
|
|
&located_script_name!(),
|
|
|
|
"window.dispatchEvent(new Event('load'))",
|
|
|
|
)?;
|
|
|
|
self.pending_unload = true;
|
|
|
|
|
|
|
|
let result = self.worker.run_event_loop(false).await;
|
|
|
|
self.pending_unload = false;
|
|
|
|
|
|
|
|
if let Err(err) = result {
|
|
|
|
return Err(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
self.worker.execute_script(
|
|
|
|
&located_script_name!(),
|
|
|
|
"window.dispatchEvent(new Event('unload'))",
|
|
|
|
)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for FileWatcherModuleExecutor {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
if self.pending_unload {
|
|
|
|
self
|
|
|
|
.worker
|
|
|
|
.execute_script(
|
|
|
|
&located_script_name!(),
|
|
|
|
"window.dispatchEvent(new Event('unload'))",
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-24 11:10:42 -04:00
|
|
|
let operation = |(ps, main_module): (ProcState, ModuleSpecifier)| {
|
|
|
|
let flags = flags.clone();
|
2021-10-06 13:07:04 -04:00
|
|
|
let permissions = Permissions::from_options(&flags.clone().into());
|
2021-09-24 11:10:42 -04:00
|
|
|
async move {
|
|
|
|
// We make use an module executor guard to ensure that unload is always fired when an
|
|
|
|
// operation is called.
|
2021-10-06 13:07:04 -04:00
|
|
|
let mut executor = FileWatcherModuleExecutor::new(
|
|
|
|
create_main_worker(&ps, main_module.clone(), permissions, None),
|
|
|
|
flags.compat,
|
|
|
|
);
|
2021-09-24 11:10:42 -04:00
|
|
|
|
|
|
|
executor.execute(&main_module).await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
};
|
2020-11-22 15:45:44 -05:00
|
|
|
|
2021-05-10 02:06:13 -04:00
|
|
|
file_watcher::watch_func(resolver, operation, "Process").await
|
2020-09-11 12:19:49 -04:00
|
|
|
}
|
|
|
|
|
2021-09-03 19:33:35 -04:00
|
|
|
async fn run_command(
|
|
|
|
flags: Flags,
|
|
|
|
run_flags: RunFlags,
|
|
|
|
) -> Result<(), AnyError> {
|
2020-09-11 12:19:49 -04:00
|
|
|
// Read script content from stdin
|
2021-09-03 19:33:35 -04:00
|
|
|
if run_flags.script == "-" {
|
2020-09-11 12:19:49 -04:00
|
|
|
return run_from_stdin(flags).await;
|
|
|
|
}
|
|
|
|
|
|
|
|
if flags.watch {
|
2021-09-03 19:33:35 -04:00
|
|
|
return run_with_watch(flags, run_flags.script).await;
|
2020-09-11 12:19:49 -04:00
|
|
|
}
|
2020-06-11 10:58:09 -04:00
|
|
|
|
2021-10-18 13:36:28 -04:00
|
|
|
// TODO(bartlomieju): it should not be resolved here if we're in compat mode
|
|
|
|
// because it might be a bare specifier
|
|
|
|
// TODO(bartlomieju): actually I think it will also fail if there's an import
|
|
|
|
// map specified and bare specifier is used on the command line - this should
|
|
|
|
// probably call `ProcState::resolve` instead
|
2021-09-03 19:33:35 -04:00
|
|
|
let main_module = resolve_url_or_path(&run_flags.script)?;
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = ProcState::build(flags.clone()).await?;
|
2020-12-13 13:45:53 -05:00
|
|
|
let permissions = Permissions::from_options(&flags.clone().into());
|
2020-11-02 17:37:55 -05:00
|
|
|
let mut worker =
|
2021-09-24 11:10:42 -04:00
|
|
|
create_main_worker(&ps, main_module.clone(), permissions, None);
|
2020-12-28 10:51:26 -05:00
|
|
|
|
|
|
|
let mut maybe_coverage_collector =
|
2021-09-24 11:10:42 -04:00
|
|
|
if let Some(ref coverage_dir) = ps.coverage_dir {
|
2021-05-26 11:47:33 -04:00
|
|
|
let session = worker.create_inspector_session().await;
|
2020-12-28 10:51:26 -05:00
|
|
|
|
|
|
|
let coverage_dir = PathBuf::from(coverage_dir);
|
|
|
|
let mut coverage_collector =
|
|
|
|
tools::coverage::CoverageCollector::new(coverage_dir, session);
|
2021-05-31 10:53:49 -04:00
|
|
|
worker
|
|
|
|
.with_event_loop(coverage_collector.start_collecting().boxed_local())
|
|
|
|
.await?;
|
2020-12-28 10:51:26 -05:00
|
|
|
Some(coverage_collector)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2020-05-11 17:33:36 -04:00
|
|
|
debug!("main_module {}", main_module);
|
2021-10-18 13:36:28 -04:00
|
|
|
|
2021-10-06 13:07:04 -04:00
|
|
|
if flags.compat {
|
2021-10-18 13:36:28 -04:00
|
|
|
// TODO(bartlomieju): fix me
|
|
|
|
assert_eq!(main_module.scheme(), "file");
|
|
|
|
|
|
|
|
// Set up Node globals
|
2021-10-10 17:26:22 -04:00
|
|
|
worker.execute_side_module(&compat::GLOBAL_URL).await?;
|
2021-10-18 13:36:28 -04:00
|
|
|
// And `module` module that we'll use for checking which
|
|
|
|
// loader to use and potentially load CJS module with.
|
|
|
|
// This allows to skip permission check for `--allow-net`
|
|
|
|
// which would otherwise be requested by dynamically importing
|
|
|
|
// this file.
|
|
|
|
worker.execute_side_module(&compat::MODULE_URL).await?;
|
|
|
|
|
2021-11-01 14:46:07 -04:00
|
|
|
let use_esm_loader = compat::check_if_should_use_esm_loader(&main_module)?;
|
2021-10-18 13:36:28 -04:00
|
|
|
|
|
|
|
if use_esm_loader {
|
|
|
|
// ES module execution in Node compatiblity mode
|
|
|
|
worker.execute_main_module(&main_module).await?;
|
|
|
|
} else {
|
|
|
|
// CJS module execution in Node compatiblity mode
|
|
|
|
compat::load_cjs_module(
|
|
|
|
&mut worker.js_runtime,
|
|
|
|
&main_module.to_file_path().unwrap().display().to_string(),
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Regular ES module execution
|
|
|
|
worker.execute_main_module(&main_module).await?;
|
2021-10-06 13:07:04 -04:00
|
|
|
}
|
2021-10-18 13:36:28 -04:00
|
|
|
|
2021-06-21 19:45:41 -04:00
|
|
|
worker.execute_script(
|
|
|
|
&located_script_name!(),
|
|
|
|
"window.dispatchEvent(new Event('load'))",
|
|
|
|
)?;
|
2021-05-26 15:07:12 -04:00
|
|
|
worker
|
|
|
|
.run_event_loop(maybe_coverage_collector.is_none())
|
|
|
|
.await?;
|
2021-06-21 19:45:41 -04:00
|
|
|
worker.execute_script(
|
|
|
|
&located_script_name!(),
|
|
|
|
"window.dispatchEvent(new Event('unload'))",
|
|
|
|
)?;
|
2020-12-28 10:51:26 -05:00
|
|
|
|
|
|
|
if let Some(coverage_collector) = maybe_coverage_collector.as_mut() {
|
2021-05-31 10:53:49 -04:00
|
|
|
worker
|
|
|
|
.with_event_loop(coverage_collector.stop_collecting().boxed_local())
|
|
|
|
.await?;
|
2020-12-28 10:51:26 -05:00
|
|
|
}
|
2020-05-11 17:33:36 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-02-24 09:27:51 -05:00
|
|
|
async fn coverage_command(
|
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
coverage_flags: CoverageFlags,
|
2021-02-24 09:27:51 -05:00
|
|
|
) -> Result<(), AnyError> {
|
2021-09-03 19:33:35 -04:00
|
|
|
if coverage_flags.files.is_empty() {
|
2021-07-15 12:28:14 -04:00
|
|
|
return Err(generic_error("No matching coverage profiles found"));
|
2021-02-24 09:27:51 -05:00
|
|
|
}
|
|
|
|
|
2021-10-06 13:28:28 -04:00
|
|
|
tools::coverage::cover_files(
|
2021-02-24 09:27:51 -05:00
|
|
|
flags.clone(),
|
2021-09-03 19:33:35 -04:00
|
|
|
coverage_flags.files,
|
|
|
|
coverage_flags.ignore,
|
|
|
|
coverage_flags.include,
|
|
|
|
coverage_flags.exclude,
|
|
|
|
coverage_flags.lcov,
|
2021-02-24 09:27:51 -05:00
|
|
|
)
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
2020-05-11 17:33:36 -04:00
|
|
|
async fn test_command(
|
|
|
|
flags: Flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
test_flags: TestFlags,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-12-21 08:04:25 -05:00
|
|
|
if let Some(ref coverage_dir) = flags.coverage_dir {
|
2021-05-21 09:57:00 -04:00
|
|
|
std::fs::create_dir_all(&coverage_dir)?;
|
2021-05-19 09:33:22 -04:00
|
|
|
env::set_var(
|
|
|
|
"DENO_UNSTABLE_COVERAGE_DIR",
|
|
|
|
PathBuf::from(coverage_dir).canonicalize()?,
|
|
|
|
);
|
2020-12-21 08:04:25 -05:00
|
|
|
}
|
2020-09-13 09:01:30 -04:00
|
|
|
|
2021-05-10 02:06:13 -04:00
|
|
|
if flags.watch {
|
2021-08-26 15:21:58 -04:00
|
|
|
tools::test::run_tests_with_watch(
|
|
|
|
flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
test_flags.include,
|
|
|
|
test_flags.ignore,
|
|
|
|
test_flags.doc,
|
|
|
|
test_flags.no_run,
|
|
|
|
test_flags.fail_fast,
|
|
|
|
test_flags.filter,
|
|
|
|
test_flags.shuffle,
|
|
|
|
test_flags.concurrent_jobs,
|
2021-05-10 02:06:13 -04:00
|
|
|
)
|
|
|
|
.await?;
|
2021-08-26 15:21:58 -04:00
|
|
|
|
|
|
|
return Ok(());
|
2021-05-10 02:06:13 -04:00
|
|
|
}
|
2020-09-13 09:01:30 -04:00
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
tools::test::run_tests(
|
|
|
|
flags,
|
2021-09-03 19:33:35 -04:00
|
|
|
test_flags.include,
|
|
|
|
test_flags.ignore,
|
|
|
|
test_flags.doc,
|
|
|
|
test_flags.no_run,
|
|
|
|
test_flags.fail_fast,
|
|
|
|
test_flags.allow_none,
|
|
|
|
test_flags.filter,
|
|
|
|
test_flags.shuffle,
|
|
|
|
test_flags.concurrent_jobs,
|
2021-08-26 15:21:58 -04:00
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
2020-09-13 09:01:30 -04:00
|
|
|
Ok(())
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
|
|
|
|
2020-11-26 09:17:45 -05:00
|
|
|
fn init_v8_flags(v8_flags: &[String]) {
|
|
|
|
let v8_flags_includes_help = v8_flags
|
|
|
|
.iter()
|
|
|
|
.any(|flag| flag == "-help" || flag == "--help");
|
2021-01-04 18:15:52 -05:00
|
|
|
// Keep in sync with `standalone.rs`.
|
2020-11-26 09:17:45 -05:00
|
|
|
let v8_flags = once("UNUSED_BUT_NECESSARY_ARG0".to_owned())
|
|
|
|
.chain(v8_flags.iter().cloned())
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
let unrecognized_v8_flags = v8_set_flags(v8_flags)
|
|
|
|
.into_iter()
|
|
|
|
.skip(1)
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
if !unrecognized_v8_flags.is_empty() {
|
|
|
|
for f in unrecognized_v8_flags {
|
|
|
|
eprintln!("error: V8 did not recognize flag '{}'", f);
|
2020-08-07 18:51:59 -04:00
|
|
|
}
|
2020-11-26 09:17:45 -05:00
|
|
|
eprintln!("\nFor a list of V8 flags, use '--v8-flags=--help'");
|
|
|
|
std::process::exit(1);
|
|
|
|
}
|
|
|
|
if v8_flags_includes_help {
|
|
|
|
std::process::exit(0);
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
2020-11-26 09:17:45 -05:00
|
|
|
}
|
2020-05-11 17:33:36 -04:00
|
|
|
|
2020-11-26 09:17:45 -05:00
|
|
|
fn get_subcommand(
|
|
|
|
flags: Flags,
|
|
|
|
) -> Pin<Box<dyn Future<Output = Result<(), AnyError>>>> {
|
|
|
|
match flags.clone().subcommand {
|
2021-09-03 19:33:35 -04:00
|
|
|
DenoSubcommand::Bundle(bundle_flags) => {
|
|
|
|
bundle_command(flags, bundle_flags).boxed_local()
|
|
|
|
}
|
|
|
|
DenoSubcommand::Doc(doc_flags) => {
|
|
|
|
doc_command(flags, doc_flags).boxed_local()
|
|
|
|
}
|
|
|
|
DenoSubcommand::Eval(eval_flags) => {
|
|
|
|
eval_command(flags, eval_flags).boxed_local()
|
2021-02-21 11:58:32 -05:00
|
|
|
}
|
2021-09-03 19:33:35 -04:00
|
|
|
DenoSubcommand::Cache(cache_flags) => {
|
|
|
|
cache_command(flags, cache_flags).boxed_local()
|
2020-10-23 10:56:25 -04:00
|
|
|
}
|
2021-09-03 19:33:35 -04:00
|
|
|
DenoSubcommand::Compile(compile_flags) => {
|
|
|
|
compile_command(flags, compile_flags).boxed_local()
|
2021-04-26 13:28:38 -04:00
|
|
|
}
|
2021-09-03 19:33:35 -04:00
|
|
|
DenoSubcommand::Coverage(coverage_flags) => {
|
|
|
|
coverage_command(flags, coverage_flags).boxed_local()
|
2020-07-08 10:50:12 -04:00
|
|
|
}
|
2021-09-03 19:33:35 -04:00
|
|
|
DenoSubcommand::Fmt(fmt_flags) => {
|
|
|
|
format_command(flags, fmt_flags).boxed_local()
|
|
|
|
}
|
|
|
|
DenoSubcommand::Info(info_flags) => {
|
|
|
|
info_command(flags, info_flags).boxed_local()
|
|
|
|
}
|
|
|
|
DenoSubcommand::Install(install_flags) => {
|
|
|
|
install_command(flags, install_flags).boxed_local()
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
2021-09-30 11:38:07 -04:00
|
|
|
DenoSubcommand::Uninstall(uninstall_flags) => {
|
|
|
|
uninstall_command(uninstall_flags).boxed_local()
|
|
|
|
}
|
2021-06-22 21:48:01 -04:00
|
|
|
DenoSubcommand::Lsp => lsp_command().boxed_local(),
|
2021-09-03 19:33:35 -04:00
|
|
|
DenoSubcommand::Lint(lint_flags) => {
|
|
|
|
lint_command(flags, lint_flags).boxed_local()
|
|
|
|
}
|
|
|
|
DenoSubcommand::Repl(repl_flags) => {
|
|
|
|
run_repl(flags, repl_flags).boxed_local()
|
|
|
|
}
|
|
|
|
DenoSubcommand::Run(run_flags) => {
|
|
|
|
run_command(flags, run_flags).boxed_local()
|
|
|
|
}
|
|
|
|
DenoSubcommand::Test(test_flags) => {
|
|
|
|
test_command(flags, test_flags).boxed_local()
|
|
|
|
}
|
|
|
|
DenoSubcommand::Completions(CompletionsFlags { buf }) => {
|
2020-05-11 17:33:36 -04:00
|
|
|
if let Err(e) = write_to_stdout_ignore_sigpipe(&buf) {
|
|
|
|
eprintln!("{}", e);
|
|
|
|
std::process::exit(1);
|
|
|
|
}
|
2020-11-26 09:17:45 -05:00
|
|
|
std::process::exit(0);
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
|
|
|
DenoSubcommand::Types => {
|
|
|
|
let types = get_types(flags.unstable);
|
|
|
|
if let Err(e) = write_to_stdout_ignore_sigpipe(types.as_bytes()) {
|
|
|
|
eprintln!("{}", e);
|
|
|
|
std::process::exit(1);
|
|
|
|
}
|
2020-11-26 09:17:45 -05:00
|
|
|
std::process::exit(0);
|
2020-05-11 17:33:36 -04:00
|
|
|
}
|
2021-09-03 19:33:35 -04:00
|
|
|
DenoSubcommand::Upgrade(upgrade_flags) => {
|
|
|
|
let UpgradeFlags {
|
|
|
|
force,
|
|
|
|
dry_run,
|
|
|
|
canary,
|
|
|
|
version,
|
|
|
|
output,
|
|
|
|
ca_file,
|
|
|
|
} = upgrade_flags;
|
|
|
|
tools::upgrade::upgrade_command(
|
|
|
|
dry_run, force, canary, version, output, ca_file,
|
|
|
|
)
|
|
|
|
.boxed_local()
|
|
|
|
}
|
2020-11-26 09:17:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-07 19:34:27 -04:00
|
|
|
fn setup_exit_process_panic_hook() {
|
|
|
|
// tokio does not exit the process when a task panics, so we
|
|
|
|
// define a custom panic hook to implement this behaviour
|
|
|
|
let orig_hook = std::panic::take_hook();
|
|
|
|
std::panic::set_hook(Box::new(move |panic_info| {
|
|
|
|
orig_hook(panic_info);
|
|
|
|
std::process::exit(1);
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
fn unwrap_or_exit<T>(result: Result<T, AnyError>) -> T {
|
|
|
|
match result {
|
|
|
|
Ok(value) => value,
|
|
|
|
Err(error) => {
|
2021-03-18 20:02:29 -04:00
|
|
|
eprintln!("{}: {:?}", colors::red_bold("error"), error);
|
2021-01-07 13:06:08 -05:00
|
|
|
std::process::exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-26 09:17:45 -05:00
|
|
|
pub fn main() {
|
2021-09-07 19:34:27 -04:00
|
|
|
setup_exit_process_panic_hook();
|
2021-10-25 11:16:16 -04:00
|
|
|
|
|
|
|
unix_util::raise_fd_limit();
|
|
|
|
windows_util::ensure_stdio_open();
|
2020-11-26 09:17:45 -05:00
|
|
|
#[cfg(windows)]
|
|
|
|
colors::enable_ansi(); // For Windows 10
|
|
|
|
|
|
|
|
let args: Vec<String> = env::args().collect();
|
2021-01-07 21:08:51 -05:00
|
|
|
let standalone_res = match standalone::extract_standalone(args.clone()) {
|
|
|
|
Ok(Some((metadata, bundle))) => {
|
|
|
|
tokio_util::run_basic(standalone::run(bundle, metadata))
|
|
|
|
}
|
|
|
|
Ok(None) => Ok(()),
|
|
|
|
Err(err) => Err(err),
|
|
|
|
};
|
|
|
|
if let Err(err) = standalone_res {
|
2020-11-30 14:35:12 -05:00
|
|
|
eprintln!("{}: {}", colors::red_bold("error"), err.to_string());
|
|
|
|
std::process::exit(1);
|
|
|
|
}
|
2020-11-26 09:17:45 -05:00
|
|
|
|
2021-01-09 07:08:03 -05:00
|
|
|
let flags = match flags::flags_from_vec(args) {
|
|
|
|
Ok(flags) => flags,
|
|
|
|
Err(err @ clap::Error { .. })
|
|
|
|
if err.kind == clap::ErrorKind::HelpDisplayed
|
|
|
|
|| err.kind == clap::ErrorKind::VersionDisplayed =>
|
|
|
|
{
|
|
|
|
err.write_to(&mut std::io::stdout()).unwrap();
|
2021-01-18 19:56:24 -05:00
|
|
|
std::io::stdout().write_all(b"\n").unwrap();
|
2021-01-09 07:08:03 -05:00
|
|
|
std::process::exit(0);
|
|
|
|
}
|
|
|
|
Err(err) => unwrap_or_exit(Err(AnyError::from(err))),
|
|
|
|
};
|
2020-12-06 12:19:21 -05:00
|
|
|
if !flags.v8_flags.is_empty() {
|
|
|
|
init_v8_flags(&*flags.v8_flags);
|
2020-11-26 09:17:45 -05:00
|
|
|
}
|
2021-05-11 00:54:10 -04:00
|
|
|
|
|
|
|
logger::init(flags.log_level);
|
2020-05-11 17:33:36 -04:00
|
|
|
|
2021-01-07 13:06:08 -05:00
|
|
|
unwrap_or_exit(tokio_util::run_basic(get_subcommand(flags)));
|
2018-06-15 19:43:23 -04:00
|
|
|
}
|