Dump all StoreIds

Add StoreId Dump changes
This commit is contained in:
Kai Sickeler 2017-10-08 17:26:18 +02:00
parent 75a8041c0e
commit 1f84643486
4 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,42 @@
//
// 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
//
use libimagrt::runtime::Runtime;
use libimagerror::trace::*;
pub fn ids(rt: &Runtime) {
let full = rt.cli().subcommand_matches("ids").unwrap() //secured by main
.is_present("full");
let base = rt.store().path();
let _ :Vec<_> = rt
.store()
.entries()
.map_err_trace_exit(1)
.unwrap() //safed
.map(|e| if full {
e.with_base(base.clone())
} else {
e.without_base()
})
.map(|i| i.to_str())
.map(|elem| elem.map_err_trace_exit(1).unwrap())
.map(|i| println!("{}", i))
.collect();
}

View file

@ -62,6 +62,7 @@ mod ui;
mod update;
mod verify;
mod util;
mod ids;
use std::ops::Deref;
@ -73,6 +74,7 @@ use retrieve::retrieve;
use ui::build_ui;
use update::update;
use verify::verify;
use ids::ids;
fn main() {
let mut rt = generate_runtime_setup("imag-store",
@ -92,6 +94,7 @@ fn main() {
"update" => update(&rt),
"verify" => verify(&rt),
"dump" => dump(&mut rt),
"ids" => ids(&rt),
_ => {
debug!("Unknown command");
// More error handling

View file

@ -195,4 +195,15 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.about("Dump the complete store to stdout. Currently does only support JSON")
.version("0.1")
)
.subcommand(SubCommand::with_name("ids")
.about("List of Storeids")
.version("0.1")
.arg(Arg::with_name("full")
.long("full")
.short("F")
.takes_value(false)
.multiple(false)
.required(false)
.help("Print full filepath instead of storeid part"))
)
}

View file

@ -27,6 +27,7 @@ This section contains the changelog from the last release to the next release.
browser or on the toaster.
* The logger is now able to handle multiple destinations (file and "-" for
stderr)
* `imag-store` can dump all storeids now
## 0.4.0