2021-03-15 19:55:45 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
2021-03-14 18:17:44 -05:00
|
|
|
use clippy_utils::source::snippet;
|
2021-03-16 11:06:34 -05:00
|
|
|
use clippy_utils::{match_def_path, paths};
|
2020-08-28 04:40:22 -05:00
|
|
|
use if_chain::if_chain;
|
|
|
|
use rustc_errors::Applicability;
|
2020-08-28 05:35:04 -05:00
|
|
|
use rustc_hir::{Expr, ExprKind};
|
2020-08-28 04:40:22 -05:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2021-07-02 13:37:11 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks usage of `std::fs::create_dir` and suggest using `std::fs::create_dir_all` instead.
|
2020-08-28 04:40:22 -05:00
|
|
|
///
|
2021-07-02 13:37:11 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Sometimes `std::fs::create_dir` is mistakenly chosen over `std::fs::create_dir_all`.
|
2020-08-28 04:40:22 -05:00
|
|
|
///
|
2021-07-02 13:37:11 -05:00
|
|
|
/// ### Example
|
2020-08-28 04:40:22 -05:00
|
|
|
///
|
|
|
|
/// ```rust
|
2020-08-28 05:56:03 -05:00
|
|
|
/// std::fs::create_dir("foo");
|
2020-08-28 04:40:22 -05:00
|
|
|
/// ```
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
2020-08-28 05:56:03 -05:00
|
|
|
/// std::fs::create_dir_all("foo");
|
2020-08-28 04:40:22 -05:00
|
|
|
/// ```
|
|
|
|
pub CREATE_DIR,
|
|
|
|
restriction,
|
|
|
|
"calling `std::fs::create_dir` instead of `std::fs::create_dir_all`"
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint_pass!(CreateDir => [CREATE_DIR]);
|
|
|
|
|
|
|
|
impl LateLintPass<'_> for CreateDir {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'_>, expr: &Expr<'_>) {
|
|
|
|
if_chain! {
|
2021-04-02 16:35:32 -05:00
|
|
|
if let ExprKind::Call(func, args) = expr.kind;
|
2020-08-28 04:40:22 -05:00
|
|
|
if let ExprKind::Path(ref path) = func.kind;
|
2020-08-31 08:40:47 -05:00
|
|
|
if let Some(def_id) = cx.qpath_res(path, func.hir_id).opt_def_id();
|
|
|
|
if match_def_path(cx, def_id, &paths::STD_FS_CREATE_DIR);
|
2020-08-28 04:40:22 -05:00
|
|
|
then {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
CREATE_DIR,
|
|
|
|
expr.span,
|
|
|
|
"calling `std::fs::create_dir` where there may be a better way",
|
|
|
|
"consider calling `std::fs::create_dir_all` instead",
|
2020-09-08 09:35:19 -05:00
|
|
|
format!("create_dir_all({})", snippet(cx, args[0].span, "..")),
|
2020-08-29 00:20:01 -05:00
|
|
|
Applicability::MaybeIncorrect,
|
2020-08-28 04:40:22 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|