-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(dict): Speed up build times by caching codegen
- Loading branch information
Showing
8 changed files
with
36,067 additions
and
418 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[package] | ||
name = "typos-codegen" | ||
version = "1.0.0" | ||
authors = ["Ed Page <eopage@gmail.com>"] | ||
description = "Source Code Spelling Correction" | ||
repository = "https://github.com/crate-ci/imperative" | ||
documentation = "https://docs.rs/imperative" | ||
readme = "README.md" | ||
categories = ["text-processing"] | ||
license = "MIT" | ||
edition = "2018" | ||
publish = false | ||
|
||
[badges] | ||
travis-ci = { repository = "epage/typos" } | ||
appveyor = { repository = "epage/typos" } | ||
|
||
[dependencies] | ||
phf = { version = "0.7", features = ["unicase"] } | ||
phf_codegen = "0.7" | ||
csv = "1.0" | ||
unicase = "1.1" | ||
codegenrs = "0.1" | ||
structopt = "0.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
use structopt::StructOpt; | ||
|
||
fn generate<W: std::io::Write>(input: &[u8], file: &mut W) { | ||
writeln!( | ||
file, | ||
"// This file is code-genned by {}", | ||
env!("CARGO_PKG_NAME") | ||
) | ||
.unwrap(); | ||
writeln!(file).unwrap(); | ||
writeln!(file, "use unicase::UniCase;").unwrap(); | ||
|
||
writeln!( | ||
file, | ||
"pub(crate) static WORD_DICTIONARY: phf::Map<unicase::UniCase<&'static str>, &'static str> = " | ||
) | ||
.unwrap(); | ||
let mut builder = phf_codegen::Map::new(); | ||
let records: Vec<_> = csv::Reader::from_reader(input) | ||
.records() | ||
.map(|r| r.unwrap()) | ||
.collect(); | ||
for record in &records { | ||
let value = format!(r#""{}""#, &record[1]); | ||
builder.entry(unicase::UniCase(&record[0]), &value); | ||
} | ||
builder.build(file).unwrap(); | ||
writeln!(file, ";").unwrap(); | ||
} | ||
|
||
#[derive(Debug, StructOpt)] | ||
#[structopt(rename_all = "kebab-case")] | ||
struct Options { | ||
#[structopt(long, parse(from_os_str))] | ||
input: std::path::PathBuf, | ||
#[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 content = { | ||
let mut content = vec![]; | ||
let input = std::fs::read(&options.input)?; | ||
generate(&input, &mut content); | ||
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); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.