rust-clippy/clippy_lints/src/unused_io_amount.rs

88 lines
3 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};
2019-12-03 23:16:03 +00:00
use rustc::declare_lint_pass;
use rustc::hir;
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
2019-12-03 23:16:03 +00:00
use rustc_session::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` and `io::Read::read` 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();
2019-05-17 21:53:54 +00:00
if match_trait_method(cx, call, &paths::IO_READ) && symbol == "read" {
2017-08-09 07:30:56 +00:00
span_lint(
cx,
UNUSED_IO_AMOUNT,
expr.span,
"handle read amount returned or use `Read::read_exact` instead",
);
2019-05-17 21:53:54 +00:00
} else if match_trait_method(cx, call, &paths::IO_WRITE) && symbol == "write" {
2017-08-09 07:30:56 +00:00
span_lint(
cx,
UNUSED_IO_AMOUNT,
expr.span,
"handle written amount returned or use `Write::write_all` instead",
);
2017-01-07 11:35:45 +00:00
}
}
}