imag-todo: implement ImagApplication
Signed-off-by: Leon Schuermann <leon@is.currently.online>
This commit is contained in:
parent
e1dbb596a1
commit
2a1e78c705
3 changed files with 90 additions and 24 deletions
|
@ -35,3 +35,10 @@ version = "2.33.0"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["color", "suggestions", "wrap_help"]
|
features = ["color", "suggestions", "wrap_help"]
|
||||||
|
|
||||||
|
[lib]
|
||||||
|
name = "libimagtodofrontend"
|
||||||
|
path = "src/lib.rs"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "imag-todo"
|
||||||
|
path = "src/bin.rs"
|
||||||
|
|
39
bin/domain/imag-todo/src/bin.rs
Normal file
39
bin/domain/imag-todo/src/bin.rs
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
//
|
||||||
|
// imag - the personal information management suite for the commandline
|
||||||
|
// Copyright (C) 2015-2019 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
|
||||||
|
//
|
||||||
|
|
||||||
|
#![forbid(unsafe_code)]
|
||||||
|
|
||||||
|
#![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,
|
||||||
|
)]
|
||||||
|
|
||||||
|
#[macro_use] extern crate libimagrt;
|
||||||
|
|
||||||
|
simple_imag_application_binary!(libimagtodofrontend, ImagTodo);
|
|
@ -41,7 +41,7 @@ extern crate toml_query;
|
||||||
#[macro_use] extern crate is_match;
|
#[macro_use] extern crate is_match;
|
||||||
extern crate failure;
|
extern crate failure;
|
||||||
|
|
||||||
#[macro_use] extern crate libimagrt;
|
extern crate libimagrt;
|
||||||
extern crate libimagerror;
|
extern crate libimagerror;
|
||||||
extern crate libimagtodo;
|
extern crate libimagtodo;
|
||||||
|
|
||||||
|
@ -49,9 +49,11 @@ use std::process::{Command, Stdio};
|
||||||
use std::io::stdin;
|
use std::io::stdin;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use failure::Error;
|
use failure::Error;
|
||||||
|
use failure::Fallible as Result;
|
||||||
|
use clap::App;
|
||||||
|
|
||||||
use libimagrt::runtime::Runtime;
|
use libimagrt::runtime::Runtime;
|
||||||
use libimagrt::setup::generate_runtime_setup;
|
use libimagrt::application::ImagApplication;
|
||||||
use libimagtodo::taskstore::TaskStore;
|
use libimagtodo::taskstore::TaskStore;
|
||||||
use libimagerror::trace::{MapErrTrace, trace_error};
|
use libimagerror::trace::{MapErrTrace, trace_error};
|
||||||
use libimagerror::iter::TraceIterator;
|
use libimagerror::iter::TraceIterator;
|
||||||
|
@ -60,29 +62,47 @@ use libimagerror::io::ToExitCode;
|
||||||
|
|
||||||
mod ui;
|
mod ui;
|
||||||
|
|
||||||
use crate::ui::build_ui;
|
/// Marker enum for implementing ImagApplication on
|
||||||
fn main() {
|
///
|
||||||
let version = make_imag_version!();
|
/// This is used by binaries crates to execute business logic
|
||||||
let rt = generate_runtime_setup("imag-todo",
|
/// or to build a CLI completion.
|
||||||
&version,
|
pub enum ImagTodo {}
|
||||||
"Interface with taskwarrior",
|
impl ImagApplication for ImagTodo {
|
||||||
build_ui);
|
fn run(rt: Runtime) -> Result<()> {
|
||||||
|
match rt.cli().subcommand_name() {
|
||||||
|
Some("tw-hook") => tw_hook(&rt),
|
||||||
|
Some("list") => list(&rt),
|
||||||
|
Some(other) => {
|
||||||
|
debug!("Unknown command");
|
||||||
|
let _ = rt.handle_unknown_subcommand("imag-todo", other, rt.cli())
|
||||||
|
.map_err_trace_exit_unwrap()
|
||||||
|
.code()
|
||||||
|
.map(::std::process::exit);
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
warn!("No command");
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
match rt.cli().subcommand_name() {
|
Ok(())
|
||||||
Some("tw-hook") => tw_hook(&rt),
|
}
|
||||||
Some("list") => list(&rt),
|
|
||||||
Some(other) => {
|
fn build_cli<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
||||||
debug!("Unknown command");
|
ui::build_ui(app)
|
||||||
let _ = rt.handle_unknown_subcommand("imag-todo", other, rt.cli())
|
}
|
||||||
.map_err_trace_exit_unwrap()
|
|
||||||
.code()
|
fn name() -> &'static str {
|
||||||
.map(::std::process::exit);
|
env!("CARGO_PKG_NAME")
|
||||||
}
|
}
|
||||||
None => {
|
|
||||||
warn!("No command");
|
fn description() -> &'static str {
|
||||||
},
|
"Interface with taskwarrior"
|
||||||
} // end match scmd
|
}
|
||||||
} // end main
|
|
||||||
|
fn version() -> &'static str {
|
||||||
|
env!("CARGO_PKG_VERSION")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn tw_hook(rt: &Runtime) {
|
fn tw_hook(rt: &Runtime) {
|
||||||
let subcmd = rt.cli().subcommand_matches("tw-hook").unwrap();
|
let subcmd = rt.cli().subcommand_matches("tw-hook").unwrap();
|
Loading…
Reference in a new issue