2019-09-30 03:58:53 -05:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
2019-10-30 05:10:38 -05:00
|
|
|
use ra_syntax::ast::{self, AstNode};
|
2019-06-11 10:00:08 -05:00
|
|
|
|
|
|
|
use crate::{
|
2019-10-31 08:40:36 -05:00
|
|
|
adt::VariantDef,
|
2019-09-08 01:53:49 -05:00
|
|
|
db::{AstDatabase, DefDatabase, HirDatabase},
|
|
|
|
ids::AstItemDef,
|
|
|
|
Const, Either, Enum, EnumVariant, FieldSource, Function, HasBody, HirFileId, MacroDef, Module,
|
|
|
|
ModuleSource, Static, Struct, StructField, Trait, TypeAlias, Union,
|
2019-06-11 10:00:08 -05:00
|
|
|
};
|
|
|
|
|
2019-11-02 15:11:05 -05:00
|
|
|
pub use hir_expand::Source;
|
2019-06-11 10:00:08 -05:00
|
|
|
|
|
|
|
pub trait HasSource {
|
|
|
|
type Ast;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<Self::Ast>;
|
|
|
|
}
|
|
|
|
|
2019-06-11 10:11:17 -05:00
|
|
|
/// NB: Module is !HasSource, because it has two source nodes at the same time:
|
2019-06-11 10:00:08 -05:00
|
|
|
/// definition and declaration.
|
|
|
|
impl Module {
|
|
|
|
/// Returns a node which defines this module. That is, a file or a `mod foo {}` with items.
|
|
|
|
pub fn definition_source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ModuleSource> {
|
2019-10-31 10:45:10 -05:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-10-30 04:27:54 -05:00
|
|
|
let decl_id = def_map[self.id.module_id].declaration;
|
|
|
|
let file_id = def_map[self.id.module_id].definition;
|
2019-11-20 00:40:36 -06:00
|
|
|
let value = ModuleSource::new(db, file_id, decl_id);
|
2019-06-11 10:00:08 -05:00
|
|
|
let file_id = file_id.map(HirFileId::from).unwrap_or_else(|| decl_id.unwrap().file_id());
|
2019-11-20 00:40:36 -06:00
|
|
|
Source { file_id, value }
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns a node which declares this module, either a `mod foo;` or a `mod foo {}`.
|
|
|
|
/// `None` for the crate root.
|
|
|
|
pub fn declaration_source(
|
|
|
|
self,
|
|
|
|
db: &(impl DefDatabase + AstDatabase),
|
2019-07-19 02:43:01 -05:00
|
|
|
) -> Option<Source<ast::Module>> {
|
2019-10-31 10:45:10 -05:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-10-30 04:27:54 -05:00
|
|
|
let decl = def_map[self.id.module_id].declaration?;
|
2019-11-20 00:40:36 -06:00
|
|
|
let value = decl.to_node(db);
|
|
|
|
Some(Source { file_id: decl.file_id(), value })
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl HasSource for StructField {
|
|
|
|
type Ast = FieldSource;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<FieldSource> {
|
2019-10-31 08:40:36 -05:00
|
|
|
let var_data = self.parent.variant_data(db);
|
|
|
|
let fields = var_data.fields().unwrap();
|
|
|
|
let ss;
|
|
|
|
let es;
|
|
|
|
let (file_id, struct_kind) = match self.parent {
|
|
|
|
VariantDef::Struct(s) => {
|
|
|
|
ss = s.source(db);
|
2019-11-20 00:40:36 -06:00
|
|
|
(ss.file_id, ss.value.kind())
|
2019-10-31 08:40:36 -05:00
|
|
|
}
|
|
|
|
VariantDef::EnumVariant(e) => {
|
|
|
|
es = e.source(db);
|
2019-11-20 00:40:36 -06:00
|
|
|
(es.file_id, es.value.kind())
|
2019-10-31 08:40:36 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let field_sources = match struct_kind {
|
|
|
|
ast::StructKind::Tuple(fl) => fl.fields().map(|it| FieldSource::Pos(it)).collect(),
|
|
|
|
ast::StructKind::Named(fl) => fl.fields().map(|it| FieldSource::Named(it)).collect(),
|
|
|
|
ast::StructKind::Unit => Vec::new(),
|
|
|
|
};
|
2019-11-20 00:40:36 -06:00
|
|
|
let value = field_sources
|
2019-10-31 08:40:36 -05:00
|
|
|
.into_iter()
|
|
|
|
.zip(fields.iter())
|
|
|
|
.find(|(_syntax, (id, _))| *id == self.id)
|
|
|
|
.unwrap()
|
|
|
|
.0;
|
2019-11-20 00:40:36 -06:00
|
|
|
Source { file_id, value }
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl HasSource for Struct {
|
2019-07-19 02:43:01 -05:00
|
|
|
type Ast = ast::StructDef;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ast::StructDef> {
|
2019-11-09 06:34:00 -06:00
|
|
|
self.id.0.source(db)
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl HasSource for Union {
|
2019-07-19 02:43:01 -05:00
|
|
|
type Ast = ast::StructDef;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ast::StructDef> {
|
2019-11-09 06:34:00 -06:00
|
|
|
self.id.0.source(db)
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl HasSource for Enum {
|
2019-07-19 02:43:01 -05:00
|
|
|
type Ast = ast::EnumDef;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ast::EnumDef> {
|
2019-06-11 10:07:42 -05:00
|
|
|
self.id.source(db)
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl HasSource for EnumVariant {
|
2019-07-19 02:43:01 -05:00
|
|
|
type Ast = ast::EnumVariant;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ast::EnumVariant> {
|
2019-10-31 08:40:36 -05:00
|
|
|
let enum_data = db.enum_data(self.parent.id);
|
|
|
|
let src = self.parent.id.source(db);
|
2019-11-20 00:40:36 -06:00
|
|
|
let value = src
|
|
|
|
.value
|
2019-10-31 08:40:36 -05:00
|
|
|
.variant_list()
|
|
|
|
.into_iter()
|
|
|
|
.flat_map(|it| it.variants())
|
|
|
|
.zip(enum_data.variants.iter())
|
|
|
|
.find(|(_syntax, (id, _))| *id == self.id)
|
|
|
|
.unwrap()
|
|
|
|
.0;
|
2019-11-20 00:40:36 -06:00
|
|
|
Source { file_id: src.file_id, value }
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl HasSource for Function {
|
2019-07-19 02:43:01 -05:00
|
|
|
type Ast = ast::FnDef;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ast::FnDef> {
|
2019-06-11 10:07:42 -05:00
|
|
|
self.id.source(db)
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl HasSource for Const {
|
2019-07-19 02:43:01 -05:00
|
|
|
type Ast = ast::ConstDef;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ast::ConstDef> {
|
2019-06-11 10:07:42 -05:00
|
|
|
self.id.source(db)
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl HasSource for Static {
|
2019-07-19 02:43:01 -05:00
|
|
|
type Ast = ast::StaticDef;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ast::StaticDef> {
|
2019-06-11 10:07:42 -05:00
|
|
|
self.id.source(db)
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl HasSource for Trait {
|
2019-07-19 02:43:01 -05:00
|
|
|
type Ast = ast::TraitDef;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ast::TraitDef> {
|
2019-06-11 10:07:42 -05:00
|
|
|
self.id.source(db)
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl HasSource for TypeAlias {
|
2019-07-19 02:43:01 -05:00
|
|
|
type Ast = ast::TypeAliasDef;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ast::TypeAliasDef> {
|
2019-06-11 10:07:42 -05:00
|
|
|
self.id.source(db)
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl HasSource for MacroDef {
|
2019-07-19 02:43:01 -05:00
|
|
|
type Ast = ast::MacroCall;
|
|
|
|
fn source(self, db: &(impl DefDatabase + AstDatabase)) -> Source<ast::MacroCall> {
|
2019-11-20 00:40:36 -06:00
|
|
|
Source { file_id: self.id.ast_id.file_id(), value: self.id.ast_id.to_node(db) }
|
2019-06-11 10:00:08 -05:00
|
|
|
}
|
|
|
|
}
|
2019-08-30 13:16:28 -05:00
|
|
|
|
|
|
|
pub trait HasBodySource: HasBody + HasSource
|
|
|
|
where
|
|
|
|
Self::Ast: AstNode,
|
|
|
|
{
|
|
|
|
fn expr_source(
|
|
|
|
self,
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
expr_id: crate::expr::ExprId,
|
2019-09-03 03:04:38 -05:00
|
|
|
) -> Option<Source<Either<ast::Expr, ast::RecordField>>> {
|
2019-08-30 13:16:28 -05:00
|
|
|
let source_map = self.body_source_map(db);
|
2019-09-03 03:04:38 -05:00
|
|
|
let source_ptr = source_map.expr_syntax(expr_id)?;
|
|
|
|
let root = source_ptr.file_syntax(db);
|
|
|
|
let source = source_ptr.map(|ast| ast.map(|it| it.to_node(&root), |it| it.to_node(&root)));
|
|
|
|
Some(source)
|
2019-08-30 13:16:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> HasBodySource for T
|
|
|
|
where
|
|
|
|
T: HasBody + HasSource,
|
|
|
|
T::Ast: AstNode,
|
|
|
|
{
|
|
|
|
}
|