Skip to content

Commit

Permalink
feat(macros): add ability to get a typed multiple values
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed Apr 14, 2015
1 parent 4b7cd3e commit e243fe3
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions src/macros.rs
Expand Up @@ -40,7 +40,29 @@ macro_rules! value_t {
Err(_) => Err(format!("{} isn't a valid {}",v,stringify!($t))),
}
},
None => Err(format!("Argument not found"))
None => Err(format!("Argument \"{}\" not found", $v))
}
};
($m:ident.values_of($v:expr), $t:ty) => {
match $m.values_of($v) {
Some(ref v) => {
let mut tmp = Vec::with_capacity(v.len());
let mut err = None;
for pv in v {
match pv.parse::<$t>() {
Ok(rv) => tmp.push(rv),
Err(_) => {
err = Some(format!("{} isn't a valid {}",pv,stringify!($t)));
break
}
}
}
match err {
Some(e) => Err(e),
None => Ok(tmp)
}
},
None => Err(format!("Argument \"{}\" not found", $v))
}
};
}
Expand All @@ -60,7 +82,7 @@ macro_rules! value_t_or_exit {
}
},
None => {
println!("Argument not found\n{}\nPlease re-run with --help for more information", $m.usage());
println!("Argument \"{}\" not found or is not valid\n{}\nPlease re-run with --help for more information",$v, $m.usage());
::std::process::exit(1);
}
}
Expand Down

0 comments on commit e243fe3

Please sign in to comment.