Rewrite functions to return Result<_>
This commit is contained in:
parent
6e7aa3c4b7
commit
4bd157914e
1 changed files with 28 additions and 30 deletions
|
@ -3,7 +3,11 @@ use std::path::PathBuf;
|
||||||
use clap::{Arg, ArgMatches};
|
use clap::{Arg, ArgMatches};
|
||||||
|
|
||||||
use libimagstore::storeid::StoreId;
|
use libimagstore::storeid::StoreId;
|
||||||
use libimagerror::trace::trace_error;
|
use libimagerror::into::IntoError;
|
||||||
|
|
||||||
|
use result::Result;
|
||||||
|
use error::MapErrInto;
|
||||||
|
use error::EntrySelectErrorKind as ESEK;
|
||||||
|
|
||||||
pub fn id_argument<'a, 'b>() -> Arg<'a, 'b> {
|
pub fn id_argument<'a, 'b>() -> Arg<'a, 'b> {
|
||||||
Arg::with_name(id_argument_name())
|
Arg::with_name(id_argument_name())
|
||||||
|
@ -26,41 +30,35 @@ pub fn id_argument_long() -> &'static str {
|
||||||
"id"
|
"id"
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_id(matches: &ArgMatches) -> Option<Vec<StoreId>> {
|
pub fn get_id(matches: &ArgMatches) -> Result<Vec<StoreId>> {
|
||||||
matches.values_of(id_argument_name())
|
matches
|
||||||
.map(|vals| {
|
.values_of(id_argument_name())
|
||||||
|
.ok_or(ESEK::IdMissingError.into_error())
|
||||||
|
.map_err_into(ESEK::CLIError)
|
||||||
|
.and_then(|vals| {
|
||||||
vals.into_iter()
|
vals.into_iter()
|
||||||
.map(String::from)
|
.fold(Ok(vec![]), |acc, elem| {
|
||||||
.map(PathBuf::from)
|
acc.and_then(|mut v| {
|
||||||
.map(|p| StoreId::new_baseless(p)) /* TODO: Do not hide error here */
|
let elem = StoreId::new_baseless(PathBuf::from(String::from(elem)));
|
||||||
.filter_map(|res| match res {
|
let elem = try!(elem.map_err_into(ESEK::StoreIdParsingError));
|
||||||
Err(e) => { trace_error(&e); None },
|
v.push(elem);
|
||||||
Ok(o) => Some(o),
|
Ok(v)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
.collect()
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_or_select_id(matches: &ArgMatches, store_path: &PathBuf) -> Option<Vec<StoreId>> {
|
pub fn get_or_select_id(matches: &ArgMatches, store_path: &PathBuf) -> Result<Vec<StoreId>> {
|
||||||
use interactor::{pick_file, default_menu_cmd};
|
use interactor::{pick_file, default_menu_cmd};
|
||||||
|
|
||||||
get_id(matches).or_else(|| {
|
match get_id(matches).map_err_into(ESEK::IdSelectingError) {
|
||||||
match pick_file(default_menu_cmd, store_path.clone()) {
|
Ok(v) => Ok(v),
|
||||||
Err(e) => {
|
Err(_) => {
|
||||||
trace_error(&e);
|
let path = store_path.clone();
|
||||||
None
|
let p = try!(pick_file(default_menu_cmd, path).map_err_into(ESEK::IdSelectingError));
|
||||||
},
|
let id = try!(StoreId::new_baseless(p).map_err_into(ESEK::StoreIdParsingError));
|
||||||
|
Ok(vec![id])
|
||||||
Ok(p) => {
|
|
||||||
match StoreId::new_baseless(p) {
|
|
||||||
Err(e) => {
|
|
||||||
trace_error(&e);
|
|
||||||
None
|
|
||||||
},
|
|
||||||
Ok(id) => Some(vec![id]),
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue