2020-03-01 03:23:33 +00:00
|
|
|
use rustc_ast::ast;
|
2019-02-28 15:44:42 +00:00
|
|
|
use rustc_errors::Applicability;
|
2020-03-18 22:45:02 +00:00
|
|
|
use rustc_session::Session;
|
2020-12-29 22:04:31 +00:00
|
|
|
use rustc_span::sym;
|
2019-02-28 15:44:42 +00:00
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
/// Deprecation status of attributes known by Clippy.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub enum DeprecationStatus {
|
|
|
|
/// Attribute is deprecated
|
|
|
|
Deprecated,
|
|
|
|
/// Attribute is deprecated and was replaced by the named attribute
|
|
|
|
Replaced(&'static str),
|
|
|
|
None,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const BUILTIN_ATTRIBUTES: &[(&str, DeprecationStatus)] = &[
|
|
|
|
("author", DeprecationStatus::None),
|
2019-02-23 01:19:50 +00:00
|
|
|
("cognitive_complexity", DeprecationStatus::None),
|
|
|
|
(
|
|
|
|
"cyclomatic_complexity",
|
|
|
|
DeprecationStatus::Replaced("cognitive_complexity"),
|
|
|
|
),
|
2019-02-28 15:44:42 +00:00
|
|
|
("dump", DeprecationStatus::None),
|
2020-10-21 12:47:34 +00:00
|
|
|
("msrv", DeprecationStatus::None),
|
2019-02-28 15:44:42 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
pub struct LimitStack {
|
|
|
|
stack: Vec<u64>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for LimitStack {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
assert_eq!(self.stack.len(), 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LimitStack {
|
2019-09-18 06:37:41 +00:00
|
|
|
#[must_use]
|
2019-02-28 15:44:42 +00:00
|
|
|
pub fn new(limit: u64) -> Self {
|
|
|
|
Self { stack: vec![limit] }
|
|
|
|
}
|
|
|
|
pub fn limit(&self) -> u64 {
|
|
|
|
*self.stack.last().expect("there should always be a value in the stack")
|
|
|
|
}
|
|
|
|
pub fn push_attrs(&mut self, sess: &Session, attrs: &[ast::Attribute], name: &'static str) {
|
|
|
|
let stack = &mut self.stack;
|
|
|
|
parse_attrs(sess, attrs, name, |val| stack.push(val));
|
|
|
|
}
|
|
|
|
pub fn pop_attrs(&mut self, sess: &Session, attrs: &[ast::Attribute], name: &'static str) {
|
|
|
|
let stack = &mut self.stack;
|
|
|
|
parse_attrs(sess, attrs, name, |val| assert_eq!(stack.pop(), Some(val)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_attr<'a>(
|
|
|
|
sess: &'a Session,
|
|
|
|
attrs: &'a [ast::Attribute],
|
|
|
|
name: &'static str,
|
|
|
|
) -> impl Iterator<Item = &'a ast::Attribute> {
|
|
|
|
attrs.iter().filter(move |attr| {
|
2020-11-05 17:27:48 +00:00
|
|
|
let attr = if let ast::AttrKind::Normal(ref attr, _) = attr.kind {
|
2019-11-07 08:34:45 +00:00
|
|
|
attr
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
};
|
2019-02-28 15:44:42 +00:00
|
|
|
let attr_segments = &attr.path.segments;
|
2020-12-29 22:04:31 +00:00
|
|
|
if attr_segments.len() == 2 && attr_segments[0].ident.name == sym::clippy {
|
2020-07-14 12:59:59 +00:00
|
|
|
BUILTIN_ATTRIBUTES
|
|
|
|
.iter()
|
2020-12-29 22:04:31 +00:00
|
|
|
.find_map(|&(builtin_name, ref deprecation_status)| {
|
|
|
|
if attr_segments[1].ident.name.as_str() == builtin_name {
|
2020-07-14 12:59:59 +00:00
|
|
|
Some(deprecation_status)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map_or_else(
|
|
|
|
|| {
|
2020-08-11 13:43:21 +00:00
|
|
|
sess.span_err(attr_segments[1].ident.span, "usage of unknown attribute");
|
2019-02-28 15:44:42 +00:00
|
|
|
false
|
|
|
|
},
|
2020-07-14 12:59:59 +00:00
|
|
|
|deprecation_status| {
|
|
|
|
let mut diag =
|
2020-08-11 13:43:21 +00:00
|
|
|
sess.struct_span_err(attr_segments[1].ident.span, "usage of deprecated attribute");
|
2020-07-14 12:59:59 +00:00
|
|
|
match *deprecation_status {
|
|
|
|
DeprecationStatus::Deprecated => {
|
|
|
|
diag.emit();
|
|
|
|
false
|
|
|
|
},
|
|
|
|
DeprecationStatus::Replaced(new_name) => {
|
|
|
|
diag.span_suggestion(
|
|
|
|
attr_segments[1].ident.span,
|
|
|
|
"consider using",
|
|
|
|
new_name.to_string(),
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
);
|
|
|
|
diag.emit();
|
|
|
|
false
|
|
|
|
},
|
|
|
|
DeprecationStatus::None => {
|
|
|
|
diag.cancel();
|
2020-12-29 22:04:31 +00:00
|
|
|
attr_segments[1].ident.name.as_str() == name
|
2020-07-14 12:59:59 +00:00
|
|
|
},
|
|
|
|
}
|
2019-02-28 15:44:42 +00:00
|
|
|
},
|
2020-07-14 12:59:59 +00:00
|
|
|
)
|
2019-02-28 15:44:42 +00:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_attrs<F: FnMut(u64)>(sess: &Session, attrs: &[ast::Attribute], name: &'static str, mut f: F) {
|
|
|
|
for attr in get_attr(sess, attrs, name) {
|
|
|
|
if let Some(ref value) = attr.value_str() {
|
|
|
|
if let Ok(value) = FromStr::from_str(&value.as_str()) {
|
|
|
|
f(value)
|
|
|
|
} else {
|
|
|
|
sess.span_err(attr.span, "not a number");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sess.span_err(attr.span, "bad clippy attribute");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-18 13:54:25 +00:00
|
|
|
|
2020-10-21 12:47:34 +00:00
|
|
|
pub fn get_unique_inner_attr(sess: &Session, attrs: &[ast::Attribute], name: &'static str) -> Option<ast::Attribute> {
|
|
|
|
let mut unique_attr = None;
|
|
|
|
for attr in get_attr(sess, attrs, name) {
|
|
|
|
match attr.style {
|
|
|
|
ast::AttrStyle::Inner if unique_attr.is_none() => unique_attr = Some(attr.clone()),
|
|
|
|
ast::AttrStyle::Inner => {
|
2020-11-25 11:19:13 +00:00
|
|
|
sess.struct_span_err(attr.span, &format!("`{}` is defined multiple times", name))
|
|
|
|
.span_note(unique_attr.as_ref().unwrap().span, "first definition found here")
|
|
|
|
.emit();
|
2020-10-21 12:47:34 +00:00
|
|
|
},
|
|
|
|
ast::AttrStyle::Outer => {
|
|
|
|
sess.span_err(attr.span, &format!("`{}` cannot be an outer attribute", name));
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
unique_attr
|
|
|
|
}
|
|
|
|
|
2019-10-18 13:54:25 +00:00
|
|
|
/// Return true if the attributes contain any of `proc_macro`,
|
|
|
|
/// `proc_macro_derive` or `proc_macro_attribute`, false otherwise
|
2020-07-30 01:27:50 +00:00
|
|
|
pub fn is_proc_macro(sess: &Session, attrs: &[ast::Attribute]) -> bool {
|
|
|
|
attrs.iter().any(|attr| sess.is_proc_macro_attr(attr))
|
2019-10-18 13:54:25 +00:00
|
|
|
}
|