-
Notifications
You must be signed in to change notification settings - Fork 1
/
totals.py
executable file
·146 lines (120 loc) · 4.23 KB
/
totals.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
#!/usr/bin/env python
################################################################################
##
## Copyright 2015 - 2016, Paul Beckingham, Federico Hernandez, liloman
##
## Permission is hereby granted, free of charge, to any person obtaining a copy
## of this software and associated documentation files (the "Software"), to deal
## in the Software without restriction, including without limitation the rights
## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
## copies of the Software, and to permit persons to whom the Software is
## furnished to do so, subject to the following conditions:
##
## The above copyright notice and this permission notice shall be included
## in all copies or substantial portions of the Software.
##
## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
## OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
## THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
## OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
## SOFTWARE.
##
## http:##www.opensource.org/licenses/mit-license.php
##
################################################################################
import sys
import json
# import datetime and timedelta
from datetime import datetime, timedelta
def formatSeconds(seconds):
''' Convert seconds: 3661
To formatted: 0 days 1:01:01
'''
sec = timedelta(seconds=int(seconds))
d = datetime(1,1,1) + sec
if d.day == 1:
return "{}, {}".format("0 days",sec)
else:
return sec
DATEFORMAT = '%Y%m%dT%H%M%SZ'
# Extract the configuration settings.
header = 1
configuration = dict()
body = ''
for line in sys.stdin:
if header:
if line == '\n':
header = 0
else:
fields = line.strip().split(': ', 2)
if len(fields) == 2:
configuration[fields[0]] = fields[1]
else:
configuration[fields[0]] = ''
else:
body += line
#print body
# Sum time by tags
totals = dict()
j = json.loads(body)
for object in j:
start = datetime.strptime(object['start'], DATEFORMAT)
if 'end' in object:
end = datetime.strptime(object['end'], DATEFORMAT)
else:
end = datetime.utcnow()
tracked = (end - start).total_seconds()
if 'tags' in object:
key = ""
#Concat the tags
for tag in object['tags']:
stag=u''.join(tag).encode('utf-8').strip()
key += stag + " / "
#eliminate the / and trim the leading/ending spaces
key=key[:-2].strip()
if key in totals:
totals[key] += tracked
else:
totals[key] = tracked
else:
totals["No tagged"] = tracked
# Determine largest tag width.
max_width = 0
for tag in totals:
if len(tag) > max_width:
max_width = len(tag)
if max_width > 0:
# sane value for 110 columns max = (110 - 15(formatted) )
max_columns = 92
if max_width > max_columns:
max_width = max_columns
start = datetime.strptime(configuration['temp.report.start'], DATEFORMAT)
end = datetime.strptime(configuration['temp.report.end'], DATEFORMAT)
# Compose report header.
print '\nTotal by Tag from %s - %s (sorted by time)\n' % (start, end)
# Compose table header.
if configuration['color'] == 'on':
print '[4m%-*s[0m [4m%15s[0m' % (max_width, 'Tag', 'Total')
else:
print '%-*s %10s' % (max_width, 'Tag', 'Total')
print '-' * max_width, '-------------------'
grand_total = 0
# Compose table rows.Sorted by time
for tag in sorted(totals,key=totals.get,reverse=False):
formatted = formatSeconds(totals[tag])
grand_total += totals[tag]
if max_width == max_columns:
# left 5 columns between the tag text and the time column
print '%-*s %10s' % (max_columns, tag[:max_columns-5], formatted)
else:
print '%-*s %10s' % (max_width, tag, formatted)
# Compose total.
if configuration['color'] == 'on':
print ' ' * max_width, '[4m [0m'
else:
print ' ' * max_width, '-------------------'
print '%-*s %10s' % (max_width, 'Total', formatSeconds(grand_total))
else:
print "Nothing found. Check your search "