2016-04-19 18:27:01 -05:00
|
|
|
use rustc::lint::*;
|
2016-12-01 15:31:56 -06:00
|
|
|
use syntax::ast::*;
|
2016-04-19 18:27:01 -05:00
|
|
|
use syntax::codemap::Span;
|
2016-11-23 14:19:03 -06:00
|
|
|
use syntax::symbol::InternedString;
|
2016-04-19 18:27:01 -05:00
|
|
|
use utils::span_lint;
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for imports that remove "unsafe" from an item's
|
|
|
|
/// name.
|
2016-04-19 18:27:01 -05:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** Renaming makes it less clear which traits and
|
|
|
|
/// structures are unsafe.
|
2016-04-19 18:27:01 -05:00
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// use std::cell::{UnsafeCell as TotallySafeCell};
|
|
|
|
///
|
|
|
|
/// extern crate crossbeam;
|
|
|
|
/// use crossbeam::{spawn_unsafe as spawn};
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub UNSAFE_REMOVED_FROM_NAME,
|
|
|
|
Warn,
|
2016-08-06 03:18:36 -05:00
|
|
|
"`unsafe` removed from API names on import"
|
2016-04-19 18:27:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct UnsafeNameRemoval;
|
|
|
|
|
|
|
|
impl LintPass for UnsafeNameRemoval {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(UNSAFE_REMOVED_FROM_NAME)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-01 15:31:56 -06:00
|
|
|
impl EarlyLintPass for UnsafeNameRemoval {
|
|
|
|
fn check_item(&mut self, cx: &EarlyContext, item: &Item) {
|
|
|
|
if let ItemKind::Use(ref item_use) = item.node {
|
2016-04-19 18:27:01 -05:00
|
|
|
match item_use.node {
|
|
|
|
ViewPath_::ViewPathSimple(ref name, ref path) => {
|
|
|
|
unsafe_to_safe_check(
|
|
|
|
path.segments
|
|
|
|
.last()
|
|
|
|
.expect("use paths cannot be empty")
|
2016-12-01 15:31:56 -06:00
|
|
|
.identifier,
|
2016-04-19 18:27:01 -05:00
|
|
|
*name,
|
|
|
|
cx, &item.span
|
|
|
|
);
|
2016-06-05 18:42:39 -05:00
|
|
|
}
|
2016-04-19 18:27:01 -05:00
|
|
|
ViewPath_::ViewPathList(_, ref path_list_items) => {
|
|
|
|
for path_list_item in path_list_items.iter() {
|
|
|
|
let plid = path_list_item.node;
|
2016-08-28 10:54:32 -05:00
|
|
|
if let Some(rename) = plid.rename {
|
|
|
|
unsafe_to_safe_check(plid.name, rename, cx, &item.span);
|
2016-04-19 18:27:01 -05:00
|
|
|
};
|
|
|
|
}
|
2016-06-05 18:42:39 -05:00
|
|
|
}
|
2016-04-19 18:27:01 -05:00
|
|
|
ViewPath_::ViewPathGlob(_) => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-01 15:31:56 -06:00
|
|
|
fn unsafe_to_safe_check(old_name: Ident, new_name: Ident, cx: &EarlyContext, span: &Span) {
|
|
|
|
let old_str = old_name.name.as_str();
|
|
|
|
let new_str = new_name.name.as_str();
|
2016-04-19 18:27:01 -05:00
|
|
|
if contains_unsafe(&old_str) && !contains_unsafe(&new_str) {
|
2016-06-05 18:42:39 -05:00
|
|
|
span_lint(cx,
|
|
|
|
UNSAFE_REMOVED_FROM_NAME,
|
|
|
|
*span,
|
|
|
|
&format!(
|
2016-04-19 18:27:01 -05:00
|
|
|
"removed \"unsafe\" from the name of `{}` in use as `{}`",
|
|
|
|
old_str,
|
|
|
|
new_str
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn contains_unsafe(name: &InternedString) -> bool {
|
|
|
|
name.contains("Unsafe") || name.contains("unsafe")
|
|
|
|
}
|