2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::intravisit::FnKind;
|
2016-05-17 01:33:57 -05:00
|
|
|
use rustc::hir::def_id::DefId;
|
2016-04-14 11:13:15 -05:00
|
|
|
use rustc::hir;
|
|
|
|
use rustc::lint::*;
|
2016-05-17 01:33:57 -05:00
|
|
|
use rustc::ty;
|
2016-03-01 09:25:15 -06:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::codemap::Span;
|
2016-04-14 11:13:15 -05:00
|
|
|
use utils::paths;
|
2016-06-27 10:14:04 -05:00
|
|
|
use utils::{get_trait_def_id, implements_trait, in_external_macro, return_ty, same_tys, span_lint_and_then};
|
2016-07-10 07:07:13 -05:00
|
|
|
use utils::sugg::DiagnosticBuilderExt;
|
2016-03-01 09:25:15 -06:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for types with a `fn new() -> Self` method and no
|
|
|
|
/// implementation of
|
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html).
|
2016-03-01 09:25:15 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** The 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.
|
2016-03-01 09:25:15 -06:00
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
2016-05-17 01:33:57 -05:00
|
|
|
/// struct Foo(Bar);
|
2016-03-01 09:25:15 -06:00
|
|
|
///
|
|
|
|
/// impl Foo {
|
|
|
|
/// fn new() -> Self {
|
2016-05-17 01:33:57 -05:00
|
|
|
/// Foo(Bar::new())
|
2016-03-01 09:25:15 -06:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2016-04-24 06:45:54 -05:00
|
|
|
///
|
|
|
|
/// Instead, use:
|
|
|
|
///
|
|
|
|
/// ```rust
|
2016-05-17 01:33:57 -05:00
|
|
|
/// struct Foo(Bar);
|
2016-04-24 06:45:54 -05:00
|
|
|
///
|
|
|
|
/// impl Default for Foo {
|
|
|
|
/// fn default() -> Self {
|
2016-05-17 01:33:57 -05:00
|
|
|
/// Foo(Bar::new())
|
2016-04-24 06:45:54 -05:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// You can also have `new()` call `Default::default()`.
|
2016-03-01 09:25:15 -06:00
|
|
|
declare_lint! {
|
|
|
|
pub NEW_WITHOUT_DEFAULT,
|
|
|
|
Warn,
|
|
|
|
"`fn new() -> Self` method without `Default` implementation"
|
|
|
|
}
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for types with a `fn new() -> Self` method
|
2016-05-17 01:33:57 -05:00
|
|
|
/// and no implementation of
|
2016-08-06 02:55:04 -05:00
|
|
|
/// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html),
|
|
|
|
/// where the `Default` can be derived by `#[derive(Default)]`.
|
2016-05-17 01:33:57 -05:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** The 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.
|
2016-05-17 01:33:57 -05:00
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// struct Foo;
|
|
|
|
///
|
|
|
|
/// impl Foo {
|
|
|
|
/// fn new() -> Self {
|
|
|
|
/// Foo
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// Just prepend `#[derive(Default)]` before the `struct` definition.
|
2016-05-17 01:33:57 -05:00
|
|
|
declare_lint! {
|
|
|
|
pub NEW_WITHOUT_DEFAULT_DERIVE,
|
|
|
|
Warn,
|
|
|
|
"`fn new() -> Self` without `#[derive]`able `Default` implementation"
|
|
|
|
}
|
|
|
|
|
2016-03-01 09:25:15 -06:00
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct NewWithoutDefault;
|
|
|
|
|
|
|
|
impl LintPass for NewWithoutDefault {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-05-17 01:33:57 -05:00
|
|
|
lint_array!(NEW_WITHOUT_DEFAULT, NEW_WITHOUT_DEFAULT_DERIVE)
|
2016-03-01 09:25:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NewWithoutDefault {
|
2016-12-21 03:25:14 -06:00
|
|
|
fn check_fn(
|
2016-12-21 05:14:54 -06:00
|
|
|
&mut self,
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
kind: FnKind<'tcx>,
|
|
|
|
decl: &'tcx hir::FnDecl,
|
|
|
|
_: &'tcx hir::Expr,
|
|
|
|
span: Span,
|
|
|
|
id: ast::NodeId
|
2016-12-21 03:25:14 -06:00
|
|
|
) {
|
2016-03-01 09:25:15 -06:00
|
|
|
if in_external_macro(cx, span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-01 09:59:14 -05:00
|
|
|
if let FnKind::Method(name, sig, _, _) = kind {
|
2016-06-03 09:45:07 -05:00
|
|
|
if sig.constness == hir::Constness::Const {
|
|
|
|
// can't be implemented by default
|
|
|
|
return;
|
|
|
|
}
|
2016-11-23 14:19:03 -06:00
|
|
|
if decl.inputs.is_empty() && &*name.as_str() == "new" && cx.access_levels.is_reachable(id) {
|
2016-06-05 18:42:39 -05:00
|
|
|
let self_ty = cx.tcx
|
2016-11-16 14:57:56 -06:00
|
|
|
.item_type(cx.tcx.map.local_def_id(cx.tcx.map.get_parent(id)));
|
2016-03-03 12:46:10 -06:00
|
|
|
if_let_chain!{[
|
2016-03-18 13:12:32 -05:00
|
|
|
self_ty.walk_shallow().next().is_none(), // implements_trait does not work with generics
|
2016-08-17 10:58:15 -05:00
|
|
|
same_tys(cx, self_ty, return_ty(cx, id), id),
|
2016-04-14 11:13:15 -05:00
|
|
|
let Some(default_trait_id) = get_trait_def_id(cx, &paths::DEFAULT_TRAIT),
|
2016-03-03 12:46:10 -06:00
|
|
|
!implements_trait(cx, self_ty, default_trait_id, Vec::new())
|
|
|
|
], {
|
2016-05-17 01:33:57 -05:00
|
|
|
if can_derive_default(self_ty, cx, default_trait_id) {
|
2016-06-27 10:14:04 -05:00
|
|
|
span_lint_and_then(cx,
|
|
|
|
NEW_WITHOUT_DEFAULT_DERIVE, span,
|
|
|
|
&format!("you should consider deriving a \
|
|
|
|
`Default` implementation for `{}`",
|
|
|
|
self_ty),
|
|
|
|
|db| {
|
2016-07-10 07:07:13 -05:00
|
|
|
db.suggest_item_with_attr(cx, span, "try this", "#[derive(Default)]");
|
|
|
|
});
|
2016-05-17 01:33:57 -05:00
|
|
|
} else {
|
2016-06-27 10:14:04 -05:00
|
|
|
span_lint_and_then(cx,
|
|
|
|
NEW_WITHOUT_DEFAULT, span,
|
|
|
|
&format!("you should consider adding a \
|
|
|
|
`Default` implementation for `{}`",
|
|
|
|
self_ty),
|
|
|
|
|db| {
|
2016-07-10 07:07:13 -05:00
|
|
|
db.suggest_prepend_item(cx,
|
|
|
|
span,
|
|
|
|
"try this",
|
|
|
|
&format!(
|
|
|
|
"impl Default for {} {{
|
|
|
|
fn default() -> Self {{
|
|
|
|
Self::new()
|
|
|
|
}}
|
|
|
|
}}",
|
|
|
|
self_ty));
|
|
|
|
});
|
2016-05-17 01:33:57 -05:00
|
|
|
}
|
2016-03-03 12:46:10 -06:00
|
|
|
}}
|
2016-03-01 09:25:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-17 01:33:57 -05:00
|
|
|
|
|
|
|
fn can_derive_default<'t, 'c>(ty: ty::Ty<'t>, cx: &LateContext<'c, 't>, default_trait_id: DefId) -> bool {
|
|
|
|
match ty.sty {
|
2016-09-09 13:24:20 -05:00
|
|
|
ty::TyAdt(adt_def, substs) if adt_def.is_struct() => {
|
2016-05-17 01:33:57 -05:00
|
|
|
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 18:42:39 -05:00
|
|
|
return false;
|
2016-05-17 01:33:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
true
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-06-05 18:42:39 -05:00
|
|
|
_ => false,
|
2016-05-17 01:33:57 -05:00
|
|
|
}
|
|
|
|
}
|