-
Notifications
You must be signed in to change notification settings - Fork 0
/
habit-tracker
executable file
·287 lines (261 loc) · 9.28 KB
/
habit-tracker
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
#!/usr/bin/env python
import datetime, json, math, os, select, string, subprocess, sys, time
CLI_HELP = """
habits [OPTIONS]
-h, --help: print this help
-r, --record: record a single event by name
-s, --status: print the status
-i, --interactive: interactively print the status and allow single-key logging
"""
HIDE = "hide"
NO_TARGET = "no_target"
ACTIONS_SOURCE = [
# This is the display order for timers and keys
# key, logging_id, text, target_period
("w", "wake", "wake", "1d"),
("s", "sit", "sit", "1d"),
("c", "caffine", "caffine", NO_TARGET),
("d", "data", "data log", "1d"),
("t", "teeth", "teeth", "1d"),
("f", "floss", "floss or die", "1d"),
("m", "medicine", "medicine", "1d"),
("v", "vegetable", "vegetable", "1d"),
("u", "stand", "u stand", "1d"),
("o", "outside", "outside", "1d"),
("e", "exercise", "exercise", "2d"),
("g", "walk", "go on walk", "2d"),
("h", "jshave", "h sHave", "1w"),
("z", "meditate", "zen med.", "1w"),
("q", "quit", "quit", HIDE),
#("x", "test", "test action", HIDE),
]
assert all(len(x) == len(ACTIONS_SOURCE[0]) for x in ACTIONS_SOURCE)
ACTIONS = [a[1] for a in ACTIONS_SOURCE]
ACTION_TO_KEY = { a[1]: a[0] for a in ACTIONS_SOURCE }
ACTION_TO_TEXT = { a[1]: a[2] for a in ACTIONS_SOURCE }
ACTION_TO_PERIOD = { a[1]: a[3] for a in ACTIONS_SOURCE }
KEY_TO_ACTION = { a[0]: a[1] for a in ACTIONS_SOURCE }
del ACTIONS_SOURCE
WIDTH=80
assert len(set(KEY_TO_ACTION.keys())) == len(ACTIONS), "Duplicate keystroke present"
assert all(x in string.ascii_lowercase for x in KEY_TO_ACTION.keys()), "Keystrokes should be lowercase letters"
assert all(ACTION_TO_TEXT[a][0] == ACTION_TO_KEY[a] for a in ACTIONS), "Text should start with the keystroke"
COLORS = {
"grey": "\x1b[90m",
"white": "\x1b[37m",
"yellow": "\x1b[33m",
"red": "\x1b[31m",
"green": "\x1b[32m",
"default": "\x1b[34m",
"blue": "\x1b[34m",
#"key": "\x1b[97;102;4m",
"key": "\x1b[30;102m",
}
CLEARCOLOR = "\x1b[0m"
def default_color():
return sys.stdout.isatty() # Default is color to a TTY, otherwise no ANSI
def clear_screen():
sys.stdout.write("\x1b[2J\x1b[H")
def output(text, color=None, usecolor=None):
if usecolor is None:
usecolor=default_color()
text = text[-WIDTH:] # limit display length
if usecolor == False:
color = None
if color is None:
sys.stdout.write(text)
else:
sys.stdout.write(COLORS[color])
sys.stdout.write(text)
sys.stdout.write(CLEARCOLOR)
def readable_time(seconds):
if seconds is None:
return "never"
if seconds < 60:
return "{}s".format(seconds)
minutes = seconds//60
if minutes < 60:
return "{}m".format(minutes)
hours = minutes//60
if hours < 24:
return "{}h".format(hours)
days = hours//24
return "{}d".format(days)
def parse_time(period):
i, unit = int(period[:-1]), period[-1]
assert unit in "smhdwy", "unknown time unit: {}".format(unit)
return i * {
"s": 1,
"m": 60,
"h": 60*60,
"d": 60*60*24,
"w": 60*60*24*7,
"y": 60*60*24*365,
}[unit]
def due_status(action, state):
period = ACTION_TO_PERIOD[action]
if period in (NO_TARGET, HIDE):
return "grey"
elif period[-1] in "dwy":
# Use a day-based calculation
if state[action] is None:
return "red"
start_of_today = datetime.datetime.combine(datetime.date.today(), time=datetime.time(6, 0)) # 6am this morning, a time I expect to be asleep generally
if "wake" in state and state["wake"] is not None:
start_of_today = datetime.datetime.fromtimestamp(state["wake"])
last_event = datetime.datetime.fromtimestamp(state[action])
period_days = parse_time(period) / parse_time("1d")
elapsed_days = (start_of_today - last_event) / datetime.timedelta(days=1)
if elapsed_days <= period_days - 1:
return "green"
elif period_days - 1 < elapsed_days <= period_days + 1: # turn yellow on the last day to do it
return "blue"
elif period_days + 1 < elapsed_days:
return "red"
elif period[-1] in "smh":
# Use a second-based calculation
if state[action] is None:
return "red"
elapsed_seconds = time.time() - state[action]
period = parse_time(period)
if elapsed_seconds > period:
return "red"
else:
return "green"
else:
assert False
def print_status(state, keys, usecolor=None):
if usecolor is None:
usecolor = default_color()
action_len = max(len(a) for a in ACTION_TO_TEXT.values()) + 1
current_time = time.time()
l = []
for action in ACTIONS:
period = ACTION_TO_PERIOD[action]
key = ACTION_TO_KEY[action]
status = due_status(action, state)
if state[action] is None:
elapsed_seconds = None
else:
elapsed_seconds = int(current_time - state[action])
t = readable_time(elapsed_seconds) + ("*" if (status in ["yellow", "red"] and not usecolor) else "")
if period == HIDE:
t = ""
readable_action = "{action:<{action_len}}".format(action=ACTION_TO_TEXT[action], action_len=action_len)
l.append((
key, readable_action, elapsed_seconds, t, status, period,
))
# Optionally sort l by something other than default order
for key, action, _, t, status, _ in l:
output(key, color="key")
output(action[1:] + t + "\n", color=status)
def print_record(record):
output("".join([ACTION_TO_KEY[a] for a in record]), color="blue")
output("\n")
output(" ".join(record), color="blue")
output("\n")
def print_help(color=None):
#SUFFIX = "xq"
keys = [ACTION_TO_KEY[action] for action in ACTIONS]
desc_len = max(len(t) for t in ACTION_TO_TEXT.values())
cols = WIDTH // (desc_len+3)
rows = math.ceil(len(keys)/cols)
for row in range(rows):
for col in range(cols):
i = col*rows + row
if i < len(keys):
k = keys[i]
output("{desc:<{desc_len}}".format(desc=ACTION_TO_TEXT[KEY_TO_ACTION[k]], desc_len=desc_len), color="grey")
output(" ")
output("\n")
def print_cli_help():
print(CLI_HELP)
def log_action(action, logger="habits"):
LOG="/usr/bin/log"
if os.path.exists(LOG):
p = subprocess.run([LOG, logger], input=action+"\n", encoding='ascii')
assert p.returncode == 0
def get_keystroke():
import tty, sys, termios
fd = sys.stdin.fileno()
old_settings = termios.tcgetattr(fd)
try:
tty.setraw(sys.stdin.fileno())
INPUT_TIMEOUT = 10.0
rlist, _, _ = select.select([sys.stdin], [], [], INPUT_TIMEOUT)
if rlist:
return sys.stdin.read(1)
else:
return None
finally:
termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
def get_action():
output("do what? ")
sys.stdout.flush()
ks = get_keystroke()
return KEY_TO_ACTION.get(ks)
def load_state(statefile="/home/zachary/.habits/state.json"):
state_load = {}
if os.path.exists(statefile):
with open(statefile, "r") as f:
state_load = json.loads(f.read())
state = {}
for a in ACTIONS:
if a in state_load:
state[a] = state_load[a]
else:
state[a] = None
return state
def persist_state(state, statefile="/home/zachary/.habits/state.json"):
with open(statefile, "w") as f:
f.write(json.dumps(state))
def do_action(action, record=None, state=None):
if record is not None:
record.append(action)
log_action(action)
if state is not None:
state[action] = int(time.time())
persist_state(state)
def interactive_loop(reload_after_action=False):
record = []
state = load_state()
while True:
clear_screen()
print_status(state, keys=True)
output("\n")
print_record(record)
output("\n")
action = get_action()
if action is None:
continue
do_action(action, record=record, state=state)
if reload_after_action:
state = load_state()
if action == "quit":
return
if __name__ == "__main__":
args = sys.argv[1:]
if args == [] or (len(args) == 1 and args[0] in ["-i", "--interactive"]):
interactive_loop()
sys.exit(0)
elif len(args) == 1 and args[0] in ["-h", "--help"]:
print_cli_help()
sys.exit(0)
elif len(args) == 2 and args[0] in ["-r", "--record"]:
action = args[1]
if action in ACTIONS:
state = load_state()
do_action(action, state=state)
sys.exit(0)
else:
print("invalid action: {}".format(action))
print("valid actions are: {}".format(" ".join(ACTIONS)))
sys.exit(1)
elif len(args) == 1 and args[0] in ["-s", "--status"]:
state = load_state()
print_status(state, keys=False)
sys.exit(0)
else:
print("invalid arguments", args)
print_cli_help()
sys.exit(1)