2016-04-07 15:46:48 +00:00
|
|
|
use rustc::hir::intravisit::FnKind;
|
2016-05-17 06:33:57 +00:00
|
|
|
use rustc::hir::def_id::DefId;
|
2016-04-14 16:13:15 +00:00
|
|
|
use rustc::hir;
|
|
|
|
use rustc::lint::*;
|
2016-05-17 06:33:57 +00:00
|
|
|
use rustc::ty;
|
2016-03-01 15:25:15 +00:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::codemap::Span;
|
2016-04-14 16:13:15 +00:00
|
|
|
use utils::paths;
|
|
|
|
use utils::{get_trait_def_id, implements_trait, in_external_macro, return_ty, same_tys, span_lint};
|
2016-03-01 15:25:15 +00:00
|
|
|
|
2016-04-24 11:45:54 +00:00
|
|
|
/// **What it does:** This lints about type with a `fn new() -> Self` method
|
|
|
|
/// and no implementation of
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html)
|
2016-03-01 15:25:15 +00:00
|
|
|
///
|
2016-04-24 11:45:54 +00:00
|
|
|
/// **Why is this bad?** User might expect to be able to use
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html)
|
|
|
|
/// as the type can be
|
2016-03-01 15:25:15 +00:00
|
|
|
/// constructed without arguments.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
2016-05-17 06:33:57 +00:00
|
|
|
/// struct Foo(Bar);
|
2016-03-01 15:25:15 +00:00
|
|
|
///
|
|
|
|
/// impl Foo {
|
|
|
|
/// fn new() -> Self {
|
2016-05-17 06:33:57 +00:00
|
|
|
/// Foo(Bar::new())
|
2016-03-01 15:25:15 +00:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2016-04-24 11:45:54 +00:00
|
|
|
///
|
|
|
|
/// Instead, use:
|
|
|
|
///
|
|
|
|
/// ```rust
|
2016-05-17 06:33:57 +00:00
|
|
|
/// struct Foo(Bar);
|
2016-04-24 11:45:54 +00:00
|
|
|
///
|
|
|
|
/// impl Default for Foo {
|
|
|
|
/// fn default() -> Self {
|
2016-05-17 06:33:57 +00:00
|
|
|
/// Foo(Bar::new())
|
2016-04-24 11:45:54 +00:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// You can also have `new()` call `Default::default()`
|
2016-03-01 15:25:15 +00:00
|
|
|
declare_lint! {
|
|
|
|
pub NEW_WITHOUT_DEFAULT,
|
|
|
|
Warn,
|
|
|
|
"`fn new() -> Self` method without `Default` implementation"
|
|
|
|
}
|
|
|
|
|
2016-05-17 06:33:57 +00:00
|
|
|
/// **What it does:** This lints about type with a `fn new() -> Self` method
|
|
|
|
/// and no implementation of
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html)
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** User might expect to be able to use
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html)
|
|
|
|
/// as the type can be
|
|
|
|
/// constructed without arguments.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// struct Foo;
|
|
|
|
///
|
|
|
|
/// impl Foo {
|
|
|
|
/// fn new() -> Self {
|
|
|
|
/// Foo
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Just prepend `#[derive(Default)]` before the `struct` definition
|
|
|
|
declare_lint! {
|
|
|
|
pub NEW_WITHOUT_DEFAULT_DERIVE,
|
|
|
|
Warn,
|
|
|
|
"`fn new() -> Self` without `#[derive]`able `Default` implementation"
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:25:15 +00:00
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct NewWithoutDefault;
|
|
|
|
|
|
|
|
impl LintPass for NewWithoutDefault {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-05-17 06:33:57 +00:00
|
|
|
lint_array!(NEW_WITHOUT_DEFAULT, NEW_WITHOUT_DEFAULT_DERIVE)
|
2016-03-01 15:25:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LateLintPass for NewWithoutDefault {
|
|
|
|
fn check_fn(&mut self, cx: &LateContext, kind: FnKind, decl: &hir::FnDecl, _: &hir::Block, span: Span, id: ast::NodeId) {
|
|
|
|
if in_external_macro(cx, span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-03 14:45:07 +00:00
|
|
|
if let FnKind::Method(name, ref sig, _, _) = kind {
|
|
|
|
if sig.constness == hir::Constness::Const {
|
|
|
|
// can't be implemented by default
|
|
|
|
return;
|
|
|
|
}
|
2016-06-05 23:42:39 +00:00
|
|
|
if decl.inputs.is_empty() && name.as_str() == "new" && cx.access_levels.is_reachable(id) {
|
|
|
|
let self_ty = cx.tcx
|
|
|
|
.lookup_item_type(cx.tcx.map.local_def_id(cx.tcx.map.get_parent(id)))
|
|
|
|
.ty;
|
2016-03-03 18:46:10 +00:00
|
|
|
if_let_chain!{[
|
2016-03-18 18:12:32 +00:00
|
|
|
self_ty.walk_shallow().next().is_none(), // implements_trait does not work with generics
|
2016-03-26 21:14:25 +00:00
|
|
|
let Some(ret_ty) = return_ty(cx, id),
|
|
|
|
same_tys(cx, self_ty, ret_ty, id),
|
2016-04-14 16:13:15 +00:00
|
|
|
let Some(default_trait_id) = get_trait_def_id(cx, &paths::DEFAULT_TRAIT),
|
2016-03-03 18:46:10 +00:00
|
|
|
!implements_trait(cx, self_ty, default_trait_id, Vec::new())
|
|
|
|
], {
|
2016-05-17 06:33:57 +00:00
|
|
|
if can_derive_default(self_ty, cx, default_trait_id) {
|
|
|
|
span_lint(cx,
|
|
|
|
NEW_WITHOUT_DEFAULT_DERIVE, span,
|
|
|
|
&format!("you should consider deriving a \
|
|
|
|
`Default` implementation for `{}`",
|
|
|
|
self_ty)).
|
|
|
|
span_suggestion(span,
|
|
|
|
"try this",
|
|
|
|
"#[derive(Default)]".into());
|
|
|
|
} else {
|
|
|
|
span_lint(cx,
|
|
|
|
NEW_WITHOUT_DEFAULT, span,
|
|
|
|
&format!("you should consider adding a \
|
|
|
|
`Default` implementation for `{}`",
|
|
|
|
self_ty)).
|
|
|
|
span_suggestion(span,
|
|
|
|
"try this",
|
|
|
|
format!("impl Default for {} {{ fn default() -> \
|
|
|
|
Self {{ {}::new() }} }}", self_ty, self_ty));
|
|
|
|
}
|
2016-03-03 18:46:10 +00:00
|
|
|
}}
|
2016-03-01 15:25:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-17 06:33:57 +00:00
|
|
|
|
|
|
|
fn can_derive_default<'t, 'c>(ty: ty::Ty<'t>, cx: &LateContext<'c, 't>, default_trait_id: DefId) -> bool {
|
|
|
|
match ty.sty {
|
|
|
|
ty::TyStruct(ref adt_def, ref substs) => {
|
|
|
|
for field in adt_def.all_fields() {
|
|
|
|
let f_ty = field.ty(cx.tcx, substs);
|
|
|
|
if !implements_trait(cx, f_ty, default_trait_id, Vec::new()) {
|
2016-06-05 23:42:39 +00:00
|
|
|
return false;
|
2016-05-17 06:33:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
true
|
2016-06-05 23:42:39 +00:00
|
|
|
}
|
|
|
|
_ => false,
|
2016-05-17 06:33:57 +00:00
|
|
|
}
|
|
|
|
}
|