rust/crates/cli/src/main.rs

98 lines
2.9 KiB
Rust
Raw Normal View History

2018-07-30 15:16:58 +02:00
extern crate clap;
#[macro_use]
extern crate failure;
2018-08-25 10:47:24 +02:00
extern crate libsyntax2;
2018-08-05 18:06:14 +02:00
extern crate libeditor;
2018-07-30 15:16:58 +02:00
extern crate tools;
2018-08-05 18:06:14 +02:00
use std::{
fs, io::Read, path::Path,
time::Instant
};
2018-07-30 15:16:58 +02:00
use clap::{App, Arg, SubCommand};
use tools::collect_tests;
2018-08-25 10:47:24 +02:00
use libsyntax2::File;
use libeditor::{syntax_tree, file_structure};
2018-07-30 15:16:58 +02:00
type Result<T> = ::std::result::Result<T, failure::Error>;
fn main() -> Result<()> {
let matches = App::new("libsyntax2-cli")
.setting(clap::AppSettings::SubcommandRequiredElseHelp)
.subcommand(
SubCommand::with_name("render-test")
2018-07-31 14:40:40 +02:00
.arg(
Arg::with_name("line")
.long("--line")
.required(true)
.takes_value(true),
)
.arg(
Arg::with_name("file")
.long("--file")
.required(true)
.takes_value(true),
),
2018-07-30 15:16:58 +02:00
)
2018-08-07 02:50:40 +02:00
.subcommand(
SubCommand::with_name("parse")
.arg(Arg::with_name("no-dump").long("--no-dump"))
)
2018-08-05 18:06:14 +02:00
.subcommand(SubCommand::with_name("symbols"))
2018-07-30 15:16:58 +02:00
.get_matches();
match matches.subcommand() {
2018-08-07 02:50:40 +02:00
("parse", Some(matches)) => {
2018-08-05 18:06:14 +02:00
let start = Instant::now();
let file = file()?;
let elapsed = start.elapsed();
2018-08-07 02:50:40 +02:00
if !matches.is_present("no-dump") {
2018-08-10 16:49:45 +02:00
println!("{}", syntax_tree(&file));
2018-08-07 02:50:40 +02:00
}
2018-08-05 18:06:14 +02:00
eprintln!("parsing: {:?}", elapsed);
2018-08-08 20:14:18 +02:00
::std::mem::forget(file);
2018-08-05 18:06:14 +02:00
}
("symbols", _) => {
let file = file()?;
2018-08-14 10:20:09 +02:00
for s in file_structure(&file) {
2018-08-05 18:06:14 +02:00
println!("{:?}", s);
}
2018-07-31 14:40:40 +02:00
}
2018-07-30 15:16:58 +02:00
("render-test", Some(matches)) => {
let file = matches.value_of("file").unwrap();
let file = Path::new(file);
let line: usize = matches.value_of("line").unwrap().parse()?;
let line = line - 1;
let (test, tree) = render_test(file, line)?;
println!("{}\n{}", test, tree);
}
_ => unreachable!(),
}
Ok(())
}
2018-08-25 10:44:58 +02:00
fn file() -> Result<File> {
2018-07-30 15:16:58 +02:00
let text = read_stdin()?;
2018-08-25 10:48:59 +02:00
Ok(File::parse(&text))
2018-07-30 15:16:58 +02:00
}
fn read_stdin() -> Result<String> {
let mut buff = String::new();
::std::io::stdin().read_to_string(&mut buff)?;
Ok(buff)
}
fn render_test(file: &Path, line: usize) -> Result<(String, String)> {
let text = fs::read_to_string(file)?;
let tests = collect_tests(&text);
2018-07-30 15:32:27 +02:00
let test = tests.into_iter().find(|(start_line, t)| {
*start_line <= line && line <= *start_line + t.text.lines().count()
2018-07-30 15:16:58 +02:00
});
let test = match test {
None => bail!("No test found at line {} at {}", line, file.display()),
2018-07-30 15:32:27 +02:00
Some((_start_line, test)) => test,
2018-07-30 15:16:58 +02:00
};
2018-08-25 10:48:59 +02:00
let file = File::parse(&test.text);
2018-08-10 16:49:45 +02:00
let tree = syntax_tree(&file);
2018-07-30 15:16:58 +02:00
Ok((test.text, tree))
}