Move update_lints logic to its own module
This commit is contained in:
parent
deb1979b8e
commit
5de019074b
@ -1,19 +1,7 @@
|
|||||||
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
|
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
|
||||||
|
|
||||||
use clap::{App, Arg, SubCommand};
|
use clap::{App, Arg, SubCommand};
|
||||||
use clippy_dev::{
|
use clippy_dev::{fmt, new_lint, stderr_length_check, update_lints};
|
||||||
gather_all, gen_changelog_lint_list, gen_deprecated, gen_lint_group_list, gen_modules_list, gen_register_lint_list,
|
|
||||||
replace_region_in_file, Lint, DOCS_LINK,
|
|
||||||
};
|
|
||||||
use std::path::Path;
|
|
||||||
|
|
||||||
use clippy_dev::{fmt, new_lint, stderr_length_check};
|
|
||||||
|
|
||||||
#[derive(Clone, Copy, PartialEq)]
|
|
||||||
enum UpdateMode {
|
|
||||||
Check,
|
|
||||||
Change,
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let matches = App::new("Clippy developer tooling")
|
let matches = App::new("Clippy developer tooling")
|
||||||
@ -107,11 +95,11 @@ fn main() {
|
|||||||
},
|
},
|
||||||
("update_lints", Some(matches)) => {
|
("update_lints", Some(matches)) => {
|
||||||
if matches.is_present("print-only") {
|
if matches.is_present("print-only") {
|
||||||
print_lints();
|
update_lints::print_lints();
|
||||||
} else if matches.is_present("check") {
|
} else if matches.is_present("check") {
|
||||||
update_lints(UpdateMode::Check);
|
update_lints::run(update_lints::UpdateMode::Check);
|
||||||
} else {
|
} else {
|
||||||
update_lints(UpdateMode::Change);
|
update_lints::run(update_lints::UpdateMode::Change);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
("new_lint", Some(matches)) => {
|
("new_lint", Some(matches)) => {
|
||||||
@ -120,7 +108,7 @@ fn main() {
|
|||||||
matches.value_of("name"),
|
matches.value_of("name"),
|
||||||
matches.value_of("category"),
|
matches.value_of("category"),
|
||||||
) {
|
) {
|
||||||
Ok(_) => update_lints(UpdateMode::Change),
|
Ok(_) => update_lints::run(update_lints::UpdateMode::Change),
|
||||||
Err(e) => eprintln!("Unable to create lint: {}", e),
|
Err(e) => eprintln!("Unable to create lint: {}", e),
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -130,161 +118,3 @@ fn main() {
|
|||||||
_ => {},
|
_ => {},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn print_lints() {
|
|
||||||
let lint_list = gather_all();
|
|
||||||
let usable_lints: Vec<Lint> = Lint::usable_lints(lint_list).collect();
|
|
||||||
let usable_lint_count = usable_lints.len();
|
|
||||||
let grouped_by_lint_group = Lint::by_lint_group(usable_lints.into_iter());
|
|
||||||
|
|
||||||
for (lint_group, mut lints) in grouped_by_lint_group {
|
|
||||||
if lint_group == "Deprecated" {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
println!("\n## {}", lint_group);
|
|
||||||
|
|
||||||
lints.sort_by_key(|l| l.name.clone());
|
|
||||||
|
|
||||||
for lint in lints {
|
|
||||||
println!(
|
|
||||||
"* [{}]({}#{}) ({})",
|
|
||||||
lint.name,
|
|
||||||
clippy_dev::DOCS_LINK,
|
|
||||||
lint.name,
|
|
||||||
lint.desc
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
println!("there are {} lints", usable_lint_count);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[allow(clippy::too_many_lines)]
|
|
||||||
fn update_lints(update_mode: UpdateMode) {
|
|
||||||
let lint_list: Vec<Lint> = gather_all().collect();
|
|
||||||
|
|
||||||
let internal_lints = Lint::internal_lints(lint_list.clone().into_iter());
|
|
||||||
|
|
||||||
let usable_lints: Vec<Lint> = Lint::usable_lints(lint_list.clone().into_iter()).collect();
|
|
||||||
let usable_lint_count = usable_lints.len();
|
|
||||||
|
|
||||||
let mut sorted_usable_lints = usable_lints.clone();
|
|
||||||
sorted_usable_lints.sort_by_key(|lint| lint.name.clone());
|
|
||||||
|
|
||||||
let mut file_change = replace_region_in_file(
|
|
||||||
Path::new("src/lintlist/mod.rs"),
|
|
||||||
"begin lint list",
|
|
||||||
"end lint list",
|
|
||||||
false,
|
|
||||||
update_mode == UpdateMode::Change,
|
|
||||||
|| {
|
|
||||||
format!(
|
|
||||||
"pub const ALL_LINTS: [Lint; {}] = {:#?};",
|
|
||||||
sorted_usable_lints.len(),
|
|
||||||
sorted_usable_lints
|
|
||||||
)
|
|
||||||
.lines()
|
|
||||||
.map(ToString::to_string)
|
|
||||||
.collect::<Vec<_>>()
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.changed;
|
|
||||||
|
|
||||||
file_change |= replace_region_in_file(
|
|
||||||
Path::new("README.md"),
|
|
||||||
&format!(r#"\[There are \d+ lints included in this crate!\]\({}\)"#, DOCS_LINK),
|
|
||||||
"",
|
|
||||||
true,
|
|
||||||
update_mode == UpdateMode::Change,
|
|
||||||
|| {
|
|
||||||
vec![format!(
|
|
||||||
"[There are {} lints included in this crate!]({})",
|
|
||||||
usable_lint_count, DOCS_LINK
|
|
||||||
)]
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.changed;
|
|
||||||
|
|
||||||
file_change |= replace_region_in_file(
|
|
||||||
Path::new("CHANGELOG.md"),
|
|
||||||
"<!-- begin autogenerated links to lint list -->",
|
|
||||||
"<!-- end autogenerated links to lint list -->",
|
|
||||||
false,
|
|
||||||
update_mode == UpdateMode::Change,
|
|
||||||
|| gen_changelog_lint_list(lint_list.clone()),
|
|
||||||
)
|
|
||||||
.changed;
|
|
||||||
|
|
||||||
file_change |= replace_region_in_file(
|
|
||||||
Path::new("clippy_lints/src/lib.rs"),
|
|
||||||
"begin deprecated lints",
|
|
||||||
"end deprecated lints",
|
|
||||||
false,
|
|
||||||
update_mode == UpdateMode::Change,
|
|
||||||
|| gen_deprecated(&lint_list),
|
|
||||||
)
|
|
||||||
.changed;
|
|
||||||
|
|
||||||
file_change |= replace_region_in_file(
|
|
||||||
Path::new("clippy_lints/src/lib.rs"),
|
|
||||||
"begin register lints",
|
|
||||||
"end register lints",
|
|
||||||
false,
|
|
||||||
update_mode == UpdateMode::Change,
|
|
||||||
|| gen_register_lint_list(&lint_list),
|
|
||||||
)
|
|
||||||
.changed;
|
|
||||||
|
|
||||||
file_change |= replace_region_in_file(
|
|
||||||
Path::new("clippy_lints/src/lib.rs"),
|
|
||||||
"begin lints modules",
|
|
||||||
"end lints modules",
|
|
||||||
false,
|
|
||||||
update_mode == UpdateMode::Change,
|
|
||||||
|| gen_modules_list(lint_list.clone()),
|
|
||||||
)
|
|
||||||
.changed;
|
|
||||||
|
|
||||||
// Generate lists of lints in the clippy::all lint group
|
|
||||||
file_change |= replace_region_in_file(
|
|
||||||
Path::new("clippy_lints/src/lib.rs"),
|
|
||||||
r#"store.register_group\(true, "clippy::all""#,
|
|
||||||
r#"\]\);"#,
|
|
||||||
false,
|
|
||||||
update_mode == UpdateMode::Change,
|
|
||||||
|| {
|
|
||||||
// clippy::all should only include the following lint groups:
|
|
||||||
let all_group_lints = usable_lints
|
|
||||||
.clone()
|
|
||||||
.into_iter()
|
|
||||||
.filter(|l| {
|
|
||||||
l.group == "correctness" || l.group == "style" || l.group == "complexity" || l.group == "perf"
|
|
||||||
})
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
gen_lint_group_list(all_group_lints)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.changed;
|
|
||||||
|
|
||||||
// Generate the list of lints for all other lint groups
|
|
||||||
for (lint_group, lints) in Lint::by_lint_group(usable_lints.into_iter().chain(internal_lints)) {
|
|
||||||
file_change |= replace_region_in_file(
|
|
||||||
Path::new("clippy_lints/src/lib.rs"),
|
|
||||||
&format!("store.register_group\\(true, \"clippy::{}\"", lint_group),
|
|
||||||
r#"\]\);"#,
|
|
||||||
false,
|
|
||||||
update_mode == UpdateMode::Change,
|
|
||||||
|| gen_lint_group_list(lints.clone()),
|
|
||||||
)
|
|
||||||
.changed;
|
|
||||||
}
|
|
||||||
|
|
||||||
if update_mode == UpdateMode::Check && file_change {
|
|
||||||
println!(
|
|
||||||
"Not all lints defined properly. \
|
|
||||||
Please run `cargo dev update_lints` to make sure all lints are defined properly."
|
|
||||||
);
|
|
||||||
std::process::exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
163
clippy_dev/src/update_lints.rs
Normal file
163
clippy_dev/src/update_lints.rs
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
use crate::{
|
||||||
|
gather_all, gen_changelog_lint_list, gen_deprecated, gen_lint_group_list, gen_modules_list, gen_register_lint_list,
|
||||||
|
replace_region_in_file, Lint, DOCS_LINK,
|
||||||
|
};
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, PartialEq)]
|
||||||
|
pub enum UpdateMode {
|
||||||
|
Check,
|
||||||
|
Change,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[allow(clippy::too_many_lines)]
|
||||||
|
pub fn run(update_mode: UpdateMode) {
|
||||||
|
let lint_list: Vec<Lint> = gather_all().collect();
|
||||||
|
|
||||||
|
let internal_lints = Lint::internal_lints(lint_list.clone().into_iter());
|
||||||
|
|
||||||
|
let usable_lints: Vec<Lint> = Lint::usable_lints(lint_list.clone().into_iter()).collect();
|
||||||
|
let usable_lint_count = usable_lints.len();
|
||||||
|
|
||||||
|
let mut sorted_usable_lints = usable_lints.clone();
|
||||||
|
sorted_usable_lints.sort_by_key(|lint| lint.name.clone());
|
||||||
|
|
||||||
|
let mut file_change = replace_region_in_file(
|
||||||
|
Path::new("src/lintlist/mod.rs"),
|
||||||
|
"begin lint list",
|
||||||
|
"end lint list",
|
||||||
|
false,
|
||||||
|
update_mode == UpdateMode::Change,
|
||||||
|
|| {
|
||||||
|
format!(
|
||||||
|
"pub const ALL_LINTS: [Lint; {}] = {:#?};",
|
||||||
|
sorted_usable_lints.len(),
|
||||||
|
sorted_usable_lints
|
||||||
|
)
|
||||||
|
.lines()
|
||||||
|
.map(ToString::to_string)
|
||||||
|
.collect::<Vec<_>>()
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.changed;
|
||||||
|
|
||||||
|
file_change |= replace_region_in_file(
|
||||||
|
Path::new("README.md"),
|
||||||
|
&format!(r#"\[There are \d+ lints included in this crate!\]\({}\)"#, DOCS_LINK),
|
||||||
|
"",
|
||||||
|
true,
|
||||||
|
update_mode == UpdateMode::Change,
|
||||||
|
|| {
|
||||||
|
vec![format!(
|
||||||
|
"[There are {} lints included in this crate!]({})",
|
||||||
|
usable_lint_count, DOCS_LINK
|
||||||
|
)]
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.changed;
|
||||||
|
|
||||||
|
file_change |= replace_region_in_file(
|
||||||
|
Path::new("CHANGELOG.md"),
|
||||||
|
"<!-- begin autogenerated links to lint list -->",
|
||||||
|
"<!-- end autogenerated links to lint list -->",
|
||||||
|
false,
|
||||||
|
update_mode == UpdateMode::Change,
|
||||||
|
|| gen_changelog_lint_list(lint_list.clone()),
|
||||||
|
)
|
||||||
|
.changed;
|
||||||
|
|
||||||
|
file_change |= replace_region_in_file(
|
||||||
|
Path::new("clippy_lints/src/lib.rs"),
|
||||||
|
"begin deprecated lints",
|
||||||
|
"end deprecated lints",
|
||||||
|
false,
|
||||||
|
update_mode == UpdateMode::Change,
|
||||||
|
|| gen_deprecated(&lint_list),
|
||||||
|
)
|
||||||
|
.changed;
|
||||||
|
|
||||||
|
file_change |= replace_region_in_file(
|
||||||
|
Path::new("clippy_lints/src/lib.rs"),
|
||||||
|
"begin register lints",
|
||||||
|
"end register lints",
|
||||||
|
false,
|
||||||
|
update_mode == UpdateMode::Change,
|
||||||
|
|| gen_register_lint_list(&lint_list),
|
||||||
|
)
|
||||||
|
.changed;
|
||||||
|
|
||||||
|
file_change |= replace_region_in_file(
|
||||||
|
Path::new("clippy_lints/src/lib.rs"),
|
||||||
|
"begin lints modules",
|
||||||
|
"end lints modules",
|
||||||
|
false,
|
||||||
|
update_mode == UpdateMode::Change,
|
||||||
|
|| gen_modules_list(lint_list.clone()),
|
||||||
|
)
|
||||||
|
.changed;
|
||||||
|
|
||||||
|
// Generate lists of lints in the clippy::all lint group
|
||||||
|
file_change |= replace_region_in_file(
|
||||||
|
Path::new("clippy_lints/src/lib.rs"),
|
||||||
|
r#"store.register_group\(true, "clippy::all""#,
|
||||||
|
r#"\]\);"#,
|
||||||
|
false,
|
||||||
|
update_mode == UpdateMode::Change,
|
||||||
|
|| {
|
||||||
|
// clippy::all should only include the following lint groups:
|
||||||
|
let all_group_lints = usable_lints
|
||||||
|
.clone()
|
||||||
|
.into_iter()
|
||||||
|
.filter(|l| {
|
||||||
|
l.group == "correctness" || l.group == "style" || l.group == "complexity" || l.group == "perf"
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
gen_lint_group_list(all_group_lints)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.changed;
|
||||||
|
|
||||||
|
// Generate the list of lints for all other lint groups
|
||||||
|
for (lint_group, lints) in Lint::by_lint_group(usable_lints.into_iter().chain(internal_lints)) {
|
||||||
|
file_change |= replace_region_in_file(
|
||||||
|
Path::new("clippy_lints/src/lib.rs"),
|
||||||
|
&format!("store.register_group\\(true, \"clippy::{}\"", lint_group),
|
||||||
|
r#"\]\);"#,
|
||||||
|
false,
|
||||||
|
update_mode == UpdateMode::Change,
|
||||||
|
|| gen_lint_group_list(lints.clone()),
|
||||||
|
)
|
||||||
|
.changed;
|
||||||
|
}
|
||||||
|
|
||||||
|
if update_mode == UpdateMode::Check && file_change {
|
||||||
|
println!(
|
||||||
|
"Not all lints defined properly. \
|
||||||
|
Please run `cargo dev update_lints` to make sure all lints are defined properly."
|
||||||
|
);
|
||||||
|
std::process::exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn print_lints() {
|
||||||
|
let lint_list = gather_all();
|
||||||
|
let usable_lints: Vec<Lint> = Lint::usable_lints(lint_list).collect();
|
||||||
|
let usable_lint_count = usable_lints.len();
|
||||||
|
let grouped_by_lint_group = Lint::by_lint_group(usable_lints.into_iter());
|
||||||
|
|
||||||
|
for (lint_group, mut lints) in grouped_by_lint_group {
|
||||||
|
if lint_group == "Deprecated" {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
println!("\n## {}", lint_group);
|
||||||
|
|
||||||
|
lints.sort_by_key(|l| l.name.clone());
|
||||||
|
|
||||||
|
for lint in lints {
|
||||||
|
println!("* [{}]({}#{}) ({})", lint.name, DOCS_LINK, lint.name, lint.desc);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
println!("there are {} lints", usable_lint_count);
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user