]> git.lizzy.rs Git - rust.git/blob - crates/rust-analyzer/src/global_state.rs
Merge #8352
[rust.git] / crates / rust-analyzer / src / global_state.rs
1 //! The context or environment in which the language server functions. In our
2 //! server implementation this is know as the `WorldState`.
3 //!
4 //! Each tick provides an immutable snapshot of the state as `WorldSnapshot`.
5
6 use std::{sync::Arc, time::Instant};
7
8 use crossbeam_channel::{unbounded, Receiver, Sender};
9 use flycheck::FlycheckHandle;
10 use ide::{Analysis, AnalysisHost, Cancelable, Change, FileId};
11 use ide_db::base_db::{CrateId, VfsPath};
12 use lsp_types::{SemanticTokens, Url};
13 use parking_lot::{Mutex, RwLock};
14 use project_model::{
15     BuildDataCollector, BuildDataResult, CargoWorkspace, ProcMacroClient, ProjectWorkspace, Target,
16 };
17 use rustc_hash::FxHashMap;
18 use vfs::AnchoredPathBuf;
19
20 use crate::{
21     config::Config,
22     diagnostics::{CheckFixes, DiagnosticCollection},
23     document::DocumentData,
24     from_proto,
25     line_index::{LineEndings, LineIndex},
26     main_loop::Task,
27     op_queue::OpQueue,
28     reload::SourceRootConfig,
29     request_metrics::{LatestRequests, RequestMetrics},
30     thread_pool::TaskPool,
31     to_proto::url_from_abs_path,
32     Result,
33 };
34
35 #[derive(Eq, PartialEq, Copy, Clone)]
36 pub(crate) enum Status {
37     Loading,
38     Ready { partial: bool },
39     Invalid,
40     NeedsReload,
41 }
42
43 impl Default for Status {
44     fn default() -> Self {
45         Status::Loading
46     }
47 }
48
49 // Enforces drop order
50 pub(crate) struct Handle<H, C> {
51     pub(crate) handle: H,
52     pub(crate) receiver: C,
53 }
54
55 pub(crate) type ReqHandler = fn(&mut GlobalState, lsp_server::Response);
56 pub(crate) type ReqQueue = lsp_server::ReqQueue<(String, Instant), ReqHandler>;
57
58 /// `GlobalState` is the primary mutable state of the language server
59 ///
60 /// The most interesting components are `vfs`, which stores a consistent
61 /// snapshot of the file systems, and `analysis_host`, which stores our
62 /// incremental salsa database.
63 ///
64 /// Note that this struct has more than on impl in various modules!
65 pub(crate) struct GlobalState {
66     sender: Sender<lsp_server::Message>,
67     req_queue: ReqQueue,
68     pub(crate) task_pool: Handle<TaskPool<Task>, Receiver<Task>>,
69     pub(crate) loader: Handle<Box<dyn vfs::loader::Handle>, Receiver<vfs::loader::Message>>,
70     pub(crate) vfs_config_version: u32,
71     pub(crate) flycheck: Vec<FlycheckHandle>,
72     pub(crate) flycheck_sender: Sender<flycheck::Message>,
73     pub(crate) flycheck_receiver: Receiver<flycheck::Message>,
74     pub(crate) config: Arc<Config>,
75     pub(crate) analysis_host: AnalysisHost,
76     pub(crate) diagnostics: DiagnosticCollection,
77     pub(crate) mem_docs: FxHashMap<VfsPath, DocumentData>,
78     pub(crate) semantic_tokens_cache: Arc<Mutex<FxHashMap<Url, SemanticTokens>>>,
79     pub(crate) vfs: Arc<RwLock<(vfs::Vfs, FxHashMap<FileId, LineEndings>)>>,
80     pub(crate) shutdown_requested: bool,
81     pub(crate) status: Status,
82     pub(crate) source_root_config: SourceRootConfig,
83     pub(crate) proc_macro_client: Option<ProcMacroClient>,
84
85     pub(crate) workspaces: Arc<Vec<ProjectWorkspace>>,
86     pub(crate) fetch_workspaces_queue: OpQueue<(), ()>,
87
88     pub(crate) workspace_build_data: Option<BuildDataResult>,
89     pub(crate) fetch_build_data_queue: OpQueue<BuildDataCollector, ()>,
90
91     latest_requests: Arc<RwLock<LatestRequests>>,
92 }
93
94 /// An immutable snapshot of the world's state at a point in time.
95 pub(crate) struct GlobalStateSnapshot {
96     pub(crate) config: Arc<Config>,
97     pub(crate) analysis: Analysis,
98     pub(crate) check_fixes: CheckFixes,
99     pub(crate) latest_requests: Arc<RwLock<LatestRequests>>,
100     mem_docs: FxHashMap<VfsPath, DocumentData>,
101     pub(crate) semantic_tokens_cache: Arc<Mutex<FxHashMap<Url, SemanticTokens>>>,
102     vfs: Arc<RwLock<(vfs::Vfs, FxHashMap<FileId, LineEndings>)>>,
103     pub(crate) workspaces: Arc<Vec<ProjectWorkspace>>,
104 }
105
106 impl GlobalState {
107     pub(crate) fn new(sender: Sender<lsp_server::Message>, config: Config) -> GlobalState {
108         let loader = {
109             let (sender, receiver) = unbounded::<vfs::loader::Message>();
110             let handle: vfs_notify::NotifyHandle =
111                 vfs::loader::Handle::spawn(Box::new(move |msg| sender.send(msg).unwrap()));
112             let handle = Box::new(handle) as Box<dyn vfs::loader::Handle>;
113             Handle { handle, receiver }
114         };
115
116         let task_pool = {
117             let (sender, receiver) = unbounded();
118             let handle = TaskPool::new(sender);
119             Handle { handle, receiver }
120         };
121
122         let analysis_host = AnalysisHost::new(config.lru_capacity());
123         let (flycheck_sender, flycheck_receiver) = unbounded();
124         GlobalState {
125             sender,
126             req_queue: ReqQueue::default(),
127             vfs_config_version: 0,
128             task_pool,
129             loader,
130             flycheck: Vec::new(),
131             flycheck_sender,
132             flycheck_receiver,
133             config: Arc::new(config),
134             analysis_host,
135             diagnostics: Default::default(),
136             mem_docs: FxHashMap::default(),
137             semantic_tokens_cache: Arc::new(Default::default()),
138             vfs: Arc::new(RwLock::new((vfs::Vfs::default(), FxHashMap::default()))),
139             shutdown_requested: false,
140             status: Status::default(),
141             source_root_config: SourceRootConfig::default(),
142             proc_macro_client: None,
143             workspaces: Arc::new(Vec::new()),
144             fetch_workspaces_queue: OpQueue::default(),
145             workspace_build_data: None,
146             fetch_build_data_queue: OpQueue::default(),
147             latest_requests: Default::default(),
148         }
149     }
150
151     pub(crate) fn process_changes(&mut self) -> bool {
152         let _p = profile::span("GlobalState::process_changes");
153         let mut fs_changes = Vec::new();
154         let mut has_fs_changes = false;
155
156         let change = {
157             let mut change = Change::new();
158             let (vfs, line_endings_map) = &mut *self.vfs.write();
159             let changed_files = vfs.take_changes();
160             if changed_files.is_empty() {
161                 return false;
162             }
163
164             for file in changed_files {
165                 if file.is_created_or_deleted() {
166                     if let Some(path) = vfs.file_path(file.file_id).as_path() {
167                         fs_changes.push((path.to_path_buf(), file.change_kind));
168                         has_fs_changes = true;
169                     }
170                 }
171
172                 let text = if file.exists() {
173                     let bytes = vfs.file_contents(file.file_id).to_vec();
174                     match String::from_utf8(bytes).ok() {
175                         Some(text) => {
176                             let (text, line_endings) = LineEndings::normalize(text);
177                             line_endings_map.insert(file.file_id, line_endings);
178                             Some(Arc::new(text))
179                         }
180                         None => None,
181                     }
182                 } else {
183                     None
184                 };
185                 change.change_file(file.file_id, text);
186             }
187             if has_fs_changes {
188                 let roots = self.source_root_config.partition(&vfs);
189                 change.set_roots(roots);
190             }
191             change
192         };
193
194         self.analysis_host.apply_change(change);
195         self.maybe_refresh(&fs_changes);
196         true
197     }
198
199     pub(crate) fn snapshot(&self) -> GlobalStateSnapshot {
200         GlobalStateSnapshot {
201             config: Arc::clone(&self.config),
202             workspaces: Arc::clone(&self.workspaces),
203             analysis: self.analysis_host.analysis(),
204             vfs: Arc::clone(&self.vfs),
205             latest_requests: Arc::clone(&self.latest_requests),
206             check_fixes: Arc::clone(&self.diagnostics.check_fixes),
207             mem_docs: self.mem_docs.clone(),
208             semantic_tokens_cache: Arc::clone(&self.semantic_tokens_cache),
209         }
210     }
211
212     pub(crate) fn send_request<R: lsp_types::request::Request>(
213         &mut self,
214         params: R::Params,
215         handler: ReqHandler,
216     ) {
217         let request = self.req_queue.outgoing.register(R::METHOD.to_string(), params, handler);
218         self.send(request.into());
219     }
220     pub(crate) fn complete_request(&mut self, response: lsp_server::Response) {
221         let handler = self.req_queue.outgoing.complete(response.id.clone());
222         handler(self, response)
223     }
224
225     pub(crate) fn send_notification<N: lsp_types::notification::Notification>(
226         &mut self,
227         params: N::Params,
228     ) {
229         let not = lsp_server::Notification::new(N::METHOD.to_string(), params);
230         self.send(not.into());
231     }
232
233     pub(crate) fn register_request(
234         &mut self,
235         request: &lsp_server::Request,
236         request_received: Instant,
237     ) {
238         self.req_queue
239             .incoming
240             .register(request.id.clone(), (request.method.clone(), request_received));
241     }
242     pub(crate) fn respond(&mut self, response: lsp_server::Response) {
243         if let Some((method, start)) = self.req_queue.incoming.complete(response.id.clone()) {
244             let duration = start.elapsed();
245             log::info!("handled req#{} in {:?}", response.id, duration);
246             let metrics = RequestMetrics { id: response.id.clone(), method, duration };
247             self.latest_requests.write().record(metrics);
248             self.send(response.into());
249         }
250     }
251     pub(crate) fn cancel(&mut self, request_id: lsp_server::RequestId) {
252         if let Some(response) = self.req_queue.incoming.cancel(request_id) {
253             self.send(response.into());
254         }
255     }
256
257     fn send(&mut self, message: lsp_server::Message) {
258         self.sender.send(message).unwrap()
259     }
260 }
261
262 impl Drop for GlobalState {
263     fn drop(&mut self) {
264         self.analysis_host.request_cancellation()
265     }
266 }
267
268 impl GlobalStateSnapshot {
269     pub(crate) fn url_to_file_id(&self, url: &Url) -> Result<FileId> {
270         url_to_file_id(&self.vfs.read().0, url)
271     }
272
273     pub(crate) fn file_id_to_url(&self, id: FileId) -> Url {
274         file_id_to_url(&self.vfs.read().0, id)
275     }
276
277     pub(crate) fn file_line_index(&self, file_id: FileId) -> Cancelable<LineIndex> {
278         let endings = self.vfs.read().1[&file_id];
279         let index = self.analysis.file_line_index(file_id)?;
280         let res = LineIndex { index, endings, encoding: self.config.offset_encoding() };
281         Ok(res)
282     }
283
284     pub(crate) fn url_file_version(&self, url: &Url) -> Option<i32> {
285         let path = from_proto::vfs_path(&url).ok()?;
286         Some(self.mem_docs.get(&path)?.version)
287     }
288
289     pub(crate) fn anchored_path(&self, path: &AnchoredPathBuf) -> Url {
290         let mut base = self.vfs.read().0.file_path(path.anchor);
291         base.pop();
292         let path = base.join(&path.path).unwrap();
293         let path = path.as_path().unwrap();
294         url_from_abs_path(&path)
295     }
296
297     pub(crate) fn cargo_target_for_crate_root(
298         &self,
299         crate_id: CrateId,
300     ) -> Option<(&CargoWorkspace, Target)> {
301         let file_id = self.analysis.crate_root(crate_id).ok()?;
302         let path = self.vfs.read().0.file_path(file_id);
303         let path = path.as_path()?;
304         self.workspaces.iter().find_map(|ws| match ws {
305             ProjectWorkspace::Cargo { cargo, .. } => {
306                 cargo.target_by_root(&path).map(|it| (cargo, it))
307             }
308             ProjectWorkspace::Json { .. } => None,
309         })
310     }
311 }
312
313 pub(crate) fn file_id_to_url(vfs: &vfs::Vfs, id: FileId) -> Url {
314     let path = vfs.file_path(id);
315     let path = path.as_path().unwrap();
316     url_from_abs_path(&path)
317 }
318
319 pub(crate) fn url_to_file_id(vfs: &vfs::Vfs, url: &Url) -> Result<FileId> {
320     let path = from_proto::vfs_path(url)?;
321     let res = vfs.file_id(&path).ok_or_else(|| format!("file not found: {}", path))?;
322     Ok(res)
323 }