2016-01-28 18:54:10 -06:00
|
|
|
use rustc::lint::*;
|
2016-03-27 13:59:02 -05:00
|
|
|
use rustc::ty::TypeVariants;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2016-01-28 18:54:10 -06:00
|
|
|
use syntax::codemap::Span;
|
|
|
|
use syntax::ptr::P;
|
2016-04-14 11:13:15 -05:00
|
|
|
use utils::{is_expn_of, match_path, paths, recover_for_loop, snippet, span_lint_and_then};
|
2016-01-28 18:54:10 -06:00
|
|
|
|
|
|
|
/// **What it does:** This lint warns about using `&vec![..]` when using `&[..]` would be possible.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** This is less efficient.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-01-29 15:49:48 -06:00
|
|
|
/// ```rust,ignore
|
2016-01-28 18:54:10 -06:00
|
|
|
/// foo(&vec![1, 2])
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub USELESS_VEC,
|
|
|
|
Warn,
|
|
|
|
"useless `vec!`"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub struct UselessVec;
|
|
|
|
|
|
|
|
impl LintPass for UselessVec {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(USELESS_VEC)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LateLintPass for UselessVec {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
|
2016-03-03 13:09:31 -06:00
|
|
|
// search for `&vec![_]` expressions where the adjusted type is `&[_]`
|
2016-01-28 18:54:10 -06:00
|
|
|
if_let_chain!{[
|
|
|
|
let TypeVariants::TyRef(_, ref ty) = cx.tcx.expr_ty_adjusted(expr).sty,
|
|
|
|
let TypeVariants::TySlice(..) = ty.ty.sty,
|
|
|
|
let ExprAddrOf(_, ref addressee) = expr.node,
|
|
|
|
], {
|
2016-05-20 12:18:32 -05:00
|
|
|
check_vec_macro(cx, addressee, expr.span);
|
2016-03-28 16:32:55 -05:00
|
|
|
}}
|
|
|
|
|
|
|
|
// search for `for _ in vec![…]`
|
|
|
|
if let Some((_, arg, _)) = recover_for_loop(expr) {
|
2016-05-20 12:18:32 -05:00
|
|
|
// report the error around the `vec!` not inside `<std macros>:`
|
|
|
|
let span = cx.sess().codemap().source_callsite(arg.span);
|
|
|
|
check_vec_macro(cx, arg, span);
|
2016-03-28 16:32:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-20 12:18:32 -05:00
|
|
|
fn check_vec_macro(cx: &LateContext, vec: &Expr, span: Span) {
|
2016-03-28 16:32:55 -05:00
|
|
|
if let Some(vec_args) = unexpand_vec(cx, vec) {
|
|
|
|
let snippet = match vec_args {
|
|
|
|
VecArgs::Repeat(elem, len) => {
|
|
|
|
format!("&[{}; {}]", snippet(cx, elem.span, "elem"), snippet(cx, len.span, "len")).into()
|
|
|
|
}
|
|
|
|
VecArgs::Vec(args) => {
|
|
|
|
if let Some(last) = args.iter().last() {
|
|
|
|
let span = Span {
|
|
|
|
lo: args[0].span.lo,
|
|
|
|
hi: last.span.hi,
|
|
|
|
expn_id: args[0].span.expn_id,
|
|
|
|
};
|
2016-01-28 18:54:10 -06:00
|
|
|
|
2016-03-28 16:32:55 -05:00
|
|
|
format!("&[{}]", snippet(cx, span, "..")).into()
|
2016-04-14 13:14:03 -05:00
|
|
|
} else {
|
2016-03-28 16:32:55 -05:00
|
|
|
"&[]".into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2016-01-28 18:54:10 -06:00
|
|
|
|
2016-05-20 12:18:32 -05:00
|
|
|
span_lint_and_then(cx, USELESS_VEC, span, "useless use of `vec!`", |db| {
|
|
|
|
db.span_suggestion(span, "you can use a slice directly", snippet);
|
2016-03-28 16:32:55 -05:00
|
|
|
});
|
2016-01-28 18:54:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Represent the pre-expansion arguments of a `vec!` invocation.
|
|
|
|
pub enum VecArgs<'a> {
|
2016-03-03 13:09:31 -06:00
|
|
|
/// `vec![elem; len]`
|
2016-01-28 18:54:10 -06:00
|
|
|
Repeat(&'a P<Expr>, &'a P<Expr>),
|
|
|
|
/// `vec![a, b, c]`
|
|
|
|
Vec(&'a [P<Expr>]),
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the arguments of the `vec!` macro if this expression was expanded from `vec!`.
|
|
|
|
pub fn unexpand_vec<'e>(cx: &LateContext, expr: &'e Expr) -> Option<VecArgs<'e>> {
|
|
|
|
if_let_chain!{[
|
|
|
|
let ExprCall(ref fun, ref args) = expr.node,
|
|
|
|
let ExprPath(_, ref path) = fun.node,
|
|
|
|
is_expn_of(cx, fun.span, "vec").is_some()
|
|
|
|
], {
|
2016-04-14 11:13:15 -05:00
|
|
|
return if match_path(path, &paths::VEC_FROM_ELEM) && args.len() == 2 {
|
2016-01-28 18:54:10 -06:00
|
|
|
// `vec![elem; size]` case
|
|
|
|
Some(VecArgs::Repeat(&args[0], &args[1]))
|
|
|
|
}
|
|
|
|
else if match_path(path, &["into_vec"]) && args.len() == 1 {
|
|
|
|
// `vec![a, b, c]` case
|
|
|
|
if_let_chain!{[
|
2016-03-03 13:09:31 -06:00
|
|
|
let ExprBox(ref boxed) = args[0].node,
|
|
|
|
let ExprVec(ref args) = boxed.node
|
2016-01-28 18:54:10 -06:00
|
|
|
], {
|
|
|
|
return Some(VecArgs::Vec(&*args));
|
|
|
|
}}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
}}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|