Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add no_default_methods attribute and the associated lint #16051

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/doc/rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -1905,6 +1905,11 @@ type int8_t = i8;
static may change depending on the current thread. The exact consequences of
this are implementation-defined.

### Implementation-only attributes

- `no_default_methods` - force this implementation to implement all methods
in the trait so that default methods are not used.

### FFI attributes

On an `extern` block, the following attributes are interpreted:
Expand Down
38 changes: 37 additions & 1 deletion src/librustc/lint/builtin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ use util::nodemap::NodeSet;
use lint::{Context, LintPass, LintArray};

use std::cmp;
use std::collections::HashMap;
use std::collections::{HashMap, HashSet};
use std::{i8, i16, i32, i64, u8, u16, u32, u64, f32, f64};
use std::gc::Gc;
use syntax::abi;
use syntax::ast_map;
use syntax::ast_util::PostExpansionMethod;
use syntax::attr::AttrMetaMethods;
use syntax::attr;
use syntax::codemap::Span;
Expand Down Expand Up @@ -1413,6 +1414,41 @@ impl LintPass for MissingDoc {
}
}

declare_lint!(MISSING_OVERRIDE, Warn,
"detects missing override methods")

pub struct MissingOverride;

impl LintPass for MissingOverride {
fn get_lints(&self) -> LintArray {
lint_array!(MISSING_OVERRIDE)
}

fn check_item(&mut self, cx: &Context, item: &ast::Item) {
match item.node {
ast::ItemImpl(_, Some(ref ast_trait_ref), _, ref impl_methods) => {
let attr = match item.attrs.iter().find(|a| a.check_name("no_default_methods")) {
Some(attr) => attr,
None => return
};
let trait_ref = ty::node_id_to_trait_ref(cx.tcx, ast_trait_ref.ref_id);
let trait_methods = ty::trait_methods(cx.tcx, trait_ref.def_id);
let impl_set: HashSet<ast::Name> =
impl_methods.iter().map(|m| { m.pe_ident().name }).collect();
let missing: Vec<String> = trait_methods.iter()
.filter(|m| !impl_set.contains(&m.ident.name))
.map(|m| format!("`{}`", token::get_name(m.ident.name))).collect();
if !missing.is_empty() {
let msg = format!("some default methods are not overridden: {}",
missing.connect(", "));
cx.span_lint(MISSING_OVERRIDE, attr.span, msg.as_slice());
}
}
_ => ()
}
}
}

declare_lint!(DEPRECATED, Warn,
"detects use of #[deprecated] items")

Expand Down
1 change: 1 addition & 0 deletions src/librustc/lint/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ impl LintStore {
UnsafeBlock,
UnusedMut,
UnnecessaryAllocation,
MissingOverride,
Stability,
)

Expand Down
24 changes: 24 additions & 0 deletions src/test/compile-fail/lint-missing-override.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![deny(missing_override)]

trait Foo {
fn foo(&self) {}
}

struct Bar;

#[no_default_methods] //~ ERROR: some default methods are not overridden: `foo`
impl Foo for Bar {}

fn main() {
Bar.foo();
}