forked from adewinter/punch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Punch.py
executable file
·621 lines (514 loc) · 21 KB
/
Punch.py
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
#!/usr/bin/env python3
'''
Created on Mar 5, 2009
@author: Keith Lawless (keith at keithlawless dot com)
Copyright 2009 Keith Lawless
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
'''
from __future__ import print_function # (at top of module)
from os.path import abspath, exists, join, basename
from os import pathsep, getenv, environ
import shutil
import sys
import time
from optparse import OptionParser
#
# Define some exceptions that our application can raise. These are used
# to exit the program gracefully, and control the error message displayed
# to the user when the program exits.
#
class PunchCommandError(ValueError):
"""Used to indicate that an invalid command was passed to Punch"""
class ToDoConfigNotFoundError(IOError):
"""Used to indicate that todo.cfg was not found on the path"""
class ToDoFileNotFoundError(IOError):
"""Used to indicate that todo.txt was not found on the path"""
class TaskFileNotFoundError(IOError):
"""Used to indicate that the user specified task file was not found"""
class TaskNotFoundError(IOError):
"""Used to indicate that the task number specified does
not exist in the task file"""
class NoOpenTaskError(IOError):
"""Used to indicate that an 'out' command was issued,
but the last task was already closed out."""
class DateFormatError(IOError):
"""Used to indicate that a poorly formatted date
was passed where a date was expected."""
class Punch(object):
timestampFormat = '%Y%m%dT%H%M%S'
def __init__(self, optlist, args):
self.optlist = optlist
self.args = args
def execute(self):
"""Execute the command - either 'in' or 'out'"""
if(self.args[0] == 'in'):
self.execute_in()
elif(self.args[0] == 'out'):
self.execute_out()
elif(self.args[0] in ['wh', 'what']):
self.execute_wh()
elif(self.args[0] in ['report', 'rep']):
self.execute_rep(archive=False)
elif(self.args[0] in ['arcreport', 'arcrep']):
self.execute_rep(archive=True)
elif(self.args[0] in ['archive', 'ar']):
self.execute_ar()
else:
raise PunchCommandError
def search_file(self, files, paths):
file_found = 0
for filename in files:
for path in paths:
if path is not None:
if exists(join(path, filename)):
file_found = 1
break
if file_found:
break
if file_found:
return abspath(join(path, filename))
else:
return None
def parse_config(self):
"""Parse the user's todo.cfg file and place
the elements into a dictionary"""
try:
paths = [getenv("HOME"), "."]
files = ["todo.cfg", ".todo.cfg"]
if getenv("TODOTXT_CFG_FILE") is None:
configFileName = self.search_file(files, paths)
else:
configFileName = getenv("TODOTXT_CFG_FILE")
if configFileName is None:
raise ToDoConfigNotFoundError
configFile = open(configFileName)
self.propDict = dict()
for propLine in configFile:
propDef = propLine.strip()
if len(propDef) == 0:
continue
if propDef[0] in ('#'):
continue
if propDef[0:6] == 'export':
propDef = propDef[7:]
punctuation = [propDef.find(c) for c in '= '] + [len(propDef)]
found = min([pos for pos in punctuation if pos != -1])
name = propDef[:found].rstrip()
value = propDef[found:].lstrip(":= ").rstrip()
self.propDict[name] = value.strip('"')
configFile.close()
# Add the users environment variables to the propDict, unless
# a value has already been set.
for key in environ.keys():
if key in self.propDict is False:
self.propDict[key] = environ[key]
except IOError:
raise ToDoConfigNotFoundError
def resolve(self, value):
"""Replace variables in a config entry with the actual value."""
token = value.find('$')
if(token != -1):
terminus = token + value[token:].find('/')
ref = value[token+1:terminus]
refValue = self.propDict[ref]
value = refValue + value[terminus:]
return value
def open_todo(self):
"""Open the user's todo.txt file."""
try:
self.taskFile = open(self.resolve(self.propDict['TODO_FILE']))
except IOError:
raise ToDoFileNotFoundError
def open_file(self, filename):
"""Open a file given a filename."""
try:
name = self.resolve(self.propDict['TODO_DIR'] + "/" + filename)
self.taskFile = open(name)
except IOError:
raise TaskFileNotFoundError
def close_task_file(self):
"""Close the file taskFile - either todo.txt
or a user supplied file."""
self.taskFile.close()
def open_punch_file(self, mode='a'):
"""Open the output file - punch.dat - in the user's TODO_DIR."""
name = self.resolve(self.propDict['TODO_DIR'] + "/punch.dat")
if not exists(name):
open(name, 'w').close()
self.punchFile = open(name, mode)
def close_punch_file(self):
"""Close the output file - punch.csv."""
self.punchFile.close()
def open_punch_backup_file(self):
"""Open the backup file - punch.dat.backup - in the user's TODO_DIR."""
name = self.resolve(self.propDict['TODO_DIR'] + "/punch.dat.backup")
self.backupFile = open(name, 'w')
def close_punch_backup_file(self):
"""Close the output file - punch.csv."""
self.backupFile.close()
def backup_punch_file(self):
self.open_punch_file('r')
self.open_punch_backup_file()
shutil.copyfileobj(self.punchFile, self.backupFile)
self.close_punch_backup_file()
self.close_punch_file()
def open_archive_file(self, mode='a'):
"""Open the archive file - punch.archive - in the user's TODO_DIR."""
name = self.resolve(self.propDict['TODO_DIR'] + "/punch.archive")
self.archiveFile = open(name, mode)
def close_archive_file(self):
"""Close the archive file - punch.archive."""
self.archiveFile.close()
def get_last_punch_rec(self):
"""Returns last line in the output file as a list of fields."""
lastrec = []
try:
self.open_punch_file('r')
lines = self.punchFile.readlines()
if(len(lines) > 0):
lastline = (lines[len(lines)-1]).strip()
lastrec = lastline.split('\t')
else:
lastrec = []
self.close_punch_file()
except IOError:
lastrec = []
return lastrec
def punch_rec_complete(self, rec):
"""Returns true if the punch record is complete - that
is, contains a task, start timestamp, and end timestamp"""
if len(rec) == 0:
isComplete = True
elif len(rec) == 3:
isComplete = True
else:
isComplete = False
return isComplete
def last_punch_line_complete(self):
lastrec = self.get_last_punch_rec()
return self.punch_rec_complete(lastrec)
def get_time(self):
return time.strftime(self.timestampFormat, time.localtime())
def translate_time_to_secs(self, timestamp):
return time.strptime(timestamp[0:15], self.timestampFormat)
def get_duration(self, startTimestamp, endTimestamp):
minutes = self.get_duration_in_minutes(startTimestamp, endTimestamp)
return self.format_minutes(minutes)
def get_duration_in_minutes(self, startTimestamp, endTimestamp):
start = self.translate_time_to_secs(startTimestamp)
end = self.translate_time_to_secs(endTimestamp)
minutes = (time.mktime(end) - time.mktime(start)) // 60
return minutes
def format_minutes(self, minutes):
retString = '('
if(minutes > 60):
hours = minutes // 60
minutes = minutes - (hours * 60)
retString = retString + str(int(hours)) + ' hours '
retString = retString + str(int(minutes)) + ' minutes)'
return retString
def add_literal_line(self, line):
"""
Add a new line to punch.dat containing task,start-timestamp<eol>
where task is a literal string (usually in the format '+project').
"""
# If previous output line wasn't closed by issuing an 'out' command,
# then do so now.
if self.last_punch_line_complete() is False:
self.add_out_line()
rec = '%s\t%s' % (line, self.get_time())
self.open_punch_file()
self.punchFile.write(rec)
self.close_punch_file()
print("Start timer on: " + line)
def add_in_line(self, line_num):
"""
Add a new line to punch.csv containing task,start-timestamp<eol>
where task is line 'line_num' from self.taskFile
"""
# If previous output line wasn't closed by issuing an 'out' command,
# then do so now.
if self.last_punch_line_complete() is False:
self.add_out_line()
lines = self.taskFile.readlines()
if(line_num > len(lines)):
raise TaskNotFoundError
line = lines[line_num-1].strip()
rec = '%s\t%s' % (line, self.get_time())
self.open_punch_file()
self.punchFile.write(rec)
self.close_punch_file()
print("Start timer on: " + line)
def add_out_line(self):
"""
Add the 'out' timestamp to the last line of the file
and append the EOL.
"""
# If last output line was already closed by issuing an 'out' command,
# then raise an exception.
lastrec = self.get_last_punch_rec()
if self.punch_rec_complete(lastrec):
raise NoOpenTaskError
rec = '\t%s\n' % self.get_time()
self.open_punch_file()
self.punchFile.write(rec)
self.close_punch_file()
print("Stop timer on: " + lastrec[0])
def execute_in(self):
"""The logic for the 'in' command."""
self.parse_config()
"""If only argument is passed, then it is an error."""
if(len(self.args) == 1):
raise PunchCommandError
"""
If only two arguments are passed, then there are three possibilities:
(1) An integer was passed, referencing a line in
todo.txt (ie. punch in 7)
(2) A project name was passed, using the special '+project-name' syntax
(3) The user made a mistake.
"""
if(len(self.args) == 2):
# Check to see if the argument is number.
try:
line_num = int(self.args[1])
except:
line_num = -1
if(line_num > -1):
self.open_todo()
self.add_in_line(line_num)
self.close_task_file()
else:
project = self.args[1].strip()
if(project[0] == '+'):
self.add_literal_line(project)
else:
raise PunchCommandError
"""
If three arguments are passed, then the last argument
must be a task file (eg. projects.txt)
"""
if(len(self.args) == 3):
# Check to see if the argument is number.
try:
line_num = int(self.args[1])
except:
line_num = -1
if(line_num > -1):
self.open_file(self.args[2])
self.add_in_line(line_num)
self.close_task_file()
else:
raise PunchCommandError
def execute_out(self):
"""The logic for the 'out' command."""
self.parse_config()
if(len(self.args) == 1):
self.add_out_line()
else:
raise PunchCommandError
def execute_wh(self):
"""The logic for the 'what' command."""
self.parse_config()
if(len(self.args) == 1):
lastrec = self.get_last_punch_rec()
if(len(lastrec) == 2):
duration = self.get_duration(lastrec[1], self.get_time())
print("Active task: " + lastrec[0] + ' ' + duration)
else:
print("No task is active.")
else:
raise PunchCommandError
def execute_rep(self, archive=False):
"""The logic for the 'report' command."""
self.parse_config()
search_term = None
if(len(self.args) == 2):
search_term = self.args.pop()
if(len(self.args) == 1):
dateDict = dict()
totalTimeDict = dict()
if archive:
self.open_archive_file('r')
lines = self.archiveFile.readlines()
else:
self.open_punch_file('r')
lines = self.punchFile.readlines()
if search_term:
lines = [x for x in lines if search_term in x]
if(len(lines) == 0):
print("There are no tasks in the data file.")
else:
for line in lines:
rec = line.split('\t')
if(len(rec) == 3):
task = rec[0]
start = rec[1]
end = rec[2]
duration = self.get_duration_in_minutes(start, end)
dateKey = time.strftime(
'%Y%m%d',
self.translate_time_to_secs(start))
# Create a tree of dates that have time
# reported against them
if(dateKey in dateDict.keys()):
dateValue = dateDict[dateKey]
else:
dateValue = dict()
# Create a simple dictionary of total
# elapsed time per date
if(dateKey in totalTimeDict.keys()):
totalTimeValue = int(totalTimeDict[dateKey])
else:
totalTimeValue = 0
# For each date in the tree, store a subtree with
# unique tasks for the date
if(task in dateValue.keys()):
timeList = dateValue[task]
else:
timeList = list()
# Populate the tree nodes.
timeList.append(duration)
dateValue[task] = timeList
dateDict[dateKey] = dateValue
# Store total elapsed time for the entire date.
totalTimeValue = totalTimeValue + duration
totalTimeDict[dateKey] = totalTimeValue
# Returned keys are untyped.
# Copy into a list of strings so we can sort.
dateNoneList = dateDict.keys()
dateList = list()
for dateThing in dateNoneList:
dateList.append(str(dateThing))
dateList.sort()
for dateKey in dateList:
print(dateKey[0:4] + '-' + dateKey[4:6] + '-'\
+ dateKey[6:] + ' '\
+ self.format_minutes(totalTimeDict[dateKey]) + ':')
taskDict = dateDict[dateKey]
taskNoneList = taskDict.keys()
taskList = list()
for taskThing in taskNoneList:
taskList.append(str(taskThing))
taskList.sort()
for taskKey in taskList:
minuteList = taskDict[taskKey]
sum = 0.0
for m in minuteList:
sum = sum + m
print('\t' + taskKey + ' ' + self.format_minutes(sum))
# Giant else statement ends here. :)
if archive:
self.close_archive_file()
else:
self.close_punch_file()
else:
raise PunchCommandError
def execute_ar(self):
"""The logic for the 'archive' command."""
self.parse_config()
if(len(self.args) == 2):
#Make sure date argument can be parsed into a date
#in the past.
try:
archiveTs = args[1] + "T23:59:59"
archiveDate = time.strptime(archiveTs, '%Y-%m-%dT%H:%M:%S')
archiveTime = time.mktime(archiveDate)
except:
raise DateFormatError
#Back up the punch file
self.backup_punch_file()
#Read the punch file into memory
self.open_punch_file('r')
lines = self.punchFile.readlines()
self.close_punch_file()
#Open the archive file in append mode
self.open_archive_file()
#Open the punch file in (destructive) write mode
self.open_punch_file('w')
#Iterate through tasks in memory, either writing to the
#archive file or the (new) punch file, based on start timestamp
for line in lines:
rec = line.split('\t')
if(self.punch_rec_complete(rec)):
startTime = time.mktime(
time.strptime(rec[1], self.timestampFormat))
if(startTime < archiveTime):
self.archiveFile.write(line)
else:
self.punchFile.write(line)
else:
self.punchFile.write(line)
#Close the files.
self.close_punch_file()
self.close_archive_file()
else:
raise PunchCommandError
#
# The entry point for the script.
#
if __name__ == '__main__':
try:
usage = """
Punch.py [-h] command [line-number] [filename] [archive-date]
Commands:
'in' : start the timer for a todo task [line-number]
'out' : stop the timer for the current task
'what' : print the current 'active' task. shortcut is 'wh'
'report' : print a report. shortcut is 'rep'
'arcreport' : print a report from the archive. shortcut is 'arcrep'
'archive' : archive all time records previous to [archive-date] inclusive
line-number is the number of the item in the todo.txt file (or filename)
"""
version = """
Punch.py - A time tracker for todo.sh
Version 1.2
Author: Keith Lawless ([email protected])
Additions by: Craig Maloney ([email protected])
Last updated: February 19th, 2022
License: GPL, http://www.gnu.org/copyleft/gpl.html
"""
parser = OptionParser(usage=usage, version=version)
optlist, args = parser.parse_args()
if len(args) < 1 :
raise PunchCommandError
#experimental: install at todo.sh plugin
if args[0] == 'install':
import subprocess
sys.exit(subprocess.call('ln -s %s %s/%s' %(__file__,
os.environ.get('TODO_ACTIONS_DIR','~/.todo.actions.d'),
'punch')))
#verify if this script has been called as a plugin of todo.sh cli
if args[0] == basename(__file__):
args.pop(0)
elif args[0] == 'usage':
print(usage)
sys.exit(0)
if ((len(args) < 1) or (len(args) > 3)):
raise PunchCommandError
else:
punch = Punch(optlist, args)
punch.execute()
except PunchCommandError:
print(usage)
except ToDoConfigNotFoundError:
print("Error: Could not find configuration file. Environment \
variable TODOTXT_CFG_FILE must point to your todo.cfg.")
except ToDoFileNotFoundError:
print("Error: Could not find todo.txt")
except TaskFileNotFoundError:
print("Error: Could not find file.")
except TaskNotFoundError:
print("Error: Item number not found in file.")
except NoOpenTaskError:
print("Error: No incomplete task found.")
except DateFormatError:
print("Error: Could not translate your input into a date.")