extern crate getopts; extern crate regex; // parse_style parses a style string into a NumberingStyle. fn parse_style(chars: &[char]) -> Result<::NumberingStyle, String> { match chars { ['a'] => { Ok(::NumberingStyle::NumberForAll) }, ['t'] => { Ok(::NumberingStyle::NumberForNonEmpty) }, ['n'] => { Ok(::NumberingStyle::NumberForNone) }, ['p', rest..] => { let s: String = rest.iter().map(|c| *c).collect(); match regex::Regex::new(&s) { Ok(re) => Ok(::NumberingStyle::NumberForRegularExpression(re)), Err(_) => Err(String::from_str("Illegal regular expression")), } } _ => { Err(String::from_str("Illegal style encountered")) }, } } // parse_options loads the options into the settings, returning an array of // error messages. pub fn parse_options(settings: &mut ::Settings, opts: &getopts::Matches) -> Vec { // This vector holds error messages encountered. let mut errs: Vec = vec![]; settings.renumber = !opts.opt_present("p"); match opts.opt_str("s") { None => {}, Some(val) => { settings.number_separator = val; } } match opts.opt_str("n") { None => {}, Some(val) => match val.as_ref() { "ln" => { settings.number_format = ::NumberFormat::Left; }, "rn" => { settings.number_format = ::NumberFormat::Right; }, "rz" => { settings.number_format = ::NumberFormat::RightZero; }, _ => { errs.push(String::from_str("Illegal value for -n")); }, } } match opts.opt_str("b") { None => {}, Some(val) => { let chars: Vec = val.chars().collect(); match parse_style(&chars) { Ok(s) => { settings.body_numbering = s; } Err(message) => { errs.push(message); } } } } match opts.opt_str("f") { None => {}, Some(val) => { let chars: Vec = val.chars().collect(); match parse_style(&chars) { Ok(s) => { settings.footer_numbering = s; } Err(message) => { errs.push(message); } } } } match opts.opt_str("h") { None => {}, Some(val) => { let chars: Vec = val.chars().collect(); match parse_style(&chars) { Ok(s) => { settings.header_numbering = s; } Err(message) => { errs.push(message); } } } } match opts.opt_str("i") { None => {} Some(val) => { let conv: Option = val.parse().ok(); match conv { None => { errs.push(String::from_str("Illegal value for -i")); } Some(num) => { settings.line_increment = num } } } } match opts.opt_str("w") { None => {} Some(val) => { let conv: Option = val.parse().ok(); match conv { None => { errs.push(String::from_str("Illegal value for -w")); } Some(num) => { settings.number_width = num } } } } match opts.opt_str("v") { None => {} Some(val) => { let conv: Option = val.parse().ok(); match conv { None => { errs.push(String::from_str("Illegal value for -v")); } Some(num) => { settings.starting_line_number = num } } } } match opts.opt_str("l") { None => {} Some(val) => { let conv: Option = val.parse().ok(); match conv { None => { errs.push(String::from_str("Illegal value for -l")); } Some(num) => { settings.join_blank_lines = num } } } } errs }