parent
dd8d4e6fa4
commit
f5df7cf332
3 changed files with 0 additions and 61 deletions
|
@ -1,47 +0,0 @@
|
||||||
//
|
|
||||||
// imag - the personal information management suite for the commandline
|
|
||||||
// Copyright (C) 2015-2018 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 std::io::Write;
|
|
||||||
|
|
||||||
use libimagrt::runtime::Runtime;
|
|
||||||
use libimagerror::trace::*;
|
|
||||||
use libimagerror::io::ToExitCode;
|
|
||||||
use libimagerror::exit::ExitUnwrap;
|
|
||||||
|
|
||||||
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 _ = rt
|
|
||||||
.store()
|
|
||||||
.entries()
|
|
||||||
.map_err_trace_exit_unwrap(1)
|
|
||||||
.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_unwrap(1))
|
|
||||||
.map(|i| writeln!(::std::io::stdout(), "{}", i))
|
|
||||||
.collect::<Result<Vec<()>, ::std::io::Error>>()
|
|
||||||
.to_exit_code()
|
|
||||||
.unwrap_or_exit();
|
|
||||||
}
|
|
||||||
|
|
|
@ -61,7 +61,6 @@ mod ui;
|
||||||
mod update;
|
mod update;
|
||||||
mod verify;
|
mod verify;
|
||||||
mod util;
|
mod util;
|
||||||
mod ids;
|
|
||||||
|
|
||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
|
|
||||||
|
@ -73,7 +72,6 @@ use retrieve::retrieve;
|
||||||
use ui::build_ui;
|
use ui::build_ui;
|
||||||
use update::update;
|
use update::update;
|
||||||
use verify::verify;
|
use verify::verify;
|
||||||
use ids::ids;
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let version = make_imag_version!();
|
let version = make_imag_version!();
|
||||||
|
@ -94,7 +92,6 @@ fn main() {
|
||||||
"update" => update(&rt),
|
"update" => update(&rt),
|
||||||
"verify" => verify(&rt),
|
"verify" => verify(&rt),
|
||||||
"dump" => dump(&mut rt),
|
"dump" => dump(&mut rt),
|
||||||
"ids" => ids(&rt),
|
|
||||||
_ => {
|
_ => {
|
||||||
debug!("Unknown command");
|
debug!("Unknown command");
|
||||||
// More error handling
|
// More error handling
|
||||||
|
|
|
@ -195,15 +195,4 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
||||||
.about("Dump the complete store to stdout. Currently does only support JSON")
|
.about("Dump the complete store to stdout. Currently does only support JSON")
|
||||||
.version("0.1")
|
.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"))
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue