rust-clippy/clippy_lints/src/unused_io_amount.rs

92 lines
3.4 KiB
Rust
Raw Normal View History

2018-05-30 08:15:50 +00:00
use crate::utils::{is_try, match_qpath, match_trait_method, paths, span_lint};
2020-01-06 16:39:50 +00:00
use rustc_hir as hir;
2020-01-12 06:08:41 +00:00
use rustc_lint::{LateContext, LateLintPass};
2020-01-11 11:37:08 +00:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
2017-01-07 11:35:45 +00:00
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// **What it does:** Checks for unused written/read amount.
///
/// **Why is this bad?** `io::Write::write(_vectored)` and
/// `io::Read::read(_vectored)` are not guaranteed to
/// process the entire buffer. They return how many bytes were processed, which
/// might be smaller
/// than a given buffer's length. If you don't need to deal with
/// partial-write/read, use
/// `write_all`/`read_exact` instead.
///
/// **Known problems:** Detects only common patterns.
///
/// **Example:**
/// ```rust,ignore
/// use std::io;
/// fn foo<W: io::Write>(w: &mut W) -> io::Result<()> {
/// // must be `w.write_all(b"foo")?;`
/// w.write(b"foo")?;
/// Ok(())
/// }
/// ```
2017-01-07 11:35:45 +00:00
pub UNUSED_IO_AMOUNT,
2018-03-28 13:24:26 +00:00
correctness,
2017-01-07 11:35:45 +00:00
"unused written/read amount"
}
2019-04-08 20:43:55 +00:00
declare_lint_pass!(UnusedIoAmount => [UNUSED_IO_AMOUNT]);
2017-01-07 11:35:45 +00:00
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnusedIoAmount {
2019-12-27 07:12:26 +00:00
fn check_stmt(&mut self, cx: &LateContext<'_, '_>, s: &hir::Stmt<'_>) {
2019-09-27 15:16:06 +00:00
let expr = match s.kind {
hir::StmtKind::Semi(ref expr) | hir::StmtKind::Expr(ref expr) => &**expr,
2017-01-07 11:35:45 +00:00
_ => return,
};
2019-09-27 15:16:06 +00:00
match expr.kind {
2019-04-14 20:19:33 +00:00
hir::ExprKind::Match(ref res, _, _) if is_try(expr).is_some() => {
2019-09-27 15:16:06 +00:00
if let hir::ExprKind::Call(ref func, ref args) = res.kind {
if let hir::ExprKind::Path(ref path) = func.kind {
2019-05-17 21:53:54 +00:00
if match_qpath(path, &paths::TRY_INTO_RESULT) && args.len() == 1 {
2017-01-07 11:35:45 +00:00
check_method_call(cx, &args[0], expr);
}
}
} else {
check_method_call(cx, res, expr);
2017-01-07 11:35:45 +00:00
}
},
2018-07-12 07:30:57 +00:00
hir::ExprKind::MethodCall(ref path, _, ref args) => match &*path.ident.as_str() {
2017-09-05 09:33:04 +00:00
"expect" | "unwrap" | "unwrap_or" | "unwrap_or_else" => {
check_method_call(cx, &args[0], expr);
},
_ => (),
2017-01-07 11:35:45 +00:00
},
_ => (),
}
}
}
2019-12-27 07:12:26 +00:00
fn check_method_call(cx: &LateContext<'_, '_>, call: &hir::Expr<'_>, expr: &hir::Expr<'_>) {
2019-09-27 15:16:06 +00:00
if let hir::ExprKind::MethodCall(ref path, _, _) = call.kind {
2018-06-28 13:46:58 +00:00
let symbol = &*path.ident.as_str();
let read_trait = match_trait_method(cx, call, &paths::IO_READ);
let write_trait = match_trait_method(cx, call, &paths::IO_WRITE);
match (read_trait, write_trait, symbol) {
(true, _, "read") => span_lint(
2017-08-09 07:30:56 +00:00
cx,
UNUSED_IO_AMOUNT,
expr.span,
"read amount is not handled. Use `Read::read_exact` instead",
),
(true, _, "read_vectored") => span_lint(cx, UNUSED_IO_AMOUNT, expr.span, "read amount is not handled"),
(_, true, "write") => span_lint(
2017-08-09 07:30:56 +00:00
cx,
UNUSED_IO_AMOUNT,
expr.span,
"written amount is not handled. Use `Write::write_all` instead",
),
(_, true, "write_vectored") => span_lint(cx, UNUSED_IO_AMOUNT, expr.span, "written amount is not handled"),
_ => (),
2017-01-07 11:35:45 +00:00
}
}
}