use std::fs;
use std::error::Error;
pub struct Config {
query: String,
filename: String
}
impl Config {
pub fn new(mut args: std::env::Args) -> Result<Config, &'static str> {
args.next();
let query = match args.next() {
Some(arg) => arg,
None => return Err(" Args is not at all ")
};
let filename = match args.next() {
Some(arg) => arg,
None => return Err(" Insufficient(불만족) Num Of Arg")
};
Ok(Config{ query, filename })
}
}
pub fn run(config: Config) -> Result<(), Box<dyn Error>> {
let contents = fs::read_to_string(config.filename)?;
for line in search(&config.query, &contents) {
println!("Matching \n Result: {}", line)
}
Ok(())
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn one_result() {
let query = "good";
let contents = "\
Rust is Good.. ><
hahaha
";
assert_eq!(
vec!["Rust is Good.. ><"],
search(query, contents)
);
}
}
pub fn search<'a>(query: &str, contents: &'a str) -> Vec<&'a str> {
let query = query;
contents.lines() .filter(|line| line.contains(query))
.collect() }