initial query tracing
This commit is contained in:
parent
99d02fe583
commit
3ae3b3eb06
@ -1,6 +1,7 @@
|
||||
use std::{
|
||||
hash::Hash,
|
||||
sync::Arc,
|
||||
cell::RefCell,
|
||||
};
|
||||
use libsyntax2::{File};
|
||||
use im;
|
||||
@ -36,17 +37,38 @@ pub(crate) fn set_file_resolver(&mut self, file_resolver: FileResolverImp) {
|
||||
self.file_resolver = file_resolver
|
||||
}
|
||||
pub(crate) fn query_ctx(&self) -> QueryCtx {
|
||||
QueryCtx { db: self.clone() }
|
||||
QueryCtx {
|
||||
db: self.clone(),
|
||||
trace: RefCell::new(Vec::new()),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) struct QueryCtx {
|
||||
db: Db
|
||||
db: Db,
|
||||
pub(crate) trace: RefCell<Vec<TraceEvent>>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy, Debug)]
|
||||
pub(crate) struct TraceEvent {
|
||||
pub(crate) query_id: u32,
|
||||
pub(crate) kind: TraceEventKind
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
||||
pub(crate) enum TraceEventKind {
|
||||
Start, Finish
|
||||
}
|
||||
|
||||
impl QueryCtx {
|
||||
pub(crate) fn get<Q: Get>(&self, params: &Q::Params) -> Q::Output {
|
||||
Q::get(self, params)
|
||||
self.trace(TraceEvent { query_id: Q::ID, kind: TraceEventKind::Start });
|
||||
let res = Q::get(self, params);
|
||||
self.trace(TraceEvent { query_id: Q::ID, kind: TraceEventKind::Finish });
|
||||
res
|
||||
}
|
||||
fn trace(&self, event: TraceEvent) {
|
||||
self.trace.borrow_mut().push(event)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -94,14 +94,15 @@ pub struct Submodule {
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use std::collections::HashMap;
|
||||
use im;
|
||||
use relative_path::{RelativePath, RelativePathBuf};
|
||||
use {
|
||||
db::Db,
|
||||
db::{Query, Db, TraceEventKind},
|
||||
imp::FileResolverImp,
|
||||
FileId, FileResolver,
|
||||
};
|
||||
use super::*;
|
||||
|
||||
#[derive(Debug)]
|
||||
struct FileMap(im::HashMap<FileId, RelativePathBuf>);
|
||||
@ -154,10 +155,29 @@ fn remove_file(&mut self, file_id: FileId) {
|
||||
fn change_file(&mut self, file_id: FileId, new_text: &str) {
|
||||
self.db.change_file(file_id, Some(new_text.to_string()));
|
||||
}
|
||||
fn check_parent_modules(&self, file_id: FileId, expected: &[FileId]) {
|
||||
fn check_parent_modules(
|
||||
&self,
|
||||
file_id: FileId,
|
||||
expected: &[FileId],
|
||||
queries: &[(u32, u64)]
|
||||
) {
|
||||
let ctx = self.db.query_ctx();
|
||||
let actual = ctx.get::<ParentModule>(&file_id);
|
||||
assert_eq!(actual.as_slice(), expected);
|
||||
let mut counts = HashMap::new();
|
||||
ctx.trace.borrow().iter()
|
||||
.filter(|event| event.kind == TraceEventKind::Start)
|
||||
.for_each(|event| *counts.entry(event.query_id).or_insert(0) += 1);
|
||||
for &(query_id, expected_count) in queries.iter() {
|
||||
let actual_count = *counts.get(&query_id).unwrap_or(&0);
|
||||
assert_eq!(
|
||||
actual_count,
|
||||
expected_count,
|
||||
"counts for {} differ",
|
||||
query_id,
|
||||
)
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -165,25 +185,25 @@ fn check_parent_modules(&self, file_id: FileId, expected: &[FileId]) {
|
||||
fn test_parent_module() {
|
||||
let mut f = Fixture::new();
|
||||
let foo = f.add_file("/foo.rs", "");
|
||||
f.check_parent_modules(foo, &[]);
|
||||
f.check_parent_modules(foo, &[], &[(FileSyntax::ID, 1)]);
|
||||
|
||||
let lib = f.add_file("/lib.rs", "mod foo;");
|
||||
f.check_parent_modules(foo, &[lib]);
|
||||
f.check_parent_modules(foo, &[lib], &[(FileSyntax::ID, 2)]);
|
||||
|
||||
f.change_file(lib, "");
|
||||
f.check_parent_modules(foo, &[]);
|
||||
f.check_parent_modules(foo, &[], &[(ModuleDescr::ID, 2)]);
|
||||
|
||||
f.change_file(lib, "mod foo;");
|
||||
f.check_parent_modules(foo, &[lib]);
|
||||
f.check_parent_modules(foo, &[lib], &[(ModuleDescr::ID, 2)]);
|
||||
|
||||
f.change_file(lib, "mod bar;");
|
||||
f.check_parent_modules(foo, &[]);
|
||||
f.check_parent_modules(foo, &[], &[(ModuleDescr::ID, 2)]);
|
||||
|
||||
f.change_file(lib, "mod foo;");
|
||||
f.check_parent_modules(foo, &[lib]);
|
||||
f.check_parent_modules(foo, &[lib], &[(ModuleDescr::ID, 2)]);
|
||||
|
||||
f.remove_file(lib);
|
||||
f.check_parent_modules(foo, &[]);
|
||||
f.check_parent_modules(foo, &[], &[(ModuleDescr::ID, 1)]);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user