rust-clippy/clippy_lints/src/unused_io_amount.rs

102 lines
3.5 KiB
Rust
Raw Normal View History

2018-10-06 16:18:06 +00:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2018-11-27 20:14:15 +00:00
use crate::rustc::hir;
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use crate::rustc::{declare_tool_lint, lint_array};
2018-05-30 08:15:50 +00:00
use crate::utils::{is_try, match_qpath, match_trait_method, paths, span_lint};
2017-01-07 11:35:45 +00:00
/// **What it does:** Checks for unused written/read amount.
///
2017-08-09 07:30:56 +00:00
/// **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
2017-01-07 11:35:45 +00:00
/// `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(())
/// }
/// ```
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
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"
}
pub struct UnusedIoAmount;
impl LintPass for UnusedIoAmount {
fn get_lints(&self) -> LintArray {
lint_array!(UNUSED_IO_AMOUNT)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnusedIoAmount {
2018-07-23 11:01:12 +00:00
fn check_stmt(&mut self, cx: &LateContext<'_, '_>, s: &hir::Stmt) {
2017-01-07 11:35:45 +00:00
let expr = match s.node {
2018-07-12 08:53:53 +00:00
hir::StmtKind::Semi(ref expr, _) | hir::StmtKind::Expr(ref expr, _) => &**expr,
2017-01-07 11:35:45 +00:00
_ => return,
};
match expr.node {
2018-07-12 07:30:57 +00:00
hir::ExprKind::Match(ref res, _, _) if is_try(expr).is_some() => {
if let hir::ExprKind::Call(ref func, ref args) = res.node {
if let hir::ExprKind::Path(ref path) = func.node {
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
},
_ => (),
}
}
}
2018-07-23 11:01:12 +00:00
fn check_method_call(cx: &LateContext<'_, '_>, call: &hir::Expr, expr: &hir::Expr) {
2018-07-12 07:30:57 +00:00
if let hir::ExprKind::MethodCall(ref path, _, _) = call.node {
2018-06-28 13:46:58 +00:00
let symbol = &*path.ident.as_str();
2017-01-07 11:35:45 +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",
);
2017-01-07 11:35:45 +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
}
}
}