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) {
|
2017-12-02 03:23:32 -06:00
|
|
|
if let ItemKind::Use(ref use_tree) = item.node {
|
|
|
|
check_use_tree(use_tree, cx, &item.span);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_use_tree(use_tree: &UseTree, cx: &EarlyContext, span: &Span) {
|
|
|
|
match use_tree.kind {
|
2018-03-18 07:26:57 -05:00
|
|
|
UseTreeKind::Simple(Some(new_name)) => {
|
2017-12-02 03:23:32 -06:00
|
|
|
let old_name = use_tree
|
|
|
|
.prefix
|
|
|
|
.segments
|
|
|
|
.last()
|
|
|
|
.expect("use paths cannot be empty")
|
|
|
|
.identifier;
|
|
|
|
unsafe_to_safe_check(old_name, new_name, cx, span);
|
|
|
|
}
|
2018-03-18 07:26:57 -05:00
|
|
|
UseTreeKind::Simple(None) |
|
2017-12-02 03:23:32 -06:00
|
|
|
UseTreeKind::Glob => {},
|
|
|
|
UseTreeKind::Nested(ref nested_use_tree) => {
|
|
|
|
for &(ref use_tree, _) in nested_use_tree {
|
|
|
|
check_use_tree(use_tree, cx, span);
|
2016-04-19 18:27:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
UNSAFE_REMOVED_FROM_NAME,
|
|
|
|
*span,
|
|
|
|
&format!("removed \"unsafe\" from the name of `{}` in use as `{}`", old_str, new_str),
|
|
|
|
);
|
2016-04-19 18:27:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn contains_unsafe(name: &InternedString) -> bool {
|
|
|
|
name.contains("Unsafe") || name.contains("unsafe")
|
|
|
|
}
|