Matthias Beyer
6ac6db57d1
This patch adds a subcommand to imag-timetrack which allows a user to start a $SHELL and start a timetracking with it and as soon as the shell exits, the timetracking is stopped. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
213 lines
9.5 KiB
Rust
213 lines
9.5 KiB
Rust
//
|
|
// 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
|
|
//
|
|
|
|
use clap::{Arg, App, SubCommand};
|
|
|
|
pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
|
app
|
|
.subcommand(SubCommand::with_name("list")
|
|
.about("List time trackings")
|
|
.version("0.1")
|
|
.arg(Arg::with_name("start-time")
|
|
.short("f")
|
|
.long("from")
|
|
.takes_value(true)
|
|
.multiple(false)
|
|
.required(false)
|
|
.help("Set earliest time from which on time trackings should be shown (use 'now' for current time)"))
|
|
.arg(Arg::with_name("end-time")
|
|
.short("t")
|
|
.long("to")
|
|
.takes_value(true)
|
|
.multiple(false)
|
|
.required(false)
|
|
.help("Set latest time of time trackings to be shown (use 'now' for current time)"))
|
|
|
|
.arg(Arg::with_name("list-not-ended")
|
|
.short("l")
|
|
.long("list-not-ended")
|
|
.takes_value(false)
|
|
.multiple(false)
|
|
.required(false)
|
|
.help("List not yet ended timetrackings even if after 'end-time'"))
|
|
|
|
.arg(Arg::with_name("show-duration")
|
|
.short("d")
|
|
.long("show-duration")
|
|
.takes_value(false)
|
|
.multiple(false)
|
|
.required(false)
|
|
.help("Show durations of ended timetrackings"))
|
|
)
|
|
|
|
.subcommand(SubCommand::with_name("start")
|
|
.about("Start time tracking")
|
|
.version("0.1")
|
|
.arg(Arg::with_name("start-time")
|
|
.index(1)
|
|
.required(true)
|
|
.help("Start-time when to start the timetracking (use 'now' for current time)"))
|
|
.arg(Arg::with_name("tags")
|
|
.index(2)
|
|
.required(true)
|
|
.multiple(true)
|
|
.help("Tags to start"))
|
|
)
|
|
|
|
.subcommand(SubCommand::with_name("stop")
|
|
.about("Stop time tracking")
|
|
.version("0.1")
|
|
.arg(Arg::with_name("end-time")
|
|
.index(1)
|
|
.required(false)
|
|
.help("End-time when to stop the timetracking (use 'now' for current time)"))
|
|
.arg(Arg::with_name("tags")
|
|
.index(2)
|
|
.required(false)
|
|
.multiple(true)
|
|
.help("Tags to stop"))
|
|
)
|
|
|
|
.subcommand(SubCommand::with_name("track")
|
|
.about("Track time in given range")
|
|
.version("0.1")
|
|
.arg(Arg::with_name("start-time")
|
|
.index(1)
|
|
.required(true)
|
|
.help("Start-time when to start the timetracking"))
|
|
.arg(Arg::with_name("end-time")
|
|
.index(2)
|
|
.required(true)
|
|
.help("End-time when to stop the timetracking"))
|
|
.arg(Arg::with_name("tags")
|
|
.index(3)
|
|
.required(true)
|
|
.multiple(true)
|
|
.help("Tags to stop"))
|
|
)
|
|
|
|
.subcommand(SubCommand::with_name("continue")
|
|
.about("Continue last stopped time tracking")
|
|
.version("0.1")
|
|
)
|
|
|
|
.subcommand(SubCommand::with_name("day")
|
|
.about("Print stats about day")
|
|
.version("0.1")
|
|
.arg(Arg::with_name("start")
|
|
.index(1)
|
|
.required(false)
|
|
.help("Limit to specific date and time, start time (default: today, 00:00:00)"))
|
|
.arg(Arg::with_name("end")
|
|
.index(2)
|
|
.required(false)
|
|
.help("Limit to specific date and time, end time (default: today, 23:59:59)"))
|
|
.arg(Arg::with_name("tags")
|
|
.long("tags")
|
|
.short("t")
|
|
.required(false)
|
|
.multiple(true)
|
|
.help("Limit to certain tags"))
|
|
)
|
|
|
|
.subcommand(SubCommand::with_name("week")
|
|
.about("Print stats about week")
|
|
.version("0.1")
|
|
.arg(Arg::with_name("start")
|
|
.index(1)
|
|
.required(false)
|
|
.help("Limit to specific date and time, start time (default: today, 00:00:00)"))
|
|
.arg(Arg::with_name("end")
|
|
.index(2)
|
|
.required(false)
|
|
.help("Limit to specific date and time, end time (default: today, 23:59:59)"))
|
|
.arg(Arg::with_name("tags")
|
|
.long("tags")
|
|
.short("t")
|
|
.required(false)
|
|
.multiple(true)
|
|
.help("Limit to certain tags"))
|
|
)
|
|
|
|
.subcommand(SubCommand::with_name("month")
|
|
.about("Print stats about month")
|
|
.version("0.1")
|
|
.arg(Arg::with_name("start")
|
|
.index(1)
|
|
.required(false)
|
|
.help("Limit to specific date and time, start time (default: today, 00:00:00)"))
|
|
.arg(Arg::with_name("end")
|
|
.index(2)
|
|
.required(false)
|
|
.help("Limit to specific date and time, end time (default: today, 23:59:59)"))
|
|
.arg(Arg::with_name("tags")
|
|
.long("tags")
|
|
.short("t")
|
|
.required(false)
|
|
.multiple(true)
|
|
.help("Limit to certain tags"))
|
|
)
|
|
|
|
.subcommand(SubCommand::with_name("year")
|
|
.about("Print stats about year")
|
|
.version("0.1")
|
|
.arg(Arg::with_name("start")
|
|
.index(1)
|
|
.required(false)
|
|
.help("Limit to specific date and time, start time (default: today, 00:00:00)"))
|
|
.arg(Arg::with_name("end")
|
|
.index(2)
|
|
.required(false)
|
|
.help("Limit to specific date and time, end time (default: today, 23:59:59)"))
|
|
.arg(Arg::with_name("tags")
|
|
.long("tags")
|
|
.short("t")
|
|
.required(false)
|
|
.multiple(true)
|
|
.help("Limit to certain tags"))
|
|
)
|
|
|
|
.subcommand(SubCommand::with_name("shell")
|
|
.about("Start a shell and start timetracking, stop when shell exits")
|
|
.version("0.1")
|
|
.long_about(r#"
|
|
Tries to find the current shell via $SHELL. If none is found, this aborts operation and returns 1.
|
|
If a shell is found in the environment variables, the time tracking is created and the shell started.
|
|
As soon as the shell exits (no matter what exit code), the timetracking is stopped.
|
|
The command exits with the exit code of the shell it started. If there is no exit code, this exits with 0.
|
|
If there was a failure during setting the end-time, the command exits with the exit code of the shell anyways, but prints error information.
|
|
If the command for the shell could not be executed, this fails with 2.
|
|
"#)
|
|
|
|
.arg(Arg::with_name("shell")
|
|
.long("shell")
|
|
.short("s")
|
|
.required(false)
|
|
.multiple(false)
|
|
.takes_value(true)
|
|
.help("Shell to start, defaults to $SHELL"))
|
|
|
|
.arg(Arg::with_name("tags")
|
|
.index(1)
|
|
.required(true)
|
|
.multiple(true)
|
|
.help("Tags to start"))
|
|
)
|
|
|
|
}
|