rust/clippy_lints/src/attrs.rs

252 lines
8.5 KiB
Rust
Raw Normal View History

//! checks for attributes
2015-05-30 15:10:19 +02:00
2016-02-24 17:38:57 +01:00
use reexport::*;
2015-05-30 15:10:19 +02:00
use rustc::lint::*;
use rustc::hir::*;
2016-01-09 02:05:43 +01:00
use semver::Version;
use syntax::ast::{Attribute, Lit, LitKind, MetaItemKind, NestedMetaItem, NestedMetaItemKind};
2016-02-24 17:38:57 +01:00
use syntax::codemap::Span;
use utils::{in_macro, match_def_path, resolve_node, paths, span_lint, span_lint_and_then, snippet_opt};
2015-05-30 15:10:19 +02:00
/// **What it does:** Checks for items annotated with `#[inline(always)]`,
/// unless the annotated function is empty or simply panics.
///
/// **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.
///
/// 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.
///
/// **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.
///
/// **Example:**
2016-07-16 00:25:44 +02:00
/// ```rust
/// #[inline(always)]
/// fn not_quite_hot_code(..) { ... }
/// ```
declare_lint! {
pub INLINE_ALWAYS,
Warn,
"use of `#[inline(always)]`"
}
2015-05-30 15:10:19 +02: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"
}
/// **What it does:** Checks for `#[deprecated]` annotations with a `since`
/// field that is not a valid semantic version.
2016-01-09 02:05:43 +01: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-09 02:05:43 +01:00
///
/// **Known problems:** None.
2016-01-09 02:05:43 +01:00
///
/// **Example:**
2016-07-16 00:25:44 +02:00
/// ```rust
2016-01-09 02:05:43 +01:00
/// #[deprecated(since = "forever")]
/// fn something_else(..) { ... }
/// ```
declare_lint! {
pub DEPRECATED_SEMVER,
Warn,
"use of `#[deprecated(since = \"x\")]` where x is not semver"
}
2015-05-30 15:10:19 +02:00
#[derive(Copy,Clone)]
pub struct AttrPass;
impl LintPass for AttrPass {
fn get_lints(&self) -> LintArray {
lint_array!(INLINE_ALWAYS, DEPRECATED_SEMVER, USELESS_ATTRIBUTE)
2015-05-30 15:10:19 +02:00
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for AttrPass {
fn check_attribute(&mut self, cx: &LateContext<'a, 'tcx>, attr: &'tcx Attribute) {
if let MetaItemKind::List(ref items) = attr.value.node {
if items.is_empty() || attr.name() != "deprecated" {
2016-01-09 02:05:43 +01:00
return;
}
2016-08-01 16:59:14 +02:00
for item in items {
if_let_chain! {[
let NestedMetaItemKind::MetaItem(ref mi) = item.node,
let MetaItemKind::NameValue(ref lit) = mi.node,
mi.name() == "since",
], {
check_semver(cx, item.span, lit);
}}
2016-01-30 13:48:39 +01:00
}
2016-01-09 02:05:43 +01:00
}
}
2016-01-30 13:48:39 +01:00
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
if is_relevant_item(cx, item) {
check_attrs(cx, item.span, &item.name, &item.attrs)
}
match item.node {
ItemExternCrate(_) |
ItemUse(_, _) => {
for attr in &item.attrs {
if let MetaItemKind::List(ref lint_list) = attr.value.node {
match &*attr.name().as_str() {
"allow" | "warn" | "deny" | "forbid" => {
// whitelist `unused_imports`
for lint in lint_list {
if is_word(lint, "unused_imports") {
if let ItemUse(_, _) = item.node {
return;
}
}
}
if let Some(mut sugg) = snippet_opt(cx, attr.span) {
if sugg.len() > 1 {
2016-12-20 18:21:30 +01:00
span_lint_and_then(cx,
USELESS_ATTRIBUTE,
attr.span,
"useless lint attribute",
|db| {
2016-12-20 18:21:30 +01:00
sugg.insert(1, '!');
db.span_suggestion(attr.span,
"if you just forgot a `!`, use",
sugg);
});
}
}
},
_ => {},
}
}
}
},
_ => {},
}
}
fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx ImplItem) {
if is_relevant_impl(cx, item) {
check_attrs(cx, item.span, &item.name, &item.attrs)
}
}
fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx TraitItem) {
if is_relevant_trait(cx, item) {
check_attrs(cx, item.span, &item.name, &item.attrs)
}
}
}
fn is_relevant_item(cx: &LateContext, item: &Item) -> bool {
if let ItemFn(_, _, _, _, _, eid) = item.node {
is_relevant_expr(cx, cx.tcx.map.expr(eid))
2016-01-04 05:26:12 +01:00
} else {
false
}
}
fn is_relevant_impl(cx: &LateContext, item: &ImplItem) -> bool {
match item.node {
ImplItemKind::Method(_, eid) => is_relevant_expr(cx, cx.tcx.map.expr(eid)),
2016-01-04 05:26:12 +01:00
_ => false,
}
}
fn is_relevant_trait(cx: &LateContext, item: &TraitItem) -> bool {
match item.node {
MethodTraitItem(_, None) => true,
MethodTraitItem(_, Some(eid)) => is_relevant_expr(cx, cx.tcx.map.expr(eid)),
2016-01-04 05:26:12 +01:00
_ => false,
}
}
fn is_relevant_block(cx: &LateContext, block: &Block) -> bool {
for stmt in &block.stmts {
match stmt.node {
StmtDecl(_, _) => return true,
2016-04-14 20:14:03 +02:00
StmtExpr(ref expr, _) |
StmtSemi(ref expr, _) => {
return is_relevant_expr(cx, expr);
2016-12-20 18:21:30 +01:00
},
}
}
block.expr.as_ref().map_or(false, |e| is_relevant_expr(cx, e))
}
fn is_relevant_expr(cx: &LateContext, expr: &Expr) -> bool {
match expr.node {
ExprBlock(ref block) => is_relevant_block(cx, block),
ExprRet(Some(ref e)) => is_relevant_expr(cx, e),
2016-12-20 18:21:30 +01:00
ExprRet(None) |
ExprBreak(_, None) => false,
ExprCall(ref path_expr, _) => {
if let ExprPath(ref qpath) = path_expr.node {
let fun_id = resolve_node(cx, qpath, path_expr.id).def_id();
!match_def_path(cx, fun_id, &paths::BEGIN_PANIC)
2016-01-04 05:26:12 +01:00
} else {
true
}
2016-12-20 18:21:30 +01:00
},
2016-01-04 05:26:12 +01:00
_ => true,
}
2015-05-30 15:10:19 +02:00
}
2016-01-04 05:26:12 +01:00
fn check_attrs(cx: &LateContext, span: Span, name: &Name, attrs: &[Attribute]) {
if in_macro(cx, span) {
return;
}
for attr in attrs {
if let MetaItemKind::List(ref values) = attr.value.node {
if values.len() != 1 || attr.name() != "inline" {
2016-01-04 05:26:12 +01:00
continue;
}
if is_word(&values[0], "always") {
2016-01-04 05:26:12 +01:00
span_lint(cx,
INLINE_ALWAYS,
attr.span,
&format!("you have declared `#[inline(always)]` on `{}`. This is usually a bad idea",
name));
}
}
}
2015-05-30 15:10:19 +02:00
}
2016-01-09 02:05:43 +01:00
fn check_semver(cx: &LateContext, span: Span, lit: &Lit) {
2016-02-12 18:35:44 +01:00
if let LitKind::Str(ref is, _) = lit.node {
if Version::parse(&*is.as_str()).is_ok() {
2016-01-09 02:05:43 +01:00
return;
}
}
2016-01-30 13:48:39 +01:00
span_lint(cx,
2016-01-09 02:05:43 +01:00
DEPRECATED_SEMVER,
span,
"the since field must contain a semver-compliant version");
}
fn is_word(nmi: &NestedMetaItem, expected: &str) -> bool {
if let NestedMetaItemKind::MetaItem(ref mi) = nmi.node {
mi.is_word() && mi.name() == expected
} else {
false
}
}