2016-04-07 17:46:48 +02:00
|
|
|
use rustc::hir::*;
|
2017-09-05 11:33:04 +02:00
|
|
|
use rustc::hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
|
2016-04-14 18:13:15 +02:00
|
|
|
use rustc::lint::*;
|
2018-07-19 00:53:23 -07:00
|
|
|
use rustc::{declare_lint, lint_array};
|
2018-07-19 01:00:54 -07:00
|
|
|
use if_chain::if_chain;
|
2015-12-22 00:35:56 +01:00
|
|
|
use syntax::codemap::Span;
|
2018-05-30 10:15:50 +02:00
|
|
|
use crate::utils::SpanlessEq;
|
|
|
|
use crate::utils::{get_item_name, match_type, paths, snippet, span_lint_and_then, walk_ptrs_ty};
|
2015-12-22 00:35:56 +01:00
|
|
|
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **What it does:** Checks for uses of `contains_key` + `insert` on `HashMap`
|
|
|
|
/// or `BTreeMap`.
|
2015-12-22 00:35:56 +01:00
|
|
|
///
|
2016-01-12 20:23:28 +01:00
|
|
|
/// **Why is this bad?** Using `entry` is more efficient.
|
2015-12-22 00:35:56 +01:00
|
|
|
///
|
2016-01-03 16:31:28 +01:00
|
|
|
/// **Known problems:** Some false negatives, eg.:
|
2016-07-29 20:36:33 +02:00
|
|
|
/// ```rust
|
2016-01-03 16:31:28 +01:00
|
|
|
/// let k = &key;
|
|
|
|
/// if !m.contains_key(k) { m.insert(k.clone(), v); }
|
|
|
|
/// ```
|
2015-12-22 00:35:56 +01:00
|
|
|
///
|
2016-01-03 17:19:49 +01:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// if !m.contains_key(&k) { m.insert(k, v) }
|
|
|
|
/// ```
|
|
|
|
/// can be rewritten as:
|
|
|
|
/// ```rust
|
|
|
|
/// m.entry(k).or_insert(v);
|
|
|
|
/// ```
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2016-01-12 20:23:28 +01:00
|
|
|
pub MAP_ENTRY,
|
2018-03-28 15:24:26 +02:00
|
|
|
perf,
|
2016-01-12 20:23:28 +01:00
|
|
|
"use of `contains_key` followed by `insert` on a `HashMap` or `BTreeMap`"
|
2015-12-22 00:35:56 +01:00
|
|
|
}
|
|
|
|
|
2017-08-09 09:30:56 +02:00
|
|
|
#[derive(Copy, Clone)]
|
2015-12-22 00:35:56 +01:00
|
|
|
pub struct HashMapLint;
|
|
|
|
|
|
|
|
impl LintPass for HashMapLint {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-01-12 20:23:28 +01:00
|
|
|
lint_array!(MAP_ENTRY)
|
2015-12-22 00:35:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 13:13:40 +01:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for HashMapLint {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2018-07-12 15:30:57 +08:00
|
|
|
if let ExprKind::If(ref check, ref then_block, ref else_block) = expr.node {
|
|
|
|
if let ExprKind::Unary(UnOp::UnNot, ref check) = check.node {
|
2016-02-18 20:19:16 +01:00
|
|
|
if let Some((ty, map, key)) = check_cond(cx, check) {
|
|
|
|
// in case of `if !m.contains_key(&k) { m.insert(k, v); }`
|
|
|
|
// we can give a better error message
|
2017-04-12 11:06:32 +02:00
|
|
|
let sole_expr = {
|
2018-07-12 15:30:57 +08:00
|
|
|
else_block.is_none() && if let ExprKind::Block(ref then_block, _) = then_block.node {
|
2017-09-05 11:33:04 +02:00
|
|
|
(then_block.expr.is_some() as usize) + then_block.stmts.len() == 1
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
2017-03-31 23:36:45 +02:00
|
|
|
};
|
2016-01-03 17:19:49 +01:00
|
|
|
|
2016-02-18 20:19:16 +01:00
|
|
|
let mut visitor = InsertVisitor {
|
2018-03-15 16:07:15 +01:00
|
|
|
cx,
|
2016-02-18 20:19:16 +01:00
|
|
|
span: expr.span,
|
2018-03-15 16:07:15 +01:00
|
|
|
ty,
|
|
|
|
map,
|
|
|
|
key,
|
|
|
|
sole_expr,
|
2016-02-18 20:19:16 +01:00
|
|
|
};
|
2016-01-03 16:31:28 +01:00
|
|
|
|
2017-03-31 19:23:35 +02:00
|
|
|
walk_expr(&mut visitor, &**then_block);
|
2016-01-12 20:23:28 +01:00
|
|
|
}
|
2016-02-18 20:19:16 +01:00
|
|
|
} else if let Some(ref else_block) = *else_block {
|
|
|
|
if let Some((ty, map, key)) = check_cond(cx, check) {
|
|
|
|
let mut visitor = InsertVisitor {
|
2018-03-15 16:07:15 +01:00
|
|
|
cx,
|
2016-02-18 20:19:16 +01:00
|
|
|
span: expr.span,
|
2018-03-15 16:07:15 +01:00
|
|
|
ty,
|
|
|
|
map,
|
|
|
|
key,
|
2016-02-18 20:19:16 +01:00
|
|
|
sole_expr: false,
|
|
|
|
};
|
2016-01-12 20:23:28 +01:00
|
|
|
|
2016-02-18 20:19:16 +01:00
|
|
|
walk_expr(&mut visitor, else_block);
|
2015-12-22 00:35:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-21 12:14:54 +01:00
|
|
|
fn check_cond<'a, 'tcx, 'b>(
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
2017-08-09 09:30:56 +02:00
|
|
|
check: &'b Expr,
|
2016-12-21 12:14:54 +01:00
|
|
|
) -> Option<(&'static str, &'b Expr, &'b Expr)> {
|
2017-10-23 15:18:02 -04:00
|
|
|
if_chain! {
|
2018-07-12 15:30:57 +08:00
|
|
|
if let ExprKind::MethodCall(ref path, _, ref params) = check.node;
|
2017-10-23 15:18:02 -04:00
|
|
|
if params.len() >= 2;
|
2018-06-28 15:46:58 +02:00
|
|
|
if path.ident.name == "contains_key";
|
2018-07-12 15:30:57 +08:00
|
|
|
if let ExprKind::AddrOf(_, ref key) = params[1].node;
|
2017-10-23 15:18:02 -04:00
|
|
|
then {
|
|
|
|
let map = ¶ms[0];
|
|
|
|
let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(map));
|
2017-11-05 04:55:56 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
return if match_type(cx, obj_ty, &paths::BTREEMAP) {
|
|
|
|
Some(("BTreeMap", map, key))
|
|
|
|
}
|
|
|
|
else if match_type(cx, obj_ty, &paths::HASHMAP) {
|
|
|
|
Some(("HashMap", map, key))
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
None
|
|
|
|
};
|
2016-02-18 20:19:16 +01:00
|
|
|
}
|
2017-10-23 15:18:02 -04:00
|
|
|
}
|
2016-02-18 20:19:16 +01:00
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
struct InsertVisitor<'a, 'tcx: 'a, 'b> {
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
|
|
|
span: Span,
|
|
|
|
ty: &'static str,
|
|
|
|
map: &'b Expr,
|
|
|
|
key: &'b Expr,
|
|
|
|
sole_expr: bool,
|
|
|
|
}
|
|
|
|
|
2016-12-06 11:32:21 +01:00
|
|
|
impl<'a, 'tcx, 'b> Visitor<'tcx> for InsertVisitor<'a, 'tcx, 'b> {
|
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr) {
|
2017-10-23 15:18:02 -04:00
|
|
|
if_chain! {
|
2018-07-12 15:30:57 +08:00
|
|
|
if let ExprKind::MethodCall(ref path, _, ref params) = expr.node;
|
2017-10-23 15:18:02 -04:00
|
|
|
if params.len() == 3;
|
2018-06-28 15:46:58 +02:00
|
|
|
if path.ident.name == "insert";
|
2017-10-23 15:18:02 -04:00
|
|
|
if get_item_name(self.cx, self.map) == get_item_name(self.cx, ¶ms[0]);
|
|
|
|
if SpanlessEq::new(self.cx).eq_expr(self.key, ¶ms[1]);
|
|
|
|
then {
|
|
|
|
span_lint_and_then(self.cx, MAP_ENTRY, self.span,
|
|
|
|
&format!("usage of `contains_key` followed by `insert` on a `{}`", self.ty), |db| {
|
|
|
|
if self.sole_expr {
|
|
|
|
let help = format!("{}.entry({}).or_insert({})",
|
|
|
|
snippet(self.cx, self.map.span, "map"),
|
|
|
|
snippet(self.cx, params[1].span, ".."),
|
|
|
|
snippet(self.cx, params[2].span, ".."));
|
2017-11-05 04:55:56 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
db.span_suggestion(self.span, "consider using", help);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
let help = format!("{}.entry({})",
|
|
|
|
snippet(self.cx, self.map.span, "map"),
|
|
|
|
snippet(self.cx, params[1].span, ".."));
|
2017-11-05 04:55:56 +09:00
|
|
|
|
2017-10-23 15:18:02 -04:00
|
|
|
db.span_suggestion(self.span, "consider using", help);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2016-02-18 20:19:16 +01:00
|
|
|
|
|
|
|
if !self.sole_expr {
|
|
|
|
walk_expr(self, expr);
|
2015-12-22 00:35:56 +01:00
|
|
|
}
|
|
|
|
}
|
2016-12-06 11:32:21 +01:00
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
2017-05-12 12:02:42 +02:00
|
|
|
NestedVisitorMap::None
|
2016-12-06 11:32:21 +01:00
|
|
|
}
|
2015-12-22 00:35:56 +01:00
|
|
|
}
|