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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

527 lines
21 KiB
Rust
Raw Normal View History

2020-02-18 05:25:26 -06:00
//! The context or environment in which the language server functions. In our
//! server implementation this is know as the `WorldState`.
2019-12-21 14:27:38 -06:00
//!
//! Each tick provides an immutable snapshot of the state as `WorldSnapshot`.
use std::{collections::hash_map::Entry, time::Instant};
2018-08-17 11:54:08 -05:00
2020-06-25 10:14:11 -05:00
use crossbeam_channel::{unbounded, Receiver, Sender};
use flycheck::FlycheckHandle;
use hir::Change;
use ide::{Analysis, AnalysisHost, Cancellable, FileId};
use ide_db::base_db::{CrateId, ProcMacroPaths};
use load_cargo::SourceRootConfig;
2020-07-24 16:55:17 -05:00
use lsp_types::{SemanticTokens, Url};
2023-05-04 18:28:15 -05:00
use nohash_hasher::IntMap;
2023-09-02 09:26:48 -05:00
use parking_lot::{
MappedRwLockReadGuard, Mutex, RwLock, RwLockReadGuard, RwLockUpgradableReadGuard,
RwLockWriteGuard,
};
use proc_macro_api::ProcMacroServer;
use project_model::{CargoWorkspace, ProjectWorkspace, Target, WorkspaceBuildScripts};
use rustc_hash::{FxHashMap, FxHashSet};
2023-05-02 09:12:22 -05:00
use triomphe::Arc;
use vfs::{AnchoredPathBuf, ChangedFile, Vfs};
2018-08-17 11:54:08 -05:00
2018-10-15 12:15:53 -05:00
use crate::{
2023-05-26 08:21:00 -05:00
config::{Config, ConfigError},
2020-06-13 04:00:06 -05:00
diagnostics::{CheckFixes, DiagnosticCollection},
2021-02-12 16:28:48 -06:00
line_index::{LineEndings, LineIndex},
lsp::{from_proto, to_proto::url_from_abs_path},
2021-04-06 06:16:35 -05:00
lsp_ext,
2020-06-26 04:21:21 -05:00
main_loop::Task,
mem_docs::MemDocs,
op_queue::OpQueue,
reload,
task_pool::{TaskPool, TaskQueue},
2018-08-17 11:54:08 -05:00
};
2020-06-25 17:27:39 -05:00
// Enforces drop order
pub(crate) struct Handle<H, C> {
pub(crate) handle: H,
pub(crate) receiver: C,
}
2020-06-26 04:21:21 -05:00
pub(crate) type ReqHandler = fn(&mut GlobalState, lsp_server::Response);
type ReqQueue = lsp_server::ReqQueue<(String, Instant), ReqHandler>;
2020-06-26 04:21:21 -05:00
2020-06-03 04:16:08 -05:00
/// `GlobalState` is the primary mutable state of the language server
2019-06-01 02:31:40 -05:00
///
/// The most interesting components are `vfs`, which stores a consistent
/// snapshot of the file systems, and `analysis_host`, which stores our
/// incremental salsa database.
2020-06-25 17:27:39 -05:00
///
/// Note that this struct has more than one impl in various modules!
#[doc(alias = "GlobalMess")]
2020-06-24 11:54:05 -05:00
pub(crate) struct GlobalState {
2020-06-25 10:14:11 -05:00
sender: Sender<lsp_server::Message>,
2020-06-26 10:07:14 -05:00
req_queue: ReqQueue,
2023-05-26 08:09:19 -05:00
2020-06-25 17:27:39 -05:00
pub(crate) task_pool: Handle<TaskPool<Task>, Receiver<Task>>,
pub(crate) fmt_pool: Handle<TaskPool<Task>, Receiver<Task>>,
2023-05-26 08:09:19 -05:00
pub(crate) config: Arc<Config>,
2023-05-26 08:21:00 -05:00
pub(crate) config_errors: Option<ConfigError>,
2020-06-24 11:54:05 -05:00
pub(crate) analysis_host: AnalysisHost,
pub(crate) diagnostics: DiagnosticCollection,
pub(crate) mem_docs: MemDocs,
2023-05-26 08:09:19 -05:00
pub(crate) source_root_config: SourceRootConfig,
2020-07-24 16:55:17 -05:00
pub(crate) semantic_tokens_cache: Arc<Mutex<FxHashMap<Url, SemanticTokens>>>,
2023-05-26 08:09:19 -05:00
// status
pub(crate) shutdown_requested: bool,
pub(crate) send_hint_refresh_query: bool,
2021-04-06 06:16:35 -05:00
pub(crate) last_reported_status: Option<lsp_ext::ServerStatusParams>,
2023-03-25 12:06:06 -05:00
2023-05-26 08:09:19 -05:00
// proc macros
pub(crate) proc_macro_clients: Arc<[anyhow::Result<ProcMacroServer>]>,
pub(crate) build_deps_changed: bool,
2023-05-26 08:09:19 -05:00
// Flycheck
pub(crate) flycheck: Arc<[FlycheckHandle]>,
pub(crate) flycheck_sender: Sender<flycheck::Message>,
pub(crate) flycheck_receiver: Receiver<flycheck::Message>,
2023-05-26 08:37:41 -05:00
pub(crate) last_flycheck_error: Option<String>,
2023-05-26 08:09:19 -05:00
// VFS
pub(crate) loader: Handle<Box<dyn vfs::loader::Handle>, Receiver<vfs::loader::Message>>,
2023-05-04 18:28:15 -05:00
pub(crate) vfs: Arc<RwLock<(vfs::Vfs, IntMap<FileId, LineEndings>)>>,
pub(crate) vfs_config_version: u32,
2021-04-06 06:16:35 -05:00
pub(crate) vfs_progress_config_version: u32,
pub(crate) vfs_progress_n_total: usize,
pub(crate) vfs_progress_n_done: usize,
/// `workspaces` field stores the data we actually use, while the `OpQueue`
/// stores the result of the last fetch.
///
/// If the fetch (partially) fails, we do not update the current value.
///
/// The handling of build data is subtle. We fetch workspace in two phases:
///
/// *First*, we run `cargo metadata`, which gives us fast results for
/// initial analysis.
///
/// *Second*, we run `cargo check` which runs build scripts and compiles
/// proc macros.
///
/// We need both for the precise analysis, but we want rust-analyzer to be
/// at least partially available just after the first phase. That's because
/// first phase is much faster, and is much less likely to fail.
///
/// This creates a complication -- by the time the second phase completes,
2023-03-28 04:32:51 -05:00
/// the results of the first phase could be invalid. That is, while we run
/// `cargo check`, the user edits `Cargo.toml`, we notice this, and the new
/// `cargo metadata` completes before `cargo check`.
///
/// An additional complication is that we want to avoid needless work. When
/// the user just adds comments or whitespace to Cargo.toml, we do not want
/// to invalidate any salsa caches.
pub(crate) workspaces: Arc<Vec<ProjectWorkspace>>,
pub(crate) crate_graph_file_dependencies: FxHashSet<vfs::VfsPath>,
2023-05-26 08:09:19 -05:00
// op queues
pub(crate) fetch_workspaces_queue:
OpQueue<bool, Option<(Vec<anyhow::Result<ProjectWorkspace>>, bool)>>,
pub(crate) fetch_build_data_queue:
2023-03-26 01:39:28 -05:00
OpQueue<(), (Arc<Vec<ProjectWorkspace>>, Vec<anyhow::Result<WorkspaceBuildScripts>>)>,
pub(crate) fetch_proc_macros_queue: OpQueue<Vec<ProcMacroPaths>, bool>,
pub(crate) prime_caches_queue: OpQueue,
/// A deferred task queue.
///
/// This queue is used for doing database-dependent work inside of sync
/// handlers, as accessing the database may block latency-sensitive
/// interactions and should be moved away from the main thread.
///
/// For certain features, such as [`lsp_ext::UnindexedProjectParams`],
/// this queue should run only *after* [`GlobalState::process_changes`] has
/// been called.
pub(crate) deferred_task_queue: TaskQueue,
2018-08-17 11:54:08 -05:00
}
2019-06-01 02:31:40 -05:00
/// An immutable snapshot of the world's state at a point in time.
2020-06-24 11:54:05 -05:00
pub(crate) struct GlobalStateSnapshot {
pub(crate) config: Arc<Config>,
2020-06-24 11:54:05 -05:00
pub(crate) analysis: Analysis,
pub(crate) check_fixes: CheckFixes,
mem_docs: MemDocs,
2020-11-02 09:31:38 -06:00
pub(crate) semantic_tokens_cache: Arc<Mutex<FxHashMap<Url, SemanticTokens>>>,
2023-05-04 18:28:15 -05:00
vfs: Arc<RwLock<(vfs::Vfs, IntMap<FileId, LineEndings>)>>,
2020-06-26 04:44:46 -05:00
pub(crate) workspaces: Arc<Vec<ProjectWorkspace>>,
2023-03-26 01:39:28 -05:00
// used to signal semantic highlighting to fall back to syntax based highlighting until proc-macros have been loaded
pub(crate) proc_macros_loaded: bool,
pub(crate) flycheck: Arc<[FlycheckHandle]>,
2018-08-17 11:54:08 -05:00
}
impl std::panic::UnwindSafe for GlobalStateSnapshot {}
2020-06-03 04:16:08 -05:00
impl GlobalState {
2020-06-25 17:54:41 -05:00
pub(crate) fn new(sender: Sender<lsp_server::Message>, config: Config) -> GlobalState {
let loader = {
2020-06-25 17:27:39 -05:00
let (sender, receiver) = unbounded::<vfs::loader::Message>();
let handle: vfs_notify::NotifyHandle =
vfs::loader::Handle::spawn(Box::new(move |msg| sender.send(msg).unwrap()));
2020-06-25 17:27:39 -05:00
let handle = Box::new(handle) as Box<dyn vfs::loader::Handle>;
Handle { handle, receiver }
2020-06-11 04:04:09 -05:00
};
2020-06-25 08:35:42 -05:00
let task_pool = {
let (sender, receiver) = unbounded();
let handle = TaskPool::new_with_threads(sender, config.main_loop_num_threads());
2020-06-25 17:27:39 -05:00
Handle { handle, receiver }
2020-06-25 08:35:42 -05:00
};
let fmt_pool = {
let (sender, receiver) = unbounded();
let handle = TaskPool::new_with_threads(sender, 1);
Handle { handle, receiver }
};
2020-06-25 08:35:42 -05:00
let task_queue = {
let (sender, receiver) = unbounded();
TaskQueue { sender, receiver }
};
let mut analysis_host = AnalysisHost::new(config.lru_parse_query_capacity());
if let Some(capacities) = config.lru_query_capacities() {
analysis_host.update_lru_capacities(capacities);
}
let (flycheck_sender, flycheck_receiver) = unbounded();
2021-06-03 09:11:20 -05:00
let mut this = GlobalState {
2020-06-25 10:14:11 -05:00
sender,
2020-06-26 10:07:14 -05:00
req_queue: ReqQueue::default(),
2020-06-25 08:35:42 -05:00
task_pool,
fmt_pool,
2020-06-11 04:04:09 -05:00
loader,
2021-06-03 09:11:20 -05:00
config: Arc::new(config.clone()),
2020-06-25 17:54:41 -05:00
analysis_host,
diagnostics: Default::default(),
mem_docs: MemDocs::default(),
2020-07-24 16:55:17 -05:00
semantic_tokens_cache: Arc::new(Default::default()),
shutdown_requested: false,
send_hint_refresh_query: false,
2021-04-06 06:16:35 -05:00
last_reported_status: None,
source_root_config: SourceRootConfig::default(),
2023-05-26 08:21:00 -05:00
config_errors: Default::default(),
2023-03-25 12:06:06 -05:00
2023-11-28 09:36:01 -06:00
proc_macro_clients: Arc::from_iter([]),
build_deps_changed: false,
2023-11-28 09:36:01 -06:00
flycheck: Arc::from_iter([]),
flycheck_sender,
flycheck_receiver,
2023-05-26 08:37:41 -05:00
last_flycheck_error: None,
2023-05-04 18:28:15 -05:00
vfs: Arc::new(RwLock::new((vfs::Vfs::default(), IntMap::default()))),
vfs_config_version: 0,
2021-04-06 06:16:35 -05:00
vfs_progress_config_version: 0,
vfs_progress_n_total: 0,
vfs_progress_n_done: 0,
2023-11-28 09:36:01 -06:00
workspaces: Arc::from(Vec::new()),
crate_graph_file_dependencies: FxHashSet::default(),
fetch_workspaces_queue: OpQueue::default(),
2021-04-06 06:16:35 -05:00
fetch_build_data_queue: OpQueue::default(),
2023-03-26 01:39:28 -05:00
fetch_proc_macros_queue: OpQueue::default(),
prime_caches_queue: OpQueue::default(),
deferred_task_queue: task_queue,
2021-06-03 09:11:20 -05:00
};
// Apply any required database inputs from the config.
this.update_configuration(config);
this
2018-12-19 06:04:15 -06:00
}
2020-06-24 17:35:22 -05:00
pub(crate) fn process_changes(&mut self) -> bool {
let _p = tracing::span!(tracing::Level::INFO, "GlobalState::process_changes").entered();
let mut file_changes = FxHashMap::<_, (bool, ChangedFile)>::default();
let (change, modified_rust_files, workspace_structure_change) = {
let mut change = Change::new();
2023-09-01 13:45:46 -05:00
let mut guard = self.vfs.write();
let changed_files = guard.0.take_changes();
2020-06-11 04:04:09 -05:00
if changed_files.is_empty() {
return false;
}
2023-09-01 13:45:46 -05:00
// downgrade to read lock to allow more readers while we are normalizing text
let guard = RwLockWriteGuard::downgrade_to_upgradable(guard);
let vfs: &Vfs = &guard.0;
2023-01-26 09:19:35 -06:00
// We need to fix up the changed events a bit. If we have a create or modify for a file
// id that is followed by a delete we actually skip observing the file text from the
// earlier event, to avoid problems later on.
for changed_file in changed_files {
use vfs::Change::*;
match file_changes.entry(changed_file.file_id) {
Entry::Occupied(mut o) => {
let (just_created, change) = o.get_mut();
match (&mut change.change, just_created, changed_file.change) {
2023-01-26 09:19:35 -06:00
// latter `Delete` wins
(change, _, Delete) => *change = Delete,
// merge `Create` with `Create` or `Modify`
(Create(prev), _, Create(new) | Modify(new)) => *prev = new,
2023-01-26 09:19:35 -06:00
// collapse identical `Modify`es
(Modify(prev), _, Modify(new)) => *prev = new,
2023-01-26 09:19:35 -06:00
// equivalent to `Modify`
(change @ Delete, just_created, Create(new)) => {
*change = Modify(new);
2023-01-26 09:19:35 -06:00
*just_created = true;
}
// shouldn't occur, but collapse into `Create`
(change @ Delete, just_created, Modify(new)) => {
*change = Create(new);
2023-01-26 09:19:35 -06:00
*just_created = true;
}
// shouldn't occur, but keep the Create
(prev @ Modify(_), _, new @ Create(_)) => *prev = new,
2023-01-26 09:19:35 -06:00
}
}
Entry::Vacant(v) => {
_ = v.insert((matches!(&changed_file.change, Create(_)), changed_file))
}
}
}
2023-01-26 09:19:35 -06:00
let changed_files: Vec<_> = file_changes
.into_iter()
.filter(|(_, (just_created, change))| {
!(*just_created && matches!(change.change, vfs::Change::Delete))
})
.map(|(file_id, (_, change))| vfs::ChangedFile { file_id, ..change })
.collect();
2023-01-26 09:19:35 -06:00
let mut workspace_structure_change = None;
2023-01-26 09:19:35 -06:00
// A file was added or deleted
let mut has_structure_changes = false;
2023-09-01 13:45:46 -05:00
let mut bytes = vec![];
let mut modified_rust_files = vec![];
for file in changed_files {
let vfs_path = &vfs.file_path(file.file_id);
if let Some(path) = vfs_path.as_path() {
let path = path.to_path_buf();
if reload::should_refresh_for_change(&path, file.kind()) {
workspace_structure_change = Some((path.clone(), false));
}
2021-09-10 11:34:47 -05:00
if file.is_created_or_deleted() {
has_structure_changes = true;
workspace_structure_change =
Some((path, self.crate_graph_file_dependencies.contains(vfs_path)));
} else if path.extension() == Some("rs".as_ref()) {
modified_rust_files.push(file.file_id);
}
}
// Clear native diagnostics when their file gets deleted
if !file.exists() {
self.diagnostics.clear_native_for(file.file_id);
}
let text = if let vfs::Change::Create(v) | vfs::Change::Modify(v) = file.change {
2024-01-18 06:59:49 -06:00
String::from_utf8(v).ok().map(|text| {
2023-09-01 13:45:46 -05:00
// FIXME: Consider doing normalization in the `vfs` instead? That allows
// getting rid of some locking
let (text, line_endings) = LineEndings::normalize(text);
2024-01-18 06:59:49 -06:00
(Arc::from(text), line_endings)
})
2020-06-11 04:04:09 -05:00
} else {
None
};
2023-09-01 13:45:46 -05:00
// delay `line_endings_map` changes until we are done normalizing the text
// this allows delaying the re-acquisition of the write lock
bytes.push((file.file_id, text));
2018-12-19 06:04:15 -06:00
}
2023-09-01 13:45:46 -05:00
let (vfs, line_endings_map) = &mut *RwLockUpgradableReadGuard::upgrade(guard);
bytes.into_iter().for_each(|(file_id, text)| match text {
None => change.change_file(file_id, None),
Some((text, line_endings)) => {
line_endings_map.insert(file_id, line_endings);
change.change_file(file_id, Some(text));
}
});
if has_structure_changes {
2021-06-12 22:54:16 -05:00
let roots = self.source_root_config.partition(vfs);
change.set_roots(roots);
}
(change, modified_rust_files, workspace_structure_change)
2020-06-11 04:04:09 -05:00
};
self.analysis_host.apply_change(change);
{
if !matches!(&workspace_structure_change, Some((.., true))) {
_ = self
.deferred_task_queue
.sender
.send(crate::main_loop::QueuedTask::CheckProcMacroSources(modified_rust_files));
}
// FIXME: ideally we should only trigger a workspace fetch for non-library changes
// but something's going wrong with the source root business when we add a new local
// crate see https://github.com/rust-lang/rust-analyzer/issues/13029
if let Some((path, force_crate_graph_reload)) = workspace_structure_change {
self.fetch_workspaces_queue.request_op(
format!("workspace vfs file change: {path}"),
force_crate_graph_reload,
);
}
}
true
2018-12-19 06:04:15 -06:00
}
2020-06-24 17:35:22 -05:00
pub(crate) fn snapshot(&self) -> GlobalStateSnapshot {
2020-06-03 04:16:08 -05:00
GlobalStateSnapshot {
config: Arc::clone(&self.config),
2018-09-02 06:46:15 -05:00
workspaces: Arc::clone(&self.workspaces),
2018-09-10 04:57:40 -05:00
analysis: self.analysis_host.analysis(),
2018-12-19 06:04:15 -06:00
vfs: Arc::clone(&self.vfs),
check_fixes: Arc::clone(&self.diagnostics.check_fixes),
mem_docs: self.mem_docs.clone(),
2020-07-24 16:55:17 -05:00
semantic_tokens_cache: Arc::clone(&self.semantic_tokens_cache),
2023-03-26 01:39:28 -05:00
proc_macros_loaded: !self.config.expand_proc_macros()
|| *self.fetch_proc_macros_queue.last_op_result(),
flycheck: self.flycheck.clone(),
2018-08-17 11:54:08 -05:00
}
}
2019-01-25 10:11:58 -06:00
2020-06-26 10:07:14 -05:00
pub(crate) fn send_request<R: lsp_types::request::Request>(
&mut self,
params: R::Params,
handler: ReqHandler,
) {
let request = self.req_queue.outgoing.register(R::METHOD.to_owned(), params, handler);
2020-06-26 10:07:14 -05:00
self.send(request.into());
}
2020-06-26 10:07:14 -05:00
pub(crate) fn complete_request(&mut self, response: lsp_server::Response) {
2022-04-08 17:13:47 -05:00
let handler = self
.req_queue
.outgoing
.complete(response.id.clone())
.expect("received response for unknown request");
2020-06-26 10:07:14 -05:00
handler(self, response)
}
pub(crate) fn send_notification<N: lsp_types::notification::Notification>(
&self,
2020-06-26 10:07:14 -05:00
params: N::Params,
) {
let not = lsp_server::Notification::new(N::METHOD.to_owned(), params);
2020-06-26 10:07:14 -05:00
self.send(not.into());
}
pub(crate) fn register_request(
&mut self,
request: &lsp_server::Request,
request_received: Instant,
) {
self.req_queue
.incoming
.register(request.id.clone(), (request.method.clone(), request_received));
2020-06-25 10:14:11 -05:00
}
2020-06-25 12:23:52 -05:00
pub(crate) fn respond(&mut self, response: lsp_server::Response) {
if let Some((method, start)) = self.req_queue.incoming.complete(response.id.clone()) {
if let Some(err) = &response.error {
if err.message.starts_with("server panicked") {
self.poke_rust_analyzer_developer(format!("{}, check the log", err.message))
}
}
2020-06-25 12:23:52 -05:00
let duration = start.elapsed();
2022-04-28 08:17:44 -05:00
tracing::debug!("handled {} - ({}) in {:0.2?}", method, response.id, duration);
2020-06-25 12:23:52 -05:00
self.send(response.into());
}
}
2020-06-26 10:07:14 -05:00
pub(crate) fn cancel(&mut self, request_id: lsp_server::RequestId) {
if let Some(response) = self.req_queue.incoming.cancel(request_id) {
self.send(response.into());
}
}
pub(crate) fn is_completed(&self, request: &lsp_server::Request) -> bool {
self.req_queue.incoming.is_completed(&request.id)
}
fn send(&self, message: lsp_server::Message) {
2020-06-26 10:07:14 -05:00
self.sender.send(message).unwrap()
}
2020-06-25 10:14:11 -05:00
}
impl Drop for GlobalState {
fn drop(&mut self) {
self.analysis_host.request_cancellation();
2020-06-25 10:14:11 -05:00
}
2018-08-17 11:54:08 -05:00
}
2020-06-03 04:16:08 -05:00
impl GlobalStateSnapshot {
2023-09-02 09:26:48 -05:00
fn vfs_read(&self) -> MappedRwLockReadGuard<'_, vfs::Vfs> {
RwLockReadGuard::map(self.vfs.read(), |(it, _)| it)
}
pub(crate) fn url_to_file_id(&self, url: &Url) -> anyhow::Result<FileId> {
2023-09-02 09:26:48 -05:00
url_to_file_id(&self.vfs_read(), url)
2018-08-17 11:54:08 -05:00
}
2020-06-11 04:04:09 -05:00
pub(crate) fn file_id_to_url(&self, id: FileId) -> Url {
2023-09-02 09:26:48 -05:00
file_id_to_url(&self.vfs_read(), id)
2018-08-17 11:54:08 -05:00
}
2018-12-21 03:18:14 -06:00
2021-05-17 12:07:10 -05:00
pub(crate) fn file_line_index(&self, file_id: FileId) -> Cancellable<LineIndex> {
let endings = self.vfs.read().1[&file_id];
let index = self.analysis.file_line_index(file_id)?;
2022-10-25 06:43:26 -05:00
let res = LineIndex { index, endings, encoding: self.config.position_encoding() };
Ok(res)
2019-08-20 10:53:59 -05:00
}
pub(crate) fn url_file_version(&self, url: &Url) -> Option<i32> {
2021-06-12 22:54:16 -05:00
let path = from_proto::vfs_path(url).ok()?;
Some(self.mem_docs.get(&path)?.version)
}
pub(crate) fn anchored_path(&self, path: &AnchoredPathBuf) -> Url {
2023-09-02 09:26:48 -05:00
let mut base = self.vfs_read().file_path(path.anchor);
base.pop();
let path = base.join(&path.path).unwrap();
2020-06-11 04:04:09 -05:00
let path = path.as_path().unwrap();
2021-06-12 22:54:16 -05:00
url_from_abs_path(path)
2018-12-21 03:18:14 -06:00
}
2019-01-22 15:15:03 -06:00
pub(crate) fn file_id_to_file_path(&self, file_id: FileId) -> vfs::VfsPath {
2023-09-02 09:26:48 -05:00
self.vfs_read().file_path(file_id)
}
pub(crate) fn cargo_target_for_crate_root(
&self,
crate_id: CrateId,
) -> Option<(&CargoWorkspace, Target)> {
let file_id = self.analysis.crate_root(crate_id).ok()?;
2023-09-02 09:26:48 -05:00
let path = self.vfs_read().file_path(file_id);
2020-06-11 04:04:09 -05:00
let path = path.as_path()?;
self.workspaces.iter().find_map(|ws| match ws {
ProjectWorkspace::Cargo { cargo, .. } => {
2021-06-12 22:54:16 -05:00
cargo.target_by_root(path).map(|it| (cargo, it))
}
ProjectWorkspace::Json { .. } => None,
2021-05-23 12:56:54 -05:00
ProjectWorkspace::DetachedFiles { .. } => None,
})
}
2023-08-29 06:19:17 -05:00
pub(crate) fn file_exists(&self, file_id: FileId) -> bool {
self.vfs.read().0.exists(file_id)
}
2020-06-11 04:04:09 -05:00
}
pub(crate) fn file_id_to_url(vfs: &vfs::Vfs, id: FileId) -> Url {
let path = vfs.file_path(id);
let path = path.as_path().unwrap();
2021-06-12 22:54:16 -05:00
url_from_abs_path(path)
2020-06-11 04:04:09 -05:00
}
2020-06-26 05:02:59 -05:00
pub(crate) fn url_to_file_id(vfs: &vfs::Vfs, url: &Url) -> anyhow::Result<FileId> {
2020-06-26 05:02:59 -05:00
let path = from_proto::vfs_path(url)?;
let res = vfs.file_id(&path).ok_or_else(|| anyhow::format_err!("file not found: {path}"))?;
2020-06-26 05:02:59 -05:00
Ok(res)
}