forked from extern/nushell
fb532f3f4e
* Add shebang support to nu. * Move test file * Add test for scripts Co-authored-by: Jason Gedge <jason.gedge@shopify.com>
128 lines
3.4 KiB
Rust
128 lines
3.4 KiB
Rust
use clap::{App, Arg};
|
|
use log::LevelFilter;
|
|
use std::error::Error;
|
|
use std::fs::File;
|
|
use std::io::{prelude::*, BufReader};
|
|
|
|
fn main() -> Result<(), Box<dyn Error>> {
|
|
let matches = App::new("nushell")
|
|
.version(clap::crate_version!())
|
|
.arg(
|
|
Arg::with_name("loglevel")
|
|
.short("l")
|
|
.long("loglevel")
|
|
.value_name("LEVEL")
|
|
.possible_values(&["error", "warn", "info", "debug", "trace"])
|
|
.takes_value(true),
|
|
)
|
|
.arg(
|
|
Arg::with_name("commands")
|
|
.short("c")
|
|
.long("commands")
|
|
.multiple(false)
|
|
.takes_value(true),
|
|
)
|
|
.arg(
|
|
Arg::with_name("develop")
|
|
.long("develop")
|
|
.multiple(true)
|
|
.takes_value(true),
|
|
)
|
|
.arg(
|
|
Arg::with_name("debug")
|
|
.long("debug")
|
|
.multiple(true)
|
|
.takes_value(true),
|
|
)
|
|
.arg(
|
|
Arg::with_name("stdin")
|
|
.long("stdin")
|
|
.multiple(false)
|
|
.takes_value(false),
|
|
)
|
|
.arg(
|
|
Arg::with_name("script")
|
|
.help("the nu script to run")
|
|
.index(1),
|
|
)
|
|
.get_matches();
|
|
|
|
let loglevel = match matches.value_of("loglevel") {
|
|
None => LevelFilter::Warn,
|
|
Some("error") => LevelFilter::Error,
|
|
Some("warn") => LevelFilter::Warn,
|
|
Some("info") => LevelFilter::Info,
|
|
Some("debug") => LevelFilter::Debug,
|
|
Some("trace") => LevelFilter::Trace,
|
|
_ => unreachable!(),
|
|
};
|
|
|
|
let mut builder = pretty_env_logger::formatted_builder();
|
|
|
|
if let Ok(s) = std::env::var("RUST_LOG") {
|
|
builder.parse_filters(&s);
|
|
}
|
|
|
|
builder.filter_module("nu", loglevel);
|
|
|
|
match matches.values_of("develop") {
|
|
None => {}
|
|
Some(values) => {
|
|
for item in values {
|
|
builder.filter_module(&format!("nu::{}", item), LevelFilter::Trace);
|
|
}
|
|
}
|
|
}
|
|
|
|
match matches.values_of("debug") {
|
|
None => {}
|
|
Some(values) => {
|
|
for item in values {
|
|
builder.filter_module(&format!("nu::{}", item), LevelFilter::Debug);
|
|
}
|
|
}
|
|
}
|
|
|
|
builder.try_init()?;
|
|
|
|
match matches.values_of("commands") {
|
|
None => {}
|
|
Some(values) => {
|
|
for item in values {
|
|
futures::executor::block_on(nu::run_pipeline_standalone(
|
|
item.into(),
|
|
matches.is_present("stdin"),
|
|
))?;
|
|
}
|
|
return Ok(());
|
|
}
|
|
}
|
|
|
|
match matches.value_of("script") {
|
|
Some(script) => {
|
|
let file = File::open(script)?;
|
|
let reader = BufReader::new(file);
|
|
for line in reader.lines() {
|
|
let line = line?;
|
|
if !line.starts_with('#') {
|
|
futures::executor::block_on(nu::run_pipeline_standalone(
|
|
line,
|
|
matches.is_present("stdin"),
|
|
))?;
|
|
}
|
|
}
|
|
return Ok(());
|
|
}
|
|
|
|
None => {
|
|
println!(
|
|
"Welcome to Nushell {} (type 'help' for more info)",
|
|
clap::crate_version!()
|
|
);
|
|
futures::executor::block_on(nu::cli())?;
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|