1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
 * @Description: 
 * @Version: 2.0
 * @Autor: lotuscc
 * @Date: 2021-05-24 15:16:54
 * @LastEditors: lotuscc
 * @LastEditTime: 2021-05-25 20:27:31
 */

//! # My Crate
//!
//! `my_crate` is a collection of utilities to make performing certain
//! calculations more convenient.

use std::{env, error::Error, str};
use std::fs;

pub struct Config{
    pub query: String,
    pub filename: String,
    pub case_sensitive: bool,
}

impl Config {
/// make the config
/// # Examples
/// ```
/// let args = env::args(); 
/// let config = Config::new(args).unwrap_or_else(|err| {
///     eprintln!("Problem parsing arguments: {}", err);
///     process::exit(1);
/// });
/// ```
/// 
        pub fn new(mut args: env::Args) -> Result<Config, &'static str> {
    
        // skip the name of the program. 
        args.next();
        
        // get the query string 
        let query = match args.next() {
            Some(arg) => arg,
            None => return Err("Need a query string."),
        };

        // get the filename 
        let filename = match args.next() {
            Some(arg) => arg,
            None => return Err("Need a file name."),
        };

        // get the case
        let mut case_sensitive = env::var("CASE_INSENSITIVE").is_err();
        
        // 判断是否使用了--case
        if case_sensitive == true{
            case_sensitive = match args.next() {
                Some(arg) => if arg == "--case" { false } else { true } ,
                None => true,
            }
        }

        Ok(Config { query, filename, case_sensitive})
    }
}

/// use the minigrep project with a config
/// # Examples
/// ```
/// if let Err(e) = minigrep::run(config) {
///     eprintln!("Application error: {}", e);
///     process::exit(1);
/// }
/// ```
/// 

pub fn run(config: Config) -> Result<(), Box<dyn Error>>{ 
    let contents = fs::read_to_string(config.filename)?;
    
    let results = if config.case_sensitive{
        search(&config.query, &contents)
    }else {
        search_case_insensitive(&config.query, &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_case_insensitive<'a>(
    query: &str, 
    contents: &'a str
) -> Vec<&'a str> {
    
    contents
        .lines()
        .filter(|line| line.to_lowercase().contains(&query.to_lowercase()))
        .collect()
}

#[cfg(test)]
mod tests {
    use super::*;
   
    #[test]
    fn case_sensitive(){
        let query = "duct";
        let contents = "\
Rust:
safe, fast, productive.
Pick three.
Trust me.";
        assert_eq!(vec!["safe, fast, productive."], search(query, contents));       
    }

    #[test]
    fn case_insensitive(){
        let query = "rust";
        let contents = "\
Rust:
safe, fast, productive.
Pick three.
Trust me.";
        assert_eq!(vec!["Rust:","Trust me."], search_case_insensitive(query, contents));        
    }
}