mirror of
https://github.com/crate-ci/typos.git
synced 2024-12-03 14:31:03 -05:00
c8d1058a71
This is +/- 15%, depending on the benchmark.
65 lines
1.6 KiB
Rust
65 lines
1.6 KiB
Rust
use structopt::StructOpt;
|
|
|
|
const DICT: &[u8] = include_bytes!("../../assets/words.csv");
|
|
|
|
fn generate<W: std::io::Write>(file: &mut W) {
|
|
writeln!(
|
|
file,
|
|
"// This file is code-genned by {}",
|
|
env!("CARGO_PKG_NAME")
|
|
)
|
|
.unwrap();
|
|
writeln!(file, "#![allow(clippy::unreadable_literal)]",).unwrap();
|
|
writeln!(file).unwrap();
|
|
|
|
let records: Vec<_> = csv::ReaderBuilder::new()
|
|
.has_headers(false)
|
|
.flexible(true)
|
|
.from_reader(DICT)
|
|
.records()
|
|
.map(|r| r.unwrap())
|
|
.collect();
|
|
dictgen::generate_trie(
|
|
file,
|
|
"WORD",
|
|
"&'static [&'static str]",
|
|
records.iter().map(|record| {
|
|
let mut record_fields = record.iter();
|
|
let key = record_fields.next().unwrap();
|
|
let value = format!(
|
|
"&[{}]",
|
|
itertools::join(record_fields.map(|field| format!(r#""{}""#, field)), ", ")
|
|
);
|
|
(key, value)
|
|
}),
|
|
64,
|
|
)
|
|
.unwrap();
|
|
}
|
|
|
|
#[derive(Debug, StructOpt)]
|
|
#[structopt(rename_all = "kebab-case")]
|
|
struct Options {
|
|
#[structopt(flatten)]
|
|
codegen: codegenrs::CodeGenArgs,
|
|
#[structopt(flatten)]
|
|
rustmft: codegenrs::RustfmtArgs,
|
|
}
|
|
|
|
fn run() -> Result<i32, Box<dyn std::error::Error>> {
|
|
let options = Options::from_args();
|
|
|
|
let mut content = vec![];
|
|
generate(&mut content);
|
|
|
|
let content = String::from_utf8(content)?;
|
|
let content = options.rustmft.reformat(&content)?;
|
|
options.codegen.write_str(&content)?;
|
|
|
|
Ok(0)
|
|
}
|
|
|
|
fn main() {
|
|
let code = run().unwrap();
|
|
std::process::exit(code);
|
|
}
|