2020-02-18 11:11:32 +00:00
|
|
|
//! Various batch processing tasks, intended primarily for debugging.
|
2020-02-17 18:03:03 +00:00
|
|
|
|
|
|
|
mod load_cargo;
|
|
|
|
mod analysis_stats;
|
|
|
|
mod analysis_bench;
|
2020-04-13 12:44:35 +00:00
|
|
|
mod diagnostics;
|
2020-02-17 18:03:03 +00:00
|
|
|
mod progress_report;
|
2020-06-27 07:31:50 +00:00
|
|
|
mod ssr;
|
2020-02-17 18:03:03 +00:00
|
|
|
|
|
|
|
use std::io::Read;
|
|
|
|
|
|
|
|
use anyhow::Result;
|
2020-07-16 16:13:43 +00:00
|
|
|
use ra_ide::Analysis;
|
2020-08-12 16:26:51 +00:00
|
|
|
use syntax::{AstNode, SourceFile};
|
2020-02-17 18:03:03 +00:00
|
|
|
|
2020-07-30 20:38:24 +00:00
|
|
|
pub use analysis_bench::{BenchCmd, BenchWhat, Position};
|
|
|
|
pub use analysis_stats::AnalysisStatsCmd;
|
2020-04-13 12:44:35 +00:00
|
|
|
pub use diagnostics::diagnostics;
|
2020-04-24 19:57:10 +00:00
|
|
|
pub use load_cargo::load_cargo;
|
2020-06-30 05:55:20 +00:00
|
|
|
pub use ssr::{apply_ssr_rules, search_for_patterns};
|
2020-04-13 12:44:35 +00:00
|
|
|
|
2020-02-17 18:03:03 +00:00
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub enum Verbosity {
|
|
|
|
Spammy,
|
|
|
|
Verbose,
|
|
|
|
Normal,
|
|
|
|
Quiet,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Verbosity {
|
|
|
|
pub fn is_verbose(self) -> bool {
|
2020-06-28 01:02:03 +00:00
|
|
|
matches!(self, Verbosity::Verbose | Verbosity::Spammy)
|
2020-02-17 18:03:03 +00:00
|
|
|
}
|
|
|
|
pub fn is_spammy(self) -> bool {
|
2020-06-28 01:02:03 +00:00
|
|
|
matches!(self, Verbosity::Spammy)
|
2020-02-17 18:03:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parse(no_dump: bool) -> Result<()> {
|
2020-08-12 14:32:36 +00:00
|
|
|
let _p = profile::span("parsing");
|
2020-02-17 18:03:03 +00:00
|
|
|
let file = file()?;
|
|
|
|
if !no_dump {
|
|
|
|
println!("{:#?}", file.syntax());
|
|
|
|
}
|
|
|
|
std::mem::forget(file);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn symbols() -> Result<()> {
|
2020-07-16 16:13:43 +00:00
|
|
|
let text = read_stdin()?;
|
|
|
|
let (analysis, file_id) = Analysis::from_single_file(text);
|
|
|
|
let structure = analysis.file_structure(file_id).unwrap();
|
|
|
|
for s in structure {
|
2020-02-17 18:03:03 +00:00
|
|
|
println!("{:?}", s);
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn highlight(rainbow: bool) -> Result<()> {
|
|
|
|
let (analysis, file_id) = Analysis::from_single_file(read_stdin()?);
|
|
|
|
let html = analysis.highlight_as_html(file_id, rainbow).unwrap();
|
|
|
|
println!("{}", html);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn file() -> Result<SourceFile> {
|
|
|
|
let text = read_stdin()?;
|
|
|
|
Ok(SourceFile::parse(&text).tree())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read_stdin() -> Result<String> {
|
|
|
|
let mut buff = String::new();
|
|
|
|
std::io::stdin().read_to_string(&mut buff)?;
|
|
|
|
Ok(buff)
|
|
|
|
}
|
2020-07-25 08:35:45 +00:00
|
|
|
|
|
|
|
fn report_metric(metric: &str, value: u64, unit: &str) {
|
|
|
|
if std::env::var("RA_METRICS").is_err() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
println!("METRIC:{}:{}:{}", metric, value, unit)
|
|
|
|
}
|