2015-05-04 00:17:15 -05:00
|
|
|
//! Checks for usage of &Vec[_] and &String
|
|
|
|
//!
|
|
|
|
//! This lint is **warn** by default
|
|
|
|
|
|
|
|
use rustc::plugin::Registry;
|
|
|
|
use rustc::lint::*;
|
|
|
|
use rustc::middle::const_eval::lookup_const_by_id;
|
|
|
|
use rustc::middle::def::*;
|
|
|
|
use syntax::ast::*;
|
|
|
|
use syntax::ast_util::{is_comparison_binop, binop_to_string};
|
|
|
|
use syntax::ptr::P;
|
|
|
|
use syntax::codemap::Span;
|
|
|
|
use types::match_ty_unwrap;
|
2015-07-26 09:53:11 -05:00
|
|
|
use utils::span_lint;
|
2015-05-04 00:17:15 -05:00
|
|
|
|
|
|
|
declare_lint! {
|
2015-05-04 01:15:24 -05:00
|
|
|
pub PTR_ARG,
|
2015-05-04 00:17:15 -05:00
|
|
|
Allow,
|
2015-08-13 03:32:35 -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
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
2015-05-04 01:15:24 -05:00
|
|
|
pub struct PtrArg;
|
2015-05-04 00:17:15 -05:00
|
|
|
|
2015-05-04 01:15:24 -05:00
|
|
|
impl LintPass for PtrArg {
|
2015-05-04 00:17:15 -05:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-05-04 01:15:24 -05:00
|
|
|
lint_array!(PTR_ARG)
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2015-05-04 00:17:15 -05:00
|
|
|
fn check_item(&mut self, cx: &Context, item: &Item) {
|
2015-08-11 13:22:20 -05:00
|
|
|
if let &ItemFn(ref decl, _, _, _, _, _) = &item.node {
|
|
|
|
check_fn(cx, decl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_impl_item(&mut self, cx: &Context, item: &ImplItem) {
|
|
|
|
if let &MethodImplItem(ref sig, _) = &item.node {
|
|
|
|
check_fn(cx, &sig.decl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_trait_item(&mut self, cx: &Context, item: &TraitItem) {
|
|
|
|
if let &MethodTraitItem(ref sig, _) = &item.node {
|
|
|
|
check_fn(cx, &sig.decl);
|
|
|
|
}
|
|
|
|
}
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn check_fn(cx: &Context, decl: &FnDecl) {
|
2015-08-11 13:22:20 -05:00
|
|
|
for arg in &decl.inputs {
|
|
|
|
match &arg.ty.node {
|
|
|
|
&TyPtr(ref p) | &TyRptr(_, ref p) =>
|
|
|
|
check_ptr_subtype(cx, arg.ty.span, &p.ty),
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn check_ptr_subtype(cx: &Context, span: Span, ty: &Ty) {
|
2015-08-11 13:22:20 -05:00
|
|
|
match_ty_unwrap(ty, &["Vec"]).map_or_else(|| match_ty_unwrap(ty,
|
|
|
|
&["String"]).map_or((), |_| {
|
|
|
|
span_lint(cx, PTR_ARG, span,
|
2015-08-12 03:46:49 -05:00
|
|
|
"writing `&String` instead of `&str` involves a new object \
|
2015-08-13 01:15:42 -05:00
|
|
|
where a slice will do. Consider changing the type to `&str`")
|
2015-08-11 13:22:20 -05:00
|
|
|
}), |_| span_lint(cx, PTR_ARG, span,
|
2015-08-12 03:46:49 -05:00
|
|
|
"writing `&Vec<_>` instead of \
|
|
|
|
`&[_]` involves one more reference and cannot be used with \
|
2015-08-13 01:15:42 -05:00
|
|
|
non-Vec-based slices. Consider changing the type to `&[...]`"))
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|