2019-09-30 03:58:53 -05:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
2020-12-18 12:26:47 -06:00
|
|
|
use std::fmt;
|
|
|
|
|
2019-12-03 10:07:56 -06:00
|
|
|
use either::Either;
|
2020-12-17 08:45:26 -06:00
|
|
|
use hir::{AssocItem, Documentation, FieldSource, HasAttrs, HasSource, InFile, ModuleSource};
|
2020-12-17 05:29:05 -06:00
|
|
|
use ide_db::{
|
2020-12-23 10:15:01 -06:00
|
|
|
base_db::{FileId, FileRange, SourceDatabase},
|
2020-12-17 05:29:05 -06:00
|
|
|
symbol_index::FileSymbolKind,
|
|
|
|
};
|
2020-08-13 09:39:16 -05:00
|
|
|
use ide_db::{defs::Definition, RootDatabase};
|
2020-08-12 11:26:51 -05:00
|
|
|
use syntax::{
|
2020-12-11 14:19:58 -06:00
|
|
|
ast::{self, NameOwner},
|
2020-12-17 05:29:05 -06:00
|
|
|
match_ast, AstNode, SmolStr, TextRange,
|
2019-01-11 04:28:59 -06:00
|
|
|
};
|
2019-01-11 04:01:35 -06:00
|
|
|
|
2020-06-30 06:27:13 -05:00
|
|
|
use crate::FileSymbol;
|
2019-11-18 05:23:24 -06:00
|
|
|
|
2019-06-09 14:28:53 -05:00
|
|
|
use super::short_label::ShortLabel;
|
2019-01-11 05:00:54 -06:00
|
|
|
|
2020-12-18 14:00:43 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
2020-12-17 05:29:05 -06:00
|
|
|
pub enum SymbolKind {
|
|
|
|
Module,
|
|
|
|
Impl,
|
|
|
|
Field,
|
|
|
|
TypeParam,
|
2021-01-01 03:07:01 -06:00
|
|
|
ConstParam,
|
2020-12-17 05:29:05 -06:00
|
|
|
LifetimeParam,
|
2020-12-18 14:00:43 -06:00
|
|
|
ValueParam,
|
2020-12-17 05:29:05 -06:00
|
|
|
SelfParam,
|
|
|
|
Local,
|
2020-12-23 10:15:01 -06:00
|
|
|
Label,
|
2020-12-17 05:29:05 -06:00
|
|
|
Function,
|
|
|
|
Const,
|
|
|
|
Static,
|
|
|
|
Struct,
|
|
|
|
Enum,
|
|
|
|
Variant,
|
|
|
|
Union,
|
|
|
|
TypeAlias,
|
|
|
|
Trait,
|
|
|
|
Macro,
|
|
|
|
}
|
|
|
|
|
2019-01-11 05:00:54 -06:00
|
|
|
/// `NavigationTarget` represents and element in the editor's UI which you can
|
|
|
|
/// click on to navigate to a particular piece of code.
|
|
|
|
///
|
|
|
|
/// Typically, a `NavigationTarget` corresponds to some element in the source
|
|
|
|
/// code, like a function or a struct, but this is not strictly required.
|
2020-12-18 12:26:47 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Hash)]
|
2019-01-11 05:00:54 -06:00
|
|
|
pub struct NavigationTarget {
|
2020-07-17 05:42:48 -05:00
|
|
|
pub file_id: FileId,
|
|
|
|
/// Range which encompasses the whole element.
|
|
|
|
///
|
|
|
|
/// Should include body, doc comments, attributes, etc.
|
|
|
|
///
|
|
|
|
/// Clients should use this range to answer "is the cursor inside the
|
|
|
|
/// element?" question.
|
|
|
|
pub full_range: TextRange,
|
|
|
|
/// A "most interesting" range withing the `full_range`.
|
|
|
|
///
|
|
|
|
/// Typically, `full_range` is the whole syntax node, including doc
|
|
|
|
/// comments, and `focus_range` is the range of the identifier. "Most
|
|
|
|
/// interesting" range within the full range, typically the range of
|
|
|
|
/// identifier.
|
|
|
|
///
|
|
|
|
/// Clients should place the cursor on this range when navigating to this target.
|
|
|
|
pub focus_range: Option<TextRange>,
|
|
|
|
pub name: SmolStr,
|
2020-12-18 12:10:13 -06:00
|
|
|
pub kind: Option<SymbolKind>,
|
2020-07-17 05:42:48 -05:00
|
|
|
pub container_name: Option<SmolStr>,
|
|
|
|
pub description: Option<String>,
|
2020-12-11 14:19:58 -06:00
|
|
|
pub docs: Option<Documentation>,
|
2019-01-11 05:00:54 -06:00
|
|
|
}
|
2019-01-11 04:01:35 -06:00
|
|
|
|
2020-12-18 12:26:47 -06:00
|
|
|
impl fmt::Debug for NavigationTarget {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
let mut f = f.debug_struct("NavigationTarget");
|
|
|
|
macro_rules! opt {
|
|
|
|
($($name:ident)*) => {$(
|
|
|
|
if let Some(it) = &self.$name {
|
|
|
|
f.field(stringify!($name), it);
|
|
|
|
}
|
|
|
|
)*}
|
|
|
|
}
|
|
|
|
f.field("file_id", &self.file_id).field("full_range", &self.full_range);
|
|
|
|
opt!(focus_range);
|
|
|
|
f.field("name", &self.name);
|
|
|
|
opt!(kind container_name description docs);
|
|
|
|
f.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-11 02:15:19 -06:00
|
|
|
pub(crate) trait ToNav {
|
|
|
|
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget;
|
2019-11-03 11:49:41 -06:00
|
|
|
}
|
|
|
|
|
2020-02-22 09:57:29 -06:00
|
|
|
pub(crate) trait TryToNav {
|
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget>;
|
|
|
|
}
|
|
|
|
|
2019-01-11 04:01:35 -06:00
|
|
|
impl NavigationTarget {
|
2020-07-17 05:42:48 -05:00
|
|
|
pub fn focus_or_full_range(&self) -> TextRange {
|
2019-02-17 05:38:32 -06:00
|
|
|
self.focus_range.unwrap_or(self.full_range)
|
|
|
|
}
|
2019-06-09 11:03:38 -05:00
|
|
|
|
2019-01-15 09:50:16 -06:00
|
|
|
pub(crate) fn from_module_to_decl(db: &RootDatabase, module: hir::Module) -> NavigationTarget {
|
2019-02-08 05:49:43 -06:00
|
|
|
let name = module.name(db).map(|it| it.to_string().into()).unwrap_or_default();
|
2019-06-11 09:48:27 -05:00
|
|
|
if let Some(src) = module.declaration_source(db) {
|
2020-12-08 12:01:27 -06:00
|
|
|
let node = src.as_ref().map(|it| it.syntax());
|
|
|
|
let frange = node.original_file_range(db);
|
2020-06-02 10:22:23 -05:00
|
|
|
let mut res = NavigationTarget::from_syntax(
|
2019-11-18 05:23:24 -06:00
|
|
|
frange.file_id,
|
2019-06-08 14:27:01 -05:00
|
|
|
name,
|
|
|
|
None,
|
2019-11-18 05:23:24 -06:00
|
|
|
frange.range,
|
2020-12-17 05:29:05 -06:00
|
|
|
SymbolKind::Module,
|
2019-06-08 14:27:01 -05:00
|
|
|
);
|
2020-12-11 14:19:58 -06:00
|
|
|
res.docs = module.attrs(db).docs();
|
2020-06-02 10:22:23 -05:00
|
|
|
res.description = src.value.short_label();
|
|
|
|
return res;
|
2019-01-13 12:56:20 -06:00
|
|
|
}
|
2019-11-11 02:15:19 -06:00
|
|
|
module.to_nav(db)
|
2019-03-07 02:32:39 -06:00
|
|
|
}
|
|
|
|
|
2019-01-11 09:17:20 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
pub(crate) fn assert_match(&self, expected: &str) {
|
|
|
|
let actual = self.debug_render();
|
|
|
|
test_utils::assert_eq_text!(expected.trim(), actual.trim(),);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
pub(crate) fn debug_render(&self) -> String {
|
2020-12-18 12:10:13 -06:00
|
|
|
let mut buf = format!(
|
|
|
|
"{} {:?} {:?} {:?}",
|
|
|
|
self.name,
|
|
|
|
self.kind.unwrap(),
|
|
|
|
self.file_id,
|
|
|
|
self.full_range
|
|
|
|
);
|
2020-07-17 05:42:48 -05:00
|
|
|
if let Some(focus_range) = self.focus_range {
|
2019-01-11 09:17:20 -06:00
|
|
|
buf.push_str(&format!(" {:?}", focus_range))
|
|
|
|
}
|
2020-07-17 05:42:48 -05:00
|
|
|
if let Some(container_name) = &self.container_name {
|
2019-02-23 04:53:53 -06:00
|
|
|
buf.push_str(&format!(" {}", container_name))
|
2019-02-12 13:47:51 -06:00
|
|
|
}
|
2019-01-11 09:17:20 -06:00
|
|
|
buf
|
|
|
|
}
|
|
|
|
|
2019-02-23 03:02:42 -06:00
|
|
|
/// Allows `NavigationTarget` to be created from a `NameOwner`
|
2020-06-02 10:22:23 -05:00
|
|
|
pub(crate) fn from_named(
|
2019-11-03 11:49:41 -06:00
|
|
|
db: &RootDatabase,
|
2019-11-28 03:50:26 -06:00
|
|
|
node: InFile<&dyn ast::NameOwner>,
|
2020-12-17 05:29:05 -06:00
|
|
|
kind: SymbolKind,
|
2019-06-08 14:27:01 -05:00
|
|
|
) -> NavigationTarget {
|
2020-06-09 14:28:51 -05:00
|
|
|
let name =
|
|
|
|
node.value.name().map(|it| it.text().clone()).unwrap_or_else(|| SmolStr::new("_"));
|
2019-11-18 05:07:13 -06:00
|
|
|
let focus_range =
|
2020-12-08 12:01:27 -06:00
|
|
|
node.value.name().map(|it| node.with_value(it.syntax()).original_file_range(db).range);
|
|
|
|
let frange = node.map(|it| it.syntax()).original_file_range(db);
|
2019-11-03 11:49:41 -06:00
|
|
|
|
2020-12-17 05:29:05 -06:00
|
|
|
NavigationTarget::from_syntax(frange.file_id, name, focus_range, frange.range, kind)
|
2019-01-11 04:28:59 -06:00
|
|
|
}
|
|
|
|
|
2019-01-11 05:00:54 -06:00
|
|
|
fn from_syntax(
|
|
|
|
file_id: FileId,
|
|
|
|
name: SmolStr,
|
|
|
|
focus_range: Option<TextRange>,
|
2019-11-03 11:49:41 -06:00
|
|
|
full_range: TextRange,
|
2020-12-17 05:29:05 -06:00
|
|
|
kind: SymbolKind,
|
2019-01-11 05:00:54 -06:00
|
|
|
) -> NavigationTarget {
|
2019-01-11 04:05:45 -06:00
|
|
|
NavigationTarget {
|
|
|
|
file_id,
|
2019-01-11 04:28:59 -06:00
|
|
|
name,
|
2020-12-18 12:10:13 -06:00
|
|
|
kind: Some(kind),
|
2019-11-03 11:49:41 -06:00
|
|
|
full_range,
|
2019-01-11 05:00:54 -06:00
|
|
|
focus_range,
|
2019-02-12 13:47:51 -06:00
|
|
|
container_name: None,
|
2020-06-02 10:22:23 -05:00
|
|
|
description: None,
|
|
|
|
docs: None,
|
2019-01-11 04:05:45 -06:00
|
|
|
}
|
|
|
|
}
|
2019-06-08 09:26:27 -05:00
|
|
|
}
|
2019-04-09 06:43:11 -05:00
|
|
|
|
2019-11-11 02:15:19 -06:00
|
|
|
impl ToNav for FileSymbol {
|
|
|
|
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
|
|
|
NavigationTarget {
|
|
|
|
file_id: self.file_id,
|
|
|
|
name: self.name.clone(),
|
2020-12-18 12:10:13 -06:00
|
|
|
kind: Some(match self.kind {
|
2020-12-17 05:29:05 -06:00
|
|
|
FileSymbolKind::Function => SymbolKind::Function,
|
|
|
|
FileSymbolKind::Struct => SymbolKind::Struct,
|
|
|
|
FileSymbolKind::Enum => SymbolKind::Enum,
|
|
|
|
FileSymbolKind::Trait => SymbolKind::Trait,
|
|
|
|
FileSymbolKind::Module => SymbolKind::Module,
|
|
|
|
FileSymbolKind::TypeAlias => SymbolKind::TypeAlias,
|
|
|
|
FileSymbolKind::Const => SymbolKind::Const,
|
|
|
|
FileSymbolKind::Static => SymbolKind::Static,
|
|
|
|
FileSymbolKind::Macro => SymbolKind::Macro,
|
2020-12-18 12:10:13 -06:00
|
|
|
}),
|
2020-04-23 09:33:01 -05:00
|
|
|
full_range: self.range,
|
2019-11-11 02:15:19 -06:00
|
|
|
focus_range: self.name_range,
|
|
|
|
container_name: self.container_name.clone(),
|
|
|
|
description: description_from_symbol(db, self),
|
2020-12-17 08:45:26 -06:00
|
|
|
docs: None,
|
2019-11-11 02:15:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-03 11:36:39 -06:00
|
|
|
impl TryToNav for Definition {
|
2020-02-22 09:57:29 -06:00
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
|
|
|
match self {
|
2020-12-31 21:14:09 -06:00
|
|
|
Definition::Macro(it) => it.try_to_nav(db),
|
2021-01-01 00:13:15 -06:00
|
|
|
Definition::Field(it) => it.try_to_nav(db),
|
2020-03-03 11:36:39 -06:00
|
|
|
Definition::ModuleDef(it) => it.try_to_nav(db),
|
2021-01-01 00:13:15 -06:00
|
|
|
Definition::SelfType(it) => it.try_to_nav(db),
|
2020-03-03 11:36:39 -06:00
|
|
|
Definition::Local(it) => Some(it.to_nav(db)),
|
2021-01-01 00:13:15 -06:00
|
|
|
Definition::TypeParam(it) => it.try_to_nav(db),
|
|
|
|
Definition::LifetimeParam(it) => it.try_to_nav(db),
|
2020-12-23 10:15:01 -06:00
|
|
|
Definition::Label(it) => Some(it.to_nav(db)),
|
2021-01-02 05:11:25 -06:00
|
|
|
Definition::ConstParam(it) => it.try_to_nav(db),
|
2020-02-22 09:57:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryToNav for hir::ModuleDef {
|
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
2021-01-01 00:13:15 -06:00
|
|
|
match self {
|
|
|
|
hir::ModuleDef::Module(it) => Some(it.to_nav(db)),
|
|
|
|
hir::ModuleDef::Function(it) => it.try_to_nav(db),
|
|
|
|
hir::ModuleDef::Adt(it) => it.try_to_nav(db),
|
|
|
|
hir::ModuleDef::Variant(it) => it.try_to_nav(db),
|
|
|
|
hir::ModuleDef::Const(it) => it.try_to_nav(db),
|
|
|
|
hir::ModuleDef::Static(it) => it.try_to_nav(db),
|
|
|
|
hir::ModuleDef::Trait(it) => it.try_to_nav(db),
|
|
|
|
hir::ModuleDef::TypeAlias(it) => it.try_to_nav(db),
|
|
|
|
hir::ModuleDef::BuiltinType(_) => None,
|
|
|
|
}
|
2020-02-22 09:57:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-17 05:29:05 -06:00
|
|
|
pub(crate) trait ToNavFromAst {
|
|
|
|
const KIND: SymbolKind;
|
|
|
|
}
|
|
|
|
impl ToNavFromAst for hir::Function {
|
|
|
|
const KIND: SymbolKind = SymbolKind::Function;
|
|
|
|
}
|
|
|
|
impl ToNavFromAst for hir::Const {
|
|
|
|
const KIND: SymbolKind = SymbolKind::Const;
|
|
|
|
}
|
|
|
|
impl ToNavFromAst for hir::Static {
|
|
|
|
const KIND: SymbolKind = SymbolKind::Static;
|
|
|
|
}
|
|
|
|
impl ToNavFromAst for hir::Struct {
|
|
|
|
const KIND: SymbolKind = SymbolKind::Struct;
|
|
|
|
}
|
|
|
|
impl ToNavFromAst for hir::Enum {
|
|
|
|
const KIND: SymbolKind = SymbolKind::Enum;
|
|
|
|
}
|
2020-12-20 01:05:24 -06:00
|
|
|
impl ToNavFromAst for hir::Variant {
|
2020-12-17 05:29:05 -06:00
|
|
|
const KIND: SymbolKind = SymbolKind::Variant;
|
|
|
|
}
|
|
|
|
impl ToNavFromAst for hir::Union {
|
|
|
|
const KIND: SymbolKind = SymbolKind::Union;
|
|
|
|
}
|
|
|
|
impl ToNavFromAst for hir::TypeAlias {
|
|
|
|
const KIND: SymbolKind = SymbolKind::TypeAlias;
|
|
|
|
}
|
|
|
|
impl ToNavFromAst for hir::Trait {
|
|
|
|
const KIND: SymbolKind = SymbolKind::Trait;
|
|
|
|
}
|
2019-11-11 02:15:19 -06:00
|
|
|
|
2021-01-01 00:13:15 -06:00
|
|
|
impl<D> TryToNav for D
|
2019-11-11 02:15:19 -06:00
|
|
|
where
|
2020-12-11 14:19:58 -06:00
|
|
|
D: HasSource + ToNavFromAst + Copy + HasAttrs,
|
|
|
|
D::Ast: ast::NameOwner + ShortLabel,
|
2019-11-11 02:15:19 -06:00
|
|
|
{
|
2021-01-01 00:13:15 -06:00
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
|
|
|
let src = self.source(db)?;
|
2020-12-17 05:29:05 -06:00
|
|
|
let mut res = NavigationTarget::from_named(
|
|
|
|
db,
|
|
|
|
src.as_ref().map(|it| it as &dyn ast::NameOwner),
|
|
|
|
D::KIND,
|
|
|
|
);
|
2020-12-11 14:19:58 -06:00
|
|
|
res.docs = self.docs(db);
|
2020-06-02 10:22:23 -05:00
|
|
|
res.description = src.value.short_label();
|
2021-01-01 00:13:15 -06:00
|
|
|
Some(res)
|
2019-11-11 02:15:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToNav for hir::Module {
|
|
|
|
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
|
|
|
let src = self.definition_source(db);
|
|
|
|
let name = self.name(db).map(|it| it.to_string().into()).unwrap_or_default();
|
2020-02-22 09:57:29 -06:00
|
|
|
let (syntax, focus) = match &src.value {
|
|
|
|
ModuleSource::SourceFile(node) => (node.syntax(), None),
|
|
|
|
ModuleSource::Module(node) => {
|
|
|
|
(node.syntax(), node.name().map(|it| it.syntax().text_range()))
|
|
|
|
}
|
2019-12-03 14:24:02 -06:00
|
|
|
};
|
2020-12-08 12:01:27 -06:00
|
|
|
let frange = src.with_value(syntax).original_file_range(db);
|
2020-12-17 05:29:05 -06:00
|
|
|
NavigationTarget::from_syntax(frange.file_id, name, focus, frange.range, SymbolKind::Module)
|
2019-11-11 02:15:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-01 00:13:15 -06:00
|
|
|
impl TryToNav for hir::Impl {
|
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
|
|
|
let src = self.source(db)?;
|
2020-06-30 06:20:16 -05:00
|
|
|
let derive_attr = self.is_builtin_derive(db);
|
|
|
|
let frange = if let Some(item) = &derive_attr {
|
2020-12-08 12:01:27 -06:00
|
|
|
item.syntax().original_file_range(db)
|
2020-01-12 04:08:53 -06:00
|
|
|
} else {
|
2020-12-08 12:01:27 -06:00
|
|
|
src.as_ref().map(|it| it.syntax()).original_file_range(db)
|
2020-01-12 04:08:53 -06:00
|
|
|
};
|
2020-06-30 06:20:16 -05:00
|
|
|
let focus_range = if derive_attr.is_some() {
|
|
|
|
None
|
|
|
|
} else {
|
2020-12-08 12:01:27 -06:00
|
|
|
src.value.self_ty().map(|ty| src.with_value(ty.syntax()).original_file_range(db).range)
|
2020-06-30 06:20:16 -05:00
|
|
|
};
|
2019-11-11 02:15:19 -06:00
|
|
|
|
2021-01-01 00:13:15 -06:00
|
|
|
Some(NavigationTarget::from_syntax(
|
2019-11-18 05:23:24 -06:00
|
|
|
frange.file_id,
|
2019-11-11 02:15:19 -06:00
|
|
|
"impl".into(),
|
2020-06-30 06:03:08 -05:00
|
|
|
focus_range,
|
2019-11-18 05:23:24 -06:00
|
|
|
frange.range,
|
2020-12-17 05:29:05 -06:00
|
|
|
SymbolKind::Impl,
|
2021-01-01 00:13:15 -06:00
|
|
|
))
|
2019-11-11 02:15:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-01 00:13:15 -06:00
|
|
|
impl TryToNav for hir::Field {
|
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
|
|
|
let src = self.source(db)?;
|
2019-11-11 02:15:19 -06:00
|
|
|
|
2021-01-01 00:13:15 -06:00
|
|
|
let field_source = match &src.value {
|
2020-06-02 10:22:23 -05:00
|
|
|
FieldSource::Named(it) => {
|
2020-12-17 05:29:05 -06:00
|
|
|
let mut res =
|
|
|
|
NavigationTarget::from_named(db, src.with_value(it), SymbolKind::Field);
|
2020-12-11 14:19:58 -06:00
|
|
|
res.docs = self.docs(db);
|
2020-06-02 10:22:23 -05:00
|
|
|
res.description = it.short_label();
|
|
|
|
res
|
|
|
|
}
|
2019-11-11 02:15:19 -06:00
|
|
|
FieldSource::Pos(it) => {
|
2020-12-08 12:01:27 -06:00
|
|
|
let frange = src.with_value(it.syntax()).original_file_range(db);
|
2019-11-11 02:15:19 -06:00
|
|
|
NavigationTarget::from_syntax(
|
2019-11-18 05:23:24 -06:00
|
|
|
frange.file_id,
|
2019-11-11 02:15:19 -06:00
|
|
|
"".into(),
|
|
|
|
None,
|
2019-11-18 05:23:24 -06:00
|
|
|
frange.range,
|
2020-12-17 05:29:05 -06:00
|
|
|
SymbolKind::Field,
|
2019-11-11 02:15:19 -06:00
|
|
|
)
|
|
|
|
}
|
2021-01-01 00:13:15 -06:00
|
|
|
};
|
|
|
|
Some(field_source)
|
2019-11-11 02:15:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-31 21:14:09 -06:00
|
|
|
impl TryToNav for hir::MacroDef {
|
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
|
|
|
let src = self.source(db)?;
|
2019-11-20 00:40:36 -06:00
|
|
|
log::debug!("nav target {:#?}", src.value.syntax());
|
2020-12-17 05:29:05 -06:00
|
|
|
let mut res = NavigationTarget::from_named(
|
|
|
|
db,
|
|
|
|
src.as_ref().map(|it| it as &dyn ast::NameOwner),
|
|
|
|
SymbolKind::Macro,
|
|
|
|
);
|
2020-12-11 14:19:58 -06:00
|
|
|
res.docs = self.docs(db);
|
2020-12-31 21:14:09 -06:00
|
|
|
Some(res)
|
2019-11-11 02:15:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-01 00:13:15 -06:00
|
|
|
impl TryToNav for hir::Adt {
|
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
2019-11-11 02:15:19 -06:00
|
|
|
match self {
|
2021-01-01 00:13:15 -06:00
|
|
|
hir::Adt::Struct(it) => it.try_to_nav(db),
|
|
|
|
hir::Adt::Union(it) => it.try_to_nav(db),
|
|
|
|
hir::Adt::Enum(it) => it.try_to_nav(db),
|
2019-11-11 02:15:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-01 00:13:15 -06:00
|
|
|
impl TryToNav for hir::AssocItem {
|
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
2019-11-11 02:15:19 -06:00
|
|
|
match self {
|
2021-01-01 00:13:15 -06:00
|
|
|
AssocItem::Function(it) => it.try_to_nav(db),
|
|
|
|
AssocItem::Const(it) => it.try_to_nav(db),
|
|
|
|
AssocItem::TypeAlias(it) => it.try_to_nav(db),
|
2019-11-11 02:15:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 15:32:00 -06:00
|
|
|
impl ToNav for hir::Local {
|
|
|
|
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
|
|
|
let src = self.source(db);
|
2019-12-18 09:25:15 -06:00
|
|
|
let node = match &src.value {
|
|
|
|
Either::Left(bind_pat) => {
|
|
|
|
bind_pat.name().map_or_else(|| bind_pat.syntax().clone(), |it| it.syntax().clone())
|
2019-11-09 15:32:00 -06:00
|
|
|
}
|
2019-12-18 09:25:15 -06:00
|
|
|
Either::Right(it) => it.syntax().clone(),
|
2019-11-09 15:32:00 -06:00
|
|
|
};
|
2020-12-08 12:01:27 -06:00
|
|
|
let full_range = src.with_value(&node).original_file_range(db);
|
2019-11-09 15:32:00 -06:00
|
|
|
let name = match self.name(db) {
|
|
|
|
Some(it) => it.to_string().into(),
|
|
|
|
None => "".into(),
|
|
|
|
};
|
2020-12-18 14:00:43 -06:00
|
|
|
let kind = if self.is_param(db) { SymbolKind::ValueParam } else { SymbolKind::Local };
|
2019-11-09 15:32:00 -06:00
|
|
|
NavigationTarget {
|
2019-12-18 09:25:15 -06:00
|
|
|
file_id: full_range.file_id,
|
2019-11-09 15:32:00 -06:00
|
|
|
name,
|
2020-12-18 14:00:43 -06:00
|
|
|
kind: Some(kind),
|
2019-12-18 09:25:15 -06:00
|
|
|
full_range: full_range.range,
|
|
|
|
focus_range: None,
|
2019-11-09 15:32:00 -06:00
|
|
|
container_name: None,
|
|
|
|
description: None,
|
|
|
|
docs: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-23 10:15:01 -06:00
|
|
|
impl ToNav for hir::Label {
|
|
|
|
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
|
|
|
let src = self.source(db);
|
|
|
|
let node = src.value.syntax();
|
|
|
|
let FileRange { file_id, range } = src.with_value(node).original_file_range(db);
|
|
|
|
let focus_range =
|
|
|
|
src.value.lifetime().and_then(|lt| lt.lifetime_ident_token()).map(|lt| lt.text_range());
|
|
|
|
let name = self.name(db).to_string().into();
|
|
|
|
NavigationTarget {
|
|
|
|
file_id,
|
|
|
|
name,
|
|
|
|
kind: Some(SymbolKind::Label),
|
|
|
|
full_range: range,
|
|
|
|
focus_range,
|
|
|
|
container_name: None,
|
|
|
|
description: None,
|
|
|
|
docs: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-01 00:13:15 -06:00
|
|
|
impl TryToNav for hir::TypeParam {
|
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
|
|
|
let src = self.source(db)?;
|
2020-05-04 05:20:38 -05:00
|
|
|
let full_range = match &src.value {
|
2019-12-07 11:48:35 -06:00
|
|
|
Either::Left(it) => it.syntax().text_range(),
|
|
|
|
Either::Right(it) => it.syntax().text_range(),
|
|
|
|
};
|
2020-05-04 05:20:38 -05:00
|
|
|
let focus_range = match &src.value {
|
|
|
|
Either::Left(_) => None,
|
|
|
|
Either::Right(it) => it.name().map(|it| it.syntax().text_range()),
|
|
|
|
};
|
2021-01-01 00:13:15 -06:00
|
|
|
Some(NavigationTarget {
|
2019-12-07 11:48:35 -06:00
|
|
|
file_id: src.file_id.original_file(db),
|
|
|
|
name: self.name(db).to_string().into(),
|
2020-12-18 12:10:13 -06:00
|
|
|
kind: Some(SymbolKind::TypeParam),
|
2020-05-04 05:20:38 -05:00
|
|
|
full_range,
|
|
|
|
focus_range,
|
2019-12-07 11:48:35 -06:00
|
|
|
container_name: None,
|
|
|
|
description: None,
|
|
|
|
docs: None,
|
2021-01-01 00:13:15 -06:00
|
|
|
})
|
2020-12-16 14:35:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-01 00:13:15 -06:00
|
|
|
impl TryToNav for hir::LifetimeParam {
|
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
|
|
|
let src = self.source(db)?;
|
2020-12-16 14:35:15 -06:00
|
|
|
let full_range = src.value.syntax().text_range();
|
2021-01-01 00:13:15 -06:00
|
|
|
Some(NavigationTarget {
|
2020-12-16 14:35:15 -06:00
|
|
|
file_id: src.file_id.original_file(db),
|
|
|
|
name: self.name(db).to_string().into(),
|
2020-12-18 12:10:13 -06:00
|
|
|
kind: Some(SymbolKind::LifetimeParam),
|
2020-12-16 14:35:15 -06:00
|
|
|
full_range,
|
|
|
|
focus_range: Some(full_range),
|
|
|
|
container_name: None,
|
|
|
|
description: None,
|
|
|
|
docs: None,
|
2021-01-01 00:13:15 -06:00
|
|
|
})
|
2019-12-07 11:48:35 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-02 05:11:25 -06:00
|
|
|
impl TryToNav for hir::ConstParam {
|
|
|
|
fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
|
|
|
|
let src = self.source(db)?;
|
2021-01-01 03:07:01 -06:00
|
|
|
let full_range = src.value.syntax().text_range();
|
2021-01-02 05:11:25 -06:00
|
|
|
Some(NavigationTarget {
|
2021-01-01 03:07:01 -06:00
|
|
|
file_id: src.file_id.original_file(db),
|
|
|
|
name: self.name(db).to_string().into(),
|
|
|
|
kind: Some(SymbolKind::ConstParam),
|
|
|
|
full_range,
|
|
|
|
focus_range: src.value.name().map(|n| n.syntax().text_range()),
|
|
|
|
container_name: None,
|
|
|
|
description: None,
|
|
|
|
docs: None,
|
2021-01-02 05:11:25 -06:00
|
|
|
})
|
2021-01-01 03:07:01 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-09 10:59:59 -05:00
|
|
|
/// Get a description of a symbol.
|
2019-06-08 09:26:27 -05:00
|
|
|
///
|
|
|
|
/// e.g. `struct Name`, `enum Name`, `fn Name`
|
2019-06-10 11:34:43 -05:00
|
|
|
pub(crate) fn description_from_symbol(db: &RootDatabase, symbol: &FileSymbol) -> Option<String> {
|
2019-07-12 11:41:13 -05:00
|
|
|
let parse = db.parse(symbol.file_id);
|
2019-09-24 20:32:01 -05:00
|
|
|
let node = symbol.ptr.to_node(parse.tree().syntax());
|
2019-06-09 11:20:49 -05:00
|
|
|
|
2019-10-05 09:03:03 -05:00
|
|
|
match_ast! {
|
|
|
|
match node {
|
2020-07-30 07:51:08 -05:00
|
|
|
ast::Fn(it) => it.short_label(),
|
2020-07-30 10:50:40 -05:00
|
|
|
ast::Struct(it) => it.short_label(),
|
2020-07-30 10:52:53 -05:00
|
|
|
ast::Enum(it) => it.short_label(),
|
2020-07-30 11:17:28 -05:00
|
|
|
ast::Trait(it) => it.short_label(),
|
2020-04-06 09:21:33 -05:00
|
|
|
ast::Module(it) => it.short_label(),
|
2020-07-30 08:25:46 -05:00
|
|
|
ast::TypeAlias(it) => it.short_label(),
|
2020-07-30 11:02:20 -05:00
|
|
|
ast::Const(it) => it.short_label(),
|
|
|
|
ast::Static(it) => it.short_label(),
|
2020-07-30 09:49:13 -05:00
|
|
|
ast::RecordField(it) => it.short_label(),
|
2020-07-30 10:56:53 -05:00
|
|
|
ast::Variant(it) => it.short_label(),
|
2019-10-05 09:03:03 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2019-01-11 04:01:35 -06:00
|
|
|
}
|
2020-07-17 06:28:21 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-08-21 06:19:31 -05:00
|
|
|
use expect_test::expect;
|
2020-07-17 06:28:21 -05:00
|
|
|
|
2020-10-02 10:34:31 -05:00
|
|
|
use crate::{fixture, Query};
|
2020-07-17 06:28:21 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_nav_for_symbol() {
|
2020-10-02 10:34:31 -05:00
|
|
|
let (analysis, _) = fixture::file(
|
2020-07-17 06:28:21 -05:00
|
|
|
r#"
|
|
|
|
enum FooInner { }
|
|
|
|
fn foo() { enum FooInner { } }
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
|
|
|
|
let navs = analysis.symbol_search(Query::new("FooInner".to_string())).unwrap();
|
|
|
|
expect![[r#"
|
|
|
|
[
|
|
|
|
NavigationTarget {
|
|
|
|
file_id: FileId(
|
2020-10-02 09:13:48 -05:00
|
|
|
0,
|
2020-07-17 06:28:21 -05:00
|
|
|
),
|
|
|
|
full_range: 0..17,
|
2020-12-18 12:26:47 -06:00
|
|
|
focus_range: 5..13,
|
2020-07-17 06:28:21 -05:00
|
|
|
name: "FooInner",
|
2020-12-18 12:26:47 -06:00
|
|
|
kind: Enum,
|
|
|
|
description: "enum FooInner",
|
2020-07-17 06:28:21 -05:00
|
|
|
},
|
|
|
|
NavigationTarget {
|
|
|
|
file_id: FileId(
|
2020-10-02 09:13:48 -05:00
|
|
|
0,
|
2020-07-17 06:28:21 -05:00
|
|
|
),
|
|
|
|
full_range: 29..46,
|
2020-12-18 12:26:47 -06:00
|
|
|
focus_range: 34..42,
|
2020-07-17 06:28:21 -05:00
|
|
|
name: "FooInner",
|
2020-12-18 12:26:47 -06:00
|
|
|
kind: Enum,
|
|
|
|
container_name: "foo",
|
|
|
|
description: "enum FooInner",
|
2020-07-17 06:28:21 -05:00
|
|
|
},
|
|
|
|
]
|
|
|
|
"#]]
|
|
|
|
.assert_debug_eq(&navs);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_world_symbols_are_case_sensitive() {
|
2020-10-02 10:34:31 -05:00
|
|
|
let (analysis, _) = fixture::file(
|
2020-07-17 06:28:21 -05:00
|
|
|
r#"
|
|
|
|
fn foo() {}
|
|
|
|
struct Foo;
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
|
|
|
|
let navs = analysis.symbol_search(Query::new("foo".to_string())).unwrap();
|
|
|
|
assert_eq!(navs.len(), 2)
|
|
|
|
}
|
|
|
|
}
|