Collect some data for inserted/deleted lines each commit.
[gitstats.git] / gitstats
blobedcc5b1965b09765f47a1ee07e31ba9e979c71a1
1 #!/usr/bin/python
2 # Copyright (c) 2007 Heikki Hokkanen <hoxu@users.sf.net>
3 # GPLv2
4 import commands
5 import datetime
6 import glob
7 import os
8 import re
9 import shutil
10 import sys
11 import time
13 GNUPLOT_COMMON = 'set terminal png transparent\nset size 0.5,0.5\n'
15 def getoutput(cmd, quiet = False):
16 if not quiet:
17 print '>> %s' % cmd
18 output = commands.getoutput(cmd)
19 return output
21 def getkeyssortedbyvalues(dict):
22 return map(lambda el : el[1], sorted(map(lambda el : (el[1], el[0]), dict.items())))
24 # TODO getdictkeyssortedbyvaluekey(dict, key) - eg. dict['author'] = { 'commits' : 512 } - ...key(dict, 'commits')
26 class DataCollector:
27 """Manages data collection from a revision control repository."""
28 def __init__(self):
29 self.stamp_created = time.time()
30 pass
33 # This should be the main function to extract data from the repository.
34 def collect(self, dir):
35 self.dir = dir
38 # : get a dictionary of author
39 def getAuthorInfo(self, author):
40 return None
42 def getActivityByDayOfWeek(self):
43 return {}
45 def getActivityByHourOfDay(self):
46 return {}
49 # Get a list of authors
50 def getAuthors(self):
51 return []
53 def getFirstCommitDate(self):
54 return datetime.datetime.now()
56 def getLastCommitDate(self):
57 return datetime.datetime.now()
59 def getStampCreated(self):
60 return self.stamp_created
62 def getTags(self):
63 return []
65 def getTotalAuthors(self):
66 return -1
68 def getTotalCommits(self):
69 return -1
71 def getTotalFiles(self):
72 return -1
74 def getTotalLOC(self):
75 return -1
77 class GitDataCollector(DataCollector):
78 def collect(self, dir):
79 DataCollector.collect(self, dir)
81 self.total_authors = int(getoutput('git-log |git-shortlog -s |wc -l'))
82 self.total_commits = int(getoutput('git-rev-list HEAD |wc -l'))
83 self.total_files = int(getoutput('git-ls-files |wc -l'))
84 self.total_lines = int(getoutput('git-ls-files -z |xargs -0 cat |wc -l'))
86 self.activity_by_hour_of_day = {} # hour -> commits
87 self.activity_by_day_of_week = {} # day -> commits
88 self.activity_by_month_of_year = {} # month [1-12] -> commits
89 self.activity_by_hour_of_week = {} # weekday -> hour -> commits
91 self.authors = {} # name -> {commits, first_commit_stamp, last_commit_stamp}
93 # author of the month
94 self.author_of_month = {} # month -> author -> commits
95 self.author_of_year = {} # year -> author -> commits
96 self.commits_by_month = {} # month -> commits
97 self.commits_by_year = {} # year -> commits
98 self.first_commit_stamp = 0
99 self.last_commit_stamp = 0
101 # tags
102 self.tags = {}
103 lines = getoutput('git-show-ref --tags').split('\n')
104 for line in lines:
105 if len(line) == 0:
106 continue
107 (hash, tag) = line.split(' ')
108 tag = tag.replace('refs/tags/', '')
109 output = getoutput('git-log "%s" --pretty=format:"%%at %%an" -n 1' % hash)
110 if len(output) > 0:
111 parts = output.split(' ')
112 stamp = 0
113 try:
114 stamp = int(parts[0])
115 except ValueError:
116 stamp = 0
117 self.tags[tag] = { 'stamp': stamp, 'hash' : hash, 'date' : datetime.datetime.fromtimestamp(stamp).strftime('%Y-%m-%d') }
118 pass
120 # Collect revision statistics
121 # Outputs "<stamp> <author>"
122 lines = getoutput('git-rev-list --pretty=format:"%at %an" HEAD |grep -v ^commit').split('\n')
123 for line in lines:
124 # linux-2.6 says "<unknown>" for one line O_o
125 parts = line.split(' ')
126 author = ''
127 try:
128 stamp = int(parts[0])
129 except ValueError:
130 stamp = 0
131 if len(parts) > 1:
132 author = ' '.join(parts[1:])
133 date = datetime.datetime.fromtimestamp(float(stamp))
135 # First and last commit stamp
136 if self.last_commit_stamp == 0:
137 self.last_commit_stamp = stamp
138 self.first_commit_stamp = stamp
140 # activity
141 # hour
142 hour = date.hour
143 if hour in self.activity_by_hour_of_day:
144 self.activity_by_hour_of_day[hour] += 1
145 else:
146 self.activity_by_hour_of_day[hour] = 1
148 # day of week
149 day = date.weekday()
150 if day in self.activity_by_day_of_week:
151 self.activity_by_day_of_week[day] += 1
152 else:
153 self.activity_by_day_of_week[day] = 1
155 # hour of week
156 if day not in self.activity_by_hour_of_week:
157 self.activity_by_hour_of_week[day] = {}
158 if hour not in self.activity_by_hour_of_week[day]:
159 self.activity_by_hour_of_week[day][hour] = 1
160 else:
161 self.activity_by_hour_of_week[day][hour] += 1
163 # month of year
164 month = date.month
165 if month in self.activity_by_month_of_year:
166 self.activity_by_month_of_year[month] += 1
167 else:
168 self.activity_by_month_of_year[month] = 1
170 # author stats
171 if author not in self.authors:
172 self.authors[author] = {}
173 # TODO commits
174 if 'last_commit_stamp' not in self.authors[author]:
175 self.authors[author]['last_commit_stamp'] = stamp
176 self.authors[author]['first_commit_stamp'] = stamp
177 if 'commits' in self.authors[author]:
178 self.authors[author]['commits'] += 1
179 else:
180 self.authors[author]['commits'] = 1
182 # author of the month/year
183 yymm = datetime.datetime.fromtimestamp(stamp).strftime('%Y-%m')
184 if yymm in self.author_of_month:
185 if author in self.author_of_month[yymm]:
186 self.author_of_month[yymm][author] += 1
187 else:
188 self.author_of_month[yymm][author] = 1
189 else:
190 self.author_of_month[yymm] = {}
191 self.author_of_month[yymm][author] = 1
192 if yymm in self.commits_by_month:
193 self.commits_by_month[yymm] += 1
194 else:
195 self.commits_by_month[yymm] = 1
197 yy = datetime.datetime.fromtimestamp(stamp).year
198 if yy in self.author_of_year:
199 if author in self.author_of_year[yy]:
200 self.author_of_year[yy][author] += 1
201 else:
202 self.author_of_year[yy][author] = 1
203 else:
204 self.author_of_year[yy] = {}
205 self.author_of_year[yy][author] = 1
206 if yy in self.commits_by_year:
207 self.commits_by_year[yy] += 1
208 else:
209 self.commits_by_year[yy] = 1
211 # outputs "<stamp> <files>" for each revision
212 self.files_by_stamp = {} # stamp -> files
213 lines = getoutput('git-rev-list --pretty=format:"%at %H" HEAD |grep -v ^commit |while read line; do set $line; echo "$1 $(git-ls-tree -r "$2" |wc -l)"; done').split('\n')
214 for line in lines:
215 parts = line.split(' ')
216 if len(parts) != 2:
217 continue
218 (stamp, files) = parts[0:2]
219 self.files_by_stamp[int(stamp)] = int(files)
221 # extensions
222 self.extensions = {} # extension -> files, lines
223 lines = getoutput('git-ls-files').split('\n')
224 for line in lines:
225 base = os.path.basename(line)
226 if base.find('.') == -1:
227 ext = ''
228 else:
229 ext = base[(base.rfind('.') + 1):]
231 if ext not in self.extensions:
232 self.extensions[ext] = {'files': 0, 'lines': 0}
234 self.extensions[ext]['files'] += 1
235 try:
236 # FIXME filenames with spaces or special characters are broken
237 self.extensions[ext]['lines'] += int(getoutput('wc -l < %s' % line, quiet = True))
238 except:
239 print 'Warning: Could not count lines for file "%s"' % line
241 # line statistics
242 # outputs:
243 # <stamp> <author>
244 # N files changed, N insertions (+), N deletions(-)
245 self.changes_by_date = {} # stamp -> { files, ins, del }
246 lines = getoutput('git-log --shortstat --pretty=format:"%at %an"').split('\n')
247 # TODO |tac this and go it through in reverse, to calculate total lines in each rev?
248 stamp = 0
249 author = ''
250 for line in lines:
251 # <stamp> <author>
252 if line.find(',') == -1:
253 pos = line.find(' ')
254 (stamp, author) = (line[:pos], line[pos+1:])
255 else:
256 numbers = re.findall('\d+', line)
257 if len(numbers) == 3:
258 (files, inserted, deleted) = numbers
259 else:
260 print 'Warning: failed to handle line "%s"' % line
261 (files, inserted, deleted) = (0, 0, 0)
262 self.changes_by_date[stamp] = { 'files': files, 'ins': inserted, 'del': deleted }
264 def getActivityByDayOfWeek(self):
265 return self.activity_by_day_of_week
267 def getActivityByHourOfDay(self):
268 return self.activity_by_hour_of_day
270 def getAuthorInfo(self, author):
271 a = self.authors[author]
273 commits = a['commits']
274 commits_frac = (100 * float(commits)) / self.getTotalCommits()
275 date_first = datetime.datetime.fromtimestamp(a['first_commit_stamp'])
276 date_last = datetime.datetime.fromtimestamp(a['last_commit_stamp'])
277 delta = date_last - date_first
279 res = { 'commits': commits, 'commits_frac': commits_frac, 'date_first': date_first.strftime('%Y-%m-%d'), 'date_last': date_last.strftime('%Y-%m-%d'), 'timedelta' : delta }
280 return res
282 def getAuthors(self):
283 return self.authors.keys()
285 def getFirstCommitDate(self):
286 return datetime.datetime.fromtimestamp(self.first_commit_stamp)
288 def getLastCommitDate(self):
289 return datetime.datetime.fromtimestamp(self.last_commit_stamp)
291 def getTags(self):
292 lines = getoutput('git-show-ref --tags |cut -d/ -f3')
293 return lines.split('\n')
295 def getTagDate(self, tag):
296 return self.revToDate('tags/' + tag)
298 def getTotalAuthors(self):
299 return self.total_authors
301 def getTotalCommits(self):
302 return self.total_commits
304 def getTotalFiles(self):
305 return self.total_files
307 def getTotalLOC(self):
308 return self.total_lines
310 def revToDate(self, rev):
311 stamp = int(getoutput('git-log --pretty=format:%%at "%s" -n 1' % rev))
312 return datetime.datetime.fromtimestamp(stamp).strftime('%Y-%m-%d')
314 class ReportCreator:
315 """Creates the actual report based on given data."""
316 def __init__(self):
317 pass
319 def create(self, data, path):
320 self.data = data
321 self.path = path
323 def html_linkify(text):
324 return text.lower().replace(' ', '_')
326 def html_header(level, text):
327 name = html_linkify(text)
328 return '\n<h%d><a href="#%s" name="%s">%s</a></h%d>\n\n' % (level, name, name, text, level)
330 class HTMLReportCreator(ReportCreator):
331 def create(self, data, path):
332 ReportCreator.create(self, data, path)
334 # TODO copy the CSS if it does not exist
335 if not os.path.exists(path + '/gitstats.css'):
336 #shutil.copyfile('')
337 pass
339 f = open(path + "/index.html", 'w')
340 format = '%Y-%m-%d %H:%m:%S'
341 self.printHeader(f)
343 f.write('<h1>GitStats</h1>')
345 self.printNav(f)
347 f.write('<dl>');
348 f.write('<dt>Generated</dt><dd>%s (in %d seconds)</dd>' % (datetime.datetime.now().strftime(format), time.time() - data.getStampCreated()));
349 f.write('<dt>Report Period</dt><dd>%s to %s</dd>' % (data.getFirstCommitDate().strftime(format), data.getLastCommitDate().strftime(format)))
350 f.write('<dt>Total Files</dt><dd>%s</dd>' % data.getTotalFiles())
351 f.write('<dt>Total Lines of Code</dt><dd>%s</dd>' % data.getTotalLOC())
352 f.write('<dt>Total Commits</dt><dd>%s</dd>' % data.getTotalCommits())
353 f.write('<dt>Authors</dt><dd>%s</dd>' % data.getTotalAuthors())
354 f.write('</dl>');
356 f.write('</body>\n</html>');
357 f.close()
360 # Activity
361 f = open(path + '/activity.html', 'w')
362 self.printHeader(f)
363 f.write('<h1>Activity</h1>')
364 self.printNav(f)
366 #f.write('<h2>Last 30 days</h2>')
368 #f.write('<h2>Last 12 months</h2>')
370 # Hour of Day
371 f.write(html_header(2, 'Hour of Day'))
372 hour_of_day = data.getActivityByHourOfDay()
373 f.write('<table><tr><th>Hour</th>')
374 for i in range(1, 25):
375 f.write('<th>%d</th>' % i)
376 f.write('</tr>\n<tr><th>Commits</th>')
377 fp = open(path + '/hour_of_day.dat', 'w')
378 for i in range(0, 24):
379 if i in hour_of_day:
380 f.write('<td>%d</td>' % hour_of_day[i])
381 fp.write('%d %d\n' % (i, hour_of_day[i]))
382 else:
383 f.write('<td>0</td>')
384 fp.write('%d 0\n' % i)
385 fp.close()
386 f.write('</tr>\n<tr><th>%</th>')
387 totalcommits = data.getTotalCommits()
388 for i in range(0, 24):
389 if i in hour_of_day:
390 f.write('<td>%.2f</td>' % ((100.0 * hour_of_day[i]) / totalcommits))
391 else:
392 f.write('<td>0.00</td>')
393 f.write('</tr></table>')
394 f.write('<img src="hour_of_day.png" alt="Hour of Day" />')
395 fg = open(path + '/hour_of_day.dat', 'w')
396 for i in range(0, 24):
397 if i in hour_of_day:
398 fg.write('%d %d\n' % (i + 1, hour_of_day[i]))
399 else:
400 fg.write('%d 0\n' % (i + 1))
401 fg.close()
403 # Day of Week
404 f.write(html_header(2, 'Day of Week'))
405 day_of_week = data.getActivityByDayOfWeek()
406 f.write('<div class="vtable"><table>')
407 f.write('<tr><th>Day</th><th>Total (%)</th></tr>')
408 fp = open(path + '/day_of_week.dat', 'w')
409 for d in range(0, 7):
410 fp.write('%d %d\n' % (d + 1, day_of_week[d]))
411 f.write('<tr>')
412 f.write('<th>%d</th>' % (d + 1))
413 if d in day_of_week:
414 f.write('<td>%d (%.2f%%)</td>' % (day_of_week[d], (100.0 * day_of_week[d]) / totalcommits))
415 else:
416 f.write('<td>0</td>')
417 f.write('</tr>')
418 f.write('</table></div>')
419 f.write('<img src="day_of_week.png" alt="Day of Week" />')
420 fp.close()
422 # Hour of Week
423 f.write(html_header(2, 'Hour of Week'))
424 f.write('<table>')
426 f.write('<tr><th>Weekday</th>')
427 for hour in range(0, 24):
428 f.write('<th>%d</th>' % (hour + 1))
429 f.write('</tr>')
431 for weekday in range(0, 7):
432 f.write('<tr><th>%d</th>' % (weekday + 1))
433 for hour in range(0, 24):
434 try:
435 commits = data.activity_by_hour_of_week[weekday][hour]
436 except KeyError:
437 commits = 0
438 if commits != 0:
439 f.write('<td>%d</td>' % commits)
440 else:
441 f.write('<td></td>')
442 f.write('</tr>')
444 f.write('</table>')
446 # Month of Year
447 f.write(html_header(2, 'Month of Year'))
448 f.write('<div class="vtable"><table>')
449 f.write('<tr><th>Month</th><th>Commits (%)</th></tr>')
450 fp = open (path + '/month_of_year.dat', 'w')
451 for mm in range(1, 13):
452 commits = 0
453 if mm in data.activity_by_month_of_year:
454 commits = data.activity_by_month_of_year[mm]
455 f.write('<tr><td>%d</td><td>%d (%.2f %%)</td></tr>' % (mm, commits, (100.0 * commits) / data.getTotalCommits()))
456 fp.write('%d %d\n' % (mm, commits))
457 fp.close()
458 f.write('</table></div>')
459 f.write('<img src="month_of_year.png" alt="Month of Year" />')
461 # Commits by year/month
462 f.write(html_header(2, 'Commits by year/month'))
463 f.write('<div class="vtable"><table><tr><th>Month</th><th>Commits</th></tr>')
464 for yymm in reversed(sorted(data.commits_by_month.keys())):
465 f.write('<tr><td>%s</td><td>%d</td></tr>' % (yymm, data.commits_by_month[yymm]))
466 f.write('</table></div>')
467 f.write('<img src="commits_by_year_month.png" alt="Commits by year/month" />')
468 fg = open(path + '/commits_by_year_month.dat', 'w')
469 for yymm in sorted(data.commits_by_month.keys()):
470 fg.write('%s %s\n' % (yymm, data.commits_by_month[yymm]))
471 fg.close()
473 # Commits by year
474 f.write(html_header(2, 'Commits by Year'))
475 f.write('<div class="vtable"><table><tr><th>Year</th><th>Commits (% of all)</th></tr>')
476 for yy in reversed(sorted(data.commits_by_year.keys())):
477 f.write('<tr><td>%s</td><td>%d (%.2f%%)</td></tr>' % (yy, data.commits_by_year[yy], (100.0 * data.commits_by_year[yy]) / data.getTotalCommits()))
478 f.write('</table></div>')
479 f.write('<img src="commits_by_year.png" alt="Commits by Year" />')
480 fg = open(path + '/commits_by_year.dat', 'w')
481 for yy in sorted(data.commits_by_year.keys()):
482 fg.write('%d %d\n' % (yy, data.commits_by_year[yy]))
483 fg.close()
485 f.write('</body></html>')
486 f.close()
489 # Authors
490 f = open(path + '/authors.html', 'w')
491 self.printHeader(f)
493 f.write('<h1>Authors</h1>')
494 self.printNav(f)
496 # Authors :: List of authors
497 f.write(html_header(2, 'List of Authors'))
499 f.write('<table class="authors">')
500 f.write('<tr><th>Author</th><th>Commits (%)</th><th>First commit</th><th>Last commit</th><th>Age</th></tr>')
501 for author in sorted(data.getAuthors()):
502 info = data.getAuthorInfo(author)
503 f.write('<tr><td>%s</td><td>%d (%.2f%%)</td><td>%s</td><td>%s</td><td>%s</td></tr>' % (author, info['commits'], info['commits_frac'], info['date_first'], info['date_last'], info['timedelta']))
504 f.write('</table>')
506 # Authors :: Author of Month
507 f.write(html_header(2, 'Author of Month'))
508 f.write('<table>')
509 f.write('<tr><th>Month</th><th>Author</th><th>Commits (%)</th></tr>')
510 for yymm in reversed(sorted(data.author_of_month.keys())):
511 authordict = data.author_of_month[yymm]
512 authors = getkeyssortedbyvalues(authordict)
513 authors.reverse()
514 commits = data.author_of_month[yymm][authors[0]]
515 f.write('<tr><td>%s</td><td>%s</td><td>%d (%.2f%% of %d)</td></tr>' % (yymm, authors[0], commits, (100 * commits) / data.commits_by_month[yymm], data.commits_by_month[yymm]))
517 f.write('</table>')
519 f.write(html_header(2, 'Author of Year'))
520 f.write('<table><tr><th>Year</th><th>Author</th><th>Commits (%)</th></tr>')
521 for yy in reversed(sorted(data.author_of_year.keys())):
522 authordict = data.author_of_year[yy]
523 authors = getkeyssortedbyvalues(authordict)
524 authors.reverse()
525 commits = data.author_of_year[yy][authors[0]]
526 f.write('<tr><td>%s</td><td>%s</td><td>%d (%.2f%% of %d)</td></tr>' % (yy, authors[0], commits, (100 * commits) / data.commits_by_year[yy], data.commits_by_year[yy]))
527 f.write('</table>')
529 f.write('</body></html>')
530 f.close()
533 # Files
534 f = open(path + '/files.html', 'w')
535 self.printHeader(f)
536 f.write('<h1>Files</h1>')
537 self.printNav(f)
539 f.write('<dl>\n')
540 f.write('<dt>Total files</dt><dd>%d</dd>' % data.getTotalFiles())
541 f.write('<dt>Total lines</dt><dd>%d</dd>' % data.getTotalLOC())
542 f.write('<dt>Average file size</dt><dd>%.2f bytes</dd>' % ((100.0 * data.getTotalLOC()) / data.getTotalFiles()))
543 f.write('</dl>\n')
545 # Files :: File count by date
546 f.write(html_header(2, 'File count by date'))
548 fg = open(path + '/files_by_date.dat', 'w')
549 for stamp in sorted(data.files_by_stamp.keys()):
550 fg.write('%s %d\n' % (datetime.datetime.fromtimestamp(stamp).strftime('%Y-%m-%d'), data.files_by_stamp[stamp]))
551 fg.close()
553 f.write('<img src="files_by_date.png" alt="Files by Date" />')
555 #f.write('<h2>Average file size by date</h2>')
557 # Files :: Extensions
558 f.write(html_header(2, 'Extensions'))
559 f.write('<table><tr><th>Extension</th><th>Files (%)</th><th>Lines (%)</th><th>Lines/file</th></tr>')
560 for ext in sorted(data.extensions.keys()):
561 files = data.extensions[ext]['files']
562 lines = data.extensions[ext]['lines']
563 f.write('<tr><td>%s</td><td>%d (%.2f%%)</td><td>%d (%.2f%%)</td><td>%d</td></tr>' % (ext, files, (100.0 * files) / data.getTotalFiles(), lines, (100.0 * lines) / data.getTotalLOC(), lines / files))
564 f.write('</table>')
566 f.write('</body></html>')
567 f.close()
570 # Lines
571 f = open(path + '/lines.html', 'w')
572 self.printHeader(f)
573 f.write('<h1>Lines</h1>')
574 self.printNav(f)
576 f.write('<dl>\n')
577 f.write('<dt>Total lines</dt><dd>%d</dd>' % data.getTotalLOC())
578 f.write('</dl>\n')
580 f.write('</body></html>')
581 f.close()
584 # tags.html
585 f = open(path + '/tags.html', 'w')
586 self.printHeader(f)
587 f.write('<h1>Tags</h1>')
588 self.printNav(f)
590 f.write('<dl>')
591 f.write('<dt>Total tags</dt><dd>%d</dd>' % len(data.tags))
592 if len(data.tags) > 0:
593 f.write('<dt>Average commits per tag</dt><dd>%.2f</dd>' % (data.getTotalCommits() / len(data.tags)))
594 f.write('</dl>')
596 f.write('<table>')
597 f.write('<tr><th>Name</th><th>Date</th></tr>')
598 # sort the tags by date desc
599 tags_sorted_by_date_desc = map(lambda el : el[1], reversed(sorted(map(lambda el : (el[1]['date'], el[0]), data.tags.items()))))
600 for tag in tags_sorted_by_date_desc:
601 f.write('<tr><td>%s</td><td>%s</td></tr>' % (tag, data.tags[tag]['date']))
602 f.write('</table>')
604 f.write('</body></html>')
605 f.close()
607 self.createGraphs(path)
608 pass
610 def createGraphs(self, path):
611 print 'Generating graphs...'
613 # hour of day
614 f = open(path + '/hour_of_day.plot', 'w')
615 f.write(GNUPLOT_COMMON)
616 f.write(
618 set output 'hour_of_day.png'
619 unset key
620 set xrange [0.5:24.5]
621 set xtics 4
622 set ylabel "Commits"
623 plot 'hour_of_day.dat' using 1:2:(0.5) w boxes fs solid
624 """)
625 f.close()
627 # day of week
628 f = open(path + '/day_of_week.plot', 'w')
629 f.write(GNUPLOT_COMMON)
630 f.write(
632 set output 'day_of_week.png'
633 unset key
634 set xrange [0.5:7.5]
635 set xtics 1
636 set ylabel "Commits"
637 plot 'day_of_week.dat' using 1:2:(0.5) w boxes fs solid
638 """)
639 f.close()
641 # Month of Year
642 f = open(path + '/month_of_year.plot', 'w')
643 f.write(GNUPLOT_COMMON)
644 f.write(
646 set output 'month_of_year.png'
647 unset key
648 set xrange [0.5:12.5]
649 set xtics 1
650 set ylabel "Commits"
651 plot 'month_of_year.dat' using 1:2:(0.5) w boxes fs solid
652 """)
653 f.close()
655 # commits_by_year_month
656 f = open(path + '/commits_by_year_month.plot', 'w')
657 f.write(GNUPLOT_COMMON)
658 f.write(
660 set output 'commits_by_year_month.png'
661 unset key
662 set xdata time
663 set timefmt "%Y-%m"
664 set format x "%Y-%m"
665 set xtics rotate by 90 15768000
666 set ylabel "Commits"
667 plot 'commits_by_year_month.dat' using 1:2:(0.5) w boxes fs solid
668 """)
669 f.close()
671 # commits_by_year
672 f = open(path + '/commits_by_year.plot', 'w')
673 f.write(GNUPLOT_COMMON)
674 f.write(
676 set output 'commits_by_year.png'
677 unset key
678 set xtics 1
679 set ylabel "Commits"
680 plot 'commits_by_year.dat' using 1:2:(0.5) w boxes fs solid
681 """)
682 f.close()
684 # Files by date
685 f = open(path + '/files_by_date.plot', 'w')
686 f.write(GNUPLOT_COMMON)
687 f.write(
689 set output 'files_by_date.png'
690 unset key
691 set xdata time
692 set timefmt "%Y-%m-%d"
693 set format x "%Y-%m-%d"
694 set ylabel "Files"
695 set xtics rotate by 90
696 plot 'files_by_date.dat' using 1:2 smooth csplines
697 """)
698 f.close()
700 os.chdir(path)
701 files = glob.glob(path + '/*.plot')
702 for f in files:
703 print '>> gnuplot %s' % os.path.basename(f)
704 os.system('gnuplot %s' % f)
706 def printHeader(self, f):
707 f.write(
708 """<?xml version="1.0" encoding="UTF-8"?>
709 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
710 <html xmlns="http://www.w3.org/1999/xhtml">
711 <head>
712 <title>GitStats</title>
713 <link rel="stylesheet" href="gitstats.css" type="text/css" />
714 <meta name="generator" content="GitStats" />
715 </head>
716 <body>
717 """)
719 def printNav(self, f):
720 f.write("""
721 <div class="nav">
722 <ul>
723 <li><a href="index.html">General</a></li>
724 <li><a href="activity.html">Activity</a></li>
725 <li><a href="authors.html">Authors</a></li>
726 <li><a href="files.html">Files</a></li>
727 <li><a href="lines.html">Lines</a></li>
728 <li><a href="tags.html">Tags</a></li>
729 </ul>
730 </div>
731 """)
734 usage = """
735 Usage: gitstats [options] <gitpath> <outputpath>
737 Options:
740 if len(sys.argv) < 3:
741 print usage
742 sys.exit(0)
744 gitpath = sys.argv[1]
745 outputpath = os.path.abspath(sys.argv[2])
747 try:
748 os.makedirs(outputpath)
749 except OSError:
750 pass
751 if not os.path.isdir(outputpath):
752 print 'FATAL: Output path is not a directory or does not exist'
753 sys.exit(1)
755 print 'Git path: %s' % gitpath
756 print 'Output path: %s' % outputpath
758 os.chdir(gitpath)
760 print 'Collecting data...'
761 data = GitDataCollector()
762 data.collect(gitpath)
764 print 'Generating report...'
765 report = HTMLReportCreator()
766 report.create(data, outputpath)