2015-06-11 04:35:00 -05:00
|
|
|
use rustc::lint::*;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2016-02-12 11:35:44 -06:00
|
|
|
use syntax::ast::LitKind;
|
2016-02-24 10:38:57 -06:00
|
|
|
use syntax::codemap::Span;
|
2015-09-04 02:08:07 -05:00
|
|
|
use unicode_normalization::UnicodeNormalization;
|
2015-09-04 07:24:49 -05:00
|
|
|
use utils::{snippet, span_help_and_lint};
|
2015-06-11 04:35:00 -05:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for the Unicode zero-width space in the code.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** Having an invisible character in the code makes for all
|
|
|
|
/// sorts of April fools, but otherwise is very much frowned upon.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
|
|
|
/// **Example:** You don't see it, but there may be a zero-width space somewhere in this text.
|
2016-02-05 17:13:29 -06:00
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub ZERO_WIDTH_SPACE,
|
|
|
|
Deny,
|
2016-02-05 17:13:29 -06:00
|
|
|
"using a zero-width space in a string literal, which is confusing"
|
|
|
|
}
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for non-ASCII characters in string literals.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** Yeah, we know, the 90's called and wanted their charset
|
|
|
|
/// back. Even so, there still are editors and other programs out there that
|
|
|
|
/// don't work well with Unicode. So if the code is meant to be used
|
|
|
|
/// internationally, on multiple operating systems, or has other portability
|
|
|
|
/// requirements, activating this lint could be useful.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let x = "Hä?"
|
|
|
|
/// ```
|
2016-02-05 17:13:29 -06:00
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub NON_ASCII_LITERAL,
|
|
|
|
Allow,
|
|
|
|
"using any literal non-ASCII chars in a string literal instead of \
|
|
|
|
using the `\\u` escape"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for string literals that contain Unicode in a form
|
|
|
|
/// that is not equal to its
|
|
|
|
/// [NFC-recomposition](http://www.unicode.org/reports/tr15/#Norm_Forms).
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** If such a string is compared to another, the results
|
|
|
|
/// may be surprising.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems** None.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Example:** You may not see it, but “à” and “à” aren't the same string. The
|
|
|
|
/// former when escaped is actually `"a\u{300}"` while the latter is `"\u{e0}"`.
|
2016-02-05 17:13:29 -06:00
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub UNICODE_NOT_NFC,
|
|
|
|
Allow,
|
2016-02-05 17:13:29 -06:00
|
|
|
"using a unicode literal not in NFC normal form (see \
|
2016-05-06 09:09:05 -05:00
|
|
|
[unicode tr15](http://www.unicode.org/reports/tr15/) for further information)"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
2015-09-04 02:08:07 -05:00
|
|
|
|
2015-06-11 04:35:00 -05:00
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct Unicode;
|
|
|
|
|
|
|
|
impl LintPass for Unicode {
|
2015-08-11 13:22:20 -05:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-09-04 02:08:07 -05:00
|
|
|
lint_array!(ZERO_WIDTH_SPACE, NON_ASCII_LITERAL, UNICODE_NOT_NFC)
|
2015-06-11 04:35:00 -05:00
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Unicode {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2015-08-11 13:22:20 -05:00
|
|
|
if let ExprLit(ref lit) = expr.node {
|
2016-02-12 11:35:44 -06:00
|
|
|
if let LitKind::Str(_, _) = lit.node {
|
2015-09-04 07:24:49 -05:00
|
|
|
check_str(cx, lit.span)
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-06-11 04:35:00 -05:00
|
|
|
}
|
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
fn escape<T: Iterator<Item = char>>(s: T) -> String {
|
2015-09-04 02:08:07 -05:00
|
|
|
let mut result = String::new();
|
|
|
|
for c in s {
|
2015-08-12 13:36:10 -05:00
|
|
|
if c as u32 > 0x7F {
|
2016-01-03 22:26:12 -06:00
|
|
|
for d in c.escape_unicode() {
|
|
|
|
result.push(d)
|
|
|
|
}
|
2015-09-04 02:08:07 -05:00
|
|
|
} else {
|
|
|
|
result.push(c);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
2015-09-04 02:08:07 -05:00
|
|
|
result
|
2015-06-11 04:35:00 -05:00
|
|
|
}
|
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
fn check_str(cx: &LateContext, span: Span) {
|
2015-09-04 07:24:49 -05:00
|
|
|
let string = snippet(cx, span, "");
|
2015-09-04 02:08:07 -05:00
|
|
|
if string.contains('\u{200B}') {
|
2016-01-03 22:26:12 -06:00
|
|
|
span_help_and_lint(cx,
|
|
|
|
ZERO_WIDTH_SPACE,
|
|
|
|
span,
|
|
|
|
"zero-width space detected",
|
|
|
|
&format!("Consider replacing the string with:\n\"{}\"",
|
|
|
|
string.replace("\u{200B}", "\\u{200B}")));
|
2015-09-04 02:08:07 -05:00
|
|
|
}
|
|
|
|
if string.chars().any(|c| c as u32 > 0x7F) {
|
2016-01-03 22:26:12 -06:00
|
|
|
span_help_and_lint(cx,
|
|
|
|
NON_ASCII_LITERAL,
|
|
|
|
span,
|
|
|
|
"literal non-ASCII character detected",
|
|
|
|
&format!("Consider replacing the string with:\n\"{}\"",
|
|
|
|
if cx.current_level(UNICODE_NOT_NFC) == Level::Allow {
|
|
|
|
escape(string.chars())
|
|
|
|
} else {
|
|
|
|
escape(string.nfc())
|
|
|
|
}));
|
2015-09-04 02:08:07 -05:00
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
if cx.current_level(NON_ASCII_LITERAL) == Level::Allow && string.chars().zip(string.nfc()).any(|(a, b)| a != b) {
|
|
|
|
span_help_and_lint(cx,
|
|
|
|
UNICODE_NOT_NFC,
|
|
|
|
span,
|
|
|
|
"non-nfc unicode sequence detected",
|
|
|
|
&format!("Consider replacing the string with:\n\"{}\"", string.nfc().collect::<String>()));
|
2015-09-04 02:08:07 -05:00
|
|
|
}
|
2015-06-11 04:35:00 -05:00
|
|
|
}
|