Compare commits

...

6 commits
1.2 ... main

Author SHA1 Message Date
458d10e883 Updated LICENSE 2023-04-10 20:11:08 -05:00
SinTan1729
027f303f04
Update README.md 2022-06-10 03:19:11 -05:00
e618253bc0 Improved formatting of output 2022-06-10 03:12:22 -05:00
d0a4506c48 Updated README.md 2022-06-08 11:38:16 -05:00
46fc61bdbf Added build.rs to generate dict files 2022-06-07 23:52:32 -05:00
SinTan1729
2ae84ddf71
Update README.md 2022-06-07 22:37:43 -05:00
8 changed files with 95 additions and 370117 deletions

View file

@ -7,3 +7,6 @@ edition = "2021"
[dependencies] [dependencies]
xz2 = "0.1.7" xz2 = "0.1.7"
[build-dependencies]
xz2 = "0.1.7"

View file

@ -631,8 +631,8 @@ to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.> Unscrambler-rust: A simple unscrambler program written in Rust.
Copyright (C) <year> <name of author> Copyright (C) 2023 Sayantan Santra
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author> Unscrambler-rust Copyright (C) 2023 Sayantan Santra
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.

View file

@ -1,9 +1,15 @@
# Unscrambler written in Rust # Unscrambler written in Rust
I'm learning Rust, so this is just a rewrite of an simple old project in Rust. I'm learning Rust, so this is just a rewrite of a simple old project into Rust.
[Link to old project.](https://github.com/SinTan1729/Unscrambler) [Link to old C++ project.](https://github.com/SinTan1729/Unscrambler)
## Usage
Simply download the `unscrambler` binary from the latest release and run it. The interface is self-explanatory.
### Note ### Note
The main `src/wordlist` was pulled from [words_alpha.txt by dwyl](https://github.com/dwyl/english-words/) and processed using Rust. Processing code was really simple, so didn't put it up here. The processing included pre-sorting the each line in `src/wordlist` to create `src/wordlist_sorted` and then compressing both using `xz`. The main `src/wordlist` was pulled from [words_alpha.txt by dwyl](https://github.com/dwyl/english-words/).
In order to use a different `wordlist.txt`, place the file inside `src/` and delete the `*.xz` files there. Then run `cargo build` or `cargo build --release`.

59
build.rs Normal file
View file

@ -0,0 +1,59 @@
use std::{fs, io::Read};
use xz2::read::XzEncoder;
fn main() {
// check if the compressed dictionary files exist, run if missing
// so, in order to rebuild the compressed files, just delete them
if !fs::metadata("src/dict/wordlist.txt.xz").is_ok() {
compress_wordlist();
}
if !fs::metadata("src/dict/wordlist_sorted.txt.xz").is_ok() {
compress_sorted_wordlist();
}
}
fn compress_wordlist() {
// specify location for dictionary files and read wordlist.txt
let dict_dir = "src/dict/";
let wordlist = fs::read_to_string([dict_dir, "wordlist.txt"].join(""))
.expect("The file wordlist.txt is missing!");
// compress wordlist.txt using xz compression and save it
let wordlist_bytes = wordlist.as_bytes();
let mut compressor = XzEncoder::new(wordlist_bytes, 9);
let mut compressed_wordlist = Vec::new();
compressor.read_to_end(&mut compressed_wordlist).unwrap();
fs::write([dict_dir, "wordlist.txt.xz"].join(""), compressed_wordlist).unwrap();
}
fn compress_sorted_wordlist() {
// specify location for dictionary files
let dict_dir = "src/dict/";
// create wordlist_sorted from wordlist.txt
let wordlist = fs::read_to_string([dict_dir, "wordlist.txt"].join(""))
.expect("The file wordlist.txt is missing!");
let mut wordlist_sorted = String::new();
for word in wordlist.split_terminator("\n") {
wordlist_sorted = [wordlist_sorted, sorted(word), "\n".to_string()].join("");
}
//compress wordlist_sorted using xz compression and save it
let wordlist_sorted_bytes = wordlist_sorted.as_bytes();
let mut compressor_sorted = XzEncoder::new(wordlist_sorted_bytes, 9);
let mut compressed_wordlist_sorted = Vec::new();
compressor_sorted
.read_to_end(&mut compressed_wordlist_sorted)
.unwrap();
fs::write(
[dict_dir, "wordlist_sorted.txt.xz"].join(""),
compressed_wordlist_sorted,
)
.unwrap();
}
// function for sorting
fn sorted(word: &str) -> String {
let mut word_chars: Vec<char> = word.chars().collect();
word_chars.sort_by(|a, b| a.cmp(b));
String::from_iter(word_chars)
}

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

View file

@ -2,6 +2,9 @@ use std::io::{self, prelude::*, Write};
use xz2::read::XzDecoder; use xz2::read::XzDecoder;
fn main() { fn main() {
// welcome message
println!("*** Welcome to unscrambler! ***");
// load the compressed dictionary files (embedded in compile-time) // load the compressed dictionary files (embedded in compile-time)
let wordlist_cmp: &[u8] = include_bytes!("dict/wordlist.txt.xz"); let wordlist_cmp: &[u8] = include_bytes!("dict/wordlist.txt.xz");
let wordlist_sorted_cmp: &[u8] = include_bytes!("dict/wordlist_sorted.txt.xz"); let wordlist_sorted_cmp: &[u8] = include_bytes!("dict/wordlist_sorted.txt.xz");
@ -52,17 +55,29 @@ fn main() {
if indices.len() == 0 { if indices.len() == 0 {
println!("No matches found!"); println!("No matches found!");
} else { } else {
println!("The matched words are:"); let mut out_list = Vec::new();
for index in indices { for index in indices {
println!( out_list.push(sentence_case(&wordlist[index + 1..index - 1 + input.len()]));
"{}", }
sentence_case(&wordlist[index + 1..index - 1 + input.len()]) if out_list.len() == 1 {
); println!("The only matched word is {}.", out_list[0]);
} else {
print!("The {} matched words are ", out_list.len());
out_list.iter().enumerate().for_each(|(pos, word)| {
print!("{}", word);
if pos < out_list.len() - 2 {
print!(", ");
} else if pos < out_list.len() - 1 {
print!(" and ");
}
});
print!(".\n");
io::stdout().flush().unwrap();
} }
} }
// ask if we want to go again // ask if we want to go again
print!("Would you like to do it again? (y/N)"); print!("Would you like to do it again? (y/N): ");
io::stdout().flush().unwrap(); io::stdout().flush().unwrap();
let mut response = String::new(); let mut response = String::new();
io::stdin().read_line(&mut response).unwrap(); io::stdin().read_line(&mut response).unwrap();