imag/bin/domain/imag-timetrack/src/main.rs

115 lines
3.1 KiB
Rust
Raw Normal View History

2017-06-17 12:20:46 +00:00
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2018 Matthias Beyer <mail@beyermatthias.de> and contributors
2017-06-17 12:20:46 +00:00
//
// 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
//
2018-09-27 06:13:58 +00:00
#![forbid(unsafe_code)]
2018-04-13 22:39:43 +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,
)]
2017-07-15 17:57:13 +00:00
#[macro_use]
extern crate log;
extern crate clap;
extern crate chrono;
extern crate filters;
2017-07-19 12:08:02 +00:00
extern crate itertools;
extern crate prettytable;
extern crate kairos;
extern crate failure;
2017-07-15 17:57:13 +00:00
extern crate libimagerror;
extern crate libimagstore;
#[macro_use] extern crate libimagrt;
extern crate libimagtimetrack;
extern crate libimagutil;
2017-07-15 17:57:13 +00:00
2017-06-26 15:47:12 +00:00
mod cont;
mod day;
mod list;
2017-06-26 15:47:12 +00:00
mod month;
mod start;
mod stop;
mod track;
2017-06-17 12:20:46 +00:00
mod ui;
2017-06-26 15:47:12 +00:00
mod week;
mod year;
use cont::cont;
use day::day;
use list::{list, list_impl};
2017-06-26 15:47:12 +00:00
use month::month;
use start::start;
use stop::stop;
use track::track;
use ui::build_ui;
use week::week;
use year::year;
use libimagrt::setup::generate_runtime_setup;
use libimagerror::trace::MapErrTrace;
2017-06-17 12:20:46 +00:00
fn main() {
let version = make_imag_version!();
2017-06-26 15:47:12 +00:00
let rt = generate_runtime_setup("imag-timetrack",
&version,
2017-06-26 15:47:12 +00:00
"Time tracking module",
build_ui);
let command = rt.cli().subcommand_name();
let retval = if let Some(command) = command {
debug!("Call: {}", command);
match command {
"continue" => cont(&rt),
"day" => day(&rt),
"list" => list(&rt),
2017-06-26 15:47:12 +00:00
"month" => month(&rt),
"start" => start(&rt),
"stop" => stop(&rt),
"track" => track(&rt),
"week" => week(&rt),
"year" => year(&rt),
other => {
debug!("Unknown command");
rt.handle_unknown_subcommand("imag-timetrack", other, rt.cli())
.map_err_trace_exit_unwrap(1)
.code()
.unwrap_or(0)
2017-06-26 15:47:12 +00:00
},
}
} else {
let start = ::chrono::offset::Local::today().naive_local().and_hms(0, 0, 0);
let end = ::chrono::offset::Local::today().naive_local().and_hms(23, 59, 59);
list_impl(&rt, Some(start), Some(end), false)
2017-06-26 15:47:12 +00:00
};
::std::process::exit(retval);
2017-06-17 12:20:46 +00:00
}