rust/crates/rust-analyzer/src/cli.rs

103 lines
2.5 KiB
Rust
Raw Normal View History

2020-02-18 05:11:32 -06:00
//! Various batch processing tasks, intended primarily for debugging.
2020-02-17 12:03:03 -06:00
pub(crate) mod load_cargo;
2020-02-17 12:03:03 -06:00
mod analysis_stats;
mod diagnostics;
2020-02-17 12:03:03 -06:00
mod progress_report;
mod ssr;
2020-02-17 12:03:03 -06:00
use std::io::Read;
use anyhow::Result;
2020-12-11 11:24:27 -06:00
use ide::{Analysis, AnalysisHost};
2020-08-12 11:26:51 -05:00
use syntax::{AstNode, SourceFile};
2020-12-11 11:24:27 -06:00
use vfs::Vfs;
2020-02-17 12:03:03 -06:00
2020-08-13 09:45:10 -05:00
pub use self::{
analysis_stats::AnalysisStatsCmd,
diagnostics::diagnostics,
ssr::{apply_ssr_rules, search_for_patterns},
};
2020-02-17 12:03:03 -06:00
#[derive(Clone, Copy)]
pub enum Verbosity {
Spammy,
Verbose,
Normal,
Quiet,
}
impl Verbosity {
pub fn is_verbose(self) -> bool {
2020-06-27 20:02:03 -05:00
matches!(self, Verbosity::Verbose | Verbosity::Spammy)
2020-02-17 12:03:03 -06:00
}
pub fn is_spammy(self) -> bool {
2020-06-27 20:02:03 -05:00
matches!(self, Verbosity::Spammy)
2020-02-17 12:03:03 -06:00
}
}
pub fn parse(no_dump: bool) -> Result<()> {
2020-08-12 09:32:36 -05:00
let _p = profile::span("parsing");
2020-02-17 12:03:03 -06:00
let file = file()?;
if !no_dump {
println!("{:#?}", file.syntax());
}
std::mem::forget(file);
Ok(())
}
pub fn symbols() -> Result<()> {
2020-07-16 11:13:43 -05: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 12:03:03 -06: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 03:35:45 -05:00
fn report_metric(metric: &str, value: u64, unit: &str) {
if std::env::var("RA_METRICS").is_err() {
return;
}
println!("METRIC:{}:{}:{}", metric, value, unit)
}
2020-12-11 11:24:27 -06:00
fn print_memory_usage(mut host: AnalysisHost, vfs: Vfs) {
let mut mem = host.per_query_memory_usage();
let before = profile::memory_usage();
drop(vfs);
let vfs = before.allocated - profile::memory_usage().allocated;
mem.push(("VFS".into(), vfs));
let before = profile::memory_usage();
drop(host);
mem.push(("Unaccounted".into(), before.allocated - profile::memory_usage().allocated));
mem.push(("Remaining".into(), profile::memory_usage().allocated));
for (name, bytes) in mem {
// NOTE: Not a debug print, so avoid going through the `eprintln` defined above.
eprintln!("{:>8} {}", bytes, name);
}
}