imag/imag-diary/src/main.rs

102 lines
2.6 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-07-31 09:12:35 +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-03-31 13:40:24 +00:00
#[macro_use] extern crate log;
#[macro_use] extern crate version;
extern crate clap;
extern crate chrono;
extern crate libimagdiary;
extern crate libimagentryedit;
2016-03-31 13:40:24 +00:00
extern crate libimagentrylist;
extern crate libimaginteraction;
extern crate libimagrt;
2016-04-22 15:10:50 +00:00
extern crate libimagstore;
2016-03-31 13:40:24 +00:00
extern crate libimagutil;
2016-04-22 15:10:50 +00:00
extern crate libimagtimeui;
2016-03-31 13:40:24 +00:00
#[macro_use] extern crate libimagerror;
2016-04-22 15:10:50 +00:00
use std::process::exit;
use libimagrt::runtime::Runtime;
2016-06-08 17:40:13 +00:00
mod create;
mod delete;
mod edit;
mod list;
2016-04-22 15:10:50 +00:00
mod ui;
2016-06-08 17:40:13 +00:00
mod util;
mod view;
2016-04-22 15:10:50 +00:00
2016-06-08 17:40:13 +00:00
use create::create;
use delete::delete;
use edit::edit;
use list::list;
2016-04-22 15:10:50 +00:00
use ui::build_ui;
2016-06-08 17:40:13 +00:00
use view::view;
2016-04-22 15:10:50 +00:00
2016-03-31 13:39:07 +00:00
fn main() {
2016-04-22 15:10:50 +00:00
let name = "imag-diary";
let version = &version!()[..];
let about = "Personal Diary/Diaries";
let ui = build_ui(Runtime::get_default_cli_builder(name, version, about));
let rt = {
let rt = Runtime::new(ui);
if rt.is_ok() {
rt.unwrap()
} else {
println!("Could not set up Runtime");
println!("{:?}", rt.err().unwrap());
exit(1);
}
};
rt.cli()
.subcommand_name()
.map(|name| {
debug!("Call {}", name);
match name {
"create" => create(&rt),
2016-06-06 17:54:19 +00:00
"delete" => delete(&rt),
2016-04-22 15:10:50 +00:00
"edit" => edit(&rt),
"list" => list(&rt),
2016-06-08 17:35:59 +00:00
"view" => view(&rt),
2016-04-22 15:10:50 +00:00
_ => {
debug!("Unknown command"); // More error handling
},
}
});
}