|
| 1 | +// Copyright 2015 The Rust Project Developers. See the COPYRIGHT |
| 2 | +// file at the top-level directory of this distribution and at |
| 3 | +// http://rust-lang.org/COPYRIGHT. |
| 4 | +// |
| 5 | +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | +// option. This file may not be copied, modified, or distributed |
| 9 | +// except according to those terms. |
| 10 | + |
| 11 | +use session::Session; |
| 12 | + |
| 13 | +use syntax::ast; |
| 14 | +use syntax::attr::AttrMetaMethods; |
| 15 | +use syntax::visit; |
| 16 | +use syntax::visit::Visitor; |
| 17 | + |
| 18 | +#[derive(Copy, Clone, PartialEq)] |
| 19 | +enum Target { |
| 20 | + Fn, |
| 21 | + Struct, |
| 22 | + Enum, |
| 23 | + Other, |
| 24 | +} |
| 25 | + |
| 26 | +impl Target { |
| 27 | + fn from_item(item: &ast::Item) -> Target { |
| 28 | + match item.node { |
| 29 | + ast::ItemFn(..) => Target::Fn, |
| 30 | + ast::ItemStruct(..) => Target::Struct, |
| 31 | + ast::ItemEnum(..) => Target::Enum, |
| 32 | + _ => Target::Other, |
| 33 | + } |
| 34 | + } |
| 35 | +} |
| 36 | + |
| 37 | +struct CheckAttrVisitor<'a> { |
| 38 | + sess: &'a Session, |
| 39 | +} |
| 40 | + |
| 41 | +impl<'a> CheckAttrVisitor<'a> { |
| 42 | + fn check_inline(&self, attr: &ast::Attribute, target: Target) { |
| 43 | + if target != Target::Fn { |
| 44 | + self.sess.span_err( |
| 45 | + attr.span, |
| 46 | + "attribute should be applied to function"); |
| 47 | + } |
| 48 | + } |
| 49 | + |
| 50 | + fn check_repr(&self, attr: &ast::Attribute, target: Target) { |
| 51 | + let words = match attr.meta_item_list() { |
| 52 | + Some(words) => words, |
| 53 | + None => { |
| 54 | + return; |
| 55 | + } |
| 56 | + }; |
| 57 | + for word in words { |
| 58 | + let word: &str = &word.name(); |
| 59 | + match word { |
| 60 | + "C" => { |
| 61 | + if target != Target::Struct && target != Target::Enum { |
| 62 | + self.sess.span_err( |
| 63 | + attr.span, |
| 64 | + "attribute should be applied to struct or enum"); |
| 65 | + } |
| 66 | + } |
| 67 | + "packed" | |
| 68 | + "simd" => { |
| 69 | + if target != Target::Struct { |
| 70 | + self.sess.span_err( |
| 71 | + attr.span, |
| 72 | + "attribute should be applied to struct"); |
| 73 | + } |
| 74 | + } |
| 75 | + "i8" | "u8" | "i16" | "u16" | |
| 76 | + "i32" | "u32" | "i64" | "u64" | |
| 77 | + "isize" | "usize" => { |
| 78 | + if target != Target::Enum { |
| 79 | + self.sess.span_err( |
| 80 | + attr.span, |
| 81 | + "attribute should be applied to enum"); |
| 82 | + } |
| 83 | + } |
| 84 | + _ => (), |
| 85 | + } |
| 86 | + } |
| 87 | + } |
| 88 | + |
| 89 | + fn check_attribute(&self, attr: &ast::Attribute, target: Target) { |
| 90 | + let name: &str = &attr.name(); |
| 91 | + match name { |
| 92 | + "inline" => self.check_inline(attr, target), |
| 93 | + "repr" => self.check_repr(attr, target), |
| 94 | + _ => (), |
| 95 | + } |
| 96 | + } |
| 97 | +} |
| 98 | + |
| 99 | +impl<'a, 'v> Visitor<'v> for CheckAttrVisitor<'a> { |
| 100 | + fn visit_item(&mut self, item: &ast::Item) { |
| 101 | + let target = Target::from_item(item); |
| 102 | + for attr in &item.attrs { |
| 103 | + self.check_attribute(attr, target); |
| 104 | + } |
| 105 | + } |
| 106 | +} |
| 107 | + |
| 108 | +pub fn check_crate(sess: &Session, krate: &ast::Crate) { |
| 109 | + visit::walk_crate(&mut CheckAttrVisitor { sess: sess }, krate); |
| 110 | +} |
0 commit comments