2018-08-17 16:34:30 -04:00
|
|
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
2018-10-24 00:02:43 -04:00
|
|
|
use getopts::Options;
|
2018-08-17 16:34:30 -04:00
|
|
|
use libc::c_int;
|
2018-09-04 18:56:12 -04:00
|
|
|
use libdeno;
|
2018-08-17 16:34:30 -04:00
|
|
|
use std::ffi::CStr;
|
|
|
|
use std::ffi::CString;
|
|
|
|
use std::mem;
|
2018-08-24 15:26:40 -04:00
|
|
|
use std::vec::Vec;
|
2018-08-17 16:34:30 -04:00
|
|
|
|
|
|
|
// Creates vector of strings, Vec<String>
|
|
|
|
#[cfg(test)]
|
|
|
|
macro_rules! svec {
|
|
|
|
($($x:expr),*) => (vec![$($x.to_string()),*]);
|
|
|
|
}
|
|
|
|
|
2018-11-05 01:21:21 -05:00
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(stutter))]
|
2018-08-31 07:51:12 -04:00
|
|
|
#[derive(Debug, PartialEq, Default)]
|
2018-08-17 16:34:30 -04:00
|
|
|
pub struct DenoFlags {
|
|
|
|
pub help: bool,
|
|
|
|
pub log_debug: bool,
|
|
|
|
pub version: bool,
|
|
|
|
pub reload: bool,
|
2018-09-24 15:33:50 -04:00
|
|
|
pub recompile: bool,
|
2018-08-17 16:34:30 -04:00
|
|
|
pub allow_write: bool,
|
|
|
|
pub allow_net: bool,
|
2018-08-31 07:51:12 -04:00
|
|
|
pub allow_env: bool,
|
2018-11-05 01:21:21 -05:00
|
|
|
pub types: bool,
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
|
2018-10-24 00:02:43 -04:00
|
|
|
pub fn get_usage(opts: &Options) -> String {
|
|
|
|
format!(
|
|
|
|
"Usage: deno script.ts {}
|
2018-10-15 12:08:19 -04:00
|
|
|
Environment variables:
|
2018-10-24 00:02:43 -04:00
|
|
|
DENO_DIR Set deno's base directory.",
|
|
|
|
opts.usage("")
|
|
|
|
)
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parses flags for deno. This does not do v8_set_flags() - call that separately.
|
2018-11-05 01:21:21 -05:00
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(stutter))]
|
2018-10-15 14:26:22 -04:00
|
|
|
pub fn set_flags(
|
|
|
|
args: Vec<String>,
|
2018-10-24 00:02:43 -04:00
|
|
|
) -> Result<(DenoFlags, Vec<String>, String), String> {
|
2018-09-22 01:03:24 -04:00
|
|
|
let args = v8_set_flags(args);
|
|
|
|
|
2018-10-24 00:02:43 -04:00
|
|
|
let mut opts = Options::new();
|
|
|
|
// TODO(kevinkassimo): v8_set_flags intercepts '-help' with single '-'
|
|
|
|
// Resolve that and then uncomment line below (enabling Go style -long-flag)
|
|
|
|
// opts.long_only(true);
|
|
|
|
opts.optflag("", "allow-write", "Allow file system write access.");
|
|
|
|
opts.optflag("", "allow-net", "Allow network access.");
|
|
|
|
opts.optflag("", "allow-env", "Allow environment access.");
|
|
|
|
opts.optflag("", "recompile", "Force recompilation of TypeScript code.");
|
|
|
|
opts.optflag("h", "help", "Print this message.");
|
|
|
|
opts.optflag("D", "log-debug", "Log debug output.");
|
|
|
|
opts.optflag("v", "version", "Print the version.");
|
|
|
|
opts.optflag("r", "reload", "Reload cached remote resources.");
|
|
|
|
opts.optflag("", "v8-options", "Print V8 command line options.");
|
|
|
|
opts.optflag("", "types", "Print runtime TypeScript declarations.");
|
|
|
|
|
2018-08-31 07:51:12 -04:00
|
|
|
let mut flags = DenoFlags::default();
|
2018-10-24 00:02:43 -04:00
|
|
|
|
|
|
|
let matches = match opts.parse(&args) {
|
|
|
|
Ok(m) => m,
|
|
|
|
Err(f) => {
|
|
|
|
return Err(f.to_string());
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
2018-10-24 00:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
if matches.opt_present("help") {
|
|
|
|
flags.help = true;
|
|
|
|
}
|
|
|
|
if matches.opt_present("log-debug") {
|
|
|
|
flags.log_debug = true;
|
|
|
|
}
|
|
|
|
if matches.opt_present("version") {
|
|
|
|
flags.version = true;
|
|
|
|
}
|
|
|
|
if matches.opt_present("reload") {
|
|
|
|
flags.reload = true;
|
|
|
|
}
|
|
|
|
if matches.opt_present("recompile") {
|
|
|
|
flags.recompile = true;
|
|
|
|
}
|
|
|
|
if matches.opt_present("allow-write") {
|
|
|
|
flags.allow_write = true;
|
|
|
|
}
|
|
|
|
if matches.opt_present("allow-net") {
|
|
|
|
flags.allow_net = true;
|
|
|
|
}
|
|
|
|
if matches.opt_present("allow-env") {
|
|
|
|
flags.allow_env = true;
|
|
|
|
}
|
|
|
|
if matches.opt_present("types") {
|
2018-11-05 01:21:21 -05:00
|
|
|
flags.types = true;
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
|
2018-11-04 09:04:24 -05:00
|
|
|
let rest: Vec<_> = matches.free.to_vec();
|
|
|
|
Ok((flags, rest, get_usage(&opts)))
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_set_flags_1() {
|
2018-10-24 00:02:43 -04:00
|
|
|
let (flags, rest, _) = set_flags(svec!["deno", "--version"]).unwrap();
|
2018-08-31 07:51:12 -04:00
|
|
|
assert_eq!(rest, svec!["deno"]);
|
2018-09-02 01:59:16 -04:00
|
|
|
assert_eq!(
|
|
|
|
flags,
|
|
|
|
DenoFlags {
|
2018-08-17 16:34:30 -04:00
|
|
|
version: true,
|
2018-08-31 07:51:12 -04:00
|
|
|
..DenoFlags::default()
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_set_flags_2() {
|
2018-10-24 00:02:43 -04:00
|
|
|
let (flags, rest, _) =
|
2018-10-15 14:26:22 -04:00
|
|
|
set_flags(svec!["deno", "-r", "-D", "script.ts"]).unwrap();
|
2018-08-31 07:51:12 -04:00
|
|
|
assert_eq!(rest, svec!["deno", "script.ts"]);
|
2018-09-02 01:59:16 -04:00
|
|
|
assert_eq!(
|
|
|
|
flags,
|
|
|
|
DenoFlags {
|
2018-08-17 16:34:30 -04:00
|
|
|
log_debug: true,
|
|
|
|
reload: true,
|
2018-08-31 07:51:12 -04:00
|
|
|
..DenoFlags::default()
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_set_flags_3() {
|
2018-10-24 00:02:43 -04:00
|
|
|
let (flags, rest, _) =
|
2018-10-26 14:14:50 -04:00
|
|
|
set_flags(svec!["deno", "-r", "script.ts", "--allow-write"]).unwrap();
|
2018-08-31 07:51:12 -04:00
|
|
|
assert_eq!(rest, svec!["deno", "script.ts"]);
|
2018-09-02 01:59:16 -04:00
|
|
|
assert_eq!(
|
|
|
|
flags,
|
|
|
|
DenoFlags {
|
2018-08-17 16:34:30 -04:00
|
|
|
reload: true,
|
|
|
|
allow_write: true,
|
2018-08-31 07:51:12 -04:00
|
|
|
..DenoFlags::default()
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-08-24 15:26:40 -04:00
|
|
|
#[test]
|
|
|
|
fn test_set_flags_4() {
|
2018-10-24 00:02:43 -04:00
|
|
|
let (flags, rest, _) =
|
2018-10-15 14:26:22 -04:00
|
|
|
set_flags(svec!["deno", "-Dr", "script.ts", "--allow-write"]).unwrap();
|
2018-08-24 15:26:40 -04:00
|
|
|
assert_eq!(rest, svec!["deno", "script.ts"]);
|
|
|
|
assert_eq!(
|
|
|
|
flags,
|
|
|
|
DenoFlags {
|
|
|
|
log_debug: true,
|
|
|
|
reload: true,
|
|
|
|
allow_write: true,
|
|
|
|
..DenoFlags::default()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-10-11 17:23:22 -04:00
|
|
|
#[test]
|
|
|
|
fn test_set_flags_5() {
|
2018-10-24 00:02:43 -04:00
|
|
|
let (flags, rest, _) = set_flags(svec!["deno", "--types"]).unwrap();
|
2018-10-11 17:23:22 -04:00
|
|
|
assert_eq!(rest, svec!["deno"]);
|
|
|
|
assert_eq!(
|
|
|
|
flags,
|
|
|
|
DenoFlags {
|
2018-11-05 01:21:21 -05:00
|
|
|
types: true,
|
2018-10-11 17:23:22 -04:00
|
|
|
..DenoFlags::default()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-10-15 14:26:22 -04:00
|
|
|
#[test]
|
|
|
|
fn test_set_bad_flags_1() {
|
|
|
|
let err = set_flags(svec!["deno", "--unknown-flag"]).unwrap_err();
|
2018-10-24 00:02:43 -04:00
|
|
|
assert_eq!(err, "Unrecognized option: 'unknown-flag'");
|
2018-10-15 14:26:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_set_bad_flags_2() {
|
|
|
|
// This needs to be changed if -z is added as a flag
|
|
|
|
let err = set_flags(svec!["deno", "-z"]).unwrap_err();
|
2018-10-24 00:02:43 -04:00
|
|
|
assert_eq!(err, "Unrecognized option: 'z'");
|
2018-10-15 14:26:22 -04:00
|
|
|
}
|
|
|
|
|
2018-08-17 16:34:30 -04:00
|
|
|
// Returns args passed to V8, followed by args passed to JS
|
2018-10-01 10:23:36 -04:00
|
|
|
fn v8_set_flags_preprocess(args: Vec<String>) -> (Vec<String>, Vec<String>) {
|
2018-11-05 01:21:21 -05:00
|
|
|
let (rest, mut v8_args) =
|
|
|
|
args.into_iter().partition(|ref a| a.as_str() == "--help");
|
2018-08-17 16:34:30 -04:00
|
|
|
|
|
|
|
// Replace args being sent to V8
|
2018-11-05 01:21:21 -05:00
|
|
|
for mut a in &mut v8_args {
|
2018-11-04 09:04:24 -05:00
|
|
|
if a == "--v8-options" {
|
|
|
|
mem::swap(a, &mut String::from("--help"));
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
}
|
2018-11-05 01:21:21 -05:00
|
|
|
(v8_args, rest)
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2018-10-01 10:23:36 -04:00
|
|
|
fn test_v8_set_flags_preprocess_1() {
|
2018-10-01 19:48:18 -04:00
|
|
|
let js_args = v8_set_flags_preprocess(vec![
|
|
|
|
"deno".to_string(),
|
|
|
|
"--v8-options".to_string(),
|
|
|
|
]);
|
2018-09-02 01:59:16 -04:00
|
|
|
assert_eq!(
|
|
|
|
js_args,
|
|
|
|
(vec!["deno".to_string(), "--help".to_string()], vec![])
|
|
|
|
);
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2018-10-01 10:23:36 -04:00
|
|
|
fn test_v8_set_flags_preprocess_2() {
|
2018-10-01 19:48:18 -04:00
|
|
|
let js_args =
|
|
|
|
v8_set_flags_preprocess(vec!["deno".to_string(), "--help".to_string()]);
|
2018-09-02 01:59:16 -04:00
|
|
|
assert_eq!(
|
|
|
|
js_args,
|
|
|
|
(vec!["deno".to_string()], vec!["--help".to_string()])
|
|
|
|
);
|
2018-08-17 16:34:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pass the command line arguments to v8.
|
|
|
|
// Returns a vector of command line arguments that v8 did not understand.
|
2018-11-05 01:21:21 -05:00
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(stutter))]
|
2018-08-17 16:34:30 -04:00
|
|
|
pub fn v8_set_flags(args: Vec<String>) -> Vec<String> {
|
2018-09-22 08:47:44 -04:00
|
|
|
// deno_set_v8_flags(int* argc, char** argv) mutates argc and argv to remove
|
2018-08-17 16:34:30 -04:00
|
|
|
// flags that v8 understands.
|
2018-10-24 11:54:34 -04:00
|
|
|
// First parse core args, then convert to a vector of C strings.
|
2018-11-05 01:21:21 -05:00
|
|
|
let (args, rest) = v8_set_flags_preprocess(args);
|
2018-08-17 16:34:30 -04:00
|
|
|
|
|
|
|
// Make a new array, that can be modified by V8::SetFlagsFromCommandLine(),
|
|
|
|
// containing mutable raw pointers to the individual command line args.
|
2018-11-05 01:21:21 -05:00
|
|
|
let mut raw_argv = args
|
|
|
|
.iter()
|
|
|
|
.map(|arg| CString::new(arg.as_str()).unwrap().into_bytes_with_nul())
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
let mut c_argv = raw_argv
|
2018-08-17 16:34:30 -04:00
|
|
|
.iter_mut()
|
|
|
|
.map(|arg| arg.as_mut_ptr() as *mut i8)
|
|
|
|
.collect::<Vec<_>>();
|
2018-11-05 01:21:21 -05:00
|
|
|
|
|
|
|
// Store the length of the c_argv array in a local variable. We'll pass
|
|
|
|
// a pointer to this local variable to deno_set_v8_flags(), which then
|
2018-08-17 16:34:30 -04:00
|
|
|
// updates its value.
|
2018-11-05 01:21:21 -05:00
|
|
|
let mut c_argv_len = c_argv.len() as c_int;
|
2018-08-17 16:34:30 -04:00
|
|
|
// Let v8 parse the arguments it recognizes and remove them from c_argv.
|
|
|
|
unsafe {
|
2018-11-05 01:21:21 -05:00
|
|
|
libdeno::deno_set_v8_flags(&mut c_argv_len, c_argv.as_mut_ptr());
|
2018-08-17 16:34:30 -04:00
|
|
|
};
|
2018-11-05 01:21:21 -05:00
|
|
|
// If c_argv_len was updated we have to change the length of c_argv to match.
|
|
|
|
c_argv.truncate(c_argv_len as usize);
|
2018-08-17 16:34:30 -04:00
|
|
|
// Copy the modified arguments list into a proper rust vec and return it.
|
|
|
|
c_argv
|
|
|
|
.iter()
|
|
|
|
.map(|ptr| unsafe {
|
|
|
|
let cstr = CStr::from_ptr(*ptr as *const i8);
|
|
|
|
let slice = cstr.to_str().unwrap();
|
|
|
|
slice.to_string()
|
2018-10-15 16:46:42 -04:00
|
|
|
}).chain(rest.into_iter())
|
2018-08-17 16:34:30 -04:00
|
|
|
.collect()
|
|
|
|
}
|