imag/bin/core/imag-ref/src/main.rs

154 lines
4.5 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-10-07 22:51:47 +00:00
#![deny(
non_camel_case_types,
non_snake_case,
path_statements,
trivial_numeric_casts,
unstable_features,
unused_allocation,
unused_import_braces,
unused_imports,
unused_must_use,
unused_mut,
unused_qualifications,
while_true,
)]
2016-06-26 09:29:47 +00:00
#[macro_use] extern crate log;
#[macro_use] extern crate version;
extern crate semver;
extern crate clap;
extern crate libimagstore;
extern crate libimagrt;
extern crate libimagentryref;
2016-06-26 09:29:47 +00:00
extern crate libimagerror;
extern crate libimagentrylist;
2016-06-28 21:10:49 +00:00
extern crate libimaginteraction;
2016-10-07 15:35:43 +00:00
extern crate libimagutil;
2016-06-26 09:29:47 +00:00
2016-06-26 09:30:04 +00:00
mod ui;
use ui::build_ui;
2016-06-28 20:45:37 +00:00
use std::path::PathBuf;
use libimagentryref::reference::Ref;
use libimagentryref::flags::RefFlags;
2016-06-28 20:45:37 +00:00
use libimagerror::trace::trace_error;
use libimagrt::setup::generate_runtime_setup;
use libimagrt::runtime::Runtime;
2016-06-26 09:17:30 +00:00
fn main() {
2016-06-26 09:31:46 +00:00
let rt = generate_runtime_setup("imag-ref",
&version!()[..],
"Reference files outside of the store",
build_ui);
rt.cli()
.subcommand_name()
.map(|name| {
debug!("Call: {}", name);
match name {
"add" => add(&rt),
"remove" => remove(&rt),
"list" => list(&rt),
_ => {
debug!("Unknown command"); // More error handling
},
};
});
2016-06-26 09:17:30 +00:00
}
2016-06-26 09:31:46 +00:00
fn add(rt: &Runtime) {
2016-06-26 09:39:27 +00:00
let cmd = rt.cli().subcommand_matches("add").unwrap();
let path = cmd.value_of("path").map(PathBuf::from).unwrap(); // saved by clap
let flags = RefFlags::default()
.with_content_hashing(cmd.is_present("track-content"))
.with_permission_tracking(cmd.is_present("track-permissions"));
match Ref::create(rt.store(), path, flags) {
Ok(r) => {
debug!("Reference created: {:?}", r);
info!("Ok");
},
Err(e) => {
trace_error(&e);
warn!("Failed to create reference");
},
}
2016-06-26 09:31:46 +00:00
}
fn remove(rt: &Runtime) {
2016-06-28 21:10:49 +00:00
use libimaginteraction::ask::ask_bool;
let cmd = rt.cli().subcommand_matches("remove").unwrap();
let hash = cmd.value_of("hash").map(String::from).unwrap(); // saved by clap
let yes = cmd.is_present("yes");
if yes || ask_bool(&format!("Delete Ref with hash '{}'", hash)[..], None) {
match Ref::delete_by_hash(rt.store(), hash) {
Err(e) => trace_error(&e),
Ok(_) => info!("Ok"),
}
} else {
info!("Aborted");
}
2016-06-26 09:31:46 +00:00
}
fn list(rt: &Runtime) {
2016-06-30 08:57:19 +00:00
use std::process::exit;
use libimagentrylist::lister::Lister;
use libimagentryref::lister::RefLister;
2016-06-30 08:57:19 +00:00
let cmd = rt.cli().subcommand_matches("list").unwrap();
let do_check_dead = cmd.is_present("check-dead");
let do_check_changed = cmd.is_present("check-changed");
let do_check_changed_content = cmd.is_present("check-changed-content");
let do_check_changed_permiss = cmd.is_present("check-changed-permissions");
let iter = match rt.store().retrieve_for_module("ref") {
Ok(iter) => iter.filter_map(|id| {
match Ref::get(rt.store(), id) {
Ok(r) => Some(r),
Err(e) => {
trace_error(&e);
None
},
}
}),
Err(e) => {
trace_error(&e);
exit(1);
}
};
RefLister::new()
.check_dead(do_check_dead)
.check_changed(do_check_changed)
.check_changed_content(do_check_changed_content)
.check_changed_permiss(do_check_changed_permiss)
2016-10-07 22:51:42 +00:00
.list(iter.map(|e| e.into()))
.ok();
2016-06-26 09:31:46 +00:00
}