-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
extract pattern lint from non_upper_case_globals
#56478
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ use lint::{LintPass, LateLintPass}; | |
use rustc_target::spec::abi::Abi; | ||
use syntax::ast; | ||
use syntax::attr; | ||
use syntax::errors::Applicability; | ||
use syntax_pos::Span; | ||
|
||
use rustc::hir::{self, GenericParamKind, PatKind}; | ||
|
@@ -340,7 +341,7 @@ pub struct NonUpperCaseGlobals; | |
|
||
impl NonUpperCaseGlobals { | ||
fn check_upper_case(cx: &LateContext, sort: &str, name: ast::Name, span: Span) { | ||
if name.as_str().chars().any(|c| c.is_lowercase()) { | ||
if has_lower_case_chars(&name.as_str()) { | ||
let uc = NonSnakeCase::to_snake_case(&name.as_str()).to_uppercase(); | ||
if name != &*uc { | ||
cx.span_lint(NON_UPPER_CASE_GLOBALS, | ||
|
@@ -399,18 +400,64 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NonUpperCaseGlobals { | |
_ => {} | ||
} | ||
} | ||
} | ||
|
||
declare_lint! { | ||
pub MISLEADING_CONSTANT_PATTERNS, | ||
Warn, | ||
"constants in patterns should have upper case identifiers" | ||
} | ||
|
||
#[derive(Copy, Clone)] | ||
pub struct MisleadingConstantPatterns; | ||
|
||
impl MisleadingConstantPatterns { | ||
fn check_upper_case(cx: &LateContext, name: ast::Name, span: Span) { | ||
if has_lower_case_chars(&name.as_str()) { | ||
let uc = NonSnakeCase::to_snake_case(&name.as_str()).to_uppercase(); | ||
|
||
cx.struct_span_lint( | ||
MISLEADING_CONSTANT_PATTERNS, | ||
span, | ||
&format!("constant pattern `{}` should be upper case", name), | ||
) | ||
.span_label(span, "looks like a binding") | ||
.span_suggestion_with_applicability( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think this suggestion is useful without also changing the import or enum's name. I'd rather have this suggestion removed entirely than have it. |
||
span, | ||
"convert the pattern to upper case", | ||
uc, | ||
Applicability::MaybeIncorrect, | ||
) | ||
.emit(); | ||
} | ||
} | ||
} | ||
|
||
impl LintPass for MisleadingConstantPatterns { | ||
fn get_lints(&self) -> LintArray { | ||
lint_array!(MISLEADING_CONSTANT_PATTERNS) | ||
} | ||
} | ||
|
||
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MisleadingConstantPatterns { | ||
fn check_pat(&mut self, cx: &LateContext, p: &hir::Pat) { | ||
// Lint for constants that look like binding identifiers (#7526) | ||
if let PatKind::Path(hir::QPath::Resolved(None, ref path)) = p.node { | ||
if let Def::Const(..) = path.def { | ||
if path.segments.len() == 1 { | ||
NonUpperCaseGlobals::check_upper_case(cx, | ||
"constant in pattern", | ||
path.segments[0].ident.name, | ||
path.span); | ||
MisleadingConstantPatterns::check_upper_case( | ||
cx, | ||
path.segments[0].ident.name, | ||
path.span, | ||
); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
/// Returns whether a string contains any lower case characters. Note that this is different from | ||
/// checking if a string is not fully upper case, since most scripts do not have case distinctions. | ||
fn has_lower_case_chars(s: &str) -> bool { | ||
s.chars().any(char::is_lowercase) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
error: constant pattern `a` should be upper case | ||
--> $DIR/lint-misleading-constant-patterns.rs:21:13 | ||
| | ||
LL | (0, a) => 0, //~ ERROR should be upper case | ||
| ^ | ||
| | | ||
| looks like a binding | ||
| help: convert the pattern to upper case: `A` | ||
| | ||
note: lint level defined here | ||
--> $DIR/lint-misleading-constant-patterns.rs:13:9 | ||
| | ||
LL | #![deny(misleading_constant_patterns)] | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: constant pattern `aha` should be upper case | ||
--> $DIR/lint-misleading-constant-patterns.rs:37:13 | ||
| | ||
LL | (0, aha) => 0, //~ ERROR should be upper case | ||
| ^^^ | ||
| | | ||
| looks like a binding | ||
| help: convert the pattern to upper case: `AHA` | ||
|
||
error: constant pattern `not_okay` should be upper case | ||
--> $DIR/lint-misleading-constant-patterns.rs:52:13 | ||
| | ||
LL | (0, not_okay) => 0, //~ ERROR should be upper case | ||
| ^^^^^^^^ | ||
| | | ||
| looks like a binding | ||
| help: convert the pattern to upper case: `NOT_OKAY` | ||
|
||
error: aborting due to 3 previous errors | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cc @Manishearth
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In thinking about (2) a bit more, I do wonder if this lint really carries its weight. The rationale for the lint in #7526 is to avoid misleading patterns where constants look like bindings. However, to even get in this situation you'd have to explicitly
#[allow(non_upper_case_globals)]
on your const or static in the first place. For cases where you have to use a non-upper case global, then this lint really just serves as an extra hurdle that you're going to allow anyways.I think it might suffice to include a blurb about the misleading patterns in the rationale for
non_upper_case_globals
: "patterns containing consts or statics that are not upper cased look like bindings, and can cause difficult-to-spot bugs". Maybe as a note?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The issue is not declaring and using such a constant within one crate, but exporting such constants in a crate and then pattern matching on the name e.g. by accident, when you actually wanted a binding.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, that makes sense. I'll wait for @Manishearth to weigh in before making any more changes.