2019-01-01 19:58:40 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2018-07-26 17:54:22 -04:00
|
|
|
#[macro_use]
|
2018-09-24 19:51:37 -04:00
|
|
|
extern crate lazy_static;
|
|
|
|
#[macro_use]
|
2018-07-26 17:54:22 -04:00
|
|
|
extern crate log;
|
2018-10-26 21:34:42 -04:00
|
|
|
#[macro_use]
|
|
|
|
extern crate futures;
|
2019-01-09 12:59:46 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_json;
|
2019-04-07 00:13:06 +02:00
|
|
|
extern crate clap;
|
|
|
|
extern crate deno;
|
2019-06-09 15:08:20 +02:00
|
|
|
extern crate indexmap;
|
2019-04-21 18:26:56 -07:00
|
|
|
#[cfg(unix)]
|
|
|
|
extern crate nix;
|
2019-05-17 20:03:01 +02:00
|
|
|
extern crate rand;
|
2018-07-26 17:54:22 -04:00
|
|
|
|
2019-02-07 20:07:20 -05:00
|
|
|
mod ansi;
|
2019-01-09 12:59:46 -05:00
|
|
|
pub mod compiler;
|
2018-10-31 11:11:10 -07:00
|
|
|
pub mod deno_dir;
|
2019-06-20 12:07:01 +10:00
|
|
|
pub mod deno_error;
|
2019-06-04 23:03:56 +10:00
|
|
|
pub mod diagnostics;
|
2019-05-03 00:06:43 -04:00
|
|
|
mod dispatch_minimal;
|
2018-10-31 11:11:10 -07:00
|
|
|
pub mod flags;
|
2019-06-20 12:07:01 +10:00
|
|
|
pub mod fmt_errors;
|
2018-07-26 17:54:22 -04:00
|
|
|
mod fs;
|
2019-03-10 15:37:05 -04:00
|
|
|
mod global_timer;
|
2018-10-25 19:14:04 -04:00
|
|
|
mod http_body;
|
2018-10-10 13:35:10 -04:00
|
|
|
mod http_util;
|
2019-06-09 15:08:20 +02:00
|
|
|
mod import_map;
|
2018-10-31 11:11:10 -07:00
|
|
|
pub mod msg;
|
2018-11-02 20:09:10 -04:00
|
|
|
pub mod msg_util;
|
2018-10-03 20:48:02 -04:00
|
|
|
pub mod ops;
|
2018-10-31 11:11:10 -07:00
|
|
|
pub mod permissions;
|
2019-05-11 10:23:19 -04:00
|
|
|
mod progress;
|
2018-11-05 09:55:59 -08:00
|
|
|
mod repl;
|
2019-01-13 22:14:59 -05:00
|
|
|
pub mod resolve_addr;
|
2018-10-31 11:11:10 -07:00
|
|
|
pub mod resources;
|
2019-05-30 11:07:58 -04:00
|
|
|
mod shell;
|
2019-04-21 18:26:56 -07:00
|
|
|
mod signal;
|
2019-06-20 12:07:01 +10:00
|
|
|
pub mod source_maps;
|
2019-03-18 20:03:37 -04:00
|
|
|
mod startup_data;
|
2019-04-09 13:11:25 -04:00
|
|
|
pub mod state;
|
2018-09-18 11:53:16 -07:00
|
|
|
mod tokio_util;
|
2018-10-19 16:10:25 -04:00
|
|
|
mod tokio_write;
|
2018-10-31 11:11:10 -07:00
|
|
|
pub mod version;
|
2019-04-08 17:10:00 -04:00
|
|
|
pub mod worker;
|
2018-07-04 14:50:28 -04:00
|
|
|
|
2019-06-09 04:42:28 +10:00
|
|
|
use crate::compiler::bundle_async;
|
2019-05-11 10:23:19 -04:00
|
|
|
use crate::progress::Progress;
|
2019-04-09 13:11:25 -04:00
|
|
|
use crate::state::ThreadSafeState;
|
2019-04-08 17:10:00 -04:00
|
|
|
use crate::worker::Worker;
|
2019-04-21 17:34:18 +02:00
|
|
|
use deno::v8_set_flags;
|
2019-07-11 00:53:48 +02:00
|
|
|
use deno::ErrBox;
|
2019-06-13 01:55:59 +02:00
|
|
|
use deno::ModuleSpecifier;
|
2019-04-21 17:34:18 +02:00
|
|
|
use flags::DenoFlags;
|
2019-04-30 01:43:06 +02:00
|
|
|
use flags::DenoSubcommand;
|
2019-06-08 16:40:12 +05:30
|
|
|
use futures::future;
|
2019-03-14 19:17:52 -04:00
|
|
|
use futures::lazy;
|
|
|
|
use futures::Future;
|
2019-06-22 18:02:51 +02:00
|
|
|
use log::Level;
|
|
|
|
use log::Metadata;
|
|
|
|
use log::Record;
|
2018-07-25 18:27:27 -07:00
|
|
|
use std::env;
|
2018-07-26 17:37:09 -04:00
|
|
|
|
|
|
|
static LOGGER: Logger = Logger;
|
|
|
|
|
|
|
|
struct Logger;
|
|
|
|
|
|
|
|
impl log::Log for Logger {
|
2019-01-30 00:37:27 +09:00
|
|
|
fn enabled(&self, metadata: &Metadata) -> bool {
|
2018-08-07 13:33:36 -04:00
|
|
|
metadata.level() <= log::max_level()
|
2018-07-26 17:37:09 -04:00
|
|
|
}
|
|
|
|
|
2019-01-30 00:37:27 +09:00
|
|
|
fn log(&self, record: &Record) {
|
2018-07-26 17:37:09 -04:00
|
|
|
if self.enabled(record.metadata()) {
|
2019-05-25 18:23:47 +02:00
|
|
|
let mut target = record.target().to_string();
|
|
|
|
|
|
|
|
if let Some(line_no) = record.line() {
|
|
|
|
target.push_str(":");
|
|
|
|
target.push_str(&line_no.to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
println!("{} RS - {} - {}", record.level(), target, record.args());
|
2018-07-26 17:37:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fn flush(&self) {}
|
|
|
|
}
|
|
|
|
|
2019-07-11 00:53:48 +02:00
|
|
|
fn print_err_and_exit(err: ErrBox) {
|
2018-12-10 17:50:41 -05:00
|
|
|
eprintln!("{}", err.to_string());
|
2018-12-06 23:05:36 -05:00
|
|
|
std::process::exit(1);
|
|
|
|
}
|
|
|
|
|
2019-07-11 00:53:48 +02:00
|
|
|
fn js_check(r: Result<(), ErrBox>) {
|
2019-03-14 19:17:52 -04:00
|
|
|
if let Err(err) = r {
|
2019-07-11 00:53:48 +02:00
|
|
|
print_err_and_exit(err);
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-08 15:33:04 +05:30
|
|
|
pub fn print_file_info(
|
|
|
|
worker: Worker,
|
2019-06-12 21:00:08 +02:00
|
|
|
module_specifier: &ModuleSpecifier,
|
2019-06-08 15:33:04 +05:30
|
|
|
) -> impl Future<Item = Worker, Error = ()> {
|
2019-06-12 21:00:08 +02:00
|
|
|
state::fetch_module_meta_data_and_maybe_compile_async(
|
|
|
|
&worker.state,
|
|
|
|
module_specifier,
|
|
|
|
).and_then(move |out| {
|
2019-06-24 19:10:21 +02:00
|
|
|
println!(
|
|
|
|
"{} {}",
|
|
|
|
ansi::bold("local:".to_string()),
|
|
|
|
out.filename.to_str().unwrap()
|
|
|
|
);
|
2019-06-12 21:00:08 +02:00
|
|
|
|
|
|
|
println!(
|
|
|
|
"{} {}",
|
|
|
|
ansi::bold("type:".to_string()),
|
|
|
|
msg::enum_name_media_type(out.media_type)
|
|
|
|
);
|
|
|
|
|
|
|
|
if out.maybe_output_code_filename.is_some() {
|
2019-06-08 15:33:04 +05:30
|
|
|
println!(
|
|
|
|
"{} {}",
|
2019-06-12 21:00:08 +02:00
|
|
|
ansi::bold("compiled:".to_string()),
|
2019-06-24 19:10:21 +02:00
|
|
|
out.maybe_output_code_filename.unwrap().to_str().unwrap(),
|
2019-06-08 15:33:04 +05:30
|
|
|
);
|
2019-06-12 21:00:08 +02:00
|
|
|
}
|
2019-04-16 15:13:42 -04:00
|
|
|
|
2019-06-12 21:00:08 +02:00
|
|
|
if out.maybe_source_map_filename.is_some() {
|
|
|
|
println!(
|
|
|
|
"{} {}",
|
|
|
|
ansi::bold("map:".to_string()),
|
2019-06-24 19:10:21 +02:00
|
|
|
out.maybe_source_map_filename.unwrap().to_str().unwrap()
|
2019-06-12 21:00:08 +02:00
|
|
|
);
|
|
|
|
}
|
2019-06-08 16:40:12 +05:30
|
|
|
|
2019-06-12 21:00:08 +02:00
|
|
|
if let Some(deps) =
|
|
|
|
worker.state.modules.lock().unwrap().deps(&out.module_name)
|
|
|
|
{
|
|
|
|
println!("{}{}", ansi::bold("deps:\n".to_string()), deps.name);
|
|
|
|
if let Some(ref depsdeps) = deps.deps {
|
|
|
|
for d in depsdeps {
|
|
|
|
println!("{}", d);
|
2019-06-08 15:33:04 +05:30
|
|
|
}
|
2019-04-19 11:18:46 -04:00
|
|
|
}
|
2019-06-12 21:00:08 +02:00
|
|
|
} else {
|
|
|
|
println!(
|
|
|
|
"{} cannot retrieve full dependency graph",
|
|
|
|
ansi::bold("deps:".to_string()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
Ok(worker)
|
|
|
|
}).map_err(|err| println!("{}", err))
|
2019-04-16 15:13:42 -04:00
|
|
|
}
|
|
|
|
|
2019-04-21 17:34:18 +02:00
|
|
|
fn create_worker_and_state(
|
|
|
|
flags: DenoFlags,
|
|
|
|
argv: Vec<String>,
|
|
|
|
) -> (Worker, ThreadSafeState) {
|
2019-05-30 11:07:58 -04:00
|
|
|
use crate::shell::Shell;
|
|
|
|
use std::sync::Arc;
|
|
|
|
use std::sync::Mutex;
|
|
|
|
let shell = Arc::new(Mutex::new(Shell::new()));
|
2019-05-11 10:23:19 -04:00
|
|
|
let progress = Progress::new();
|
2019-05-30 11:07:58 -04:00
|
|
|
progress.set_callback(move |_done, _completed, _total, status, msg| {
|
|
|
|
if !status.is_empty() {
|
|
|
|
let mut s = shell.lock().unwrap();
|
|
|
|
s.status(status, msg).expect("shell problem");
|
2019-05-11 10:23:19 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
let state = ThreadSafeState::new(flags, argv, ops::op_selector_std, progress);
|
2019-04-21 17:34:18 +02:00
|
|
|
let worker = Worker::new(
|
|
|
|
"main".to_string(),
|
|
|
|
startup_data::deno_isolate_init(),
|
|
|
|
state.clone(),
|
|
|
|
);
|
2019-02-08 00:19:50 +03:00
|
|
|
|
2019-04-21 17:34:18 +02:00
|
|
|
(worker, state)
|
|
|
|
}
|
2018-11-05 22:41:39 -08:00
|
|
|
|
2019-04-21 17:34:18 +02:00
|
|
|
fn types_command() {
|
2019-04-25 12:27:30 -06:00
|
|
|
let content = include_str!(concat!(
|
2019-04-21 17:34:18 +02:00
|
|
|
env!("GN_OUT_DIR"),
|
|
|
|
"/gen/cli/lib/lib.deno_runtime.d.ts"
|
|
|
|
));
|
|
|
|
println!("{}", content);
|
|
|
|
}
|
2018-11-05 22:41:39 -08:00
|
|
|
|
2019-04-25 19:47:33 +02:00
|
|
|
fn fetch_or_info_command(
|
2019-04-21 17:34:18 +02:00
|
|
|
flags: DenoFlags,
|
|
|
|
argv: Vec<String>,
|
|
|
|
print_info: bool,
|
|
|
|
) {
|
|
|
|
let (mut worker, state) = create_worker_and_state(flags, argv);
|
2019-02-01 18:29:00 -05:00
|
|
|
|
2019-04-21 17:34:18 +02:00
|
|
|
let main_module = state.main_module().unwrap();
|
|
|
|
let main_future = lazy(move || {
|
|
|
|
// Setup runtime.
|
|
|
|
js_check(worker.execute("denoMain()"));
|
|
|
|
debug!("main_module {}", main_module);
|
2019-01-15 09:19:58 -08:00
|
|
|
|
2019-04-21 17:34:18 +02:00
|
|
|
worker
|
2019-06-12 21:00:08 +02:00
|
|
|
.execute_mod_async(&main_module, true)
|
2019-06-08 16:40:12 +05:30
|
|
|
.map_err(print_err_and_exit)
|
2019-06-05 16:35:38 -04:00
|
|
|
.and_then(move |()| {
|
2019-04-21 17:34:18 +02:00
|
|
|
if print_info {
|
2019-06-08 15:33:04 +05:30
|
|
|
future::Either::A(print_file_info(worker, &main_module))
|
|
|
|
} else {
|
|
|
|
future::Either::B(future::ok(worker))
|
2019-04-21 17:34:18 +02:00
|
|
|
}
|
2019-06-08 15:33:04 +05:30
|
|
|
}).and_then(|worker| {
|
2019-04-21 17:34:18 +02:00
|
|
|
worker.then(|result| {
|
|
|
|
js_check(result);
|
|
|
|
Ok(())
|
|
|
|
})
|
2019-06-08 16:40:12 +05:30
|
|
|
})
|
2019-04-21 17:34:18 +02:00
|
|
|
});
|
|
|
|
tokio_util::run(main_future);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn eval_command(flags: DenoFlags, argv: Vec<String>) {
|
|
|
|
let (mut worker, state) = create_worker_and_state(flags, argv);
|
|
|
|
// Wrap provided script in async function so asynchronous methods
|
|
|
|
// work. This is required until top-level await is not supported.
|
|
|
|
let js_source = format!(
|
|
|
|
"async function _topLevelWrapper(){{
|
|
|
|
{}
|
|
|
|
}}
|
|
|
|
_topLevelWrapper();
|
|
|
|
",
|
|
|
|
&state.argv[1]
|
2019-04-09 13:11:25 -04:00
|
|
|
);
|
2019-01-09 12:59:46 -05:00
|
|
|
|
2019-04-21 17:34:18 +02:00
|
|
|
let main_future = lazy(move || {
|
|
|
|
js_check(worker.execute("denoMain()"));
|
|
|
|
// ATM imports in `deno eval` are not allowed
|
|
|
|
// TODO Support ES modules once Worker supports evaluating anonymous modules.
|
|
|
|
js_check(worker.execute(&js_source));
|
|
|
|
worker.then(|result| {
|
|
|
|
js_check(result);
|
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
});
|
|
|
|
tokio_util::run(main_future);
|
|
|
|
}
|
|
|
|
|
2019-05-03 13:24:09 -07:00
|
|
|
fn xeval_command(flags: DenoFlags, argv: Vec<String>) {
|
|
|
|
let xeval_replvar = flags.xeval_replvar.clone().unwrap();
|
|
|
|
let (mut worker, state) = create_worker_and_state(flags, argv);
|
|
|
|
let xeval_source = format!(
|
|
|
|
"window._xevalWrapper = async function ({}){{
|
|
|
|
{}
|
|
|
|
}}",
|
|
|
|
&xeval_replvar, &state.argv[1]
|
|
|
|
);
|
|
|
|
|
|
|
|
let main_future = lazy(move || {
|
|
|
|
// Setup runtime.
|
|
|
|
js_check(worker.execute(&xeval_source));
|
|
|
|
js_check(worker.execute("denoMain()"));
|
|
|
|
worker
|
|
|
|
.then(|result| {
|
|
|
|
js_check(result);
|
|
|
|
Ok(())
|
2019-07-11 00:53:48 +02:00
|
|
|
}).map_err(print_err_and_exit)
|
2019-05-03 13:24:09 -07:00
|
|
|
});
|
|
|
|
tokio_util::run(main_future);
|
|
|
|
}
|
|
|
|
|
2019-06-09 04:42:28 +10:00
|
|
|
fn bundle_command(flags: DenoFlags, argv: Vec<String>) {
|
|
|
|
let (mut _worker, state) = create_worker_and_state(flags, argv);
|
|
|
|
|
|
|
|
let main_module = state.main_module().unwrap();
|
|
|
|
assert!(state.argv.len() >= 3);
|
|
|
|
let out_file = state.argv[2].clone();
|
|
|
|
debug!(">>>>> bundle_async START");
|
2019-06-12 21:00:08 +02:00
|
|
|
let bundle_future = bundle_async(state, main_module.to_string(), out_file)
|
2019-07-11 00:53:48 +02:00
|
|
|
.map_err(|err| {
|
2019-06-09 04:42:28 +10:00
|
|
|
debug!("diagnostics returned, exiting!");
|
2019-07-11 00:53:48 +02:00
|
|
|
eprintln!("");
|
|
|
|
print_err_and_exit(err);
|
2019-06-09 04:42:28 +10:00
|
|
|
}).and_then(move |_| {
|
|
|
|
debug!(">>>>> bundle_async END");
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
tokio_util::run(bundle_future);
|
|
|
|
}
|
|
|
|
|
2019-04-21 17:34:18 +02:00
|
|
|
fn run_repl(flags: DenoFlags, argv: Vec<String>) {
|
|
|
|
let (mut worker, _state) = create_worker_and_state(flags, argv);
|
|
|
|
|
|
|
|
// REPL situation.
|
|
|
|
let main_future = lazy(move || {
|
|
|
|
// Setup runtime.
|
|
|
|
js_check(worker.execute("denoMain()"));
|
|
|
|
worker
|
|
|
|
.then(|result| {
|
2019-04-16 15:13:42 -04:00
|
|
|
js_check(result);
|
|
|
|
Ok(())
|
2019-07-11 00:53:48 +02:00
|
|
|
}).map_err(|(err, _worker): (ErrBox, Worker)| print_err_and_exit(err))
|
2019-04-21 17:34:18 +02:00
|
|
|
});
|
|
|
|
tokio_util::run(main_future);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run_script(flags: DenoFlags, argv: Vec<String>) {
|
|
|
|
let (mut worker, state) = create_worker_and_state(flags, argv);
|
|
|
|
|
|
|
|
let main_module = state.main_module().unwrap();
|
|
|
|
// Normal situation of executing a module.
|
|
|
|
let main_future = lazy(move || {
|
|
|
|
// Setup runtime.
|
|
|
|
js_check(worker.execute("denoMain()"));
|
|
|
|
debug!("main_module {}", main_module);
|
|
|
|
|
|
|
|
worker
|
2019-06-12 21:00:08 +02:00
|
|
|
.execute_mod_async(&main_module, false)
|
2019-06-05 16:35:38 -04:00
|
|
|
.and_then(move |()| {
|
2019-07-16 13:19:26 +09:00
|
|
|
js_check(worker.execute("window.dispatchEvent(new Event('load'))"));
|
2019-04-21 17:34:18 +02:00
|
|
|
worker.then(|result| {
|
2019-04-16 15:13:42 -04:00
|
|
|
js_check(result);
|
|
|
|
Ok(())
|
|
|
|
})
|
2019-06-05 16:35:38 -04:00
|
|
|
}).map_err(print_err_and_exit)
|
2019-04-21 17:34:18 +02:00
|
|
|
});
|
|
|
|
tokio_util::run(main_future);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
#[cfg(windows)]
|
|
|
|
ansi_term::enable_ansi_support().ok(); // For Windows 10
|
|
|
|
|
|
|
|
log::set_logger(&LOGGER).unwrap();
|
|
|
|
let args: Vec<String> = env::args().collect();
|
2019-04-30 01:43:06 +02:00
|
|
|
let (flags, subcommand, argv) = flags::flags_from_vec(args);
|
2019-04-21 17:34:18 +02:00
|
|
|
|
2019-05-03 02:37:02 +02:00
|
|
|
if let Some(ref v8_flags) = flags.v8_flags {
|
|
|
|
v8_set_flags(v8_flags.clone());
|
|
|
|
}
|
2019-04-21 17:34:18 +02:00
|
|
|
|
2019-06-22 18:02:51 +02:00
|
|
|
let log_level = match flags.log_level {
|
|
|
|
Some(level) => level,
|
|
|
|
None => Level::Warn,
|
|
|
|
};
|
|
|
|
log::set_max_level(log_level.to_level_filter());
|
2019-04-21 17:34:18 +02:00
|
|
|
|
2019-04-30 01:43:06 +02:00
|
|
|
match subcommand {
|
2019-06-09 04:42:28 +10:00
|
|
|
DenoSubcommand::Bundle => bundle_command(flags, argv),
|
2019-06-26 12:02:13 +02:00
|
|
|
DenoSubcommand::Completions => {}
|
2019-04-30 01:43:06 +02:00
|
|
|
DenoSubcommand::Eval => eval_command(flags, argv),
|
|
|
|
DenoSubcommand::Fetch => fetch_or_info_command(flags, argv, false),
|
|
|
|
DenoSubcommand::Info => fetch_or_info_command(flags, argv, true),
|
2019-06-14 19:05:06 +02:00
|
|
|
DenoSubcommand::Install => run_script(flags, argv),
|
2019-04-30 01:43:06 +02:00
|
|
|
DenoSubcommand::Repl => run_repl(flags, argv),
|
|
|
|
DenoSubcommand::Run => run_script(flags, argv),
|
|
|
|
DenoSubcommand::Types => types_command(),
|
2019-05-04 00:48:50 +02:00
|
|
|
DenoSubcommand::Version => run_repl(flags, argv),
|
2019-05-03 13:24:09 -07:00
|
|
|
DenoSubcommand::Xeval => xeval_command(flags, argv),
|
2019-04-16 15:13:42 -04:00
|
|
|
}
|
2018-06-16 01:43:23 +02:00
|
|
|
}
|