Skip to content

Commit 489dd2e

Browse files
committed
factor ifs into function, add differing mutex test
1 parent d1b1a4c commit 489dd2e

File tree

3 files changed

+34
-12
lines changed

3 files changed

+34
-12
lines changed

clippy_lints/src/if_let_mutex.rs

+18-10
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,9 @@ impl<'tcx, 'l> Visitor<'tcx> for OppVisitor<'tcx, 'l> {
9393

9494
fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
9595
if_chain! {
96-
if let ExprKind::MethodCall(path, _span, args) = &expr.kind;
97-
if path.ident.to_string() == "lock";
98-
let ty = self.cx.tables.expr_ty(&args[0]);
99-
if match_type(self.cx, ty, &paths::MUTEX);
96+
if let Some(mutex) = is_mutex_lock_call(self.cx, expr);
10097
then {
101-
self.found_mutex = Some(&args[0]);
98+
self.found_mutex = Some(mutex);
10299
self.mutex_lock_called = true;
103100
return;
104101
}
@@ -123,12 +120,9 @@ impl<'tcx, 'l> Visitor<'tcx> for ArmVisitor<'tcx, 'l> {
123120

124121
fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) {
125122
if_chain! {
126-
if let ExprKind::MethodCall(path, _span, args) = &expr.kind;
127-
if path.ident.to_string() == "lock";
128-
let ty = self.cx.tables.expr_ty(&args[0]);
129-
if match_type(self.cx, ty, &paths::MUTEX);
123+
if let Some(mutex) = is_mutex_lock_call(self.cx, expr);
130124
then {
131-
self.found_mutex = Some(&args[0]);
125+
self.found_mutex = Some(mutex);
132126
self.mutex_lock_called = true;
133127
return;
134128
}
@@ -150,3 +144,17 @@ impl<'tcx, 'l> ArmVisitor<'tcx, 'l> {
150144
}
151145
}
152146
}
147+
148+
fn is_mutex_lock_call<'a>(cx: &LateContext<'a, '_>, expr: &'a Expr<'_>) -> Option<&'a Expr<'a>> {
149+
if_chain! {
150+
if let ExprKind::MethodCall(path, _span, args) = &expr.kind;
151+
if path.ident.to_string() == "lock";
152+
let ty = cx.tables.expr_ty(&args[0]);
153+
if match_type(cx, ty, &paths::MUTEX);
154+
then {
155+
Some(&args[0])
156+
} else {
157+
None
158+
}
159+
}
160+
}

doc/adding_lints.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ Once we are satisfied with the output, we need to run
101101
Please note that, we should run `TESTNAME=foo_functions cargo uitest`
102102
every time before running `tests/ui/update-all-references.sh`.
103103
Running `TESTNAME=foo_functions cargo uitest` should pass then. When we commit
104-
our lint, we need to commit the generated `.stderr` files, too. In general you
105-
should only commit changed files by `tests/ui/update-all-references.sh` for the
104+
our lint, we need to commit the generated `.stderr` files, too. In general, you
105+
should only commit files changed by `tests/ui/update-all-references.sh` for the
106106
specific lint you are creating/editing.
107107

108108
## Rustfix tests

tests/ui/if_let_mutex.rs

+14
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ fn if_let() {
1515
};
1616
}
1717

18+
// This is the most common case as the above case is pretty
19+
// contrived.
1820
fn if_let_option() {
1921
let m = Mutex::new(Some(0_u8));
2022
if let Some(locked) = m.lock().unwrap().deref() {
@@ -25,4 +27,16 @@ fn if_let_option() {
2527
};
2628
}
2729

30+
// When mutexs are different don't warn
31+
fn if_let_different_mutex() {
32+
let m = Mutex::new(Some(0_u8));
33+
let other = Mutex::new(None::<u8>);
34+
if let Some(locked) = m.lock().unwrap().deref() {
35+
do_stuff(locked);
36+
} else {
37+
let lock = other.lock().unwrap();
38+
do_stuff(lock);
39+
};
40+
}
41+
2842
fn main() {}

0 commit comments

Comments
 (0)