]> piware.de Git - bin.git/blob - workitems.py
workitems.py: fix </p> parsing harder
[bin.git] / workitems.py
1 #!/usr/bin/python
2
3 import urllib, re, sys, optparse, os.path, datetime
4 import sqlite3 as dbapi2
5
6 blueprints_base_url = 'https://blueprints.launchpad.net'
7
8 valid_states = ['todo', 'done', 'postponed']
9
10 def get_db(dbpath):
11     '''Open/initialize database.
12
13     This creates the database if it does not exist.
14     '''
15     init = not os.path.exists(dbpath)
16
17     db = dbapi2.connect(dbpath)
18
19     if init:
20         cur = db.cursor()
21         cur.execute('''CREATE TABLE work_items (
22             blueprint VARCHAR(255) NOT NULL,
23             workitem VARCHAR(255) NOT NULL,
24             status VARCHAR(20) NOT NULL,
25             date TIMESTAMP NOT NULL)''')
26         db.commit()
27
28     return db
29
30 def parse_argv():
31     '''Parse CLI arguments.
32
33     Return (options, args) tuple.
34     '''
35     optparser = optparse.OptionParser()
36     optparser.add_option('-d', '--database',
37         help='Path to database', dest='database', metavar='PATH')
38     optparser.add_option('-r', '--release',
39         help='Release name', dest='release')
40     optparser.add_option('-p', '--pattern', metavar='REGEX',
41         help='Regex pattern for blueprint name', dest='pattern')
42     optparser.add_option('-D', '--dump', action='store_true', default=False,
43         help='Dump database', dest='dump')
44     optparser.add_option('-m', '--moin', metavar='URL',
45         help='moin URL for additional work items (can be given multiple times)', 
46         action='append', dest='moin', default=[])
47     optparser.add_option('-t', '--text', action='store_true', default=False,
48         help='Print work item summary in text format', dest='text')
49     optparser.add_option('-c', '--csv', action='store_true', default=False,
50         help='Print work item summary in CSV format', dest='csv')
51     optparser.add_option('-H', '--html', action='store_true', default=False,
52         help='Generate work item HTML report', dest='html')
53     optparser.add_option('--from', metavar='YYYY-MM-DD',
54         help='Generate CSV data from this day on', dest='from_date')
55     optparser.add_option('--to', metavar='YYYY-MM-DD',
56         help='Generate CSV data until this day', dest='to_date')
57
58     (opts, args) = optparser.parse_args()
59
60     if not opts.database:
61         optparser.error('No database given')
62     if not opts.dump and not opts.text and not opts.csv and not opts.html:
63         if not opts.release:
64             optparser.error('No release given')
65         if not opts.pattern:
66             optparser.error('No pattern given')
67
68     return (opts, args)
69
70 def get_blueprints(url, name_pattern):
71     '''Return a list of blueprint URLs for the current release.'''
72
73     blueprint_name_filter = re.compile('href="(/ubuntu/\+spec/%s[^"]+)"' %
74             name_pattern)
75
76     result = []
77     for l in urllib.urlopen(url):
78         m = blueprint_name_filter.search(l)
79         if m:
80             result.append(blueprints_base_url + m.group(1))
81
82     return result
83
84 def get_blueprint_workitems(blueprint_url):
85     '''Collect work items from a particular blueprint URL.
86
87     This will return a list of ('item', 'status') pairs.
88     '''
89     work_items_re = re.compile('(<p>|^)work items:\s*<br />', re.I)
90
91     found_workitems = False
92     result = []
93     for l in urllib.urlopen(blueprint_url):
94         end = False
95         if not found_workitems:
96             if work_items_re.search(l):
97                 found_workitems = True
98             continue
99
100         if '</p>' in l:
101             end = True
102         l = l.replace('<br />', '').replace('</div>', '').replace('</p>', '').strip()
103
104         if not l:
105             break
106
107         try:
108             (desc, state) = l.rsplit(':', 1)
109         except ValueError:
110             print >> sys.stderr, 'ERROR: invalid work item format: ' + l
111             continue
112         desc = desc.strip()
113         state = state.strip().lower()
114         if not state:
115             state = 'todo'
116         if state == 'completed':
117             state = 'done'
118         if state == 'inprogress':
119             state = 'todo'
120         if state not in valid_states:
121             print >> sys.stderr, 'ERROR: invalid state "%s" for work item "%s"' % (
122                 state, desc)
123             continue
124         result.append((desc, state))
125
126         if end:
127             break
128
129     return result
130
131 def get_moin_workitems(url):
132     '''Collect work items from a moin wiki URL.
133
134     Every line starting with "|| " is treated as a work item.
135
136     Return a list of ('item', 'status') pairs.
137     '''
138     result = []
139     for line in urllib.urlopen(url):
140         if line.startswith('|| '):
141             fields = line.strip().split('||')
142             assert not fields[0] # should be empty
143             desc = fields[1].strip()
144             for f in fields[2:]:
145                 if 'DONE' in f:
146                     result.append((desc, 'done'))
147                     break
148                 elif 'POSTPONED' in f:
149                     result.append((desc, 'done'))
150                     break
151             else:
152                 result.append((desc, 'todo'))
153
154     return result
155
156 def dump(db):
157     '''Dump database contents.'''
158
159     cur = db.cursor()
160     cur.execute('SELECT * FROM work_items')
161     for (blueprint, workitem, status, date) in cur:
162         print '%s [%s]\t%s: %s' % (date, blueprint, workitem, status)
163
164 def add_work_item(db, blueprint, item, status):
165     '''Add work item to database.'''
166
167     cur = db.cursor()
168     cur.execute('INSERT INTO work_items VALUES (?, ?, ?, date(CURRENT_TIMESTAMP))',
169             (blueprint, item, status))
170
171 def import_lp(db, name_pattern, release):
172     '''Collect blueprint work items from Launchpad into DB.'''
173
174     blueprints = get_blueprints('%s//ubuntu/%s/+specs?batch=300' % (blueprints_base_url,
175         opts.release), name_pattern)
176
177     cur = db.cursor()
178     cur.execute('DELETE FROM work_items WHERE date = date(CURRENT_TIMESTAMP)')
179
180     for bp in blueprints:
181         #print 'Checking', bp
182         bpname = bp.split('/')[-1]
183         work_items = get_blueprint_workitems(bp)
184         if not work_items:
185             print >> sys.stderr, 'WARNING: %s has no work items' % bpname
186         for (item, status) in work_items:
187             add_work_item(db, bpname, item, status)
188
189 def workitems_over_time(db):
190     '''Calculate work item development over time.
191
192     Return date -> state -> count mapping.
193     '''
194     data = {}
195     for s in valid_states:
196         cur = db.cursor()
197         cur.execute('SELECT date, count(*) FROM work_items WHERE status=? GROUP BY date',
198                 (s,))
199         for (date, num) in cur:
200             data.setdefault(date, {})[s] = num
201     return data
202
203 def blueprint_status(db):
204     '''Determine current blueprint status.
205
206     Return blueprint -> [todo, done, postponed] mapping.
207     '''
208     data = {}
209
210     # last date
211     cur = db.cursor()
212     cur.execute('SELECT max(date) FROM work_items')
213     (last_date,) = cur.fetchone()
214
215     index = 0
216     for s in valid_states:
217         cur = db.cursor()
218         cur.execute('SELECT blueprint, count(workitem) FROM work_items '
219                 'WHERE status = ? AND date = ? GROUP BY blueprint', 
220                 (s, last_date))
221         for (bp, num) in cur:
222             data.setdefault(bp, [0, 0, 0])[index] = num
223         index += 1
224
225     return data
226
227 def text(db):
228     '''Print work item status as text.'''
229
230     data = workitems_over_time(db)
231
232     print 'History:'
233     for d in sorted(data.keys()):
234         print d, data[d]
235
236     print '\nBlueprint status:'
237     data = blueprint_status(db)
238     for (bp, (todo, done, postponed)) in data.iteritems():
239         print '%s: %i/%i (%i%%)' % (bp, postponed+done, todo+done+postponed, 
240                 int(float(postponed+done)/(todo+done+postponed)*100 + 0.5))
241
242 def csv(db, from_date, to_date):
243     '''Print work item status as csv.'''
244
245     def _fmtdate(d):
246         '''Convert datetime.date into MM/DD/YYYY'''
247
248         return '%s/%s/%s' % (d.month, d.day, d.year)
249
250     def _fromstr(s):
251         '''Convert YYYY-MM-DD string to datetime.date'''
252
253         (y, m, d) = s.split('-')
254         return datetime.date(int(y), int(m), int(d))
255
256     data = workitems_over_time(db)
257
258     dates = sorted(data.keys())
259
260     f = _fromstr(from_date or dates[0])
261     t = _fromstr(to_date or dates[-1])
262
263     d = f
264     while d <= t:
265         entry = data.get('%i-%02i-%02i' % (d.year, d.month, d.day), {})
266         print '%02i/%02i/%i,%i,%i,%i' % (d.month, d.day, d.year, 
267                 entry.get('todo', 0), entry.get('done', 0),
268                 entry.get('postponed', 0))
269         d += datetime.timedelta(days=1)
270
271 def html(db):
272     '''Print work item status as HTML.'''
273
274     print '''<html>
275 <head>
276   <title>Work item status</title>
277   <style type="text/css">
278     body { background: #CCCCB0; color: black; }
279     a { text-decoration: none; }
280     table { border-collapse: collapse; border-style: solid none; 
281             border-width: 3px; margin-bottom: 3ex; empty-cells: show; }
282     table th { text-align: left; border-style: none none solid none; 
283                border-width: 3px; padding-right: 10px; }
284     table td { text-align: left; border-style: none none dotted none; 
285                border-width: 1px; padding-right: 10px; }
286
287     a { color: blue; }
288   </style>
289 </head>
290
291 <body>
292
293 <h1>History</h1>
294 <p><img src="burndown.png" alt="burndown" /></p>
295
296 <h1>Status by blueprint</h1>
297 <table>
298   <tr><th>Blueprint</th> <th>todo/postponed/done</th> <th>Completion</th></tr>
299 '''
300
301     data = blueprint_status(db)
302
303     completion = []
304     for (bp, (todo, done, postponed)) in data.iteritems():
305         completion.append((bp,
306             int(float(postponed+done)/(todo+done+postponed)*100 + 0.5)))
307
308     completion.sort(key=lambda k: k[1], reverse=True)
309
310     for (bp, percent) in completion:
311         print '  <tr><td><a href="%s/ubuntu/+spec/%s">%s</a></td> <td>%i/%i/%i</td> <td>%i%%</td></tr>' % (
312                 blueprints_base_url, bp, bp, data[bp][0], data[bp][2],
313                 data[bp][1], percent)
314
315     print '</table>'
316
317     print '</body></html>'
318
319 def import_moin(db, urls):
320     '''Collect blueprint work items from a moin wiki.'''
321
322     for url in urls:
323         for (d, s) in get_moin_workitems(url):
324             add_work_item(db, url, d, s)
325
326 #
327 # main
328 #
329
330 (opts, args) = parse_argv()
331
332 db = get_db(opts.database)
333
334 if opts.dump:
335     dump(db)
336 elif opts.text:
337     text(db)
338 elif opts.html:
339     html(db)
340 elif opts.csv:
341     csv(db, opts.from_date, opts.to_date)
342 else:
343     import_lp(db, opts.pattern, opts.release)
344     import_moin(db, opts.moin)
345     db.commit()
346