2016-03-19 11:48:29 -05:00
|
|
|
//! Checks for usage of `&Vec[_]` and `&String`.
|
2015-05-04 00:17:15 -05:00
|
|
|
|
2016-04-14 11:13:15 -05:00
|
|
|
use rustc::hir::*;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::map::NodeItem;
|
2016-02-24 10:38:57 -06:00
|
|
|
use rustc::lint::*;
|
2016-03-27 13:59:02 -05:00
|
|
|
use rustc::ty;
|
2016-03-01 13:38:21 -06:00
|
|
|
use syntax::ast::NodeId;
|
2016-08-22 11:29:29 -05:00
|
|
|
use utils::{match_path, match_type, paths, span_lint};
|
2015-05-04 00:17:15 -05:00
|
|
|
|
2016-08-22 11:29:29 -05:00
|
|
|
/// **What it does:** This lint checks for function arguments of type `&String` or `&Vec` unless
|
|
|
|
/// the references are mutable.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-22 11:29:29 -05:00
|
|
|
/// **Why is this bad?** Requiring the argument to be of the specific size makes the function less
|
|
|
|
/// useful for no benefit; slices in the form of `&[T]` or `&str` usually suffice and can be
|
|
|
|
/// obtained from other types, too.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// fn foo(&Vec<u32>) { .. }
|
|
|
|
/// ```
|
2015-05-04 00:17:15 -05:00
|
|
|
declare_lint! {
|
2015-05-04 01:15:24 -05:00
|
|
|
pub PTR_ARG,
|
2015-10-14 12:51:54 -05:00
|
|
|
Warn,
|
2016-08-22 11:29:29 -05:00
|
|
|
"fn arguments of the type `&Vec<...>` or `&String`, suggesting to use `&[...]` or `&str` \
|
|
|
|
instead, respectively"
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|
|
|
|
|
2016-08-22 11:29:29 -05:00
|
|
|
/// **What it does:** This lint checks for equality comparisons with `ptr::null`
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** It's easier and more readable to use the inherent `.is_null()`
|
|
|
|
/// method instead
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// if x == ptr::null { .. }
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub CMP_NULL,
|
|
|
|
Warn,
|
|
|
|
"comparing a pointer to a null pointer, suggesting to use `.is_null()` instead."
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-04 00:17:15 -05:00
|
|
|
#[derive(Copy,Clone)]
|
2016-08-22 11:29:29 -05:00
|
|
|
pub struct PointerPass;
|
2015-05-04 00:17:15 -05:00
|
|
|
|
2016-08-22 11:29:29 -05:00
|
|
|
impl LintPass for PointerPass {
|
2015-05-04 00:17:15 -05:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-08-22 11:29:29 -05:00
|
|
|
lint_array!(PTR_ARG, CMP_NULL)
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for PointerPass {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
|
2015-11-24 11:44:40 -06:00
|
|
|
if let ItemFn(ref decl, _, _, _, _, _) = item.node {
|
2016-03-01 13:38:21 -06:00
|
|
|
check_fn(cx, decl, item.id);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx ImplItem) {
|
2015-11-24 11:44:40 -06:00
|
|
|
if let ImplItemKind::Method(ref sig, _) = item.node {
|
2016-01-22 06:24:44 -06:00
|
|
|
if let Some(NodeItem(it)) = cx.tcx.map.find(cx.tcx.map.get_parent(item.id)) {
|
2015-10-30 18:48:05 -05:00
|
|
|
if let ItemImpl(_, _, _, Some(_), _, _) = it.node {
|
|
|
|
return; // ignore trait impls
|
|
|
|
}
|
|
|
|
}
|
2016-03-01 13:38:21 -06:00
|
|
|
check_fn(cx, &sig.decl, item.id);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx TraitItem) {
|
2015-11-24 11:44:40 -06:00
|
|
|
if let MethodTraitItem(ref sig, _) = item.node {
|
2016-03-01 13:38:21 -06:00
|
|
|
check_fn(cx, &sig.decl, item.id);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
2016-12-01 15:31:56 -06:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2016-08-22 11:29:29 -05:00
|
|
|
if let ExprBinary(ref op, ref l, ref r) = expr.node {
|
|
|
|
if (op.node == BiEq || op.node == BiNe) && (is_null_path(l) || is_null_path(r)) {
|
|
|
|
span_lint(cx,
|
|
|
|
CMP_NULL,
|
|
|
|
expr.span,
|
|
|
|
"Comparing with null is better expressed by the .is_null() method");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|
|
|
|
|
2016-03-01 13:38:21 -06:00
|
|
|
fn check_fn(cx: &LateContext, decl: &FnDecl, fn_id: NodeId) {
|
2016-11-16 14:57:56 -06:00
|
|
|
let fn_def_id = cx.tcx.map.local_def_id(fn_id);
|
|
|
|
let fn_ty = cx.tcx.item_type(fn_def_id).fn_sig().skip_binder();
|
2016-03-01 13:38:21 -06:00
|
|
|
|
2016-12-11 01:57:19 -06:00
|
|
|
for (arg, ty) in decl.inputs.iter().zip(fn_ty.inputs()) {
|
2016-03-01 13:38:21 -06:00
|
|
|
if let ty::TyRef(_, ty::TypeAndMut { ty, mutbl: MutImmutable }) = ty.sty {
|
2016-04-14 11:13:15 -05:00
|
|
|
if match_type(cx, ty, &paths::VEC) {
|
2016-03-01 13:38:21 -06:00
|
|
|
span_lint(cx,
|
|
|
|
PTR_ARG,
|
|
|
|
arg.ty.span,
|
|
|
|
"writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used \
|
|
|
|
with non-Vec-based slices. Consider changing the type to `&[...]`");
|
2016-04-14 11:13:15 -05:00
|
|
|
} else if match_type(cx, ty, &paths::STRING) {
|
2016-03-01 13:38:21 -06:00
|
|
|
span_lint(cx,
|
|
|
|
PTR_ARG,
|
|
|
|
arg.ty.span,
|
|
|
|
"writing `&String` instead of `&str` involves a new object where a slice will do. \
|
|
|
|
Consider changing the type to `&str`");
|
2015-08-21 11:28:17 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|
2016-08-22 11:29:29 -05:00
|
|
|
|
|
|
|
fn is_null_path(expr: &Expr) -> bool {
|
|
|
|
if let ExprCall(ref pathexp, ref args) = expr.node {
|
|
|
|
if args.is_empty() {
|
2016-12-01 15:31:56 -06:00
|
|
|
if let ExprPath(ref path) = pathexp.node {
|
2016-12-20 11:21:30 -06:00
|
|
|
return match_path(path, &paths::PTR_NULL) || match_path(path, &paths::PTR_NULL_MUT);
|
2016-08-22 11:29:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|