imag/imag-counter/src/list.rs

55 lines
2 KiB
Rust
Raw Normal View History

//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015, 2016 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; version
// 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
2016-03-10 19:28:45 +00:00
use libimagrt::runtime::Runtime;
use libimagerror::trace::{MapErrTrace, trace_error};
2016-03-13 15:50:10 +00:00
use libimagcounter::counter::Counter;
2016-03-10 19:28:45 +00:00
pub fn list(rt: &Runtime) {
2016-03-11 08:45:20 +00:00
rt.cli()
.subcommand_matches("list")
2016-04-16 20:39:49 +00:00
.map(|_| {
2016-03-11 08:45:20 +00:00
debug!("Found 'list' subcommand...");
2016-03-13 15:50:10 +00:00
Counter::all_counters(rt.store()).map(|iterator| {
for counter in iterator {
counter.map(|c| {
let name = c.name();
let value = c.value();
2016-07-14 17:25:58 +00:00
let unit = c.unit();
2016-03-13 15:50:10 +00:00
if name.is_err() {
trace_error(&name.unwrap_err());
} else if value.is_err() {
trace_error(&value.unwrap_err());
} else if unit.is_none() {
println!("{} - {}", name.unwrap(), value.unwrap());
2016-03-13 15:50:10 +00:00
} else {
2016-07-14 17:25:58 +00:00
println!("{} - {} {}", name.unwrap(), value.unwrap(), unit.unwrap());
2016-03-13 15:50:10 +00:00
}
})
.map_err_trace()
2016-04-16 20:39:40 +00:00
.ok();
2016-03-13 15:50:10 +00:00
}
})
.map_err_trace()
2016-03-13 15:50:10 +00:00
2016-03-11 08:45:20 +00:00
});
2016-03-10 19:28:45 +00:00
}