2022-08-20 04:01:43 +00:00
|
|
|
use crate::error;
|
|
|
|
use crate::state;
|
|
|
|
use crate::colour;
|
|
|
|
|
2022-08-20 23:58:05 +00:00
|
|
|
use std::io;
|
2022-08-20 04:01:43 +00:00
|
|
|
use std::fs;
|
2022-08-20 23:58:05 +00:00
|
|
|
use std::fmt;
|
2022-08-20 04:01:43 +00:00
|
|
|
use std::mem;
|
|
|
|
use std::path;
|
|
|
|
use std::io::{Write, Seek};
|
|
|
|
use std::collections::HashSet;
|
2022-08-20 23:58:05 +00:00
|
|
|
use colored::Colorize;
|
2022-08-20 04:01:43 +00:00
|
|
|
|
|
|
|
pub type Id = u64;
|
|
|
|
|
|
|
|
pub struct Task {
|
|
|
|
path : path::PathBuf,
|
|
|
|
file : fs::File,
|
|
|
|
pub data : InternalTask,
|
|
|
|
}
|
|
|
|
|
2022-08-21 02:34:34 +00:00
|
|
|
#[derive(Default, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, clap::ValueEnum, serde::Serialize, serde::Deserialize)]
|
2022-08-20 04:01:43 +00:00
|
|
|
pub enum Priority {
|
|
|
|
#[default]
|
|
|
|
Low,
|
|
|
|
Medium,
|
|
|
|
High,
|
|
|
|
}
|
|
|
|
|
2022-08-20 23:58:05 +00:00
|
|
|
impl fmt::Display for Priority {
|
|
|
|
fn fmt(&self, f : &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
use Priority::*;
|
|
|
|
let priority = match self {
|
|
|
|
Low => "low",
|
|
|
|
Medium => "medium",
|
|
|
|
High => "high",
|
|
|
|
};
|
|
|
|
write!(f, "{}", priority)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Priority {
|
|
|
|
pub fn coloured(&self) -> String {
|
|
|
|
use Priority::*;
|
|
|
|
let priority = match self {
|
|
|
|
Low => "low".truecolor(46, 204, 113),
|
|
|
|
Medium => "medium".truecolor(241, 196, 15),
|
|
|
|
High => "high".truecolor(231, 76, 60),
|
|
|
|
};
|
|
|
|
format!("{}", priority)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-22 10:27:17 +00:00
|
|
|
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
|
2022-08-20 04:01:43 +00:00
|
|
|
pub struct TimeEntry {
|
2022-08-22 10:27:17 +00:00
|
|
|
logged_date : chrono::NaiveDate,
|
|
|
|
hours : u16,
|
|
|
|
minutes : u16,
|
|
|
|
}
|
|
|
|
|
2022-08-22 10:37:50 +00:00
|
|
|
impl TimeEntry {
|
|
|
|
/// Adds up a collection of time entries.
|
|
|
|
fn total(entries : &Vec<TimeEntry>) -> (u16, u16) {
|
|
|
|
let (hours, minutes) =
|
|
|
|
entries
|
|
|
|
.into_iter()
|
|
|
|
.fold((0, 0), |a, e| (a.0 + e.hours, a.1 + e.minutes));
|
|
|
|
|
|
|
|
let (hours, minutes) = {
|
|
|
|
(hours + minutes / 60, minutes % 60)
|
|
|
|
};
|
|
|
|
|
|
|
|
(hours, minutes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-22 10:27:17 +00:00
|
|
|
impl TimeEntry {
|
|
|
|
pub fn new(hours : u16, minutes : u16) -> Self {
|
|
|
|
|
|
|
|
let (hours, minutes) = {
|
|
|
|
(hours + minutes / 60, minutes % 60)
|
|
|
|
};
|
|
|
|
|
|
|
|
Self {
|
|
|
|
logged_date : chrono::Utc::now().naive_local().date(),
|
|
|
|
hours,
|
|
|
|
minutes,
|
|
|
|
}
|
|
|
|
}
|
2022-08-20 04:01:43 +00:00
|
|
|
}
|
|
|
|
|
2022-08-20 23:58:05 +00:00
|
|
|
#[derive(Debug, serde::Serialize, serde::Deserialize)]
|
2022-08-20 04:01:43 +00:00
|
|
|
pub struct InternalTask {
|
|
|
|
pub id : Id,
|
|
|
|
pub name : String,
|
|
|
|
pub info : Option<String>,
|
|
|
|
pub tags : HashSet<String>,
|
|
|
|
pub dependencies : HashSet<Id>,
|
|
|
|
pub priority : Priority,
|
|
|
|
//due : Option<chrono::NaiveDateTime>,
|
|
|
|
pub created : chrono::NaiveDateTime,
|
|
|
|
pub complete : bool,
|
|
|
|
pub discarded : bool,
|
2022-08-22 10:27:17 +00:00
|
|
|
pub time_entries : Vec<TimeEntry>,
|
2022-08-20 04:01:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Task {
|
|
|
|
pub fn new(name : String, info : Option<String>, tags : Vec<String>, dependencies : Vec<Id>, priority : Option<Priority>, vault_folder : &path::Path, state : &mut state::State) -> Result<Self, error::Error> {
|
|
|
|
|
2022-08-21 06:43:42 +00:00
|
|
|
if name.chars().all(|c| c.is_numeric()) {
|
|
|
|
return Err(error::Error::Generic(String::from("Name must not be purely numeric")));
|
|
|
|
};
|
|
|
|
|
2022-08-20 04:01:43 +00:00
|
|
|
let id = state.data.next_id;
|
|
|
|
state.data.next_id += 1;
|
|
|
|
|
|
|
|
let path = vault_folder.join("notes").join(&format!("{}.toml", id));
|
|
|
|
|
|
|
|
let mut file = fs::File::options()
|
|
|
|
.write(true)
|
|
|
|
.create(true)
|
|
|
|
.open(&path)?;
|
|
|
|
|
|
|
|
let data = InternalTask {
|
|
|
|
id,
|
|
|
|
name,
|
|
|
|
info,
|
|
|
|
tags : tags.into_iter().collect(),
|
|
|
|
dependencies : dependencies.into_iter().collect(),
|
|
|
|
priority : priority.unwrap_or_default(),
|
|
|
|
time_entries : Vec::new(),
|
|
|
|
created : chrono::Utc::now().naive_local(),
|
|
|
|
complete : false,
|
|
|
|
discarded : false,
|
|
|
|
};
|
|
|
|
|
2022-08-22 10:27:17 +00:00
|
|
|
let file_contents = toml::to_string(&data)?;
|
|
|
|
|
2022-08-20 04:01:43 +00:00
|
|
|
file.set_len(0)?;
|
|
|
|
file.seek(io::SeekFrom::Start(0))?;
|
2022-08-22 10:27:17 +00:00
|
|
|
file.write_all(file_contents.as_bytes())?;
|
2022-08-20 04:01:43 +00:00
|
|
|
|
2022-08-21 06:43:42 +00:00
|
|
|
state.index_insert(data.name.clone(), id);
|
|
|
|
|
2022-08-20 04:01:43 +00:00
|
|
|
Ok(Task {
|
|
|
|
path,
|
|
|
|
file,
|
|
|
|
data,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-21 00:59:09 +00:00
|
|
|
/// Less graceful error handling on this for task not existing. Only use this externally when
|
|
|
|
/// in edit mode.
|
|
|
|
pub fn load_direct(path : path::PathBuf, read_only : bool) -> Result<Self, error::Error> {
|
2022-08-20 04:01:43 +00:00
|
|
|
let file_contents = fs::read_to_string(&path)?;
|
2022-08-21 00:59:09 +00:00
|
|
|
|
2022-08-20 04:01:43 +00:00
|
|
|
let file = if read_only {
|
|
|
|
fs::File::open(&path)?
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fs::File::options()
|
|
|
|
.write(true)
|
|
|
|
.create(true)
|
|
|
|
.open(&path)?
|
|
|
|
};
|
|
|
|
|
|
|
|
let data = toml::from_str(&file_contents)?;
|
|
|
|
|
|
|
|
Ok(Self {
|
|
|
|
path,
|
|
|
|
file,
|
|
|
|
data,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-21 00:59:09 +00:00
|
|
|
/// The read_only flag is so that the file will not be truncated, and therefore doesn't need to
|
|
|
|
/// be saved when finished.
|
2022-08-21 06:43:42 +00:00
|
|
|
pub fn load(id : Id, vault_folder : &path::Path, read_only : bool) -> Result<Self, error::Error> {
|
|
|
|
let path = Task::check_exists(id, vault_folder)?;
|
2022-08-21 00:59:09 +00:00
|
|
|
|
|
|
|
Task::load_direct(path, read_only)
|
|
|
|
}
|
|
|
|
|
2022-08-21 06:43:42 +00:00
|
|
|
pub fn load_all(vault_folder : &path::Path, read_only : bool) -> Result<Vec<Self>, error::Error> {
|
|
|
|
let ids : Vec<Id> =
|
|
|
|
fs::read_dir(vault_folder.join("notes"))
|
|
|
|
.unwrap()
|
|
|
|
.map(|entry| entry.unwrap().path())
|
|
|
|
.filter(|p| p.is_file())
|
|
|
|
.map(|p| p.file_stem().unwrap().to_str().unwrap().to_string())
|
|
|
|
.filter_map(|n| n.parse::<Id>().ok())
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let mut tasks = Vec::with_capacity(ids.len());
|
|
|
|
for id in ids {
|
|
|
|
tasks.push(Task::load(id, vault_folder, read_only)?);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(tasks)
|
|
|
|
}
|
|
|
|
|
2022-08-21 00:59:09 +00:00
|
|
|
pub fn path(&self) -> &path::Path {
|
|
|
|
&self.path
|
|
|
|
}
|
|
|
|
|
2022-08-20 04:01:43 +00:00
|
|
|
pub fn check_exists(id : Id, vault_folder : &path::Path) -> Result<path::PathBuf, error::Error> {
|
|
|
|
let path = vault_folder.join("notes").join(format!("{}.toml", id));
|
|
|
|
if path.exists() && path.is_file() {
|
|
|
|
Ok(path)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Err(error::Error::Generic(format!("No task with the ID {} exists", colour::id(&id.to_string()))))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn save(self) -> Result<(), error::Error> {
|
|
|
|
let Self {
|
2022-08-21 06:43:42 +00:00
|
|
|
path : _,
|
2022-08-20 04:01:43 +00:00
|
|
|
mut file,
|
|
|
|
data,
|
|
|
|
} = self;
|
|
|
|
|
2022-08-22 10:27:17 +00:00
|
|
|
let file_contents = toml::to_string(&data)?;
|
|
|
|
|
2022-08-20 04:01:43 +00:00
|
|
|
file.set_len(0)?;
|
|
|
|
file.seek(io::SeekFrom::Start(0))?;
|
2022-08-22 10:27:17 +00:00
|
|
|
file.write_all(file_contents.as_bytes())?;
|
2022-08-20 04:01:43 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn delete(self) -> Result<(), error::Error> {
|
|
|
|
let Self {
|
|
|
|
path,
|
|
|
|
file,
|
2022-08-21 06:43:42 +00:00
|
|
|
data : _,
|
2022-08-20 04:01:43 +00:00
|
|
|
} = self;
|
|
|
|
|
|
|
|
mem::drop(file);
|
|
|
|
fs::remove_file(&path)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-08-20 23:58:05 +00:00
|
|
|
pub fn display(&self) -> Result<(), error::Error> {
|
2022-08-22 10:27:17 +00:00
|
|
|
|
2022-08-20 23:58:05 +00:00
|
|
|
fn line(len : usize) {
|
|
|
|
for _ in 0..len {
|
|
|
|
print!("-");
|
|
|
|
}
|
|
|
|
println!();
|
|
|
|
}
|
|
|
|
|
2022-08-22 10:27:17 +00:00
|
|
|
let (heading, heading_length) = {
|
|
|
|
let id = &self.data.id.to_string();
|
|
|
|
let discarded = if self.data.discarded { String::from(" (discarded)") } else { String::new() };
|
|
|
|
|
|
|
|
(
|
|
|
|
format!("[{}] {} {}{}", if self.data.complete {"X"} else {" "}, colour::id(id), colour::task_name(&self.data.name), colour::greyed_out(&discarded)),
|
|
|
|
5 + self.data.name.chars().count() + id.chars().count() + discarded.chars().count()
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
2022-08-20 23:58:05 +00:00
|
|
|
println!("{}", heading);
|
2022-08-22 10:27:17 +00:00
|
|
|
line(heading_length);
|
2022-08-21 01:09:22 +00:00
|
|
|
|
2022-08-22 10:27:17 +00:00
|
|
|
println!("Priority: {}", self.data.priority.coloured());
|
|
|
|
println!("Tags: [{}]", format_hash_set(&self.data.tags)?);
|
|
|
|
println!("Created: {}", self.data.created);
|
2022-08-20 23:58:05 +00:00
|
|
|
|
2022-08-21 02:17:23 +00:00
|
|
|
if let Some(mut info) = self.data.info.clone() {
|
|
|
|
let mut max_line_width = 0;
|
2022-08-20 23:58:05 +00:00
|
|
|
println!("Info:");
|
2022-08-21 02:17:23 +00:00
|
|
|
|
2022-08-21 06:43:42 +00:00
|
|
|
while info.ends_with('\n') {
|
2022-08-21 02:17:23 +00:00
|
|
|
info.pop();
|
|
|
|
}
|
|
|
|
|
2022-08-21 06:43:42 +00:00
|
|
|
let info_lines : Vec<&str> = info.split('\n').collect();
|
2022-08-21 01:48:30 +00:00
|
|
|
for line in info_lines {
|
|
|
|
max_line_width = usize::max(max_line_width, line.chars().count() + 4);
|
|
|
|
println!(" {}", line);
|
|
|
|
}
|
2022-08-21 02:17:23 +00:00
|
|
|
}
|
2022-08-22 10:27:17 +00:00
|
|
|
|
|
|
|
if !self.data.time_entries.is_empty() {
|
|
|
|
|
|
|
|
let mut entries = self.data.time_entries.clone();
|
|
|
|
// Sort entries by date.
|
|
|
|
entries.sort_by(|e1, e2| e1.logged_date.cmp(&e2.logged_date));
|
|
|
|
|
|
|
|
println!("Time Entries:");
|
|
|
|
for entry in &entries {
|
|
|
|
println!(" {}:{:0>2} [{}]", entry.hours, entry.minutes, entry.logged_date);
|
|
|
|
}
|
2022-08-20 23:58:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// dependencies as a tree
|
2022-08-21 01:48:30 +00:00
|
|
|
|
|
|
|
Ok(())
|
2022-08-20 23:58:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn format_hash_set<T : fmt::Display>(set : &HashSet<T>) -> Result<String, error::Error> {
|
|
|
|
let mut output = String::new();
|
|
|
|
|
|
|
|
for value in set.iter() {
|
|
|
|
fmt::write(&mut output, format_args!("{}, ", value))?;
|
|
|
|
}
|
|
|
|
|
2022-08-21 06:43:42 +00:00
|
|
|
// Remove the trailing comma and space.
|
|
|
|
if !output.is_empty() {
|
2022-08-20 23:58:05 +00:00
|
|
|
output.pop();
|
|
|
|
output.pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(output)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn list(vault_folder : &path::Path) -> Result<(), error::Error> {
|
|
|
|
|
|
|
|
let mut table = comfy_table::Table::new();
|
|
|
|
table
|
|
|
|
.load_preset(comfy_table::presets::UTF8_FULL)
|
2022-08-21 05:31:27 +00:00
|
|
|
.apply_modifier(comfy_table::modifiers::UTF8_ROUND_CORNERS)
|
|
|
|
.set_content_arrangement(comfy_table::ContentArrangement::Dynamic);
|
2022-08-22 10:37:50 +00:00
|
|
|
table.set_header(vec!["Id", "Name", "Tags", "Priority", "Time"]);
|
2022-08-20 23:58:05 +00:00
|
|
|
|
2022-08-21 06:43:42 +00:00
|
|
|
let mut tasks = Task::load_all(vault_folder, true)?;
|
2022-08-21 02:34:34 +00:00
|
|
|
tasks.sort_by(|t1, t2| t2.data.priority.cmp(&t1.data.priority));
|
2022-08-20 23:58:05 +00:00
|
|
|
|
2022-08-21 02:34:34 +00:00
|
|
|
for task in tasks {
|
2022-08-21 00:59:09 +00:00
|
|
|
if !task.data.discarded && !task.data.complete {
|
2022-08-22 10:37:50 +00:00
|
|
|
|
|
|
|
let (hours, minutes) = TimeEntry::total(&task.data.time_entries);
|
|
|
|
|
2022-08-21 00:59:09 +00:00
|
|
|
table.add_row(
|
|
|
|
vec![
|
|
|
|
task.data.id.to_string(),
|
|
|
|
task.data.name,
|
|
|
|
format_hash_set(&task.data.tags)?,
|
2022-08-21 06:43:42 +00:00
|
|
|
task.data.priority.to_string(),
|
2022-08-22 10:37:50 +00:00
|
|
|
if (hours, minutes) == (0, 0) { String::new() } else { format!("{}:{:0>2}", hours, minutes) },
|
2022-08-21 00:59:09 +00:00
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
2022-08-20 23:58:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
println!("{}", table);
|
|
|
|
|
|
|
|
Ok(())
|
2022-08-20 04:01:43 +00:00
|
|
|
}
|
|
|
|
|
2022-08-22 08:58:13 +00:00
|
|
|
pub fn clean(vault_folder : &path::Path) -> Result<(), error::Error> {
|
|
|
|
|
|
|
|
let tasks = Task::load_all(vault_folder, false)?;
|
|
|
|
|
|
|
|
for task in tasks {
|
|
|
|
if task.data.discarded {
|
|
|
|
task.delete()?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-08-20 04:01:43 +00:00
|
|
|
|