Skip to content

Commit 7053aed

Browse files
committed
Register virtual workspace Cargo.toml files in the VFS
1 parent 3243ea0 commit 7053aed

File tree

15 files changed

+77
-37
lines changed

15 files changed

+77
-37
lines changed

src/tools/rust-analyzer/Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,11 @@ xshell = "0.2.5"
162162
dashmap = { version = "=5.5.3", features = ["raw-api"] }
163163

164164
[workspace.lints.rust]
165-
rust_2018_idioms = "warn"
165+
bare_trait_objects = "warn"
166+
elided_lifetimes_in_paths = "warn"
167+
ellipsis_inclusive_range_patterns = "warn"
168+
explicit_outlives_requirements = "warn"
169+
unused_extern_crates = "warn"
166170
unused_lifetimes = "warn"
167171
unreachable_pub = "warn"
168172
semicolon_in_expressions_from_macros = "warn"

src/tools/rust-analyzer/crates/hir-ty/src/builder.rs

+1
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ impl TyBuilder<()> {
246246
/// - yield type of coroutine ([`Coroutine::Yield`](std::ops::Coroutine::Yield))
247247
/// - return type of coroutine ([`Coroutine::Return`](std::ops::Coroutine::Return))
248248
/// - generic parameters in scope on `parent`
249+
///
249250
/// in this order.
250251
///
251252
/// This method prepopulates the builder with placeholder substitution of `parent`, so you

src/tools/rust-analyzer/crates/hir-ty/src/mir.rs

+12-13
Original file line numberDiff line numberDiff line change
@@ -898,20 +898,19 @@ pub enum Rvalue {
898898
Cast(CastKind, Operand, Ty),
899899

900900
// FIXME link to `pointer::offset` when it hits stable.
901-
/// * `Offset` has the same semantics as `pointer::offset`, except that the second
902-
/// parameter may be a `usize` as well.
903-
/// * The comparison operations accept `bool`s, `char`s, signed or unsigned integers, floats,
904-
/// raw pointers, or function pointers and return a `bool`. The types of the operands must be
905-
/// matching, up to the usual caveat of the lifetimes in function pointers.
906-
/// * Left and right shift operations accept signed or unsigned integers not necessarily of the
907-
/// same type and return a value of the same type as their LHS. Like in Rust, the RHS is
908-
/// truncated as needed.
909-
/// * The `Bit*` operations accept signed integers, unsigned integers, or bools with matching
910-
/// types and return a value of that type.
911-
/// * The remaining operations accept signed integers, unsigned integers, or floats with
912-
/// matching types and return a value of that type.
901+
// /// * `Offset` has the same semantics as `pointer::offset`, except that the second
902+
// /// parameter may be a `usize` as well.
903+
// /// * The comparison operations accept `bool`s, `char`s, signed or unsigned integers, floats,
904+
// /// raw pointers, or function pointers and return a `bool`. The types of the operands must be
905+
// /// matching, up to the usual caveat of the lifetimes in function pointers.
906+
// /// * Left and right shift operations accept signed or unsigned integers not necessarily of the
907+
// /// same type and return a value of the same type as their LHS. Like in Rust, the RHS is
908+
// /// truncated as needed.
909+
// /// * The `Bit*` operations accept signed integers, unsigned integers, or bools with matching
910+
// /// types and return a value of that type.
911+
// /// * The remaining operations accept signed integers, unsigned integers, or floats with
912+
// /// matching types and return a value of that type.
913913
//BinaryOp(BinOp, Box<(Operand, Operand)>),
914-
915914
/// Same as `BinaryOp`, but yields `(T, bool)` with a `bool` indicating an error condition.
916915
///
917916
/// When overflow checking is disabled and we are generating run-time code, the error condition

src/tools/rust-analyzer/crates/hir/src/term_search/tactics.rs

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
//! * `defs` - Set of items in scope at term search target location
66
//! * `lookup` - Lookup table for types
77
//! * `should_continue` - Function that indicates when to stop iterating
8+
//!
89
//! And they return iterator that yields type trees that unify with the `goal` type.
910
1011
use std::iter;

src/tools/rust-analyzer/crates/ide-assists/src/handlers/generate_function.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,9 @@ impl FunctionBuilder {
393393
/// The rule for whether we focus a return type or not (and thus focus the function body),
394394
/// is rather simple:
395395
/// * If we could *not* infer what the return type should be, focus it (so the user can fill-in
396-
/// the correct return type).
396+
/// the correct return type).
397397
/// * If we could infer the return type, don't focus it (and thus focus the function body) so the
398-
/// user can change the `todo!` function body.
398+
/// user can change the `todo!` function body.
399399
fn make_return_type(
400400
ctx: &AssistContext<'_>,
401401
expr: &ast::Expr,
@@ -918,17 +918,17 @@ fn filter_generic_params(ctx: &AssistContext<'_>, node: SyntaxNode) -> Option<hi
918918
/// Say we have a trait bound `Struct<T>: Trait<U>`. Given `necessary_params`, when is it relevant
919919
/// and when not? Some observations:
920920
/// - When `necessary_params` contains `T`, it's likely that we want this bound, but now we have
921-
/// an extra param to consider: `U`.
921+
/// an extra param to consider: `U`.
922922
/// - On the other hand, when `necessary_params` contains `U` (but not `T`), then it's unlikely
923-
/// that we want this bound because it doesn't really constrain `U`.
923+
/// that we want this bound because it doesn't really constrain `U`.
924924
///
925925
/// (FIXME?: The latter clause might be overstating. We may want to include the bound if the self
926926
/// type does *not* include generic params at all - like `Option<i32>: From<U>`)
927927
///
928928
/// Can we make this a bit more formal? Let's define "dependency" between generic parameters and
929929
/// trait bounds:
930930
/// - A generic parameter `T` depends on a trait bound if `T` appears in the self type (i.e. left
931-
/// part) of the bound.
931+
/// part) of the bound.
932932
/// - A trait bound depends on a generic parameter `T` if `T` appears in the bound.
933933
///
934934
/// Using the notion, what we want is all the bounds that params in `necessary_params`

src/tools/rust-analyzer/crates/ide-assists/src/handlers/inline_call.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ fn inline(
368368
_ => None,
369369
})
370370
.for_each(|usage| {
371-
ted::replace(usage, &this());
371+
ted::replace(usage, this());
372372
});
373373
}
374374
}
@@ -483,7 +483,7 @@ fn inline(
483483
cov_mark::hit!(inline_call_inline_direct_field);
484484
field.replace_expr(replacement.clone_for_update());
485485
} else {
486-
ted::replace(usage.syntax(), &replacement.syntax().clone_for_update());
486+
ted::replace(usage.syntax(), replacement.syntax().clone_for_update());
487487
}
488488
};
489489

src/tools/rust-analyzer/crates/ide-completion/src/context.rs

+1
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,7 @@ pub(crate) struct CompletionContext<'a> {
452452
/// - crate-root
453453
/// - mod foo
454454
/// - mod bar
455+
///
455456
/// Here depth will be 2
456457
pub(crate) depth_from_crate_root: usize,
457458
}

src/tools/rust-analyzer/crates/load-cargo/src/lib.rs

+14-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use ide_db::{
1515
};
1616
use itertools::Itertools;
1717
use proc_macro_api::{MacroDylib, ProcMacroServer};
18-
use project_model::{CargoConfig, PackageRoot, ProjectManifest, ProjectWorkspace};
18+
use project_model::{CargoConfig, ManifestPath, PackageRoot, ProjectManifest, ProjectWorkspace};
1919
use span::Span;
2020
use tracing::instrument;
2121
use vfs::{file_set::FileSetConfig, loader::Handle, AbsPath, AbsPathBuf, VfsPath};
@@ -238,6 +238,19 @@ impl ProjectFolders {
238238
fsc.add_file_set(file_set_roots)
239239
}
240240

241+
// register the workspace manifest as well, note that this currently causes duplicates for
242+
// non-virtual cargo workspaces! We ought to fix that
243+
for manifest in workspaces.iter().filter_map(|ws| ws.manifest().map(ManifestPath::as_ref)) {
244+
let file_set_roots: Vec<VfsPath> = vec![VfsPath::from(manifest.to_owned())];
245+
246+
let entry = vfs::loader::Entry::Files(vec![manifest.to_owned()]);
247+
248+
res.watch.push(res.load.len());
249+
res.load.push(entry);
250+
local_filesets.push(fsc.len() as u64);
251+
fsc.add_file_set(file_set_roots)
252+
}
253+
241254
let fsc = fsc.build();
242255
res.source_root_config = SourceRootConfig { fsc, local_filesets };
243256

src/tools/rust-analyzer/crates/proc-macro-api/src/version.rs

+2
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ fn read_section<'a>(dylib_binary: &'a [u8], section_name: &str) -> io::Result<&'
9393
/// means bytes from here(including this sequence) are compressed in
9494
/// snappy compression format. Version info is inside here, so decompress
9595
/// this.
96+
///
9697
/// The bytes you get after decompressing the snappy format portion has
9798
/// following layout:
9899
/// * [b'r',b'u',b's',b't',0,0,0,5] is the first 8 bytes(again)
@@ -102,6 +103,7 @@ fn read_section<'a>(dylib_binary: &'a [u8], section_name: &str) -> io::Result<&'
102103
/// for the version string's utf8 bytes
103104
/// * [version string bytes encoded in utf8] <- GET THIS BOI
104105
/// * [some more bytes that we don't really care but about still there] :-)
106+
///
105107
/// Check this issue for more about the bytes layout:
106108
/// <https://github.com/rust-lang/rust-analyzer/issues/6174>
107109
pub fn read_version(dylib_path: &AbsPath) -> io::Result<String> {

src/tools/rust-analyzer/crates/project-model/src/project_json.rs

+5
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,11 @@ impl ProjectJson {
167167
&self.project_root
168168
}
169169

170+
/// Returns the path to the project's manifest file, if it exists.
171+
pub fn manifest(&self) -> Option<&ManifestPath> {
172+
self.manifest.as_ref()
173+
}
174+
170175
/// Returns the path to the project's manifest or root folder, if no manifest exists.
171176
pub fn manifest_or_root(&self) -> &AbsPath {
172177
self.manifest.as_ref().map_or(&self.project_root, |manifest| manifest.as_ref())

src/tools/rust-analyzer/crates/project-model/src/workspace.rs

+10
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,16 @@ impl ProjectWorkspace {
527527
}
528528
}
529529

530+
pub fn manifest(&self) -> Option<&ManifestPath> {
531+
match &self.kind {
532+
ProjectWorkspaceKind::Cargo { cargo, .. } => Some(cargo.manifest_path()),
533+
ProjectWorkspaceKind::Json(project) => project.manifest(),
534+
ProjectWorkspaceKind::DetachedFile { cargo, .. } => {
535+
Some(cargo.as_ref()?.0.manifest_path())
536+
}
537+
}
538+
}
539+
530540
pub fn find_sysroot_proc_macro_srv(&self) -> anyhow::Result<AbsPathBuf> {
531541
self.sysroot.discover_proc_macro_srv()
532542
}

src/tools/rust-analyzer/crates/rust-analyzer/src/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ impl DiagnosticCollection {
122122
&self,
123123
file_id: FileId,
124124
) -> impl Iterator<Item = &lsp_types::Diagnostic> {
125-
let native = self.native.get(&file_id).into_iter().map(|(_, d)| d).flatten();
125+
let native = self.native.get(&file_id).into_iter().flat_map(|(_, d)| d);
126126
let check = self.check.values().filter_map(move |it| it.get(&file_id)).flatten();
127127
native.chain(check)
128128
}

src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs

+16-11
Original file line numberDiff line numberDiff line change
@@ -440,15 +440,19 @@ impl GlobalState {
440440
}
441441

442442
if let FilesWatcher::Client = self.config.files().watcher {
443-
let filter =
444-
self.workspaces.iter().flat_map(|ws| ws.to_roots()).filter(|it| it.is_local);
443+
let filter = self
444+
.workspaces
445+
.iter()
446+
.flat_map(|ws| ws.to_roots())
447+
.filter(|it| it.is_local)
448+
.map(|it| it.include);
445449

446450
let mut watchers: Vec<FileSystemWatcher> =
447451
if self.config.did_change_watched_files_relative_pattern_support() {
448452
// When relative patterns are supported by the client, prefer using them
449453
filter
450-
.flat_map(|root| {
451-
root.include.into_iter().flat_map(|base| {
454+
.flat_map(|include| {
455+
include.into_iter().flat_map(|base| {
452456
[
453457
(base.clone(), "**/*.rs"),
454458
(base.clone(), "**/Cargo.{lock,toml}"),
@@ -471,8 +475,8 @@ impl GlobalState {
471475
} else {
472476
// When they're not, integrate the base to make them into absolute patterns
473477
filter
474-
.flat_map(|root| {
475-
root.include.into_iter().flat_map(|base| {
478+
.flat_map(|include| {
479+
include.into_iter().flat_map(|base| {
476480
[
477481
format!("{base}/**/*.rs"),
478482
format!("{base}/**/Cargo.{{toml,lock}}"),
@@ -488,13 +492,14 @@ impl GlobalState {
488492
};
489493

490494
watchers.extend(
491-
iter::once(self.config.user_config_path().to_string())
492-
.chain(iter::once(self.config.root_ratoml_path().to_string()))
495+
iter::once(self.config.user_config_path().as_path())
496+
.chain(iter::once(self.config.root_ratoml_path().as_path()))
497+
.chain(self.workspaces.iter().map(|ws| ws.manifest().map(ManifestPath::as_ref)))
498+
.flatten()
493499
.map(|glob_pattern| lsp_types::FileSystemWatcher {
494-
glob_pattern: lsp_types::GlobPattern::String(glob_pattern),
500+
glob_pattern: lsp_types::GlobPattern::String(glob_pattern.to_string()),
495501
kind: None,
496-
})
497-
.collect::<Vec<FileSystemWatcher>>(),
502+
}),
498503
);
499504

500505
let registration_options =

src/tools/rust-analyzer/crates/vfs/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ impl Vfs {
282282
/// Returns the id associated with `path`
283283
///
284284
/// - If `path` does not exists in the `Vfs`, allocate a new id for it, associated with a
285-
/// deleted file;
285+
/// deleted file;
286286
/// - Else, returns `path`'s id.
287287
///
288288
/// Does not record a change.

src/tools/rust-analyzer/crates/vfs/src/vfs_path.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,7 @@ impl VirtualPath {
384384
///
385385
/// # Returns
386386
/// - `None` if `self` ends with `"//"`.
387-
/// - `Some((name, None))` if `self`'s base contains no `.`, or only one `.` at
388-
/// the start.
387+
/// - `Some((name, None))` if `self`'s base contains no `.`, or only one `.` at the start.
389388
/// - `Some((name, Some(extension))` else.
390389
///
391390
/// # Note

0 commit comments

Comments
 (0)