2022-08-08 23:16:32 +00:00
|
|
|
use std::{fmt, sync::Arc};
|
2019-01-25 13:10:34 +00:00
|
|
|
|
2020-11-26 15:48:17 +00:00
|
|
|
use hir::{ExpandResult, MacroFile};
|
2020-10-24 08:39:57 +00:00
|
|
|
use ide_db::base_db::{
|
2020-07-07 08:14:48 +00:00
|
|
|
salsa::debug::{DebugQueryTable, TableEntry},
|
2020-09-29 20:05:18 +00:00
|
|
|
CrateId, FileId, FileTextQuery, SourceDatabase, SourceRootId,
|
2019-01-22 21:15:03 +00:00
|
|
|
};
|
2020-08-13 14:39:16 +00:00
|
|
|
use ide_db::{
|
2020-02-06 11:52:32 +00:00
|
|
|
symbol_index::{LibrarySymbolsQuery, SymbolIndex},
|
|
|
|
RootDatabase,
|
|
|
|
};
|
2020-09-29 20:05:18 +00:00
|
|
|
use itertools::Itertools;
|
2020-08-13 14:39:16 +00:00
|
|
|
use profile::{memory_usage, Bytes};
|
2021-06-28 16:50:24 +00:00
|
|
|
use std::env;
|
2020-09-29 20:05:18 +00:00
|
|
|
use stdx::format_to;
|
2020-08-12 16:26:51 +00:00
|
|
|
use syntax::{ast, Parse, SyntaxNode};
|
2019-01-22 21:15:03 +00:00
|
|
|
|
2019-09-26 09:31:16 +00:00
|
|
|
fn syntax_tree_stats(db: &RootDatabase) -> SyntaxTreeStats {
|
2020-10-24 08:39:57 +00:00
|
|
|
ide_db::base_db::ParseQuery.in_db(db).entries::<SyntaxTreeStats>()
|
2019-06-02 17:15:10 +00:00
|
|
|
}
|
2019-09-26 09:31:16 +00:00
|
|
|
fn macro_syntax_tree_stats(db: &RootDatabase) -> SyntaxTreeStats {
|
2020-11-24 20:57:51 +00:00
|
|
|
hir::db::ParseMacroExpansionQuery.in_db(db).entries::<SyntaxTreeStats>()
|
2019-01-26 17:33:33 +00:00
|
|
|
}
|
|
|
|
|
2020-05-31 08:14:36 +00:00
|
|
|
// Feature: Status
|
|
|
|
//
|
|
|
|
// Shows internal statistic about memory usage of rust-analyzer.
|
|
|
|
//
|
|
|
|
// |===
|
|
|
|
// | Editor | Action Name
|
|
|
|
//
|
2022-08-01 11:47:09 +00:00
|
|
|
// | VS Code | **rust-analyzer: Status**
|
2020-05-31 08:14:36 +00:00
|
|
|
// |===
|
2021-03-30 23:08:10 +00:00
|
|
|
// image::https://user-images.githubusercontent.com/48062697/113065584-05f34500-91b1-11eb-98cc-5c196f76be7f.gif[]
|
2020-09-29 20:05:18 +00:00
|
|
|
pub(crate) fn status(db: &RootDatabase, file_id: Option<FileId>) -> String {
|
|
|
|
let mut buf = String::new();
|
|
|
|
format_to!(buf, "{}\n", FileTextQuery.in_db(db).entries::<FilesStats>());
|
|
|
|
format_to!(buf, "{}\n", LibrarySymbolsQuery.in_db(db).entries::<LibrarySymbolsStats>());
|
|
|
|
format_to!(buf, "{}\n", syntax_tree_stats(db));
|
2021-06-18 18:22:03 +00:00
|
|
|
format_to!(buf, "{} (Macros)\n", macro_syntax_tree_stats(db));
|
2021-06-19 06:51:44 +00:00
|
|
|
format_to!(buf, "{} in total\n", memory_usage());
|
2021-06-28 16:50:24 +00:00
|
|
|
if env::var("RA_COUNT").is_ok() {
|
2021-06-29 19:34:52 +00:00
|
|
|
format_to!(buf, "\nCounts:\n{}", profile::countme::get_all());
|
2021-06-28 16:50:24 +00:00
|
|
|
}
|
2020-09-29 20:05:18 +00:00
|
|
|
|
|
|
|
if let Some(file_id) = file_id {
|
2021-06-18 18:22:03 +00:00
|
|
|
format_to!(buf, "\nFile info:\n");
|
2022-01-17 17:10:01 +00:00
|
|
|
let crates = crate::parent_module::crate_for(db, file_id);
|
|
|
|
if crates.is_empty() {
|
|
|
|
format_to!(buf, "Does not belong to any crate");
|
|
|
|
}
|
|
|
|
let crate_graph = db.crate_graph();
|
|
|
|
for krate in crates {
|
|
|
|
let display_crate = |krate: CrateId| match &crate_graph[krate].display_name {
|
|
|
|
Some(it) => format!("{}({:?})", it, krate),
|
|
|
|
None => format!("{:?}", krate),
|
|
|
|
};
|
|
|
|
format_to!(buf, "Crate: {}\n", display_crate(krate));
|
|
|
|
let deps = crate_graph[krate]
|
|
|
|
.dependencies
|
|
|
|
.iter()
|
|
|
|
.map(|dep| format!("{}={:?}", dep.name, dep.crate_id))
|
|
|
|
.format(", ");
|
|
|
|
format_to!(buf, "Dependencies: {}\n", deps);
|
2020-09-29 20:05:18 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-21 16:04:50 +00:00
|
|
|
|
2021-06-18 22:34:00 +00:00
|
|
|
buf.trim().to_string()
|
2019-01-25 13:10:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
struct FilesStats {
|
|
|
|
total: usize,
|
2019-01-25 14:20:52 +00:00
|
|
|
size: Bytes,
|
2019-01-25 13:10:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for FilesStats {
|
2022-07-20 13:02:08 +00:00
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2021-06-19 06:51:44 +00:00
|
|
|
write!(fmt, "{} of files", self.size)
|
2019-01-25 14:20:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromIterator<TableEntry<FileId, Arc<String>>> for FilesStats {
|
|
|
|
fn from_iter<T>(iter: T) -> FilesStats
|
|
|
|
where
|
|
|
|
T: IntoIterator<Item = TableEntry<FileId, Arc<String>>>,
|
|
|
|
{
|
|
|
|
let mut res = FilesStats::default();
|
|
|
|
for entry in iter {
|
|
|
|
res.total += 1;
|
|
|
|
res.size += entry.value.unwrap().len();
|
|
|
|
}
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
2019-01-26 17:33:33 +00:00
|
|
|
pub(crate) struct SyntaxTreeStats {
|
2019-01-25 14:20:52 +00:00
|
|
|
total: usize,
|
2019-01-26 17:33:33 +00:00
|
|
|
pub(crate) retained: usize,
|
2019-01-25 14:20:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for SyntaxTreeStats {
|
2022-07-20 13:02:08 +00:00
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2021-06-19 09:14:15 +00:00
|
|
|
write!(fmt, "{} trees, {} preserved", self.total, self.retained)
|
2019-01-25 13:10:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-18 19:29:20 +00:00
|
|
|
impl FromIterator<TableEntry<FileId, Parse<ast::SourceFile>>> for SyntaxTreeStats {
|
2019-06-02 17:15:10 +00:00
|
|
|
fn from_iter<T>(iter: T) -> SyntaxTreeStats
|
|
|
|
where
|
2019-07-18 19:29:20 +00:00
|
|
|
T: IntoIterator<Item = TableEntry<FileId, Parse<ast::SourceFile>>>,
|
2019-06-02 17:15:10 +00:00
|
|
|
{
|
|
|
|
let mut res = SyntaxTreeStats::default();
|
|
|
|
for entry in iter {
|
|
|
|
res.total += 1;
|
2019-07-19 16:53:42 +00:00
|
|
|
res.retained += entry.value.is_some() as usize;
|
2019-06-02 17:15:10 +00:00
|
|
|
}
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-26 15:48:17 +00:00
|
|
|
impl<M> FromIterator<TableEntry<MacroFile, ExpandResult<Option<(Parse<SyntaxNode>, M)>>>>
|
2020-11-24 18:00:23 +00:00
|
|
|
for SyntaxTreeStats
|
|
|
|
{
|
2019-01-25 14:20:52 +00:00
|
|
|
fn from_iter<T>(iter: T) -> SyntaxTreeStats
|
|
|
|
where
|
2020-11-26 15:48:17 +00:00
|
|
|
T: IntoIterator<Item = TableEntry<MacroFile, ExpandResult<Option<(Parse<SyntaxNode>, M)>>>>,
|
2019-01-25 14:20:52 +00:00
|
|
|
{
|
|
|
|
let mut res = SyntaxTreeStats::default();
|
|
|
|
for entry in iter {
|
|
|
|
res.total += 1;
|
2019-07-19 16:53:42 +00:00
|
|
|
res.retained += entry.value.is_some() as usize;
|
2019-01-25 14:20:52 +00:00
|
|
|
}
|
|
|
|
res
|
2019-01-25 13:10:34 +00:00
|
|
|
}
|
2019-01-25 14:20:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
struct LibrarySymbolsStats {
|
|
|
|
total: usize,
|
2019-01-25 18:10:28 +00:00
|
|
|
size: Bytes,
|
2019-01-25 14:20:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for LibrarySymbolsStats {
|
2022-07-20 13:02:08 +00:00
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2021-06-28 06:31:54 +00:00
|
|
|
write!(fmt, "{} of index symbols ({})", self.size, self.total)
|
2019-01-25 14:20:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-29 09:36:00 +00:00
|
|
|
impl FromIterator<TableEntry<SourceRootId, Arc<SymbolIndex>>> for LibrarySymbolsStats {
|
2019-01-25 14:20:52 +00:00
|
|
|
fn from_iter<T>(iter: T) -> LibrarySymbolsStats
|
|
|
|
where
|
2021-11-29 09:36:00 +00:00
|
|
|
T: IntoIterator<Item = TableEntry<SourceRootId, Arc<SymbolIndex>>>,
|
2019-01-25 14:20:52 +00:00
|
|
|
{
|
|
|
|
let mut res = LibrarySymbolsStats::default();
|
|
|
|
for entry in iter {
|
2021-11-29 09:36:00 +00:00
|
|
|
let symbols = entry.value.unwrap();
|
|
|
|
res.total += symbols.len();
|
|
|
|
res.size += symbols.memory_size();
|
2019-01-25 14:20:52 +00:00
|
|
|
}
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|