|
| 1 | +use crate::methods::method_call; |
| 2 | +use clippy_utils::diagnostics::span_lint_and_sugg; |
| 3 | +use clippy_utils::peel_blocks; |
| 4 | +use rustc_ast::LitKind; |
| 5 | +use rustc_errors::Applicability; |
| 6 | +use rustc_hir::{Expr, ExprKind}; |
| 7 | +use rustc_lint::{LateContext, LateLintPass}; |
| 8 | +use rustc_middle::ty; |
| 9 | +use rustc_session::declare_lint_pass; |
| 10 | +use rustc_span::{sym, BytePos, Span}; |
| 11 | + |
| 12 | +declare_clippy_lint! { |
| 13 | + /// ### What it does |
| 14 | + /// Checks if both `.write(true)` and `.append(true)` methods are called |
| 15 | + /// on a same `OpenOptions`. |
| 16 | + /// |
| 17 | + /// ### Why is this bad? |
| 18 | + /// `.append(true)` already enables `write(true)`, making this one |
| 19 | + /// superflous. |
| 20 | + /// |
| 21 | + /// ### Example |
| 22 | + /// ```no_run |
| 23 | + /// # use std::fs::OpenOptions; |
| 24 | + /// let _ = OpenOptions::new() |
| 25 | + /// .write(true) |
| 26 | + /// .append(true) |
| 27 | + /// .create(true) |
| 28 | + /// .open("file.json"); |
| 29 | + /// ``` |
| 30 | + /// Use instead: |
| 31 | + /// ```no_run |
| 32 | + /// # use std::fs::OpenOptions; |
| 33 | + /// let _ = OpenOptions::new() |
| 34 | + /// .append(true) |
| 35 | + /// .create(true) |
| 36 | + /// .open("file.json"); |
| 37 | + /// ``` |
| 38 | + #[clippy::version = "1.76.0"] |
| 39 | + pub INEFFECTIVE_OPEN_OPTIONS, |
| 40 | + suspicious, |
| 41 | + "usage of both `write(true)` and `append(true)` on same `OpenOptions`" |
| 42 | +} |
| 43 | + |
| 44 | +declare_lint_pass!(IneffectiveOpenOptions => [INEFFECTIVE_OPEN_OPTIONS]); |
| 45 | + |
| 46 | +fn index_if_arg_is_boolean(args: &[Expr<'_>], call_span: Span) -> Option<Span> { |
| 47 | + if let [arg] = args |
| 48 | + && let ExprKind::Lit(lit) = peel_blocks(arg).kind |
| 49 | + && lit.node == LitKind::Bool(true) |
| 50 | + { |
| 51 | + // The `.` is not included in the span so we cheat a little bit to include it as well. |
| 52 | + Some(call_span.with_lo(call_span.lo() - BytePos(1))) |
| 53 | + } else { |
| 54 | + None |
| 55 | + } |
| 56 | +} |
| 57 | + |
| 58 | +impl<'tcx> LateLintPass<'tcx> for IneffectiveOpenOptions { |
| 59 | + fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) { |
| 60 | + let Some(("open", mut receiver, [_arg], _, _)) = method_call(expr) else { |
| 61 | + return; |
| 62 | + }; |
| 63 | + let receiver_ty = cx.typeck_results().expr_ty(receiver); |
| 64 | + match receiver_ty.peel_refs().kind() { |
| 65 | + ty::Adt(adt, _) if cx.tcx.is_diagnostic_item(sym::FsOpenOptions, adt.did()) => {}, |
| 66 | + _ => return, |
| 67 | + } |
| 68 | + |
| 69 | + let mut append = None; |
| 70 | + let mut write = None; |
| 71 | + |
| 72 | + while let Some((name, recv, args, _, span)) = method_call(receiver) { |
| 73 | + if name == "append" { |
| 74 | + append = index_if_arg_is_boolean(args, span); |
| 75 | + } else if name == "write" { |
| 76 | + write = index_if_arg_is_boolean(args, span); |
| 77 | + } |
| 78 | + receiver = recv; |
| 79 | + } |
| 80 | + |
| 81 | + if let Some(write_span) = write |
| 82 | + && append.is_some() |
| 83 | + { |
| 84 | + span_lint_and_sugg( |
| 85 | + cx, |
| 86 | + INEFFECTIVE_OPEN_OPTIONS, |
| 87 | + write_span, |
| 88 | + "unnecessary use of `.write(true)` because there is `.append(true)`", |
| 89 | + "remove `.write(true)`", |
| 90 | + String::new(), |
| 91 | + Applicability::MachineApplicable, |
| 92 | + ); |
| 93 | + } |
| 94 | + } |
| 95 | +} |
0 commit comments