use std::env;
pub struct Config {
pub query: String,
pub file_path: String,
pub ignore_case: bool,
}
impl Config {
pub fn build(mut args: impl Iterator<Item = String>) -> Result<Config, &'static str> {
args.next();
let query = match args.next() {
Some(arg) => arg,
None => return Err("Didn't get a query string"),
};
let file_path = match args.next() {
Some(arg) => arg,
None => return Err("Didn't get a file path"),
};
let ignore_case = env::var("IGNORE_CASE").is_ok();
Ok(Config {
query,
file_path,
ignore_case,
})
}
}
use std::error::Error;
use std::fs;
pub fn run(config: Config) -> Result<(), Box<dyn Error>> {
let file_contents = fs::read_to_string(config.file_path)?;
let results = if config.ignore_case {
search_non_sensitive(&config.query, &file_contents)
} else {
search(&config.query, &file_contents)
};
for line in results {
println!("{line}");
}
Ok(())
}
pub fn search<'a>(query: &str, contents: &'a str) -> Vec<&'a str> {
contents
.lines()
.filter(|line| line.contains(query))
.collect()
}
pub fn search_non_sensitive<'a>(query: &str, contents: &'a str) -> Vec<&'a str> {
let query = query.to_lowercase();
contents
.lines()
.filter(|line| line.to_lowercase().contains(&query))
.collect()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn search_kw_in_text() {
let query = "safe";
let contents = "\
Rust:
safe, fast, productive.
Pick three.
Safe, fast, productive.";
assert_eq!(
vec![" safe, fast, productive."],
search(query, contents)
);
}
#[test]
fn search_kw_in_text_non_sensitive() {
let query = "RUSt";
let contents = "\
Rust:
safe, fast, productive.
Pick three.
Safe, fast, productive.";
assert_eq!(vec!["Rust:"], search_non_sensitive(query, contents));
}
}