2015-08-16 01:54:43 -05:00
|
|
|
//! checks for attributes
|
2015-05-30 08:10:19 -05:00
|
|
|
|
2016-02-24 10:38:57 -06:00
|
|
|
use reexport::*;
|
2015-05-30 08:10:19 -05:00
|
|
|
use rustc::lint::*;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2016-01-08 19:05:43 -06:00
|
|
|
use semver::Version;
|
2016-08-28 10:54:32 -05:00
|
|
|
use syntax::ast::{Attribute, Lit, LitKind, MetaItemKind, NestedMetaItem, NestedMetaItemKind};
|
2016-02-24 10:38:57 -06:00
|
|
|
use syntax::codemap::Span;
|
2016-10-22 08:57:19 -05:00
|
|
|
use utils::{in_macro, match_def_path, resolve_node, paths, span_lint, span_lint_and_then, snippet_opt};
|
2015-05-30 08:10:19 -05:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for items annotated with `#[inline(always)]`,
|
|
|
|
/// unless the annotated function is empty or simply panics.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** While there are valid uses of this annotation (and once
|
|
|
|
/// you know when to use it, by all means `allow` this lint), it's a common
|
|
|
|
/// newbie-mistake to pepper one's code with it.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// As a rule of thumb, before slapping `#[inline(always)]` on a function,
|
|
|
|
/// measure if that additional function call really affects your runtime profile
|
|
|
|
/// sufficiently to make up for the increase in compile time.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** False positives, big time. This lint is meant to be
|
|
|
|
/// deactivated by everyone doing serious performance work. This means having
|
|
|
|
/// done the measurement.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```rust
|
2015-12-10 18:22:27 -06:00
|
|
|
/// #[inline(always)]
|
|
|
|
/// fn not_quite_hot_code(..) { ... }
|
|
|
|
/// ```
|
2016-02-05 17:13:29 -06:00
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub INLINE_ALWAYS,
|
|
|
|
Warn,
|
|
|
|
"use of `#[inline(always)]`"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
2015-05-30 08:10:19 -05:00
|
|
|
|
2016-08-17 04:36:04 -05:00
|
|
|
/// **What it does:** Checks for `extern crate` and `use` items annotated with lint attributes
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Lint attributes have no effect on crate imports. Most likely a `!` was forgotten
|
|
|
|
///
|
|
|
|
/// **Known problems:** Technically one might allow `unused_import` on a `use` item, but it's easier to remove the unused item.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// #[deny(dead_code)]
|
|
|
|
/// extern crate foo;
|
|
|
|
/// #[allow(unused_import)]
|
|
|
|
/// use foo::bar;
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub USELESS_ATTRIBUTE,
|
|
|
|
Warn,
|
|
|
|
"use of lint attributes on `extern crate` items"
|
|
|
|
}
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for `#[deprecated]` annotations with a `since`
|
|
|
|
/// field that is not a valid semantic version.
|
2016-01-08 19:05:43 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** For checking the version of the deprecation, it must be
|
|
|
|
/// a valid semver. Failing that, the contained information is useless.
|
2016-01-08 19:05:43 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2016-01-08 19:05:43 -06:00
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```rust
|
2016-01-08 19:05:43 -06:00
|
|
|
/// #[deprecated(since = "forever")]
|
|
|
|
/// fn something_else(..) { ... }
|
|
|
|
/// ```
|
2016-02-05 17:13:29 -06:00
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub DEPRECATED_SEMVER,
|
|
|
|
Warn,
|
|
|
|
"use of `#[deprecated(since = \"x\")]` where x is not semver"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
2015-05-30 08:10:19 -05:00
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct AttrPass;
|
|
|
|
|
|
|
|
impl LintPass for AttrPass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-08-17 04:36:04 -05:00
|
|
|
lint_array!(INLINE_ALWAYS, DEPRECATED_SEMVER, USELESS_ATTRIBUTE)
|
2015-05-30 08:10:19 -05:00
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
impl LateLintPass for AttrPass {
|
2016-01-08 19:05:43 -06:00
|
|
|
fn check_attribute(&mut self, cx: &LateContext, attr: &Attribute) {
|
2016-02-12 11:35:44 -06:00
|
|
|
if let MetaItemKind::List(ref name, ref items) = attr.node.value.node {
|
2016-01-08 19:05:43 -06:00
|
|
|
if items.is_empty() || name != &"deprecated" {
|
|
|
|
return;
|
|
|
|
}
|
2016-08-01 09:59:14 -05:00
|
|
|
for item in items {
|
2016-08-28 10:54:32 -05:00
|
|
|
if_let_chain! {[
|
|
|
|
let NestedMetaItemKind::MetaItem(ref mi) = item.node,
|
|
|
|
let MetaItemKind::NameValue(ref name, ref lit) = mi.node,
|
|
|
|
name == &"since",
|
|
|
|
], {
|
|
|
|
check_semver(cx, item.span, lit);
|
|
|
|
}}
|
2016-01-30 06:48:39 -06:00
|
|
|
}
|
2016-01-08 19:05:43 -06:00
|
|
|
}
|
|
|
|
}
|
2016-01-30 06:48:39 -06:00
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
fn check_item(&mut self, cx: &LateContext, item: &Item) {
|
2016-10-22 08:57:19 -05:00
|
|
|
if is_relevant_item(cx, item) {
|
2015-09-23 19:30:39 -05:00
|
|
|
check_attrs(cx, item.span, &item.name, &item.attrs)
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2016-08-17 04:36:04 -05:00
|
|
|
match item.node {
|
|
|
|
ItemExternCrate(_) |
|
|
|
|
ItemUse(_) => {
|
|
|
|
for attr in &item.attrs {
|
2016-08-18 06:07:47 -05:00
|
|
|
if let MetaItemKind::List(ref name, ref lint_list) = attr.node.value.node {
|
2016-08-17 04:36:04 -05:00
|
|
|
match &**name {
|
|
|
|
"allow" | "warn" | "deny" | "forbid" => {
|
2016-08-18 06:07:47 -05:00
|
|
|
// whitelist `unused_imports`
|
|
|
|
for lint in lint_list {
|
2016-08-28 10:54:32 -05:00
|
|
|
if is_word(lint, "unused_imports") {
|
|
|
|
if let ItemUse(_) = item.node {
|
|
|
|
return;
|
2016-08-18 06:07:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-18 04:08:35 -05:00
|
|
|
if let Some(mut sugg) = snippet_opt(cx, attr.span) {
|
|
|
|
if sugg.len() > 1 {
|
|
|
|
span_lint_and_then(cx, USELESS_ATTRIBUTE, attr.span,
|
|
|
|
"useless lint attribute",
|
|
|
|
|db| {
|
|
|
|
sugg.insert(1, '!');
|
|
|
|
db.span_suggestion(attr.span, "if you just forgot a `!`, use", sugg);
|
|
|
|
});
|
2016-08-17 04:36:04 -05:00
|
|
|
}
|
2016-08-18 04:08:35 -05:00
|
|
|
}
|
2016-08-17 04:36:04 -05:00
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext, item: &ImplItem) {
|
2016-10-22 08:57:19 -05:00
|
|
|
if is_relevant_impl(cx, item) {
|
2015-09-23 19:30:39 -05:00
|
|
|
check_attrs(cx, item.span, &item.name, &item.attrs)
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext, item: &TraitItem) {
|
2016-10-22 08:57:19 -05:00
|
|
|
if is_relevant_trait(cx, item) {
|
2015-09-23 19:30:39 -05:00
|
|
|
check_attrs(cx, item.span, &item.name, &item.attrs)
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
2016-10-22 08:57:19 -05:00
|
|
|
fn is_relevant_item(cx: &LateContext, item: &Item) -> bool {
|
2015-11-24 11:44:40 -06:00
|
|
|
if let ItemFn(_, _, _, _, _, ref block) = item.node {
|
2016-10-22 08:57:19 -05:00
|
|
|
is_relevant_block(cx, block)
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
2016-10-22 08:57:19 -05:00
|
|
|
fn is_relevant_impl(cx: &LateContext, item: &ImplItem) -> bool {
|
2015-08-11 13:22:20 -05:00
|
|
|
match item.node {
|
2016-10-22 08:57:19 -05:00
|
|
|
ImplItemKind::Method(_, ref block) => is_relevant_block(cx, block),
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => false,
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
2016-10-22 08:57:19 -05:00
|
|
|
fn is_relevant_trait(cx: &LateContext, item: &TraitItem) -> bool {
|
2015-08-11 13:22:20 -05:00
|
|
|
match item.node {
|
|
|
|
MethodTraitItem(_, None) => true,
|
2016-10-22 08:57:19 -05:00
|
|
|
MethodTraitItem(_, Some(ref block)) => is_relevant_block(cx, block),
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => false,
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
2016-10-22 08:57:19 -05:00
|
|
|
fn is_relevant_block(cx: &LateContext, block: &Block) -> bool {
|
2015-08-13 08:36:31 -05:00
|
|
|
for stmt in &block.stmts {
|
2015-08-11 13:22:20 -05:00
|
|
|
match stmt.node {
|
|
|
|
StmtDecl(_, _) => return true,
|
2016-04-14 13:14:03 -05:00
|
|
|
StmtExpr(ref expr, _) |
|
|
|
|
StmtSemi(ref expr, _) => {
|
2016-10-22 08:57:19 -05:00
|
|
|
return is_relevant_expr(cx, expr);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-22 08:57:19 -05:00
|
|
|
block.expr.as_ref().map_or(false, |e| is_relevant_expr(cx, e))
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
2016-10-22 08:57:19 -05:00
|
|
|
fn is_relevant_expr(cx: &LateContext, expr: &Expr) -> bool {
|
2015-08-11 13:22:20 -05:00
|
|
|
match expr.node {
|
2016-10-22 08:57:19 -05:00
|
|
|
ExprBlock(ref block) => is_relevant_block(cx, block),
|
|
|
|
ExprRet(Some(ref e)) => is_relevant_expr(cx, e),
|
2015-09-03 09:42:17 -05:00
|
|
|
ExprRet(None) | ExprBreak(_) => false,
|
2015-08-11 13:22:20 -05:00
|
|
|
ExprCall(ref path_expr, _) => {
|
2016-10-22 08:57:19 -05:00
|
|
|
if let ExprPath(..) = path_expr.node {
|
|
|
|
let fun_id = resolve_node(cx, path_expr.id).expect("function should be resolved").def_id();
|
|
|
|
!match_def_path(cx, fun_id, &paths::BEGIN_PANIC)
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => true,
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-05-30 08:10:19 -05:00
|
|
|
}
|
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
fn check_attrs(cx: &LateContext, span: Span, name: &Name, attrs: &[Attribute]) {
|
|
|
|
if in_macro(cx, span) {
|
|
|
|
return;
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
|
|
|
for attr in attrs {
|
2016-02-12 11:35:44 -06:00
|
|
|
if let MetaItemKind::List(ref inline, ref values) = attr.node.value.node {
|
2016-01-03 22:26:12 -06:00
|
|
|
if values.len() != 1 || inline != &"inline" {
|
|
|
|
continue;
|
|
|
|
}
|
2016-08-28 10:54:32 -05:00
|
|
|
if is_word(&values[0], "always") {
|
2016-01-03 22:26:12 -06:00
|
|
|
span_lint(cx,
|
|
|
|
INLINE_ALWAYS,
|
|
|
|
attr.span,
|
|
|
|
&format!("you have declared `#[inline(always)]` on `{}`. This is usually a bad idea",
|
|
|
|
name));
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-30 08:10:19 -05:00
|
|
|
}
|
2016-01-08 19:05:43 -06:00
|
|
|
|
|
|
|
fn check_semver(cx: &LateContext, span: Span, lit: &Lit) {
|
2016-02-12 11:35:44 -06:00
|
|
|
if let LitKind::Str(ref is, _) = lit.node {
|
2016-01-08 19:05:43 -06:00
|
|
|
if Version::parse(&*is).is_ok() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-01-30 06:48:39 -06:00
|
|
|
span_lint(cx,
|
2016-01-08 19:05:43 -06:00
|
|
|
DEPRECATED_SEMVER,
|
|
|
|
span,
|
|
|
|
"the since field must contain a semver-compliant version");
|
|
|
|
}
|
2016-08-28 10:54:32 -05:00
|
|
|
|
|
|
|
fn is_word(nmi: &NestedMetaItem, expected: &str) -> bool {
|
|
|
|
if let NestedMetaItemKind::MetaItem(ref mi) = nmi.node {
|
|
|
|
if let MetaItemKind::Word(ref word) = mi.node {
|
|
|
|
return word == expected;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
false
|
|
|
|
}
|