aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_batch/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_batch/src/lib.rs')
-rw-r--r--crates/ra_batch/src/lib.rs29
1 files changed, 27 insertions, 2 deletions
diff --git a/crates/ra_batch/src/lib.rs b/crates/ra_batch/src/lib.rs
index c6d10107d..a054d0da3 100644
--- a/crates/ra_batch/src/lib.rs
+++ b/crates/ra_batch/src/lib.rs
@@ -1,5 +1,5 @@
1use std::sync::Arc; 1use std::sync::Arc;
2use std::path::Path; 2use std::path::{Path, PathBuf};
3use std::collections::HashSet; 3use std::collections::HashSet;
4 4
5use rustc_hash::FxHashMap; 5use rustc_hash::FxHashMap;
@@ -9,7 +9,7 @@ use ra_db::{
9}; 9};
10use ra_hir::{db, HirInterner}; 10use ra_hir::{db, HirInterner};
11use ra_project_model::ProjectWorkspace; 11use ra_project_model::ProjectWorkspace;
12use ra_vfs::{Vfs, VfsChange}; 12use ra_vfs::{Vfs, VfsChange, RootEntry, Filter, RelativePath};
13 13
14type Result<T> = std::result::Result<T, failure::Error>; 14type Result<T> = std::result::Result<T, failure::Error>;
15 15
@@ -43,6 +43,30 @@ fn vfs_root_to_id(r: ra_vfs::VfsRoot) -> SourceRootId {
43 SourceRootId(r.0.into()) 43 SourceRootId(r.0.into())
44} 44}
45 45
46struct IncludeRustFiles;
47
48impl IncludeRustFiles {
49 fn to_entry(path: PathBuf) -> RootEntry {
50 RootEntry::new(path, Box::new(Self {}))
51 }
52}
53
54impl Filter for IncludeRustFiles {
55 fn include_dir(&self, dir_path: &RelativePath) -> bool {
56 const IGNORED_FOLDERS: &[&str] = &["node_modules", "target", ".git"];
57
58 let is_ignored = dir_path.components().any(|c| IGNORED_FOLDERS.contains(&c.as_str()));
59
60 let hidden = dir_path.components().any(|c| c.as_str().starts_with("."));
61
62 !is_ignored && !hidden
63 }
64
65 fn include_file(&self, file_path: &RelativePath) -> bool {
66 file_path.extension() == Some("rs")
67 }
68}
69
46impl BatchDatabase { 70impl BatchDatabase {
47 pub fn load(crate_graph: CrateGraph, vfs: &mut Vfs) -> BatchDatabase { 71 pub fn load(crate_graph: CrateGraph, vfs: &mut Vfs) -> BatchDatabase {
48 let mut db = 72 let mut db =
@@ -100,6 +124,7 @@ impl BatchDatabase {
100 let mut roots = Vec::new(); 124 let mut roots = Vec::new();
101 roots.push(root.clone()); 125 roots.push(root.clone());
102 roots.extend(ws.to_roots()); 126 roots.extend(ws.to_roots());
127 let roots = roots.into_iter().map(IncludeRustFiles::to_entry).collect::<Vec<_>>();
103 let (mut vfs, roots) = Vfs::new(roots); 128 let (mut vfs, roots) = Vfs::new(roots);
104 let mut load = |path: &Path| { 129 let mut load = |path: &Path| {
105 let vfs_file = vfs.load(path); 130 let vfs_file = vfs.load(path);