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
|
|
|
|
2020-12-17 17:23:46 -06:00
|
|
|
use base_db::CrateId;
|
2020-08-13 03:32:19 -05:00
|
|
|
use cfg::{CfgExpr, CfgOptions};
|
2019-12-03 10:07:56 -06:00
|
|
|
use either::Either;
|
|
|
|
use hir_expand::{hygiene::Hygiene, AstId, InFile};
|
2020-12-07 11:06:46 -06:00
|
|
|
use itertools::Itertools;
|
2019-10-30 08:12:55 -05:00
|
|
|
use mbe::ast_to_token_tree;
|
2020-08-12 11:26:51 -05:00
|
|
|
use syntax::{
|
2019-10-30 08:12:55 -05:00
|
|
|
ast::{self, AstNode, AttrsOwner},
|
2020-12-08 16:21:20 -06:00
|
|
|
match_ast, AstToken, SmolStr, SyntaxNode,
|
2019-10-30 08:12:55 -05:00
|
|
|
};
|
|
|
|
use tt::Subtree;
|
|
|
|
|
2019-11-23 02:14:10 -06:00
|
|
|
use crate::{
|
2020-06-22 12:15:54 -05:00
|
|
|
db::DefDatabase,
|
|
|
|
item_tree::{ItemTreeId, ItemTreeNode},
|
|
|
|
nameres::ModuleSource,
|
|
|
|
path::ModPath,
|
|
|
|
src::HasChildSource,
|
2020-04-25 09:24:44 -05:00
|
|
|
AdtId, AttrDefId, Lookup,
|
2019-11-23 02:14:10 -06:00
|
|
|
};
|
2019-10-30 08:12:55 -05:00
|
|
|
|
2020-12-07 11:49:03 -06:00
|
|
|
/// Holds documentation
|
2020-12-11 14:19:58 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
2020-12-07 14:55:00 -06:00
|
|
|
pub struct Documentation(String);
|
2020-12-07 11:49:03 -06:00
|
|
|
|
|
|
|
impl Documentation {
|
|
|
|
pub fn as_str(&self) -> &str {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-11 13:11:03 -06:00
|
|
|
impl From<Documentation> for String {
|
|
|
|
fn from(Documentation(string): Documentation) -> Self {
|
|
|
|
string
|
2020-12-07 11:49:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-17 17:23:46 -06:00
|
|
|
/// Syntactical attributes, without filtering of `cfg_attr`s.
|
2019-11-22 02:27:47 -06:00
|
|
|
#[derive(Default, Debug, Clone, PartialEq, Eq)]
|
2020-12-17 17:23:46 -06:00
|
|
|
pub struct RawAttrs {
|
2019-11-22 02:27:47 -06:00
|
|
|
entries: Option<Arc<[Attr]>>,
|
|
|
|
}
|
|
|
|
|
2020-12-17 17:23:46 -06:00
|
|
|
#[derive(Default, Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct Attrs(RawAttrs);
|
|
|
|
|
|
|
|
impl ops::Deref for RawAttrs {
|
2019-11-22 02:27:47 -06:00
|
|
|
type Target = [Attr];
|
|
|
|
|
|
|
|
fn deref(&self) -> &[Attr] {
|
|
|
|
match &self.entries {
|
|
|
|
Some(it) => &*it,
|
|
|
|
None => &[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-17 17:23:46 -06:00
|
|
|
impl ops::Deref for Attrs {
|
|
|
|
type Target = [Attr];
|
|
|
|
|
|
|
|
fn deref(&self) -> &[Attr] {
|
|
|
|
match &self.0.entries {
|
|
|
|
Some(it) => &*it,
|
|
|
|
None => &[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RawAttrs {
|
|
|
|
pub const EMPTY: Self = Self { entries: None };
|
|
|
|
|
|
|
|
pub(crate) fn new(owner: &dyn AttrsOwner, hygiene: &Hygiene) -> Self {
|
|
|
|
let (inner_attrs, inner_docs) = inner_attributes(owner.syntax())
|
|
|
|
.map_or((None, None), |(attrs, docs)| ((Some(attrs), Some(docs))));
|
|
|
|
|
|
|
|
let outer_attrs = owner.attrs().filter(|attr| attr.excl_token().is_none());
|
|
|
|
let attrs = outer_attrs
|
|
|
|
.chain(inner_attrs.into_iter().flatten())
|
|
|
|
.map(|attr| (attr.syntax().text_range().start(), Attr::from_src(attr, hygiene)));
|
|
|
|
|
|
|
|
let outer_docs =
|
|
|
|
ast::CommentIter::from_syntax_node(owner.syntax()).filter(ast::Comment::is_outer);
|
|
|
|
let docs = outer_docs.chain(inner_docs.into_iter().flatten()).map(|docs_text| {
|
|
|
|
(
|
|
|
|
docs_text.syntax().text_range().start(),
|
|
|
|
docs_text.doc_comment().map(|doc| Attr {
|
|
|
|
input: Some(AttrInput::Literal(SmolStr::new(doc))),
|
|
|
|
path: ModPath::from(hir_expand::name!(doc)),
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
});
|
|
|
|
// sort here by syntax node offset because the source can have doc attributes and doc strings be interleaved
|
|
|
|
let attrs: Vec<_> = docs.chain(attrs).sorted_by_key(|&(offset, _)| offset).collect();
|
|
|
|
let entries = if attrs.is_empty() {
|
|
|
|
// Avoid heap allocation
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(attrs.into_iter().flat_map(|(_, attr)| attr).collect())
|
|
|
|
};
|
|
|
|
Self { entries }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_attrs_owner(db: &dyn DefDatabase, owner: InFile<&dyn AttrsOwner>) -> Self {
|
|
|
|
let hygiene = Hygiene::new(db.upcast(), owner.file_id);
|
|
|
|
Self::new(owner.value, &hygiene)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn merge(&self, other: Self) -> Self {
|
|
|
|
match (&self.entries, &other.entries) {
|
|
|
|
(None, None) => Self::EMPTY,
|
|
|
|
(Some(entries), None) | (None, Some(entries)) => {
|
|
|
|
Self { entries: Some(entries.clone()) }
|
|
|
|
}
|
|
|
|
(Some(a), Some(b)) => {
|
|
|
|
Self { entries: Some(a.iter().chain(b.iter()).cloned().collect()) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Processes `cfg_attr`s, returning the resulting semantic `Attrs`.
|
2020-12-18 11:58:42 -06:00
|
|
|
pub(crate) fn filter(self, db: &dyn DefDatabase, krate: CrateId) -> Attrs {
|
|
|
|
let has_cfg_attrs = self.iter().any(|attr| {
|
|
|
|
attr.path.as_ident().map_or(false, |name| *name == hir_expand::name![cfg_attr])
|
|
|
|
});
|
|
|
|
if !has_cfg_attrs {
|
|
|
|
return Attrs(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
let crate_graph = db.crate_graph();
|
|
|
|
let new_attrs = self
|
|
|
|
.iter()
|
|
|
|
.filter_map(|attr| {
|
|
|
|
let attr = attr.clone();
|
|
|
|
let is_cfg_attr =
|
|
|
|
attr.path.as_ident().map_or(false, |name| *name == hir_expand::name![cfg_attr]);
|
|
|
|
if !is_cfg_attr {
|
|
|
|
return Some(attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
let subtree = match &attr.input {
|
|
|
|
Some(AttrInput::TokenTree(it)) => it,
|
|
|
|
_ => return Some(attr),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Input subtree is: `(cfg, attr)`
|
|
|
|
// Split it up into a `cfg` and an `attr` subtree.
|
|
|
|
// FIXME: There should be a common API for this.
|
|
|
|
let mut saw_comma = false;
|
|
|
|
let (mut cfg, attr): (Vec<_>, Vec<_>) =
|
|
|
|
subtree.clone().token_trees.into_iter().partition(|tree| {
|
|
|
|
if saw_comma {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
match tree {
|
|
|
|
tt::TokenTree::Leaf(tt::Leaf::Punct(p)) if p.char == ',' => {
|
|
|
|
saw_comma = true;
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
});
|
|
|
|
cfg.pop(); // `,` ends up in here
|
|
|
|
|
2020-12-18 13:00:59 -06:00
|
|
|
let attr = Subtree { delimiter: None, token_trees: attr };
|
2020-12-18 11:58:42 -06:00
|
|
|
let cfg = Subtree { delimiter: subtree.delimiter, token_trees: cfg };
|
|
|
|
let cfg = CfgExpr::parse(&cfg);
|
|
|
|
|
|
|
|
let cfg_options = &crate_graph[krate].cfg_options;
|
|
|
|
if cfg_options.check(&cfg) == Some(false) {
|
|
|
|
None
|
|
|
|
} else {
|
2020-12-18 13:00:59 -06:00
|
|
|
let attr = ast::Attr::parse(&format!("#[{}]", attr)).ok()?;
|
2020-12-18 11:58:42 -06:00
|
|
|
let hygiene = Hygiene::new_unhygienic(); // FIXME
|
|
|
|
Attr::from_src(attr, &hygiene)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
Attrs(RawAttrs { entries: Some(new_attrs) })
|
2020-12-17 17:23:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-22 02:27:47 -06:00
|
|
|
impl Attrs {
|
2020-12-17 17:23:46 -06:00
|
|
|
pub const EMPTY: Self = Self(RawAttrs::EMPTY);
|
2020-06-23 12:42:19 -05:00
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn attrs_query(db: &dyn DefDatabase, def: AttrDefId) -> Attrs {
|
2020-12-17 17:23:46 -06:00
|
|
|
let raw_attrs = match def {
|
2019-11-23 02:14:10 -06:00
|
|
|
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) => {
|
2020-12-17 17:23:46 -06:00
|
|
|
RawAttrs::from_attrs_owner(db, it.as_ref().map(|it| it as &dyn AttrsOwner))
|
2020-04-25 09:24:44 -05:00
|
|
|
}
|
2020-12-17 17:23:46 -06:00
|
|
|
None => RawAttrs::from_attrs_owner(
|
2020-04-25 09:24:44 -05:00
|
|
|
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] {
|
2020-12-17 17:23:46 -06:00
|
|
|
Either::Left(_tuple) => RawAttrs::default(),
|
|
|
|
Either::Right(record) => RawAttrs::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]);
|
2020-12-17 17:23:46 -06:00
|
|
|
RawAttrs::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 {
|
2020-06-22 12:15:54 -05:00
|
|
|
AdtId::StructId(it) => attrs_from_item_tree(it.lookup(db).id, db),
|
|
|
|
AdtId::EnumId(it) => attrs_from_item_tree(it.lookup(db).id, db),
|
|
|
|
AdtId::UnionId(it) => attrs_from_item_tree(it.lookup(db).id, db),
|
2019-11-23 03:01:56 -06:00
|
|
|
},
|
2020-06-22 12:15:54 -05:00
|
|
|
AttrDefId::TraitId(it) => attrs_from_item_tree(it.lookup(db).id, 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))
|
|
|
|
}
|
2020-06-22 12:15:54 -05:00
|
|
|
AttrDefId::ImplId(it) => attrs_from_item_tree(it.lookup(db).id, db),
|
|
|
|
AttrDefId::ConstId(it) => attrs_from_item_tree(it.lookup(db).id, db),
|
|
|
|
AttrDefId::StaticId(it) => attrs_from_item_tree(it.lookup(db).id, db),
|
|
|
|
AttrDefId::FunctionId(it) => attrs_from_item_tree(it.lookup(db).id, db),
|
|
|
|
AttrDefId::TypeAliasId(it) => attrs_from_item_tree(it.lookup(db).id, db),
|
2019-11-24 06:50:45 -06:00
|
|
|
};
|
2020-12-17 17:23:46 -06:00
|
|
|
|
|
|
|
raw_attrs.filter(db, def.krate(db))
|
2019-11-24 06:50:45 -06:00
|
|
|
}
|
|
|
|
|
2020-06-23 11:20:51 -05:00
|
|
|
pub fn merge(&self, other: Attrs) -> Attrs {
|
2020-12-17 17:23:46 -06:00
|
|
|
match (&self.0.entries, &other.0.entries) {
|
|
|
|
(None, None) => Attrs::EMPTY,
|
2020-06-23 11:20:51 -05:00
|
|
|
(Some(entries), None) | (None, Some(entries)) => {
|
2020-12-17 17:23:46 -06:00
|
|
|
Attrs(RawAttrs { entries: Some(entries.clone()) })
|
2020-06-23 11:20:51 -05:00
|
|
|
}
|
|
|
|
(Some(a), Some(b)) => {
|
2020-12-17 17:23:46 -06:00
|
|
|
Attrs(RawAttrs { entries: Some(a.iter().chain(b.iter()).cloned().collect()) })
|
2020-06-23 11:20:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-10-22 12:19:18 -05:00
|
|
|
pub fn cfg(&self) -> Option<CfgExpr> {
|
2020-04-11 10:18:42 -05:00
|
|
|
// FIXME: handle cfg_attr :-)
|
2020-10-22 12:19:18 -05:00
|
|
|
let mut cfgs = self.by_key("cfg").tt_values().map(CfgExpr::parse).collect::<Vec<_>>();
|
|
|
|
match cfgs.len() {
|
|
|
|
0 => None,
|
|
|
|
1 => Some(cfgs.pop().unwrap()),
|
|
|
|
_ => Some(CfgExpr::All(cfgs)),
|
|
|
|
}
|
2020-07-23 09:22:17 -05:00
|
|
|
}
|
|
|
|
pub(crate) fn is_cfg_enabled(&self, cfg_options: &CfgOptions) -> bool {
|
2020-10-22 12:19:18 -05:00
|
|
|
match self.cfg() {
|
|
|
|
None => true,
|
|
|
|
Some(cfg) => cfg_options.check(&cfg) != Some(false),
|
|
|
|
}
|
2020-04-09 11:32:02 -05:00
|
|
|
}
|
2020-12-07 11:06:46 -06:00
|
|
|
|
|
|
|
pub fn docs(&self) -> Option<Documentation> {
|
2020-12-08 06:47:58 -06:00
|
|
|
let docs = self
|
|
|
|
.by_key("doc")
|
2020-12-07 11:06:46 -06:00
|
|
|
.attrs()
|
|
|
|
.flat_map(|attr| match attr.input.as_ref()? {
|
|
|
|
AttrInput::Literal(s) => Some(s),
|
|
|
|
AttrInput::TokenTree(_) => None,
|
|
|
|
})
|
|
|
|
.intersperse(&SmolStr::new_inline("\n"))
|
2020-12-08 06:47:58 -06:00
|
|
|
.map(|it| it.as_str())
|
|
|
|
.collect::<String>();
|
2020-12-07 11:49:03 -06:00
|
|
|
if docs.is_empty() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(Documentation(docs.into()))
|
|
|
|
}
|
2020-12-07 11:06:46 -06:00
|
|
|
}
|
2019-11-22 02:27:47 -06:00
|
|
|
}
|
|
|
|
|
2020-12-08 16:30:51 -06:00
|
|
|
fn inner_attributes(
|
|
|
|
syntax: &SyntaxNode,
|
|
|
|
) -> Option<(impl Iterator<Item = ast::Attr>, impl Iterator<Item = ast::Comment>)> {
|
|
|
|
let (attrs, docs) = match_ast! {
|
2020-12-08 16:21:20 -06:00
|
|
|
match syntax {
|
2020-12-08 16:30:51 -06:00
|
|
|
ast::SourceFile(it) => (it.attrs(), ast::CommentIter::from_syntax_node(it.syntax())),
|
2020-12-08 16:21:20 -06:00
|
|
|
ast::ExternBlock(it) => {
|
|
|
|
let extern_item_list = it.extern_item_list()?;
|
2020-12-08 16:30:51 -06:00
|
|
|
(extern_item_list.attrs(), ast::CommentIter::from_syntax_node(extern_item_list.syntax()))
|
2020-12-08 16:21:20 -06:00
|
|
|
},
|
|
|
|
ast::Fn(it) => {
|
|
|
|
let body = it.body()?;
|
2020-12-08 16:30:51 -06:00
|
|
|
(body.attrs(), ast::CommentIter::from_syntax_node(body.syntax()))
|
2020-12-08 16:21:20 -06:00
|
|
|
},
|
|
|
|
ast::Impl(it) => {
|
|
|
|
let assoc_item_list = it.assoc_item_list()?;
|
2020-12-08 16:30:51 -06:00
|
|
|
(assoc_item_list.attrs(), ast::CommentIter::from_syntax_node(assoc_item_list.syntax()))
|
2020-12-08 16:21:20 -06:00
|
|
|
},
|
|
|
|
ast::Module(it) => {
|
|
|
|
let item_list = it.item_list()?;
|
2020-12-08 16:30:51 -06:00
|
|
|
(item_list.attrs(), ast::CommentIter::from_syntax_node(item_list.syntax()))
|
2020-12-08 16:21:20 -06:00
|
|
|
},
|
|
|
|
// FIXME: BlockExpr's only accept inner attributes in specific cases
|
|
|
|
// Excerpt from the reference:
|
2020-12-08 16:30:51 -06:00
|
|
|
// Block expressions accept outer and inner attributes, but only when they are the outer
|
|
|
|
// expression of an expression statement or the final expression of another block expression.
|
2020-12-08 16:21:20 -06:00
|
|
|
ast::BlockExpr(it) => return None,
|
|
|
|
_ => return None,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let attrs = attrs.filter(|attr| attr.excl_token().is_some());
|
2020-12-08 16:30:51 -06:00
|
|
|
let docs = docs.filter(|doc| doc.is_inner());
|
|
|
|
Some((attrs, docs))
|
2020-12-08 16:21:20 -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)?;
|
2020-07-30 13:16:04 -05:00
|
|
|
let input = if let Some(lit) = ast.literal() {
|
2020-12-07 13:38:28 -06:00
|
|
|
let value = match lit.kind() {
|
2020-12-08 06:47:58 -06:00
|
|
|
ast::LiteralKind::String(string) => string.value()?.into(),
|
2020-12-07 13:38:28 -06:00
|
|
|
_ => lit.syntax().first_token()?.text().trim_matches('"').into(),
|
2020-12-07 12:05:06 -06:00
|
|
|
};
|
2020-07-30 13:16:04 -05:00
|
|
|
Some(AttrInput::Literal(value))
|
|
|
|
} else if let Some(tt) = ast.token_tree() {
|
|
|
|
Some(AttrInput::TokenTree(ast_to_token_tree(&tt)?.0))
|
|
|
|
} else {
|
|
|
|
None
|
2019-10-30 08:12:55 -05:00
|
|
|
};
|
|
|
|
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-12-17 17:23:46 -06:00
|
|
|
fn attrs_from_ast<N>(src: AstId<N>, db: &dyn DefDatabase) -> RawAttrs
|
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()));
|
2020-12-17 17:23:46 -06:00
|
|
|
RawAttrs::from_attrs_owner(db, src.as_ref().map(|it| it as &dyn AttrsOwner))
|
2019-11-23 02:14:10 -06:00
|
|
|
}
|
|
|
|
|
2020-12-17 17:23:46 -06:00
|
|
|
fn attrs_from_item_tree<N: ItemTreeNode>(id: ItemTreeId<N>, db: &dyn DefDatabase) -> RawAttrs {
|
2020-06-22 12:15:54 -05:00
|
|
|
let tree = db.item_tree(id.file_id);
|
|
|
|
let mod_item = N::id_to_mod_item(id.value);
|
2020-12-17 17:23:46 -06:00
|
|
|
tree.raw_attrs(mod_item.into()).clone()
|
2019-11-23 02:14:10 -06:00
|
|
|
}
|