// // imag - the personal information management suite for the commandline // Copyright (C) 2015, 2016 Matthias Beyer 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 // extern crate clap; #[macro_use] extern crate log; extern crate itertools; extern crate libimagnotes; extern crate libimagrt; extern crate libimagentryedit; extern crate libimagerror; extern crate libimagutil; use itertools::Itertools; use libimagentryedit::edit::Edit; use libimagrt::runtime::Runtime; use libimagrt::setup::generate_runtime_setup; use libimagnotes::note::Note; use libimagnotes::notestore::*; use libimagerror::trace::MapErrTrace; use libimagutil::info_result::*; use libimagutil::warn_result::WarnResult; mod ui; use ui::build_ui; fn main() { let rt = generate_runtime_setup("imag-notes", env!("CARGO_PKG_VERSION"), "Note taking helper", build_ui); rt.cli() .subcommand_name() .map(|name| { debug!("Call: {}", name); match name { "create" => create(&rt), "delete" => delete(&rt), "edit" => edit(&rt), "list" => list(&rt), _ => { debug!("Unknown command"); // More error handling }, }; }); } fn name_from_cli(rt: &Runtime, subcmd: &str) -> String { rt.cli().subcommand_matches(subcmd).unwrap().value_of("name").map(String::from).unwrap() } fn create(rt: &Runtime) { let name = name_from_cli(rt, "create"); let mut note = rt .store() .new_note(name.clone(), String::new()) .map_err_trace_exit_unwrap(1); if rt.cli().subcommand_matches("create").unwrap().is_present("edit") { let _ = note .edit_content(rt) .map_warn_err_str("Editing failed") .map_err_trace_exit_unwrap(1); } } fn delete(rt: &Runtime) { let _ = rt.store() .delete_note(name_from_cli(rt, "delete")) .map_info_str("Ok") .map_err_trace_exit_unwrap(1); } fn edit(rt: &Runtime) { let name = name_from_cli(rt, "edit"); let _ = rt .store() .get_note(name.clone()) .map_err_trace_exit_unwrap(1) .map(|mut note| { let _ = note .edit_content(rt) .map_warn_err_str("Editing failed") .map_err_trace_exit_unwrap(1); }) .unwrap_or_else(|| { error!("Cannot find note with name '{}'", name); }); } fn list(rt: &Runtime) { use std::cmp::Ordering; let _ = rt .store() .all_notes() .map_err_trace_exit_unwrap(1) .filter_map(|noteid| rt.store().get(noteid).map_err_trace_exit_unwrap(1)) .sorted_by(|note_a, note_b| if let (Ok(a), Ok(b)) = (note_a.get_name(), note_b.get_name()) { return a.cmp(&b) } else { return Ordering::Greater; }) .iter() .for_each(|note| { note.get_name() .map(|name| println!("{}", name)) .map_err_trace() .ok(); }); }