rust-clippy/clippy_lints/src/vec.rs

99 lines
3 KiB
Rust
Raw Normal View History

use rustc::hir::*;
use rustc::lint::*;
use rustc::ty::{self, Ty};
2017-01-13 16:04:56 +00:00
use rustc_const_eval::ConstContext;
use syntax::codemap::Span;
2017-06-21 18:04:04 +00:00
use utils::{higher, is_copy, snippet, span_lint_and_sugg};
/// **What it does:** Checks for usage of `&vec![..]` when using `&[..]` would
/// be possible.
///
/// **Why is this bad?** This is less efficient.
///
/// **Known problems:** None.
///
/// **Example:**
2016-01-29 21:49:48 +00:00
/// ```rust,ignore
/// foo(&vec![1, 2])
/// ```
declare_lint! {
pub USELESS_VEC,
Warn,
"useless `vec!`"
}
#[derive(Copy, Clone, Debug)]
2016-06-10 14:17:20 +00:00
pub struct Pass;
2016-06-10 14:17:20 +00:00
impl LintPass for Pass {
fn get_lints(&self) -> LintArray {
lint_array!(USELESS_VEC)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
2016-03-03 19:09:31 +00:00
// search for `&vec![_]` expressions where the adjusted type is `&[_]`
if_let_chain!{[
let ty::TyRef(_, ref ty) = cx.tables.expr_ty_adjusted(expr).sty,
let ty::TySlice(..) = ty.ty.sty,
let ExprAddrOf(_, ref addressee) = expr.node,
let Some(vec_args) = higher::vec_macro(cx, addressee),
], {
check_vec_macro(cx, &vec_args, expr.span);
}}
// search for `for _ in vec![…]`
if_let_chain!{[
let Some((_, arg, _)) = higher::for_loop(expr),
let Some(vec_args) = higher::vec_macro(cx, arg),
is_copy(cx, vec_type(cx.tables.expr_ty_adjusted(arg))),
], {
// report the error around the `vec!` not inside `<std macros>:`
let span = arg.span.ctxt.outer().expn_info().map(|info| info.call_site).expect("unable to get call_site");
check_vec_macro(cx, &vec_args, span);
}}
}
}
fn check_vec_macro(cx: &LateContext, vec_args: &higher::VecArgs, span: Span) {
let snippet = match *vec_args {
higher::VecArgs::Repeat(elem, len) => {
if ConstContext::with_tables(cx.tcx, cx.tables).eval(len).is_ok() {
format!("&[{}; {}]", snippet(cx, elem.span, "elem"), snippet(cx, len.span, "len")).into()
} else {
return;
}
2016-12-20 17:21:30 +00:00
},
higher::VecArgs::Vec(args) => {
if let Some(last) = args.iter().last() {
let span = Span {
lo: args[0].span.lo,
hi: last.span.hi,
ctxt: args[0].span.ctxt,
};
format!("&[{}]", snippet(cx, span, "..")).into()
} else {
"&[]".into()
}
2016-12-20 17:21:30 +00:00
},
};
2017-06-21 18:04:04 +00:00
span_lint_and_sugg(cx,
2017-01-17 18:30:32 +00:00
USELESS_VEC,
span,
"useless use of `vec!`",
2017-06-21 18:04:04 +00:00
"you can use a slice directly",
snippet);
}
/// Return the item type of the vector (ie. the `T` in `Vec<T>`).
fn vec_type(ty: Ty) -> Ty {
if let ty::TyAdt(_, substs) = ty.sty {
substs.type_at(0)
} else {
panic!("The type of `vec!` is a not a struct?");
}
}