rust/src/open_options.rs

140 lines
5.6 KiB
Rust
Raw Normal View History

2015-10-07 06:15:14 -05:00
use rustc::lint::*;
use rustc_front::hir::{Expr, ExprMethodCall, ExprLit};
use utils::{walk_ptrs_ty_depth, match_type, span_lint, OPEN_OPTIONS_PATH};
use syntax::codemap::{Span, Spanned};
use syntax::ast::Lit_::LitBool;
declare_lint! {
pub NONSENSICAL_OPEN_OPTIONS,
Warn,
2015-10-07 10:15:44 -05:00
"nonsensical combination of options for opening a file"
2015-10-07 06:15:14 -05:00
}
#[derive(Copy,Clone)]
pub struct NonSensicalOpenOptions;
impl LintPass for NonSensicalOpenOptions {
fn get_lints(&self) -> LintArray {
lint_array!(NONSENSICAL_OPEN_OPTIONS)
}
}
impl LateLintPass for NonSensicalOpenOptions {
fn check_expr(&mut self, cx: &LateContext, e: &Expr) {
if let ExprMethodCall(ref name, _, ref arguments) = e.node {
let (obj_ty, _) = walk_ptrs_ty_depth(cx.tcx.expr_ty(&arguments[0]));
if name.node.as_str() == "open" && match_type(cx, obj_ty, &OPEN_OPTIONS_PATH){
let mut options = Vec::new();
get_open_options(cx, &arguments[0], &mut options);
check_open_options(cx, &options, e.span);
}
}
}
}
#[derive(Debug)]
enum Argument {
True,
False,
Unknown
}
#[derive(Debug)]
enum OpenOption {
2015-10-07 10:15:44 -05:00
Write,
Read,
Truncate,
Create,
Append
2015-10-07 06:15:14 -05:00
}
2015-10-07 10:15:44 -05:00
fn get_open_options(cx: &LateContext, argument: &Expr, options: &mut Vec<(OpenOption, Argument)>) {
2015-10-07 06:15:14 -05:00
if let ExprMethodCall(ref name, _, ref arguments) = argument.node {
let (obj_ty, _) = walk_ptrs_ty_depth(cx.tcx.expr_ty(&arguments[0]));
// Only proceed if this is a call on some object of type std::fs::OpenOptions
if match_type(cx, obj_ty, &OPEN_OPTIONS_PATH) && arguments.len() >= 2 {
let argument_option = match arguments[1].node {
ExprLit(ref span) => {
if let Spanned {node: LitBool(lit), span: _} = **span {
if lit {Argument::True} else {Argument::False}
} else {
return; // The function is called with a literal
// which is not a boolean literal. This is theoretically
// possible, but not very likely.
}
},
_ => {
Argument::Unknown
}
};
match &*name.node.as_str() {
"create" => {
2015-10-07 10:15:44 -05:00
options.push((OpenOption::Create, argument_option));
2015-10-07 06:15:14 -05:00
},
"append" => {
2015-10-07 10:15:44 -05:00
options.push((OpenOption::Append, argument_option));
2015-10-07 06:15:14 -05:00
},
"truncate" => {
2015-10-07 10:15:44 -05:00
options.push((OpenOption::Truncate, argument_option));
2015-10-07 06:15:14 -05:00
},
"read" => {
2015-10-07 10:15:44 -05:00
options.push((OpenOption::Read, argument_option));
2015-10-07 06:15:14 -05:00
},
"write" => {
2015-10-07 10:15:44 -05:00
options.push((OpenOption::Write, argument_option));
2015-10-07 06:15:14 -05:00
},
_ => {}
}
get_open_options(cx, &arguments[0], options);
}
}
}
2015-10-07 10:15:44 -05:00
fn check_for_duplicates(cx: &LateContext, options: &[(OpenOption, Argument)], span: Span) {
2015-10-07 06:15:14 -05:00
// This code is almost duplicated (oh, the irony), but I haven't found a way to unify it.
2015-10-07 10:15:44 -05:00
if options.iter().filter(|o| if let (OpenOption::Create, _) = **o {true} else {false}).count() > 1 {
2015-10-07 06:15:14 -05:00
span_lint(cx, NONSENSICAL_OPEN_OPTIONS, span, "The method \"create\" \
is called more than once");
}
2015-10-07 10:15:44 -05:00
if options.iter().filter(|o| if let (OpenOption::Append, _) = **o {true} else {false}).count() > 1 {
2015-10-07 06:15:14 -05:00
span_lint(cx, NONSENSICAL_OPEN_OPTIONS, span, "The method \"append\" \
is called more than once");
}
2015-10-07 10:15:44 -05:00
if options.iter().filter(|o| if let (OpenOption::Truncate, _) = **o {true} else {false}).count() > 1 {
2015-10-07 06:15:14 -05:00
span_lint(cx, NONSENSICAL_OPEN_OPTIONS, span, "The method \"truncate\" \
is called more than once");
}
2015-10-07 10:15:44 -05:00
if options.iter().filter(|o| if let (OpenOption::Read, _) = **o {true} else {false}).count() > 1 {
2015-10-07 06:15:14 -05:00
span_lint(cx, NONSENSICAL_OPEN_OPTIONS, span, "The method \"read\" \
is called more than once");
}
2015-10-07 10:15:44 -05:00
if options.iter().filter(|o| if let (OpenOption::Write, _) = **o {true} else {false}).count() > 1 {
2015-10-07 06:15:14 -05:00
span_lint(cx, NONSENSICAL_OPEN_OPTIONS, span, "The method \"write\" \
is called more than once");
}
}
2015-10-07 10:15:44 -05:00
fn check_for_inconsistencies(cx: &LateContext, options: &[(OpenOption, Argument)], span: Span) {
2015-10-07 06:15:14 -05:00
// Truncate + read makes no sense.
2015-10-07 10:15:44 -05:00
if options.iter().filter(|o| if let (OpenOption::Read, Argument::True) = **o {true} else {false}).count() > 0 &&
options.iter().filter(|o| if let (OpenOption::Truncate, Argument::True) = **o {true} else {false}).count() > 0 {
2015-10-07 06:15:14 -05:00
span_lint(cx, NONSENSICAL_OPEN_OPTIONS, span, "File opened with \"truncate\" and \"read\"");
}
// Append + truncate makes no sense.
2015-10-07 10:15:44 -05:00
if options.iter().filter(|o| if let (OpenOption::Append, Argument::True) = **o {true} else {false}).count() > 0 &&
options.iter().filter(|o| if let (OpenOption::Truncate, Argument::True) = **o {true} else {false}).count() > 0 {
2015-10-07 06:15:14 -05:00
span_lint(cx, NONSENSICAL_OPEN_OPTIONS, span, "File opened with \"append\" and \"truncate\"");
}
}
2015-10-07 10:15:44 -05:00
fn check_open_options(cx: &LateContext, options: &[(OpenOption, Argument)], span: Span) {
2015-10-07 06:15:14 -05:00
check_for_duplicates(cx, options, span);
check_for_inconsistencies(cx, options, span);
}