1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
use std::collections::HashMap;
use std::default::Default;
use chrono::NaiveDate;
use serde::{Deserialize, Serialize};
use crate::habit::prelude::default_auto;
use crate::habit::traits::Habit;
use crate::habit::{InnerData, TrackEvent};
use crate::CONFIGURATION;
#[derive(Copy, Clone, Debug, Serialize, Deserialize)]
pub struct CustomBool(bool);
use std::fmt;
impl fmt::Display for CustomBool {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"{:^3}",
if self.0 {
CONFIGURATION.look.true_chr
} else {
CONFIGURATION.look.false_chr
}
)
}
}
impl From<bool> for CustomBool {
fn from(b: bool) -> Self {
CustomBool(b)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Bit {
name: String,
stats: HashMap<NaiveDate, CustomBool>,
goal: CustomBool,
#[serde(default = "default_auto")]
auto: bool,
#[serde(skip)]
inner_data: InnerData,
}
impl Bit {
pub fn new(name: impl AsRef<str>, auto: bool) -> Self {
return Bit {
name: name.as_ref().to_owned(),
stats: HashMap::new(),
goal: CustomBool(true),
auto,
inner_data: Default::default(),
};
}
}
impl Habit for Bit {
type HabitType = CustomBool;
fn name(&self) -> String {
return self.name.clone();
}
fn set_name(&mut self, n: impl AsRef<str>) {
self.name = n.as_ref().to_owned();
}
fn set_goal(&mut self, g: Self::HabitType) {
self.goal = g;
}
fn get_by_date(&self, date: NaiveDate) -> Option<&Self::HabitType> {
self.stats.get(&date)
}
fn insert_entry(&mut self, date: NaiveDate, val: Self::HabitType) {
*self.stats.entry(date).or_insert(val) = val;
}
fn reached_goal(&self, date: NaiveDate) -> bool {
if let Some(val) = self.stats.get(&date) {
if val.0 >= self.goal.0 {
return true;
}
}
return false;
}
fn remaining(&self, date: NaiveDate) -> u32 {
if let Some(val) = self.stats.get(&date) {
if val.0 {
return 0;
} else {
return 1;
}
} else {
return 1;
}
}
fn goal(&self) -> u32 {
return 1;
}
fn modify(&mut self, date: NaiveDate, event: TrackEvent) {
if let Some(val) = self.stats.get_mut(&date) {
match event {
TrackEvent::Increment => *val = (val.0 ^ true).into(),
TrackEvent::Decrement => {
if val.0 {
*val = false.into();
} else {
self.stats.remove(&date);
}
}
}
} else {
if event == TrackEvent::Increment {
self.insert_entry(date, CustomBool(true));
}
}
}
fn inner_data_ref(&self) -> &InnerData {
&self.inner_data
}
fn inner_data_mut_ref(&mut self) -> &mut InnerData {
&mut self.inner_data
}
fn is_auto(&self) -> bool {
self.auto
}
}
|