Reimplement behaviour in imag-header
This patch changes imag-header to do not printing of the found values, but simply filtering. Chaining can then be used to read the values: imag ids | imag header string "imag.version" | imag header read "imag.version" for example. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
121124b3ae
commit
fc5bfb43bf
1 changed files with 57 additions and 97 deletions
|
@ -53,6 +53,7 @@ use filters::filter::Filter;
|
||||||
use failure::Error;
|
use failure::Error;
|
||||||
|
|
||||||
use libimagerror::exit::ExitCode;
|
use libimagerror::exit::ExitCode;
|
||||||
|
use libimagerror::exit::ExitUnwrap;
|
||||||
use libimagerror::io::ToExitCode;
|
use libimagerror::io::ToExitCode;
|
||||||
use libimagerror::iter::TraceIterator;
|
use libimagerror::iter::TraceIterator;
|
||||||
use libimagerror::trace::MapErrTrace;
|
use libimagerror::trace::MapErrTrace;
|
||||||
|
@ -63,6 +64,8 @@ use libimagstore::store::FileLockEntry;
|
||||||
use libimagstore::storeid::StoreIdIterator;
|
use libimagstore::storeid::StoreIdIterator;
|
||||||
|
|
||||||
use toml_query::read::TomlValueReadExt;
|
use toml_query::read::TomlValueReadExt;
|
||||||
|
use toml_query::read::TomlValueReadTypeExt;
|
||||||
|
|
||||||
|
|
||||||
mod ui;
|
mod ui;
|
||||||
|
|
||||||
|
@ -95,8 +98,8 @@ fn main() {
|
||||||
.trace_unwrap_exit()
|
.trace_unwrap_exit()
|
||||||
.filter_map(|x| x);
|
.filter_map(|x| x);
|
||||||
|
|
||||||
let exit_code = match rt.cli().subcommand() {
|
match rt.cli().subcommand() {
|
||||||
("read", Some(mtch)) => read(&rt, mtch, iter),
|
("read", Some(mtch)) => ::std::process::exit(read(&rt, mtch, iter)),
|
||||||
("has", Some(mtch)) => has(&rt, mtch, iter),
|
("has", Some(mtch)) => has(&rt, mtch, iter),
|
||||||
("hasnt", Some(mtch)) => hasnt(&rt, mtch, iter),
|
("hasnt", Some(mtch)) => hasnt(&rt, mtch, iter),
|
||||||
("int", Some(mtch)) => int(&rt, mtch, iter),
|
("int", Some(mtch)) => int(&rt, mtch, iter),
|
||||||
|
@ -105,14 +108,14 @@ fn main() {
|
||||||
("bool", Some(mtch)) => boolean(&rt, mtch, iter),
|
("bool", Some(mtch)) => boolean(&rt, mtch, iter),
|
||||||
(other, _mtchs) => {
|
(other, _mtchs) => {
|
||||||
debug!("Unknown command");
|
debug!("Unknown command");
|
||||||
|
::std::process::exit({
|
||||||
rt.handle_unknown_subcommand("imag-header", other, rt.cli())
|
rt.handle_unknown_subcommand("imag-header", other, rt.cli())
|
||||||
.map_err_trace_exit_unwrap()
|
.map_err_trace_exit_unwrap()
|
||||||
.code()
|
.code()
|
||||||
.unwrap_or(1)
|
.unwrap_or(1)
|
||||||
|
});
|
||||||
},
|
},
|
||||||
};
|
}
|
||||||
|
|
||||||
::std::process::exit(exit_code)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn read<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
fn read<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
||||||
|
@ -143,47 +146,40 @@ fn read<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn has<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
fn has<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I)
|
||||||
where I: Iterator<Item = FileLockEntry<'e>>
|
where I: Iterator<Item = FileLockEntry<'e>>
|
||||||
{
|
{
|
||||||
debug!("Processing headers: has value");
|
debug!("Processing headers: has value");
|
||||||
let header_path = get_header_path(mtch, "header-value-path");
|
let header_path = get_header_path(mtch, "header-value-path");
|
||||||
let mut output = rt.stdout();
|
|
||||||
|
|
||||||
iter.fold(0, |accu, entry| {
|
iter.for_each(|entry| {
|
||||||
trace!("Processing headers: working on {:?}", entry.get_location());
|
trace!("Processing headers: working on {:?}", entry.get_location());
|
||||||
let value = entry.get_header()
|
if entry.get_header()
|
||||||
.read(header_path)
|
.read(header_path)
|
||||||
.map_err(Error::from)
|
.map_err(Error::from)
|
||||||
.map_err_trace_exit_unwrap()
|
.map_err_trace_exit_unwrap()
|
||||||
.is_some();
|
.is_some()
|
||||||
|
{
|
||||||
writeln!(output, "{} - {}", entry.get_location(), value)
|
rt.report_touched(entry.get_location()).unwrap_or_exit();
|
||||||
.to_exit_code()
|
}
|
||||||
.map(|_| if value { accu } else { 1 })
|
|
||||||
.unwrap_or_else(ExitCode::code)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn hasnt<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
fn hasnt<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I)
|
||||||
where I: Iterator<Item = FileLockEntry<'e>>
|
where I: Iterator<Item = FileLockEntry<'e>>
|
||||||
{
|
{
|
||||||
debug!("Processing headers: hasnt value");
|
debug!("Processing headers: hasnt value");
|
||||||
let header_path = get_header_path(mtch, "header-value-path");
|
let header_path = get_header_path(mtch, "header-value-path");
|
||||||
let mut output = rt.stdout();
|
|
||||||
|
|
||||||
iter.fold(0, |accu, entry| {
|
iter.for_each(|entry| {
|
||||||
trace!("Processing headers: working on {:?}", entry.get_location());
|
trace!("Processing headers: working on {:?}", entry.get_location());
|
||||||
let value = entry.get_header()
|
if entry.get_header()
|
||||||
.read(header_path)
|
.read(header_path)
|
||||||
.map_err(Error::from)
|
.map_err(Error::from)
|
||||||
.map_err_trace_exit_unwrap()
|
.map_err_trace_exit_unwrap()
|
||||||
.is_none();
|
.is_none() {
|
||||||
|
rt.report_touched(entry.get_location()).unwrap_or_exit();
|
||||||
writeln!(output, "{} - {}", entry.get_location(), value)
|
}
|
||||||
.to_exit_code()
|
|
||||||
.map(|_| if value { accu } else { 1 })
|
|
||||||
.unwrap_or_else(ExitCode::code)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -200,12 +196,11 @@ macro_rules! implement_compare {
|
||||||
}}
|
}}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn int<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
fn int<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I)
|
||||||
where I: Iterator<Item = FileLockEntry<'e>>
|
where I: Iterator<Item = FileLockEntry<'e>>
|
||||||
{
|
{
|
||||||
debug!("Processing headers: int value");
|
debug!("Processing headers: int value");
|
||||||
let header_path = get_header_path(mtch, "header-value-path");
|
let header_path = get_header_path(mtch, "header-value-path");
|
||||||
let mut output = rt.stdout();
|
|
||||||
|
|
||||||
let filter = ::filters::ops::bool::Bool::new(true)
|
let filter = ::filters::ops::bool::Bool::new(true)
|
||||||
.and(|i: &i64| -> bool {
|
.and(|i: &i64| -> bool {
|
||||||
|
@ -227,32 +222,23 @@ fn int<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
||||||
implement_compare!(mtch, "header-int-gte", i64, |cmp| *i >= cmp)
|
implement_compare!(mtch, "header-int-gte", i64, |cmp| *i >= cmp)
|
||||||
});
|
});
|
||||||
|
|
||||||
iter.fold(0, |accu, entry| {
|
iter.filter(|entry| if let Some(hdr) = entry.get_header()
|
||||||
trace!("Processing headers: working on {:?}", entry.get_location());
|
.read_int(header_path)
|
||||||
if let Some(v) = entry.get_header()
|
|
||||||
.read(header_path)
|
|
||||||
.map_err(Error::from)
|
.map_err(Error::from)
|
||||||
.map_err_trace_exit_unwrap()
|
.map_err_trace_exit_unwrap()
|
||||||
{
|
{
|
||||||
match v {
|
filter.filter(&hdr)
|
||||||
::toml::Value::Integer(i) => if filter.filter(&i) {
|
} else {
|
||||||
writeln!(output, "{} - {}", entry.get_location(), i)
|
false
|
||||||
.to_exit_code()
|
|
||||||
.map(|_| accu)
|
|
||||||
.unwrap_or_else(ExitCode::code)
|
|
||||||
} else { 1 },
|
|
||||||
_ => 1
|
|
||||||
}
|
|
||||||
} else { 1 }
|
|
||||||
})
|
})
|
||||||
|
.for_each(|entry| rt.report_touched(entry.get_location()).unwrap_or_exit())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn float<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
fn float<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I)
|
||||||
where I: Iterator<Item = FileLockEntry<'e>>
|
where I: Iterator<Item = FileLockEntry<'e>>
|
||||||
{
|
{
|
||||||
debug!("Processing headers: float value");
|
debug!("Processing headers: float value");
|
||||||
let header_path = get_header_path(mtch, "header-value-path");
|
let header_path = get_header_path(mtch, "header-value-path");
|
||||||
let mut output = rt.stdout();
|
|
||||||
|
|
||||||
let filter = ::filters::ops::bool::Bool::new(true)
|
let filter = ::filters::ops::bool::Bool::new(true)
|
||||||
.and(|i: &f64| -> bool {
|
.and(|i: &f64| -> bool {
|
||||||
|
@ -274,32 +260,23 @@ fn float<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
||||||
implement_compare!(mtch, "header-float-gte", f64, |cmp| *i >= cmp)
|
implement_compare!(mtch, "header-float-gte", f64, |cmp| *i >= cmp)
|
||||||
});
|
});
|
||||||
|
|
||||||
iter.fold(0, |accu, entry| {
|
iter.filter(|entry| if let Some(hdr) = entry.get_header()
|
||||||
trace!("Processing headers: working on {:?}", entry.get_location());
|
.read_float(header_path)
|
||||||
if let Some(v) = entry.get_header()
|
|
||||||
.read(header_path)
|
|
||||||
.map_err(Error::from)
|
.map_err(Error::from)
|
||||||
.map_err_trace_exit_unwrap()
|
.map_err_trace_exit_unwrap()
|
||||||
{
|
{
|
||||||
match v {
|
filter.filter(&hdr)
|
||||||
::toml::Value::Float(i) => if filter.filter(&i) {
|
} else {
|
||||||
writeln!(output, "{} - {}", entry.get_location(), i)
|
false
|
||||||
.to_exit_code()
|
|
||||||
.map(|_| accu)
|
|
||||||
.unwrap_or_else(ExitCode::code)
|
|
||||||
} else { 1 },
|
|
||||||
_ => 1
|
|
||||||
}
|
|
||||||
} else { 1 }
|
|
||||||
})
|
})
|
||||||
|
.for_each(|entry| rt.report_touched(entry.get_location()).unwrap_or_exit())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn string<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
fn string<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I)
|
||||||
where I: Iterator<Item = FileLockEntry<'e>>
|
where I: Iterator<Item = FileLockEntry<'e>>
|
||||||
{
|
{
|
||||||
debug!("Processing headers: string value");
|
debug!("Processing headers: string value");
|
||||||
let header_path = get_header_path(mtch, "header-value-path");
|
let header_path = get_header_path(mtch, "header-value-path");
|
||||||
let mut output = rt.stdout();
|
|
||||||
|
|
||||||
let filter = ::filters::ops::bool::Bool::new(true)
|
let filter = ::filters::ops::bool::Bool::new(true)
|
||||||
.and(|i: &String| -> bool {
|
.and(|i: &String| -> bool {
|
||||||
|
@ -309,55 +286,38 @@ fn string<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
||||||
implement_compare!(mtch, "header-string-neq", String, |cmp| *i != cmp)
|
implement_compare!(mtch, "header-string-neq", String, |cmp| *i != cmp)
|
||||||
});
|
});
|
||||||
|
|
||||||
iter.fold(0, |accu, entry| {
|
iter.filter(|entry| if let Some(hdr) = entry.get_header()
|
||||||
trace!("Processing headers: working on {:?}", entry.get_location());
|
.read_string(header_path)
|
||||||
if let Some(v) = entry.get_header()
|
|
||||||
.read(header_path)
|
|
||||||
.map_err(Error::from)
|
.map_err(Error::from)
|
||||||
.map_err_trace_exit_unwrap()
|
.map_err_trace_exit_unwrap()
|
||||||
{
|
{
|
||||||
match v {
|
filter.filter(&hdr)
|
||||||
::toml::Value::String(s) => if filter.filter(&s) {
|
} else {
|
||||||
writeln!(output, "{} - {}", entry.get_location(), s)
|
false
|
||||||
.to_exit_code()
|
|
||||||
.map(|_| accu)
|
|
||||||
.unwrap_or_else(ExitCode::code)
|
|
||||||
} else { 1 },
|
|
||||||
_ => 1
|
|
||||||
}
|
|
||||||
} else { 1 }
|
|
||||||
})
|
})
|
||||||
|
.for_each(|entry| rt.report_touched(entry.get_location()).unwrap_or_exit())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn boolean<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I) -> i32
|
fn boolean<'a, 'e, I>(rt: &Runtime, mtch: &ArgMatches<'a>, iter: I)
|
||||||
where I: Iterator<Item = FileLockEntry<'e>>
|
where I: Iterator<Item = FileLockEntry<'e>>
|
||||||
{
|
{
|
||||||
debug!("Processing headers: bool value");
|
debug!("Processing headers: bool value");
|
||||||
let header_path = get_header_path(mtch, "header-value-path");
|
let header_path = get_header_path(mtch, "header-value-path");
|
||||||
let mut output = rt.stdout();
|
|
||||||
|
|
||||||
let filter = ::filters::ops::bool::Bool::new(true)
|
let filter = ::filters::ops::bool::Bool::new(true)
|
||||||
.and(|i: &bool| -> bool { *i })
|
.and(|i: &bool| -> bool { *i })
|
||||||
.and(|i: &bool| -> bool { *i });
|
.and(|i: &bool| -> bool { *i });
|
||||||
|
|
||||||
iter.fold(0, |accu, entry| {
|
iter.filter(|entry| if let Some(hdr) = entry.get_header()
|
||||||
trace!("Processing headers: working on {:?}", entry.get_location());
|
.read_bool(header_path)
|
||||||
if let Some(v) = entry.get_header()
|
|
||||||
.read(header_path)
|
|
||||||
.map_err(Error::from)
|
.map_err(Error::from)
|
||||||
.map_err_trace_exit_unwrap()
|
.map_err_trace_exit_unwrap()
|
||||||
{
|
{
|
||||||
match v {
|
filter.filter(&hdr)
|
||||||
::toml::Value::Boolean(b) => if filter.filter(&b) {
|
} else {
|
||||||
writeln!(output, "{} - {}", entry.get_location(), b)
|
false
|
||||||
.to_exit_code()
|
|
||||||
.map(|_| accu)
|
|
||||||
.unwrap_or_else(ExitCode::code)
|
|
||||||
} else { 1 },
|
|
||||||
_ => 1
|
|
||||||
}
|
|
||||||
} else { 1 }
|
|
||||||
})
|
})
|
||||||
|
.for_each(|entry| rt.report_touched(entry.get_location()).unwrap_or_exit())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue