2017-06-17 12:20:46 +00:00
|
|
|
//
|
|
|
|
// imag - the personal information management suite for the commandline
|
2018-02-07 01:48:53 +00:00
|
|
|
// 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;
|
2017-07-19 11:08:58 +00:00
|
|
|
extern crate filters;
|
2017-07-19 12:08:02 +00:00
|
|
|
extern crate itertools;
|
2018-01-13 02:19:41 +00:00
|
|
|
extern crate prettytable;
|
2018-02-11 20:25:33 +00:00
|
|
|
extern crate kairos;
|
2018-10-30 17:40:53 +00:00
|
|
|
extern crate failure;
|
2017-07-15 17:57:13 +00:00
|
|
|
|
|
|
|
extern crate libimagerror;
|
|
|
|
extern crate libimagstore;
|
2018-01-31 10:09:00 +00:00
|
|
|
#[macro_use] extern crate libimagrt;
|
2017-08-27 12:56:37 +00:00
|
|
|
extern crate libimagtimetrack;
|
2018-01-21 21:29:47 +00:00
|
|
|
extern crate libimagutil;
|
2017-07-15 17:57:13 +00:00
|
|
|
|
2017-06-26 15:47:12 +00:00
|
|
|
mod cont;
|
|
|
|
mod day;
|
2017-07-20 21:21:57 +00:00
|
|
|
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;
|
2018-01-13 13:36:13 +00:00
|
|
|
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;
|
2018-04-04 15:01:02 +00:00
|
|
|
use libimagerror::trace::MapErrTrace;
|
2017-06-17 12:20:46 +00:00
|
|
|
|
|
|
|
fn main() {
|
2018-01-31 10:09:00 +00:00
|
|
|
let version = make_imag_version!();
|
2017-06-26 15:47:12 +00:00
|
|
|
let rt = generate_runtime_setup("imag-timetrack",
|
2018-01-31 10:09:00 +00:00
|
|
|
&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),
|
2017-07-20 21:21:57 +00:00
|
|
|
"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),
|
2018-04-04 15:01:02 +00:00
|
|
|
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 {
|
2018-01-13 13:36:13 +00:00
|
|
|
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
|
|
|
}
|