mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 11:31:15 +00:00
119 lines
4.6 KiB
Rust
119 lines
4.6 KiB
Rust
//! Completion for derives
|
|
use hir::{HasAttrs, ScopeDef};
|
|
use ide_db::SymbolKind;
|
|
use itertools::Itertools;
|
|
use syntax::SmolStr;
|
|
|
|
use crate::{
|
|
context::{CompletionContext, ExistingDerives, PathCompletionCtx, Qualified},
|
|
item::CompletionItem,
|
|
Completions,
|
|
};
|
|
|
|
pub(crate) fn complete_derive_path(
|
|
acc: &mut Completions,
|
|
ctx: &CompletionContext,
|
|
path_ctx @ PathCompletionCtx { qualified, .. }: &PathCompletionCtx,
|
|
existing_derives: &ExistingDerives,
|
|
) {
|
|
let core = ctx.famous_defs().core();
|
|
|
|
match qualified {
|
|
Qualified::With {
|
|
resolution: Some(hir::PathResolution::Def(hir::ModuleDef::Module(module))),
|
|
is_super_chain,
|
|
..
|
|
} => {
|
|
if *is_super_chain {
|
|
acc.add_keyword(ctx, "super::");
|
|
}
|
|
|
|
for (name, def) in module.scope(ctx.db, Some(ctx.module)) {
|
|
match def {
|
|
ScopeDef::ModuleDef(hir::ModuleDef::Macro(mac))
|
|
if !existing_derives.contains(&mac) && mac.is_derive(ctx.db) =>
|
|
{
|
|
acc.add_macro(ctx, path_ctx, mac, name)
|
|
}
|
|
ScopeDef::ModuleDef(hir::ModuleDef::Module(m)) => {
|
|
acc.add_module(ctx, path_ctx, m, name)
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
}
|
|
Qualified::Absolute => acc.add_crate_roots(ctx, path_ctx),
|
|
// only show modules in a fresh UseTree
|
|
Qualified::No => {
|
|
ctx.process_all_names(&mut |name, def| {
|
|
let mac = match def {
|
|
ScopeDef::ModuleDef(hir::ModuleDef::Macro(mac))
|
|
if !existing_derives.contains(&mac) && mac.is_derive(ctx.db) =>
|
|
{
|
|
mac
|
|
}
|
|
ScopeDef::ModuleDef(hir::ModuleDef::Module(m)) => {
|
|
return acc.add_module(ctx, path_ctx, m, name);
|
|
}
|
|
_ => return,
|
|
};
|
|
|
|
match (core, mac.module(ctx.db).krate()) {
|
|
// show derive dependencies for `core`/`std` derives
|
|
(Some(core), mac_krate) if core == mac_krate => {}
|
|
_ => return acc.add_macro(ctx, path_ctx, mac, name),
|
|
};
|
|
|
|
let name_ = name.to_smol_str();
|
|
let find = DEFAULT_DERIVE_DEPENDENCIES
|
|
.iter()
|
|
.find(|derive_completion| derive_completion.label == name_);
|
|
|
|
match find {
|
|
Some(derive_completion) => {
|
|
let mut components = vec![derive_completion.label];
|
|
components.extend(derive_completion.dependencies.iter().filter(
|
|
|&&dependency| {
|
|
!existing_derives
|
|
.iter()
|
|
.map(|it| it.name(ctx.db))
|
|
.any(|it| it.to_smol_str() == dependency)
|
|
},
|
|
));
|
|
let lookup = components.join(", ");
|
|
let label = Itertools::intersperse(components.into_iter().rev(), ", ");
|
|
|
|
let mut item = CompletionItem::new(
|
|
SymbolKind::Derive,
|
|
ctx.source_range(),
|
|
SmolStr::from_iter(label),
|
|
);
|
|
if let Some(docs) = mac.docs(ctx.db) {
|
|
item.documentation(docs);
|
|
}
|
|
item.lookup_by(lookup);
|
|
item.add_to(acc);
|
|
}
|
|
None => acc.add_macro(ctx, path_ctx, mac, name),
|
|
}
|
|
});
|
|
acc.add_nameref_keywords_with_colon(ctx);
|
|
}
|
|
Qualified::Infer | Qualified::With { .. } => {}
|
|
}
|
|
}
|
|
|
|
struct DeriveDependencies {
|
|
label: &'static str,
|
|
dependencies: &'static [&'static str],
|
|
}
|
|
|
|
/// Standard Rust derives that have dependencies
|
|
/// (the dependencies are needed so that the main derive don't break the compilation when added)
|
|
const DEFAULT_DERIVE_DEPENDENCIES: &[DeriveDependencies] = &[
|
|
DeriveDependencies { label: "Copy", dependencies: &["Clone"] },
|
|
DeriveDependencies { label: "Eq", dependencies: &["PartialEq"] },
|
|
DeriveDependencies { label: "Ord", dependencies: &["PartialOrd", "Eq", "PartialEq"] },
|
|
DeriveDependencies { label: "PartialOrd", dependencies: &["PartialEq"] },
|
|
];
|