lifetimes lint: straighten some code, add a few comments

This commit is contained in:
Georg Brandl 2015-08-12 20:13:14 +02:00
parent b349f9e88d
commit 6603299f3f

View file

@ -2,7 +2,7 @@ use syntax::ast::*;
use rustc::lint::{Context, LintPass, LintArray, Lint}; use rustc::lint::{Context, LintPass, LintArray, Lint};
use syntax::codemap::Span; use syntax::codemap::Span;
use syntax::visit::{Visitor, FnKind, walk_ty}; use syntax::visit::{Visitor, FnKind, walk_ty};
use utils::{in_macro, span_lint}; use utils::{in_external_macro, span_lint};
use std::collections::HashSet; use std::collections::HashSet;
use std::iter::FromIterator; use std::iter::FromIterator;
@ -19,16 +19,17 @@ impl LintPass for LifetimePass {
fn check_fn(&mut self, cx: &Context, kind: FnKind, decl: &FnDecl, fn check_fn(&mut self, cx: &Context, kind: FnKind, decl: &FnDecl,
_: &Block, span: Span, _: NodeId) { _: &Block, span: Span, _: NodeId) {
if cx.sess().codemap().with_expn_info(span.expn_id, |info| in_macro(cx, info)) { if in_external_macro(cx, span) {
return; return;
} }
if could_use_elision(kind, decl) { if could_use_elision(kind, decl) {
span_lint(cx, NEEDLESS_LIFETIMES, span, span_lint(cx, NEEDLESS_LIFETIMES, span,
"explicit lifetimes given where they could be inferred"); "explicit lifetimes given in parameter types where they could be elided");
} }
} }
} }
/// The lifetime of a &-reference.
#[derive(PartialEq, Eq, Hash, Debug)] #[derive(PartialEq, Eq, Hash, Debug)]
enum RefLt { enum RefLt {
Unnamed, Unnamed,
@ -42,24 +43,24 @@ fn could_use_elision(kind: FnKind, func: &FnDecl) -> bool {
// * no output references, all input references have different LT // * no output references, all input references have different LT
// * output references, exactly one input reference with same LT // * output references, exactly one input reference with same LT
// these will collect all the lifetimes for references in arg/return types
let mut input_visitor = RefVisitor(Vec::new()); let mut input_visitor = RefVisitor(Vec::new());
let mut output_visitor = RefVisitor(Vec::new()); let mut output_visitor = RefVisitor(Vec::new());
// extract lifetimes of input argument types // extract lifetime in "self" argument for methods (there is a "self" argument
for arg in &func.inputs { // in func.inputs, but its type is TyInfer)
walk_ty(&mut input_visitor, &*arg.ty);
}
// extract lifetime of "self" argument for methods
if let FnKind::FkMethod(_, sig, _) = kind { if let FnKind::FkMethod(_, sig, _) = kind {
match sig.explicit_self.node { match sig.explicit_self.node {
SelfRegion(ref lt_opt, _, _) => SelfRegion(ref opt_lt, _, _) => input_visitor.record(opt_lt),
input_visitor.visit_opt_lifetime_ref(sig.explicit_self.span, lt_opt), SelfExplicit(ref ty, _) => walk_ty(&mut input_visitor, ty),
SelfExplicit(ref ty, _) =>
walk_ty(&mut input_visitor, ty),
_ => { } _ => { }
} }
} }
// extract lifetimes of output type // extract lifetimes in input argument types
for arg in &func.inputs {
walk_ty(&mut input_visitor, &*arg.ty);
}
// extract lifetimes in output type
if let Return(ref ty) = func.output { if let Return(ref ty) = func.output {
walk_ty(&mut output_visitor, ty); walk_ty(&mut output_visitor, ty);
} }
@ -100,19 +101,16 @@ fn could_use_elision(kind: FnKind, func: &FnDecl) -> bool {
false false
} }
/// Number of unique lifetimes in the given vector.
fn unique_lifetimes(lts: &Vec<RefLt>) -> usize { fn unique_lifetimes(lts: &Vec<RefLt>) -> usize {
let set: HashSet<&RefLt> = HashSet::from_iter(lts.iter()); lts.iter().collect::<HashSet<_>>().len()
set.len()
} }
/// A visitor usable for syntax::visit::walk_ty().
struct RefVisitor(Vec<RefLt>); struct RefVisitor(Vec<RefLt>);
impl RefVisitor { impl RefVisitor {
fn into_vec(self) -> Vec<RefLt> { self.0 } fn record(&mut self, lifetime: &Option<Lifetime>) {
}
impl<'v> Visitor<'v> for RefVisitor {
fn visit_opt_lifetime_ref(&mut self, _: Span, lifetime: &'v Option<Lifetime>) {
if let &Some(ref lt) = lifetime { if let &Some(ref lt) = lifetime {
if lt.name.as_str() == "'static" { if lt.name.as_str() == "'static" {
self.0.push(Static); self.0.push(Static);
@ -123,4 +121,14 @@ impl<'v> Visitor<'v> for RefVisitor {
self.0.push(Unnamed); self.0.push(Unnamed);
} }
} }
fn into_vec(self) -> Vec<RefLt> {
self.0
}
}
impl<'v> Visitor<'v> for RefVisitor {
fn visit_opt_lifetime_ref(&mut self, _: Span, lifetime: &'v Option<Lifetime>) {
self.record(lifetime);
}
} }