-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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 new lint: rc_mutex
#7316
Merged
+124
−1
Merged
Add new lint: rc_mutex
#7316
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
84c511f
rc_mutex
c0f3c2f
correct lint
a5ced1f
rc_mutex use span_lint instead of span_lint_and_sugg
lengyijun e2ec85c
rc_mutex: add struct test
lengyijun 896c19e
rc_mutex: update doc
lengyijun f877f54
rc_mutex: fix test
lengyijun 683c557
rc_mutex: add known problems
lengyijun b9cc2fe
rc_mutex: known problems
lengyijun 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
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,27 @@ | ||
use clippy_utils::diagnostics::span_lint; | ||
use clippy_utils::is_ty_param_diagnostic_item; | ||
use if_chain::if_chain; | ||
use rustc_hir::{self as hir, def_id::DefId, QPath}; | ||
use rustc_lint::LateContext; | ||
use rustc_span::symbol::sym; | ||
|
||
use super::RC_MUTEX; | ||
|
||
pub(super) fn check(cx: &LateContext<'_>, hir_ty: &hir::Ty<'_>, qpath: &QPath<'_>, def_id: DefId) -> bool { | ||
if_chain! { | ||
if cx.tcx.is_diagnostic_item(sym::Rc, def_id) ; | ||
if let Some(_) = is_ty_param_diagnostic_item(cx, qpath, sym!(mutex_type)) ; | ||
|
||
then{ | ||
span_lint( | ||
cx, | ||
RC_MUTEX, | ||
hir_ty.span, | ||
"found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead", | ||
); | ||
return true; | ||
} | ||
} | ||
|
||
false | ||
} |
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,34 @@ | ||
#![warn(clippy::rc_mutex)] | ||
#![allow(clippy::blacklisted_name)] | ||
|
||
use std::rc::Rc; | ||
use std::sync::Mutex; | ||
|
||
pub struct MyStruct { | ||
foo: Rc<Mutex<i32>>, | ||
} | ||
|
||
pub struct SubT<T> { | ||
foo: T, | ||
} | ||
|
||
pub enum MyEnum { | ||
One, | ||
Two, | ||
} | ||
|
||
pub fn test1<T>(foo: Rc<Mutex<T>>) {} | ||
|
||
pub fn test2(foo: Rc<Mutex<MyEnum>>) {} | ||
|
||
pub fn test3(foo: Rc<Mutex<SubT<usize>>>) {} | ||
|
||
fn main() { | ||
test1(Rc::new(Mutex::new(1))); | ||
test2(Rc::new(Mutex::new(MyEnum::One))); | ||
test3(Rc::new(Mutex::new(SubT { foo: 1 }))); | ||
|
||
let _my_struct = MyStruct { | ||
foo: Rc::new(Mutex::new(1)), | ||
}; | ||
} |
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,28 @@ | ||
error: found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead | ||
--> $DIR/rc_mutex.rs:8:10 | ||
| | ||
LL | foo: Rc<Mutex<i32>>, | ||
| ^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::rc-mutex` implied by `-D warnings` | ||
|
||
error: found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead | ||
--> $DIR/rc_mutex.rs:20:22 | ||
| | ||
LL | pub fn test1<T>(foo: Rc<Mutex<T>>) {} | ||
| ^^^^^^^^^^^^ | ||
|
||
error: found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead | ||
--> $DIR/rc_mutex.rs:22:19 | ||
| | ||
LL | pub fn test2(foo: Rc<Mutex<MyEnum>>) {} | ||
| ^^^^^^^^^^^^^^^^^ | ||
|
||
error: found `Rc<Mutex<_>>`. Consider using `Rc<RefCell<_>>` or `Arc<Mutex<_>>` instead | ||
--> $DIR/rc_mutex.rs:24:19 | ||
| | ||
LL | pub fn test3(foo: Rc<Mutex<SubT<usize>>>) {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 4 previous errors | ||
|
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.
I'd like to see a test that actually creates an instance.
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.
Could you please check if I added correct test in my latest commit?
I'm not sure I did it right.