rust/src/libsyntax/attr.rs

386 lines
11 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// Functions dealing with attributes and meta_items
use core::prelude::*;
use ast;
2013-01-30 11:56:33 -06:00
use codemap::{spanned, dummy_spanned};
use attr;
use codemap::BytePos;
use diagnostic::span_handler;
use parse::comments::{doc_comment_style, strip_doc_comment_decoration};
use core::cmp;
use core::either::Either;
use core::vec;
use core::hashmap::linear::LinearSet;
use std;
/* Constructors */
2013-02-14 22:19:27 -06:00
pub fn mk_name_value_item_str(name: @~str, value: @~str)
-> @ast::meta_item {
2013-02-14 22:19:27 -06:00
let value_lit = dummy_spanned(ast::lit_str(value));
mk_name_value_item(name, value_lit)
}
2013-02-14 22:19:27 -06:00
pub fn mk_name_value_item(name: @~str, +value: ast::lit)
-> @ast::meta_item {
2013-02-14 09:34:21 -06:00
@dummy_spanned(ast::meta_name_value(name, value))
}
2013-02-14 22:19:27 -06:00
pub fn mk_list_item(name: @~str, +items: ~[@ast::meta_item]) ->
@ast::meta_item {
2013-02-14 09:34:21 -06:00
@dummy_spanned(ast::meta_list(name, items))
}
2013-02-14 22:19:27 -06:00
pub fn mk_word_item(name: @~str) -> @ast::meta_item {
2013-02-14 09:34:21 -06:00
@dummy_spanned(ast::meta_word(name))
}
pub fn mk_attr(item: @ast::meta_item) -> ast::attribute {
dummy_spanned(ast::attribute_ { style: ast::attr_inner,
value: item,
is_sugared_doc: false })
}
pub fn mk_sugared_doc_attr(+text: ~str,
+lo: BytePos, +hi: BytePos) -> ast::attribute {
let style = doc_comment_style(text);
let lit = spanned(lo, hi, ast::lit_str(@text));
let attr = ast::attribute_ {
style: style,
value: @spanned(lo, hi, ast::meta_name_value(@~"doc", lit)),
is_sugared_doc: true
};
spanned(lo, hi, attr)
}
/* Conversion */
pub fn attr_meta(attr: ast::attribute) -> @ast::meta_item {
attr.node.value
}
// Get the meta_items from inside a vector of attributes
pub fn attr_metas(attrs: ~[ast::attribute]) -> ~[@ast::meta_item] {
do attrs.map |a| { attr_meta(*a) }
}
pub fn desugar_doc_attr(attr: &ast::attribute) -> ast::attribute {
if attr.node.is_sugared_doc {
let comment = get_meta_item_value_str(attr.node.value).get();
2013-02-14 22:19:27 -06:00
let meta = mk_name_value_item_str(@~"doc",
@strip_doc_comment_decoration(*comment));
mk_attr(meta)
} else {
*attr
}
}
/* Accessors */
2013-02-14 22:19:27 -06:00
pub pure fn get_attr_name(attr: &ast::attribute) -> @~str {
get_meta_item_name(attr.node.value)
}
2013-02-14 22:19:27 -06:00
pub pure fn get_meta_item_name(meta: @ast::meta_item) -> @~str {
2012-08-06 14:34:08 -05:00
match meta.node {
2013-02-14 09:34:21 -06:00
ast::meta_word(n) => n,
ast::meta_name_value(n, _) => n,
ast::meta_list(n, _) => n,
}
}
/**
* Gets the string value if the meta_item is a meta_name_value variant
* containing a string, otherwise none
*/
2013-02-14 22:19:27 -06:00
pub fn get_meta_item_value_str(meta: @ast::meta_item) -> Option<@~str> {
2012-08-06 14:34:08 -05:00
match meta.node {
2013-02-14 22:19:27 -06:00
ast::meta_name_value(_, v) => {
match v.node {
ast::lit_str(s) => Some(s),
_ => None,
}
2012-07-18 18:18:02 -05:00
},
2013-02-14 22:19:27 -06:00
_ => None
}
}
/// Gets a list of inner meta items from a list meta_item type
pub fn get_meta_item_list(meta: @ast::meta_item)
-> Option<~[@ast::meta_item]> {
2012-08-06 14:34:08 -05:00
match meta.node {
ast::meta_list(_, ref l) => Some(/* FIXME (#2543) */ copy *l),
_ => None
}
}
/**
* If the meta item is a nam-value type with a string value then returns
* a tuple containing the name and string value, otherwise `none`
*/
pub fn get_name_value_str_pair(item: @ast::meta_item)
2013-02-14 22:19:27 -06:00
-> Option<(@~str, @~str)> {
2012-08-06 14:34:08 -05:00
match attr::get_meta_item_value_str(item) {
2013-02-14 22:19:27 -06:00
Some(value) => {
let name = attr::get_meta_item_name(item);
2013-02-14 22:19:27 -06:00
Some((name, value))
}
2012-08-20 14:23:37 -05:00
None => None
}
}
/* Searching */
/// Search a list of attributes and return only those with a specific name
pub fn find_attrs_by_name(attrs: &[ast::attribute], name: &str) ->
~[ast::attribute] {
do vec::filter_mapped(attrs) |a| {
2013-02-14 22:19:27 -06:00
if name == *get_attr_name(a) {
Some(*a)
} else {
None
}
}
}
2012-12-11 14:43:33 -06:00
/// Search a list of meta items and return only those with a specific name
pub fn find_meta_items_by_name(metas: &[@ast::meta_item], name: &str) ->
~[@ast::meta_item] {
let mut rs = ~[];
for metas.each |mi| {
2013-02-14 22:19:27 -06:00
if name == *get_meta_item_name(*mi) {
rs.push(*mi)
}
}
rs
}
/**
* Returns true if a list of meta items contains another meta item. The
* comparison is performed structurally.
*/
pub fn contains(haystack: &[@ast::meta_item],
needle: @ast::meta_item) -> bool {
2012-06-30 18:19:07 -05:00
for haystack.each |item| {
if eq(*item, needle) { return true; }
}
2012-08-01 19:30:05 -05:00
return false;
}
fn eq(a: @ast::meta_item, b: @ast::meta_item) -> bool {
match a.node {
ast::meta_word(ref na) => match b.node {
ast::meta_word(ref nb) => (*na) == (*nb),
2012-08-03 21:59:04 -05:00
_ => false
},
ast::meta_name_value(ref na, va) => match b.node {
2012-12-04 23:13:02 -06:00
ast::meta_name_value(ref nb, vb) => {
(*na) == (*nb) && va.node == vb.node
}
2012-08-03 21:59:04 -05:00
_ => false
},
ast::meta_list(ref na, ref misa) => match b.node {
ast::meta_list(ref nb, ref misb) => {
if na != nb { return false; }
for misa.each |mi| {
if !misb.contains(mi) { return false; }
}
true
}
_ => false
}
}
}
pub fn contains_name(metas: &[@ast::meta_item], name: &str) -> bool {
2011-07-27 07:19:39 -05:00
let matches = find_meta_items_by_name(metas, name);
matches.len() > 0u
}
pub fn attrs_contains_name(attrs: &[ast::attribute], name: &str) -> bool {
!find_attrs_by_name(attrs, name).is_empty()
}
2013-02-14 22:19:27 -06:00
pub fn first_attr_value_str_by_name(attrs: ~[ast::attribute], name: &str)
-> Option<@~str> {
2012-07-18 18:18:02 -05:00
let mattrs = find_attrs_by_name(attrs, name);
2013-02-14 22:19:27 -06:00
if mattrs.len() > 0 {
get_meta_item_value_str(attr_meta(mattrs[0]))
} else {
None
}
}
fn last_meta_item_by_name(items: &[@ast::meta_item], name: &str)
-> Option<@ast::meta_item> {
2012-07-18 18:18:02 -05:00
let items = attr::find_meta_items_by_name(items, name);
items.last_opt().map(|item| **item)
}
pub fn last_meta_item_value_str_by_name(items: &[@ast::meta_item], name: &str)
2013-02-14 22:19:27 -06:00
-> Option<@~str> {
2012-07-18 18:18:02 -05:00
2012-08-06 14:34:08 -05:00
match last_meta_item_by_name(items, name) {
2013-02-14 22:19:27 -06:00
Some(item) => {
match attr::get_meta_item_value_str(item) {
Some(value) => Some(value),
None => None
}
},
2012-08-20 14:23:37 -05:00
None => None
}
}
2013-02-14 22:19:27 -06:00
pub fn last_meta_item_list_by_name(items: ~[@ast::meta_item], name: &str)
-> Option<~[@ast::meta_item]> {
2012-07-18 18:18:02 -05:00
2012-08-06 14:34:08 -05:00
match last_meta_item_by_name(items, name) {
Some(item) => attr::get_meta_item_list(item),
2012-08-20 14:23:37 -05:00
None => None
}
}
/* Higher-level applications */
pub fn sort_meta_items(items: &[@ast::meta_item]) -> ~[@ast::meta_item] {
// This is sort of stupid here, converting to a vec of mutables and back
let mut v = vec::from_slice(items);
2013-02-14 22:19:27 -06:00
do std::sort::quick_sort(v) |ma, mb| {
get_meta_item_name(*ma) <= get_meta_item_name(*mb)
}
// There doesn't seem to be a more optimal way to do this
do v.map |m| {
match m.node {
ast::meta_list(n, ref mis) => {
@spanned {
node: ast::meta_list(n, sort_meta_items(*mis)),
.. /*bad*/ copy **m
}
}
_ => /*bad*/ copy *m
}
}
}
2013-02-14 22:19:27 -06:00
pub fn remove_meta_items_by_name(items: ~[@ast::meta_item], name: &str) ->
~[@ast::meta_item] {
return vec::filter_mapped(items, |item| {
2013-02-14 22:19:27 -06:00
if name != *get_meta_item_name(*item) {
Some(*item)
} else {
2013-02-14 22:19:27 -06:00
None
}
});
}
/**
* From a list of crate attributes get only the meta_items that affect crate
* linkage
*/
pub fn find_linkage_metas(attrs: &[ast::attribute]) -> ~[@ast::meta_item] {
do find_attrs_by_name(attrs, ~"link").flat_map |attr| {
match attr.node.value.node {
2013-02-24 18:56:49 -06:00
ast::meta_list(_, ref items) => /* FIXME (#2543) */ copy *items,
_ => ~[]
}
}
}
pub fn foreign_abi(attrs: ~[ast::attribute])
-> Either<~str, ast::foreign_abi> {
2012-08-06 14:34:08 -05:00
return match attr::first_attr_value_str_by_name(attrs, ~"abi") {
2013-02-14 22:19:27 -06:00
None => {
Right(ast::foreign_abi_cdecl)
}
Some(@~"rust-intrinsic") => {
Right(ast::foreign_abi_rust_intrinsic)
}
Some(@~"cdecl") => {
Right(ast::foreign_abi_cdecl)
}
Some(@~"stdcall") => {
Right(ast::foreign_abi_stdcall)
}
Some(t) => {
Left(~"unsupported abi: " + *t)
}
2011-11-20 12:15:40 -06:00
};
}
pub enum inline_attr {
ia_none,
ia_hint,
ia_always,
ia_never,
}
impl cmp::Eq for inline_attr {
pure fn eq(&self, other: &inline_attr) -> bool {
((*self) as uint) == ((*other) as uint)
}
pure fn ne(&self, other: &inline_attr) -> bool { !(*self).eq(other) }
}
/// True if something like #[inline] is found in the list of attrs.
pub fn find_inline_attr(attrs: &[ast::attribute]) -> inline_attr {
// FIXME (#2809)---validate the usage of #[inline] and #[inline(always)]
2012-06-30 18:19:07 -05:00
do vec::foldl(ia_none, attrs) |ia,attr| {
2012-08-06 14:34:08 -05:00
match attr.node.value.node {
2013-02-14 09:34:21 -06:00
ast::meta_word(@~"inline") => ia_hint,
2013-02-24 18:56:49 -06:00
ast::meta_list(@~"inline", ref items) => {
if !find_meta_items_by_name(*items, ~"always").is_empty() {
ia_always
2013-02-24 18:56:49 -06:00
} else if !find_meta_items_by_name(*items, ~"never").is_empty() {
ia_never
} else {
ia_hint
}
}
2012-08-03 21:59:04 -05:00
_ => ia
}
}
}
pub fn require_unique_names(diagnostic: span_handler,
metas: &[@ast::meta_item]) {
let mut set = LinearSet::new();
2012-06-30 18:19:07 -05:00
for metas.each |meta| {
let name = get_meta_item_name(*meta);
2012-06-14 20:46:33 -05:00
// FIXME: How do I silence the warnings? --pcw (#2619)
2013-02-14 22:19:27 -06:00
if !set.insert(name) {
diagnostic.span_fatal(meta.span,
2013-02-14 22:19:27 -06:00
fmt!("duplicate meta item `%s`", *name));
}
}
}
//
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End:
//