-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork_log.py
executable file
·362 lines (308 loc) · 13.8 KB
/
work_log.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
#!/usr/bin/env python
from __future__ import print_function
import os
import sys
import glob
import re
import datetime
import pickle
import subprocess
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
def quarter_ceil(x): #{{{
""" round up to nearest quarter """
return np.ceil(x*4)/4. #}}}
def custom_round(x):
#return quarter_ceil(x)
return np.round(x,1)
def last_week_summary(df, numdays=7, alldetail=True): #{{{
today = datetime.datetime.now()
start = today - datetime.timedelta(days=numdays)
dfs = df.loc[start.strftime('%Y-%m-%d'):today.strftime('%Y-%m-%d')]
for projtype in np.unique(dfs.proj.values):
print_proj_type(dfs, projtype, workdetail=False)
if alldetail:
for spectask in np.unique(dfs[dfs['proj'].isin([projtype])].task.values):
print_proj_type(dfs, projtype, spectask=spectask, workdetail=True)
print('****************************************************************************************')
return #}}}
def print_proj_type(df, projtype='ACMEanalysis', spectask=None, workdetail=True): #{{{
if spectask is not None:
fmtstr = 'Computing detailed summary for %s: %s'
else:
fmtstr = '\nTotal summary for %s: %s'
if spectask is not None:
print(' ')
print(fmtstr%(projtype, ' ' if spectask is None else spectask))
if spectask is not None:
print('---------------------------------------------')
acmework = df[df['proj'].isin([projtype])]
if spectask is not None:
acmework = acmework[acmework['task'].isin([spectask])]
acmework = acmework.resample('W')\
.agg(hrs=('hrs', sum),
proj=('proj',lambda x: '; '.join(x.values)),
task=('task',lambda x: '; '.join(x.values)),
log=('log',lambda x: '; '.join(x.values)))
for day, hrs, log in zip(acmework.index, acmework.hrs, acmework.log):
if not np.isnan(hrs):
printhrs = "(%0.1f hrs)"%(custom_round(hrs))
if not workdetail:
log = '<Log Uncomputed from Total>'
print('Week of', day.date(), ' %s:'%(printhrs), log)
acmework = df[df['proj'].isin([projtype])].resample('D')\
.agg(hrs=('hrs',sum),
proj=('proj',lambda x: '; '.join(x.values)),
task=('task',lambda x: '; '.join(x.values)),
log=('log',lambda x: '; '.join(x.values)))
for day, hrs, log in zip(acmework.index, acmework.hrs, acmework.log):
if not np.isnan(hrs):
printhrs = "(%0.1f hrs)"%(custom_round(hrs))
if not workdetail:
log = '<Log Uncomputed from Total>'
print('Day of', day.date(), ' %s:'%(printhrs), log)
if spectask is None:
print('****************************************************************************************')
return #}}}
def plot_avg_hrs(df): #{{{
fig, ax = plt.subplots(1, 1)
(df.resample("1d").sum('hrs').rolling(window=14, min_periods=1).sum()/2).plot(label='daily', ax=ax);
(df.resample("1W").sum('hrs').asfreq('d', method='backfill')).plot(label='weekly', ax=ax)
plt.ylabel('hrs / week')
L = plt.legend(loc='best')
L.get_texts()[0].set_text('daily')
L.get_texts()[1].set_text('weekly')
plt.grid(True)
return #}}}
def print_general_summary(df): #{{{
now = datetime.datetime.now()
twoweeksago = now - datetime.timedelta(13)
end = '%02d-%02d-%02d'%(now.year, now.month, now.day)
start = '%02d-%02d-%02d'%(twoweeksago.year, twoweeksago.month, twoweeksago.day)
biweeklywork = df[start:end].groupby(pd.Grouper(freq='D')).sum('hrs')
print('-------------------------------')
print(' Daily hours ')
print('-------------------------------')
for day, hrs in zip(biweeklywork.index, biweeklywork.hrs):
if not np.isnan(hrs):
print('| Day ', day.date(), '|', " %5.1f hrs |"%(hrs))
print('-------------------------------')
print('Sum: %.2f hrs/week'%(biweeklywork.sum().hrs/2.0))
print('\n')
#print week totals
print('-----------------------------')
print(' Week ending totals ')
print('-----------------------------')
weeks = df.resample('W').sum('hrs').tail()
for day, hrs in zip(weeks.index, weeks.hrs):
print('| ', day.date(), ' | ', "%6.1f hrs |"%(hrs))
print('-----------------------------')
return #}}}
def savefig(name): #{{{
print('Saving figure to %s'%(name))
plt.savefig(name) #}}}
def build_log(database): #{{{
# get files organized in terms of year/month/day/daily.log
logfiles = glob.glob(database + '/*/*/*/daily.log')
tottimestamp = None
totduration = []
totproj = []
tottask = []
totlog = []
totvalid = []
for logfile in logfiles:
# process raw data
time = np.asarray([re.findall(r'..-..-.. ..:..:..', line)[0] for line in open(logfile)])
def get_lines(string):
item = [re.findall(string, line) for line in open(logfile)]
return np.asarray([ai if ai != [] else [''] for ai in item])
proj = get_lines(r'PROJ={.*?}')
task = get_lines(r'TASK={.*?}')
log = get_lines(r'LOG={.*?}')
valid = [(ap != [''])[0] for ap in proj]
time = pd.to_datetime(time, format='%y-%m-%d %H:%M:%S')
tottimestamp = np.concatenate((tottimestamp, time)) if tottimestamp is not None else time
totproj += proj.tolist()[:]
tottask += task.tolist()[:]
totlog += log.tolist()[:]
totvalid += valid[:]
hours = np.asarray([0] + [atime/np.timedelta64(1, 'h') for atime in np.diff(tottimestamp)])
#plt.plot(tottimestamp,hours,'.'); plt.show()
#assert hours[-1] < 3./60., 'Ending time is very large= ' + hours[-1]
#assert proj[0] == [] and proj[-1] == [], "Don't necessarily have good data for " + logfile
#assert task[0] == [] and task[-1] == [], "Don't necessarily have good data for " + logfile
totvalid = np.where(totvalid)
totproj = [item[0][6:-1] for item in np.asarray(totproj)[totvalid].tolist()]
tottask = [item[0][6:-1] for item in np.asarray(tottask)[totvalid].tolist()]
totlog = [item[0][5:-1] for item in np.asarray(totlog)[totvalid].tolist()]
totduration = np.asarray(hours)[totvalid]
totstarttime = pd.to_datetime(np.asarray(tottimestamp)[totvalid])
totendtime = totstarttime + pd.to_timedelta(totduration, unit='h')
# build dataframe
df = pd.DataFrame({ #'start' : totstarttime,
'end' : totendtime,
'hrs' : totduration,
'proj' : totproj,
'task' : tottask,
'log' : totlog
}, index=pd.Series(totstarttime))
last_week_summary(df, alldetail=False)
last_week_summary(df)
# print summary
#print_proj_type(df, projtype='ACMEanalysis')
#print_proj_type(df, projtype='ACME')
#print_proj_type(df, projtype='coastal')
#print_proj_type(df, projtype='ziso')
#print_proj_type(df, projtype='sciviz')
print_general_summary(df)
# plot of average hours:
plot_avg_hrs(df)
#plt.plot(tottimestamp,totduration,'.'); plt.show()
savefig('/Users/pwolfram/hist.png')
return #}}}
def folder_exists(folder, create=True, verbose=True): #{{{
if not os.path.exists(folder):
if create:
print('Creating folder at ', folder)
os.makedirs(folder)
return False
else:
return True
#}}}
def load_stored_sets(setlocation): #{{{
if os.path.isfile(setlocation):
with open(setlocation, 'rb') as af:
setvalues = pickle.load(af)
else:
setvalues = set()
return setvalues #}}}
def save_stored_sets(aset, setlocation): #{{{
print('saving %s at %s'%(aset, setlocation))
with open(setlocation, 'wb') as af:
pickle.dump(aset, af)
return #}}}
def sanitize_response(response): #{{{
# separate comma separated items
values = response.split(',')
# remove spaces in front or back of string
values = [av.rstrip() for av in values]
values = [av.lstrip() for av in values]
return values #}}}
def make_log_entry(logfile, timestamp, projname, taskname, entry): #{{{
with open(logfile, 'a') as lf:
if entry == 'START' or entry == 'END':
log = entry + '\n'
else:
log = 'PROJ={' + projname + '}, TASK={' + taskname + '}, LOG={' + entry + '}\n'
line = timestamp + '\t '+ log
lf.write(line)
print('wrote:\n %s to\n%s'%(line, logfile))
return #}}}
def undo_log_entry(logfile, timestamp): #{{{
# remove last line
with open(logfile, 'r+') as lf:
lines = lf.readlines()
lastline = lines[-1]
lf.seek(0)
for li in lines[:-1]:
lf.write(li)
lf.truncate()
undofile = logfile + '.undo'
with open(undofile, 'a') as lf:
undoline = 'Undo at %s:'%(timestamp) + lastline
lf.write(undoline)
print('wrote:\n %s to\n%s'%(undoline, undofile))
return #}}}
def file_locations(database): #{{{
now = datetime.datetime.now()
yearfolder = database + '/' + "%.4d"%(now.year)
monthfolder = yearfolder + '/' + "%.2d"%(now.month)
dayfolder = monthfolder + '/' + "%.2d"%(now.day)
logfile = dayfolder + '/' + 'daily.log'
timestamp = now.strftime("%Y-%m-%d %H:%M:%S")
# make sure file locations are available
for afold in [database, yearfolder, monthfolder, dayfolder]:
folder_exists(afold)
return logfile, timestamp #}}}
def print_items(prompt, items, nitems=3): #{{{
# break items up into sets of 5
print("================================================================================")
print(prompt)
print("--------------------------------------------------------------------------------")
thelist = list(items)
n = len(thelist)
for i in np.arange(int(np.ceil(n/float(nitems)))):
print(thelist[nitems*i:(nitems*i+nitems)])
print("================================================================================")
return #}}}
def log_work(database, start, end, undo): #{{{
logfile, timestamp = file_locations(database)
projectfile = database + '/projects.p'
projects = load_stored_sets(projectfile)
taskfile = database + '/tasks.p'
tasks = load_stored_sets(taskfile)
if undo:
undo_log_entry(logfile, timestamp)
elif start:
make_log_entry(logfile, timestamp, '', '', 'START')
elif end:
make_log_entry(logfile, timestamp, '', '', 'END')
# print summary at closeout
build_log(database)
else:
print_items('Projects', sorted(projects))
response = input("Please enter project names, e.g., 'proj1, proj2, etc':\n")
projname = sanitize_response(response)
projects = projects | set(projname)
print_items('Tasks', sorted(tasks))
response = input("Please enter task names, e.g., 'analysis, lit_review, misc':\n")
taskname = sanitize_response(response)
tasks = tasks | set(taskname)
entry = input("Please log entry:\n")
# refresh time stamp to follow once entry is committed
logfile, timestamp = file_locations(database)
make_log_entry(logfile, timestamp, ','.join(projname), ','.join(taskname), entry)
save_stored_sets(projects, projectfile)
save_stored_sets(tasks, taskfile)
return #}}}
if __name__ == "__main__":
from optparse import OptionParser
parser = OptionParser()
parser.add_option("-d", "--database_location", dest="database", help="Location for work database", metavar="FOLDER")
parser.add_option("-s", "--start", dest="start", help="Starting entry", action='store_true')
parser.add_option("-e", "--end", dest="end", help="Ending entry", action='store_true')
parser.add_option("-l", "--log", dest="log", help="Make analyzable log", action='store_true')
parser.add_option("-u", "--undo", dest="undo", help="Undo last entry", action='store_true')
parser.add_option("-p", "--print", dest="printlog", help="Print daily work log", action='store_true')
parser.add_option("-r", "--edit", dest="editlog", help="Edit daily work log", action='store_true')
parser.add_option("-x", "--editsource", dest="editsource", help="Edit source script", action='store_true')
parser.set_defaults(start=False, end=False, undo=False, printlog=False)
options, args = parser.parse_args()
if not options.database:
options.database = os.path.expanduser('~') + '/Documents/WorkLogDatabase'
source = sys.argv[0]
print("Using database at " + options.database + " with script at " + source)
if options.printlog:
logfile, timestamp = file_locations(options.database)
print("================================================================================")
print('Current time is %s'%(timestamp))
print('Outputing daily log %s:'%(logfile))
print("--------------------------------------------------------------------------------")
with open(logfile,'r') as lf:
print(lf.read())
lf.close()
print("--------------------------------------------------------------------------------")
print(logfile)
elif options.editlog:
logfile, timestamp = file_locations(options.database)
edit_call = [ "mvim", logfile]
edit = subprocess.Popen(edit_call)
elif options.editsource:
edit_call = ["mvim", source]
edit = subprocess.Popen(edit_call)
elif options.log:
# build the log database
build_log(options.database)
else:
log_work(options.database, options.start, options.end, options.undo)