2019-10-30 08:12:55 -05:00
|
|
|
//! A higher level attributes based on TokenTree, with also some shortcuts.
|
|
|
|
|
2019-11-22 02:27:47 -06:00
|
|
|
use std::{ops, sync::Arc};
|
2019-10-30 08:12:55 -05:00
|
|
|
|
2019-12-03 10:07:56 -06:00
|
|
|
use either::Either;
|
|
|
|
use hir_expand::{hygiene::Hygiene, AstId, InFile};
|
2019-10-30 08:12:55 -05:00
|
|
|
use mbe::ast_to_token_tree;
|
2020-04-09 11:32:02 -05:00
|
|
|
use ra_cfg::CfgOptions;
|
2019-10-30 08:12:55 -05:00
|
|
|
use ra_syntax::{
|
|
|
|
ast::{self, AstNode, AttrsOwner},
|
|
|
|
SmolStr,
|
|
|
|
};
|
|
|
|
use tt::Subtree;
|
|
|
|
|
2019-11-23 02:14:10 -06:00
|
|
|
use crate::{
|
2020-04-25 09:24:44 -05:00
|
|
|
db::DefDatabase, nameres::ModuleSource, path::ModPath, src::HasChildSource, src::HasSource,
|
|
|
|
AdtId, AttrDefId, Lookup,
|
2019-11-23 02:14:10 -06:00
|
|
|
};
|
2019-10-30 08:12:55 -05:00
|
|
|
|
2019-11-22 02:27:47 -06:00
|
|
|
#[derive(Default, Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct Attrs {
|
|
|
|
entries: Option<Arc<[Attr]>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::Deref for Attrs {
|
|
|
|
type Target = [Attr];
|
|
|
|
|
|
|
|
fn deref(&self) -> &[Attr] {
|
|
|
|
match &self.entries {
|
|
|
|
Some(it) => &*it,
|
|
|
|
None => &[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Attrs {
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn attrs_query(db: &dyn DefDatabase, def: AttrDefId) -> Attrs {
|
2019-11-23 02:14:10 -06:00
|
|
|
match def {
|
|
|
|
AttrDefId::ModuleId(module) => {
|
|
|
|
let def_map = db.crate_def_map(module.krate);
|
2020-04-25 09:24:44 -05:00
|
|
|
let mod_data = &def_map[module.local_id];
|
|
|
|
match mod_data.declaration_source(db) {
|
|
|
|
Some(it) => {
|
|
|
|
Attrs::from_attrs_owner(db, it.as_ref().map(|it| it as &dyn AttrsOwner))
|
|
|
|
}
|
|
|
|
None => Attrs::from_attrs_owner(
|
|
|
|
db,
|
|
|
|
mod_data.definition_source(db).as_ref().map(|src| match src {
|
|
|
|
ModuleSource::SourceFile(file) => file as &dyn AttrsOwner,
|
|
|
|
ModuleSource::Module(module) => module as &dyn AttrsOwner,
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
}
|
2019-11-23 02:14:10 -06:00
|
|
|
}
|
2020-04-25 07:23:34 -05:00
|
|
|
AttrDefId::FieldId(it) => {
|
2019-11-23 02:14:10 -06:00
|
|
|
let src = it.parent.child_source(db);
|
|
|
|
match &src.value[it.local_id] {
|
2019-12-03 10:07:56 -06:00
|
|
|
Either::Left(_tuple) => Attrs::default(),
|
|
|
|
Either::Right(record) => Attrs::from_attrs_owner(db, src.with_value(record)),
|
2019-11-23 02:14:10 -06:00
|
|
|
}
|
|
|
|
}
|
2019-11-24 06:50:45 -06:00
|
|
|
AttrDefId::EnumVariantId(var_id) => {
|
|
|
|
let src = var_id.parent.child_source(db);
|
|
|
|
let src = src.as_ref().map(|it| &it[var_id.local_id]);
|
|
|
|
Attrs::from_attrs_owner(db, src.map(|it| it as &dyn AttrsOwner))
|
2019-11-23 02:14:10 -06:00
|
|
|
}
|
2019-11-23 03:01:56 -06:00
|
|
|
AttrDefId::AdtId(it) => match it {
|
2019-12-12 07:58:04 -06:00
|
|
|
AdtId::StructId(it) => attrs_from_loc(it.lookup(db), db),
|
2019-12-12 08:11:57 -06:00
|
|
|
AdtId::EnumId(it) => attrs_from_loc(it.lookup(db), db),
|
|
|
|
AdtId::UnionId(it) => attrs_from_loc(it.lookup(db), db),
|
2019-11-23 03:01:56 -06:00
|
|
|
},
|
2019-12-12 07:34:03 -06:00
|
|
|
AttrDefId::TraitId(it) => attrs_from_loc(it.lookup(db), db),
|
2019-12-05 08:10:33 -06:00
|
|
|
AttrDefId::MacroDefId(it) => {
|
|
|
|
it.ast_id.map_or_else(Default::default, |ast_id| attrs_from_ast(ast_id, db))
|
|
|
|
}
|
2019-12-12 07:09:13 -06:00
|
|
|
AttrDefId::ImplId(it) => attrs_from_loc(it.lookup(db), db),
|
2019-11-23 02:14:10 -06:00
|
|
|
AttrDefId::ConstId(it) => attrs_from_loc(it.lookup(db), db),
|
2019-11-24 06:13:56 -06:00
|
|
|
AttrDefId::StaticId(it) => attrs_from_loc(it.lookup(db), db),
|
2019-11-23 02:14:10 -06:00
|
|
|
AttrDefId::FunctionId(it) => attrs_from_loc(it.lookup(db), db),
|
|
|
|
AttrDefId::TypeAliasId(it) => attrs_from_loc(it.lookup(db), db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-21 03:48:42 -05:00
|
|
|
pub fn from_attrs_owner(db: &dyn DefDatabase, owner: InFile<&dyn AttrsOwner>) -> Attrs {
|
2020-03-13 10:05:46 -05:00
|
|
|
let hygiene = Hygiene::new(db.upcast(), owner.file_id);
|
2019-11-24 06:50:45 -06:00
|
|
|
Attrs::new(owner.value, &hygiene)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn new(owner: &dyn AttrsOwner, hygiene: &Hygiene) -> Attrs {
|
2020-05-30 13:21:06 -05:00
|
|
|
let docs = ast::CommentIter::from_syntax_node(owner.syntax()).doc_comment_text().map(
|
|
|
|
|docs_text| Attr {
|
|
|
|
input: Some(AttrInput::Literal(SmolStr::new(docs_text))),
|
|
|
|
path: ModPath::from(hir_expand::name!(doc)),
|
|
|
|
},
|
|
|
|
);
|
2019-11-24 06:50:45 -06:00
|
|
|
let mut attrs = owner.attrs().peekable();
|
|
|
|
let entries = if attrs.peek().is_none() {
|
|
|
|
// Avoid heap allocation
|
|
|
|
None
|
|
|
|
} else {
|
2020-05-30 13:21:06 -05:00
|
|
|
Some(attrs.flat_map(|ast| Attr::from_src(ast, hygiene)).chain(docs).collect())
|
2019-11-24 06:50:45 -06:00
|
|
|
};
|
|
|
|
Attrs { entries }
|
|
|
|
}
|
|
|
|
|
2019-11-24 07:03:02 -06:00
|
|
|
pub fn by_key(&self, key: &'static str) -> AttrQuery<'_> {
|
|
|
|
AttrQuery { attrs: self, key }
|
2019-11-23 03:01:56 -06:00
|
|
|
}
|
2020-04-09 11:32:02 -05:00
|
|
|
|
|
|
|
pub(crate) fn is_cfg_enabled(&self, cfg_options: &CfgOptions) -> bool {
|
2020-04-11 10:18:42 -05:00
|
|
|
// FIXME: handle cfg_attr :-)
|
2020-04-09 11:32:02 -05:00
|
|
|
self.by_key("cfg").tt_values().all(|tt| cfg_options.is_cfg_enabled(tt) != Some(false))
|
|
|
|
}
|
2019-11-22 02:27:47 -06:00
|
|
|
}
|
|
|
|
|
2019-10-30 08:12:55 -05:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct Attr {
|
2019-12-13 05:12:36 -06:00
|
|
|
pub(crate) path: ModPath,
|
2019-10-30 08:12:55 -05:00
|
|
|
pub(crate) input: Option<AttrInput>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub enum AttrInput {
|
2020-04-25 09:24:44 -05:00
|
|
|
/// `#[attr = "string"]`
|
2019-10-30 08:12:55 -05:00
|
|
|
Literal(SmolStr),
|
2020-04-25 09:24:44 -05:00
|
|
|
/// `#[attr(subtree)]`
|
2019-10-30 08:12:55 -05:00
|
|
|
TokenTree(Subtree),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Attr {
|
2019-11-24 06:50:45 -06:00
|
|
|
fn from_src(ast: ast::Attr, hygiene: &Hygiene) -> Option<Attr> {
|
2019-12-13 05:12:36 -06:00
|
|
|
let path = ModPath::from_src(ast.path()?, hygiene)?;
|
2019-10-30 08:12:55 -05:00
|
|
|
let input = match ast.input() {
|
|
|
|
None => None,
|
|
|
|
Some(ast::AttrInput::Literal(lit)) => {
|
|
|
|
// FIXME: escape? raw string?
|
|
|
|
let value = lit.syntax().first_token()?.text().trim_matches('"').into();
|
|
|
|
Some(AttrInput::Literal(value))
|
|
|
|
}
|
|
|
|
Some(ast::AttrInput::TokenTree(tt)) => {
|
|
|
|
Some(AttrInput::TokenTree(ast_to_token_tree(&tt)?.0))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Some(Attr { path, input })
|
|
|
|
}
|
2019-11-24 07:03:02 -06:00
|
|
|
}
|
|
|
|
|
2020-05-01 07:58:24 -05:00
|
|
|
#[derive(Debug, Clone, Copy)]
|
2019-11-24 07:03:02 -06:00
|
|
|
pub struct AttrQuery<'a> {
|
|
|
|
attrs: &'a Attrs,
|
|
|
|
key: &'static str,
|
|
|
|
}
|
2019-10-30 08:12:55 -05:00
|
|
|
|
2019-11-24 07:03:02 -06:00
|
|
|
impl<'a> AttrQuery<'a> {
|
|
|
|
pub fn tt_values(self) -> impl Iterator<Item = &'a Subtree> {
|
|
|
|
self.attrs().filter_map(|attr| match attr.input.as_ref()? {
|
|
|
|
AttrInput::TokenTree(it) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
})
|
2019-10-30 08:12:55 -05:00
|
|
|
}
|
|
|
|
|
2019-11-24 07:03:02 -06:00
|
|
|
pub fn string_value(self) -> Option<&'a SmolStr> {
|
|
|
|
self.attrs().find_map(|attr| match attr.input.as_ref()? {
|
|
|
|
AttrInput::Literal(it) => Some(it),
|
2019-10-30 08:12:55 -05:00
|
|
|
_ => None,
|
2019-11-24 07:03:02 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn exists(self) -> bool {
|
|
|
|
self.attrs().next().is_some()
|
2019-10-30 08:12:55 -05:00
|
|
|
}
|
|
|
|
|
2019-11-24 07:03:02 -06:00
|
|
|
fn attrs(self) -> impl Iterator<Item = &'a Attr> {
|
|
|
|
let key = self.key;
|
|
|
|
self.attrs
|
|
|
|
.iter()
|
|
|
|
.filter(move |attr| attr.path.as_ident().map_or(false, |s| s.to_string() == key))
|
2019-10-30 08:12:55 -05:00
|
|
|
}
|
|
|
|
}
|
2019-11-23 02:14:10 -06:00
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
fn attrs_from_ast<N>(src: AstId<N>, db: &dyn DefDatabase) -> Attrs
|
2019-11-23 02:14:10 -06:00
|
|
|
where
|
|
|
|
N: ast::AttrsOwner,
|
|
|
|
{
|
2020-03-13 10:05:46 -05:00
|
|
|
let src = InFile::new(src.file_id, src.to_node(db.upcast()));
|
2019-11-24 06:50:45 -06:00
|
|
|
Attrs::from_attrs_owner(db, src.as_ref().map(|it| it as &dyn AttrsOwner))
|
2019-11-23 02:14:10 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
fn attrs_from_loc<T>(node: T, db: &dyn DefDatabase) -> Attrs
|
2019-11-23 02:14:10 -06:00
|
|
|
where
|
|
|
|
T: HasSource,
|
|
|
|
T::Value: ast::AttrsOwner,
|
|
|
|
{
|
|
|
|
let src = node.source(db);
|
2019-11-24 06:50:45 -06:00
|
|
|
Attrs::from_attrs_owner(db, src.as_ref().map(|it| it as &dyn AttrsOwner))
|
2019-11-23 02:14:10 -06:00
|
|
|
}
|