2016-03-19 16:48:29 +00:00
|
|
|
//! Checks for usage of `&Vec[_]` and `&String`.
|
2015-05-04 05:17:15 +00:00
|
|
|
|
2017-09-20 21:59:23 +00:00
|
|
|
use std::borrow::Cow;
|
2016-04-14 16:13:15 +00:00
|
|
|
use rustc::hir::*;
|
2016-04-07 15:46:48 +00:00
|
|
|
use rustc::hir::map::NodeItem;
|
2016-02-24 16:38:57 +00:00
|
|
|
use rustc::lint::*;
|
2016-03-27 18:59:02 +00:00
|
|
|
use rustc::ty;
|
2017-10-08 08:51:44 +00:00
|
|
|
use syntax::ast::NodeId;
|
2017-02-12 12:53:30 +00:00
|
|
|
use syntax::codemap::Span;
|
|
|
|
use syntax_pos::MultiSpan;
|
2017-11-04 19:55:56 +00:00
|
|
|
use utils::{match_qpath, match_type, paths, snippet_opt, span_lint, span_lint_and_then, walk_ptrs_hir_ty};
|
2017-10-08 08:51:44 +00:00
|
|
|
use utils::ptr::get_spans;
|
2015-05-04 05:17:15 +00:00
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **What it does:** This lint checks for function arguments of type `&String`
|
2017-09-16 07:10:26 +00:00
|
|
|
/// or `&Vec` unless the references are mutable. It will also suggest you
|
|
|
|
/// replace `.clone()` calls with the appropriate `.to_owned()`/`to_string()`
|
|
|
|
/// calls.
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **Why is this bad?** Requiring the argument to be of the specific size
|
2017-09-16 07:10:26 +00:00
|
|
|
/// 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-11 00:22:27 +00:00
|
|
|
///
|
2017-09-16 07:10:26 +00:00
|
|
|
/// **Known problems:** The lint does not follow data. So if you have an
|
|
|
|
/// argument `x` and write `let y = x; y.clone()` the lint will not suggest
|
|
|
|
/// changing that `.clone()` to `.to_owned()`.
|
|
|
|
///
|
|
|
|
/// Other functions called from this function taking a `&String` or `&Vec`
|
|
|
|
/// argument may also fail to compile if you change the argument. Applying
|
|
|
|
/// this lint on them will fix the problem, but they may be in other crates.
|
|
|
|
///
|
|
|
|
/// Also there may be `fn(&Vec)`-typed references pointing to your function.
|
|
|
|
/// If you have them, you will get a compiler error after applying this lint's
|
|
|
|
/// suggestions. You then have the choice to undo your changes or change the
|
|
|
|
/// type of the reference.
|
|
|
|
///
|
|
|
|
/// Note that if the function is part of your public interface, there may be
|
|
|
|
/// other crates referencing it you may not be aware. Carefully deprecate the
|
|
|
|
/// function before applying the lint suggestions in this case.
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
2016-07-15 22:25:44 +00:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// fn foo(&Vec<u32>) { .. }
|
|
|
|
/// ```
|
2015-05-04 05:17:15 +00:00
|
|
|
declare_lint! {
|
2015-05-04 06:15:24 +00:00
|
|
|
pub PTR_ARG,
|
2015-10-14 17:51:54 +00:00
|
|
|
Warn,
|
2016-08-22 16:29:29 +00:00
|
|
|
"fn arguments of the type `&Vec<...>` or `&String`, suggesting to use `&[...]` or `&str` \
|
|
|
|
instead, respectively"
|
2015-05-04 05:17:15 +00:00
|
|
|
}
|
|
|
|
|
2016-08-22 16:29:29 +00:00
|
|
|
/// **What it does:** This lint checks for equality comparisons with `ptr::null`
|
|
|
|
///
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **Why is this bad?** It's easier and more readable to use the inherent
|
|
|
|
/// `.is_null()`
|
2016-08-22 16:29:29 +00:00
|
|
|
/// 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."
|
|
|
|
}
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **What it does:** This lint checks for functions that take immutable
|
|
|
|
/// references and return
|
2017-02-10 18:39:03 +00:00
|
|
|
/// mutable ones.
|
|
|
|
///
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **Why is this bad?** This is trivially unsound, as one can create two
|
|
|
|
/// mutable references
|
|
|
|
/// from the same (immutable!) source. This
|
|
|
|
/// [error](https://github.com/rust-lang/rust/issues/39465)
|
2017-02-10 23:32:12 +00:00
|
|
|
/// actually lead to an interim Rust release 1.15.1.
|
2017-02-10 18:39:03 +00:00
|
|
|
///
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **Known problems:** To be on the conservative side, if there's at least one
|
|
|
|
/// mutable reference
|
|
|
|
/// with the output lifetime, this lint will not trigger. In practice, this
|
|
|
|
/// case is unlikely anyway.
|
2017-02-10 18:39:03 +00:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// fn foo(&Foo) -> &mut Bar { .. }
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub MUT_FROM_REF,
|
|
|
|
Warn,
|
|
|
|
"fns that create mutable refs from immutable ref args"
|
|
|
|
}
|
2016-08-22 16:29:29 +00:00
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2016-08-22 16:29:29 +00:00
|
|
|
pub struct PointerPass;
|
2015-05-04 05:17:15 +00:00
|
|
|
|
2016-08-22 16:29:29 +00:00
|
|
|
impl LintPass for PointerPass {
|
2015-05-04 05:17:15 +00:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2017-02-10 18:39:03 +00:00
|
|
|
lint_array!(PTR_ARG, CMP_NULL, MUT_FROM_REF)
|
2015-05-04 05:17:15 +00:00
|
|
|
}
|
2015-09-19 02:53:04 +00:00
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for PointerPass {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
|
2017-09-16 07:10:26 +00:00
|
|
|
if let ItemFn(ref decl, _, _, _, _, body_id) = item.node {
|
|
|
|
check_fn(cx, decl, item.id, Some(body_id));
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx ImplItem) {
|
2017-09-16 07:10:26 +00:00
|
|
|
if let ImplItemKind::Method(ref sig, body_id) = item.node {
|
2017-02-02 16:53:28 +00:00
|
|
|
if let Some(NodeItem(it)) = cx.tcx.hir.find(cx.tcx.hir.get_parent(item.id)) {
|
2017-04-28 11:00:42 +00:00
|
|
|
if let ItemImpl(_, _, _, _, Some(_), _, _) = it.node {
|
2015-10-30 23:48:05 +00:00
|
|
|
return; // ignore trait impls
|
|
|
|
}
|
|
|
|
}
|
2017-09-16 07:10:26 +00:00
|
|
|
check_fn(cx, &sig.decl, item.id, Some(body_id));
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx TraitItem) {
|
2017-09-16 07:10:26 +00:00
|
|
|
if let TraitItemKind::Method(ref sig, ref trait_method) = item.node {
|
2017-11-04 19:55:56 +00:00
|
|
|
let body_id = if let TraitMethod::Provided(b) = *trait_method {
|
|
|
|
Some(b)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2017-09-16 07:10:26 +00:00
|
|
|
check_fn(cx, &sig.decl, item.id, body_id);
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-01 21:31:56 +00:00
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2016-08-22 16:29:29 +00: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)) {
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
CMP_NULL,
|
|
|
|
expr.span,
|
|
|
|
"Comparing with null is better expressed by the .is_null() method",
|
|
|
|
);
|
2016-08-22 16:29:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-04 05:17:15 +00:00
|
|
|
}
|
|
|
|
|
2017-09-16 07:10:26 +00:00
|
|
|
fn check_fn(cx: &LateContext, decl: &FnDecl, fn_id: NodeId, opt_body_id: Option<BodyId>) {
|
2017-02-02 16:53:28 +00:00
|
|
|
let fn_def_id = cx.tcx.hir.local_def_id(fn_id);
|
2017-06-29 13:38:25 +00:00
|
|
|
let sig = cx.tcx.fn_sig(fn_def_id);
|
2017-03-01 12:24:19 +00:00
|
|
|
let fn_ty = sig.skip_binder();
|
2016-03-01 19:38:21 +00:00
|
|
|
|
2017-09-16 07:10:26 +00:00
|
|
|
for (idx, (arg, ty)) in decl.inputs.iter().zip(fn_ty.inputs()).enumerate() {
|
2017-09-05 09:33:04 +00:00
|
|
|
if let ty::TyRef(
|
|
|
|
_,
|
|
|
|
ty::TypeAndMut {
|
|
|
|
ty,
|
|
|
|
mutbl: MutImmutable,
|
|
|
|
},
|
|
|
|
) = ty.sty
|
2017-08-09 07:30:56 +00:00
|
|
|
{
|
2016-04-14 16:13:15 +00:00
|
|
|
if match_type(cx, ty, &paths::VEC) {
|
2017-09-10 17:32:24 +00:00
|
|
|
let mut ty_snippet = None;
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
|
|
|
if let TyPath(QPath::Resolved(_, ref path)) = walk_ptrs_hir_ty(arg).node;
|
|
|
|
if let Some(&PathSegment{parameters: Some(ref parameters), ..}) = path.segments.last();
|
|
|
|
if parameters.types.len() == 1;
|
|
|
|
then {
|
|
|
|
ty_snippet = snippet_opt(cx, parameters.types[0].span);
|
|
|
|
}
|
|
|
|
};
|
2017-10-08 08:51:44 +00:00
|
|
|
if let Some(spans) = get_spans(cx, opt_body_id, idx, &[("clone", ".to_owned()")]) {
|
2017-09-20 21:59:23 +00:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
PTR_ARG,
|
|
|
|
arg.span,
|
|
|
|
"writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used \
|
|
|
|
with non-Vec-based slices.",
|
|
|
|
|db| {
|
|
|
|
if let Some(ref snippet) = ty_snippet {
|
2017-11-04 19:55:56 +00:00
|
|
|
db.span_suggestion(arg.span, "change this to", format!("&[{}]", snippet));
|
2017-09-20 21:59:23 +00:00
|
|
|
}
|
|
|
|
for (clonespan, suggestion) in spans {
|
2017-11-04 19:55:56 +00:00
|
|
|
db.span_suggestion(
|
|
|
|
clonespan,
|
|
|
|
&snippet_opt(cx, clonespan).map_or(
|
|
|
|
"change the call to".into(),
|
|
|
|
|x| Cow::Owned(format!("change `{}` to", x)),
|
|
|
|
),
|
|
|
|
suggestion.into(),
|
|
|
|
);
|
2017-09-20 21:59:23 +00:00
|
|
|
}
|
2017-11-04 19:55:56 +00:00
|
|
|
},
|
2017-09-20 21:59:23 +00:00
|
|
|
);
|
|
|
|
}
|
2016-04-14 16:13:15 +00:00
|
|
|
} else if match_type(cx, ty, &paths::STRING) {
|
2017-10-08 08:51:44 +00:00
|
|
|
if let Some(spans) = get_spans(cx, opt_body_id, idx, &[("clone", ".to_string()"), ("as_str", "")]) {
|
2017-09-20 21:59:23 +00:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
PTR_ARG,
|
|
|
|
arg.span,
|
|
|
|
"writing `&String` instead of `&str` involves a new object where a slice will do.",
|
|
|
|
|db| {
|
2017-11-04 19:55:56 +00:00
|
|
|
db.span_suggestion(arg.span, "change this to", "&str".into());
|
2017-09-20 21:59:23 +00:00
|
|
|
for (clonespan, suggestion) in spans {
|
2017-11-04 19:55:56 +00:00
|
|
|
db.span_suggestion_short(
|
|
|
|
clonespan,
|
|
|
|
&snippet_opt(cx, clonespan).map_or(
|
|
|
|
"change the call to".into(),
|
|
|
|
|x| Cow::Owned(format!("change `{}` to", x)),
|
|
|
|
),
|
|
|
|
suggestion.into(),
|
|
|
|
);
|
2017-09-20 21:59:23 +00:00
|
|
|
}
|
2017-11-04 19:55:56 +00:00
|
|
|
},
|
2017-09-20 21:59:23 +00:00
|
|
|
);
|
|
|
|
}
|
2018-02-28 15:24:10 +00:00
|
|
|
} else if match_type(cx, ty, &paths::COW) {
|
|
|
|
let as_str = format!("{}", snippet_opt(cx, arg.span).unwrap());
|
|
|
|
let mut cc = as_str.chars();
|
|
|
|
cc.next();
|
|
|
|
let replacement: String = cc.collect();
|
|
|
|
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
PTR_ARG,
|
|
|
|
arg.span,
|
|
|
|
"using a reference to `Cow` is not recommended.",
|
|
|
|
|db| {
|
|
|
|
db.span_suggestion(arg.span, "change this to", replacement);
|
|
|
|
},
|
|
|
|
);
|
2015-08-21 16:28:17 +00:00
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
|
|
|
}
|
2017-02-10 18:39:03 +00:00
|
|
|
|
|
|
|
if let FunctionRetTy::Return(ref ty) = decl.output {
|
2017-02-12 12:53:30 +00:00
|
|
|
if let Some((out, MutMutable, _)) = get_rptr_lm(ty) {
|
|
|
|
let mut immutables = vec![];
|
2017-09-05 09:33:04 +00:00
|
|
|
for (_, ref mutbl, ref argspan) in decl.inputs
|
|
|
|
.iter()
|
|
|
|
.filter_map(|ty| get_rptr_lm(ty))
|
|
|
|
.filter(|&(lt, _, _)| lt.name == out.name)
|
2017-08-09 07:30:56 +00:00
|
|
|
{
|
2017-02-12 13:11:18 +00:00
|
|
|
if *mutbl == MutMutable {
|
|
|
|
return;
|
|
|
|
}
|
2017-02-12 12:53:30 +00:00
|
|
|
immutables.push(*argspan);
|
2017-02-10 18:39:03 +00:00
|
|
|
}
|
2017-02-12 13:11:18 +00:00
|
|
|
if immutables.is_empty() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
span_lint_and_then(cx, MUT_FROM_REF, ty.span, "mutable borrow from immutable input(s)", |db| {
|
|
|
|
let ms = MultiSpan::from_spans(immutables);
|
|
|
|
db.span_note(ms, "immutable borrow here");
|
|
|
|
});
|
2017-02-10 18:39:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-12 12:53:30 +00:00
|
|
|
fn get_rptr_lm(ty: &Ty) -> Option<(&Lifetime, Mutability, Span)> {
|
2017-02-10 23:32:12 +00:00
|
|
|
if let Ty_::TyRptr(ref lt, ref m) = ty.node {
|
2017-02-12 12:53:30 +00:00
|
|
|
Some((lt, m.mutbl, ty.span))
|
2017-02-10 23:32:12 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2015-05-04 05:17:15 +00:00
|
|
|
}
|
2016-08-22 16:29:29 +00:00
|
|
|
|
|
|
|
fn is_null_path(expr: &Expr) -> bool {
|
|
|
|
if let ExprCall(ref pathexp, ref args) = expr.node {
|
|
|
|
if args.is_empty() {
|
2016-12-01 21:31:56 +00:00
|
|
|
if let ExprPath(ref path) = pathexp.node {
|
2017-08-24 22:21:46 +00:00
|
|
|
return match_qpath(path, &paths::PTR_NULL) || match_qpath(path, &paths::PTR_NULL_MUT);
|
2016-08-22 16:29:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|