rust/clippy_lints/src/entry.rs

172 lines
5.9 KiB
Rust
Raw Normal View History

2019-05-14 03:06:21 -05:00
use crate::utils::SpanlessEq;
2019-05-10 21:34:47 -05:00
use crate::utils::{get_item_name, higher, match_type, paths, snippet, span_lint_and_then, walk_ptrs_ty};
2018-11-27 14:14:15 -06:00
use if_chain::if_chain;
use rustc::hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
use rustc::hir::*;
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
2019-04-08 15:43:55 -05:00
use rustc::{declare_lint_pass, declare_tool_lint};
use rustc_errors::Applicability;
use syntax::source_map::Span;
2015-12-21 17:35:56 -06:00
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **What it does:** Checks for uses of `contains_key` + `insert` on `HashMap`
/// or `BTreeMap`.
///
/// **Why is this bad?** Using `entry` is more efficient.
///
/// **Known problems:** Some false negatives, eg.:
/// ```rust
/// let k = &key;
/// if !m.contains_key(k) {
/// m.insert(k.clone(), v);
/// }
/// ```
///
/// **Example:**
/// ```rust
/// if !m.contains_key(&k) {
/// m.insert(k, v)
/// }
/// ```
/// can be rewritten as:
/// ```rust
/// m.entry(k).or_insert(v);
/// ```
pub MAP_ENTRY,
2018-03-28 08:24:26 -05:00
perf,
"use of `contains_key` followed by `insert` on a `HashMap` or `BTreeMap`"
2015-12-21 17:35:56 -06:00
}
2019-04-08 15:43:55 -05:00
declare_lint_pass!(HashMapPass => [MAP_ENTRY]);
2015-12-21 17:35:56 -06:00
2019-04-08 15:43:55 -05:00
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for HashMapPass {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
2019-05-10 21:34:47 -05:00
if let Some((ref check, ref then_block, ref else_block)) = higher::if_block(&expr) {
2018-07-12 02:30:57 -05:00
if let ExprKind::Unary(UnOp::UnNot, ref check) = check.node {
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 04:06:32 -05:00
let sole_expr = {
2018-11-27 14:14:15 -06:00
else_block.is_none()
&& if let ExprKind::Block(ref then_block, _) = then_block.node {
(then_block.expr.is_some() as usize) + then_block.stmts.len() == 1
} else {
true
}
};
let mut visitor = InsertVisitor {
cx,
span: expr.span,
ty,
map,
key,
sole_expr,
};
2016-01-03 09:31:28 -06:00
walk_expr(&mut visitor, &**then_block);
}
} else if let Some(ref else_block) = *else_block {
if let Some((ty, map, key)) = check_cond(cx, check) {
let mut visitor = InsertVisitor {
cx,
span: expr.span,
ty,
map,
key,
sole_expr: false,
};
walk_expr(&mut visitor, else_block);
2015-12-21 17:35:56 -06:00
}
}
}
}
}
fn check_cond<'a, 'tcx, 'b>(
cx: &'a LateContext<'a, 'tcx>,
2017-08-09 02:30:56 -05:00
check: &'b Expr,
) -> Option<(&'static str, &'b Expr, &'b Expr)> {
if_chain! {
2018-07-12 02:30:57 -05:00
if let ExprKind::MethodCall(ref path, _, ref params) = check.node;
if params.len() >= 2;
2019-05-17 16:53:54 -05:00
if path.ident.name == sym!(contains_key);
2018-07-12 02:30:57 -05:00
if let ExprKind::AddrOf(_, ref key) = params[1].node;
then {
let map = &params[0];
let obj_ty = walk_ptrs_ty(cx.tables.expr_ty(map));
2017-11-04 14:55:56 -05:00
2019-05-17 16:53:54 -05:00
return if match_type(cx, obj_ty, &paths::BTREEMAP) {
Some(("BTreeMap", map, key))
}
2019-05-17 16:53:54 -05:00
else if match_type(cx, obj_ty, &paths::HASHMAP) {
Some(("HashMap", map, key))
}
else {
None
};
}
}
None
}
struct InsertVisitor<'a, 'tcx, 'b> {
cx: &'a LateContext<'a, 'tcx>,
span: Span,
ty: &'static str,
map: &'b Expr,
key: &'b Expr,
sole_expr: bool,
}
impl<'a, 'tcx, 'b> Visitor<'tcx> for InsertVisitor<'a, 'tcx, 'b> {
fn visit_expr(&mut self, expr: &'tcx Expr) {
if_chain! {
2018-07-12 02:30:57 -05:00
if let ExprKind::MethodCall(ref path, _, ref params) = expr.node;
if params.len() == 3;
2019-05-17 16:53:54 -05:00
if path.ident.name == sym!(insert);
if get_item_name(self.cx, self.map) == get_item_name(self.cx, &params[0]);
if SpanlessEq::new(self.cx).eq_expr(self.key, &params[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-04 14:55:56 -05:00
db.span_suggestion(
2018-09-18 10:07:54 -05:00
self.span,
"consider using",
help,
Applicability::MachineApplicable, // snippet
2018-09-18 10:07:54 -05:00
);
}
else {
let help = format!("{}.entry({})",
snippet(self.cx, self.map.span, "map"),
snippet(self.cx, params[1].span, ".."));
2017-11-04 14:55:56 -05:00
db.span_suggestion(
2018-09-18 10:07:54 -05:00
self.span,
"consider using",
help,
Applicability::MachineApplicable, // snippet
2018-09-18 10:07:54 -05:00
);
}
});
}
}
if !self.sole_expr {
walk_expr(self, expr);
2015-12-21 17:35:56 -06:00
}
}
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
NestedVisitorMap::None
}
2015-12-21 17:35:56 -06:00
}