summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2001-11-12 23:59:56 +0000
committerdes <des@FreeBSD.org>2001-11-12 23:59:56 +0000
commit7002c0a2104c7cb9aa4ca7f970b7cc8df0cbca25 (patch)
tree2545c01b56d1df1419d6d7a1a042f326b27f64a6 /tools
parentb55f812925a4a4df1d916c44c9100d3aabc80ffa (diff)
downloadFreeBSD-src-7002c0a2104c7cb9aa4ca7f970b7cc8df0cbca25.zip
FreeBSD-src-7002c0a2104c7cb9aa4ca7f970b7cc8df0cbca25.tar.gz
This is a PR statistics-gathering script I wrote a while ago. It currently
doesn't do much of interest except produce graphs similar to phk's.
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/prstats/prstats.pl302
1 files changed, 302 insertions, 0 deletions
diff --git a/tools/tools/prstats/prstats.pl b/tools/tools/prstats/prstats.pl
new file mode 100644
index 0000000..78cc956
--- /dev/null
+++ b/tools/tools/prstats/prstats.pl
@@ -0,0 +1,302 @@
+#!/usr/bin/perl -w
+#-
+# Copyright (c) 2001 Dag-Erling Coïdan Smørgrav
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer
+# in this position and unchanged.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+# 3. The name of the author may not be used to endorse or promote products
+# derived from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#
+# $FreeBSD$
+#
+
+use strict;
+use Data::Dumper;
+use Fcntl;
+use POSIX qw(isatty mktime strftime tzset);
+use vars qw($TTY %MONTH %PR @EVENTS %STATE %CATEGORY @COUNT);
+
+%MONTH = (
+ 'Jan' => 1,
+ 'Feb' => 2,
+ 'Mar' => 3,
+ 'Apr' => 4,
+ 'May' => 5,
+ 'Jun' => 6,
+ 'Jul' => 7,
+ 'Aug' => 8,
+ 'Sep' => 9,
+ 'Oct' => 10,
+ 'Nov' => 11,
+ 'Dec' => 12,
+);
+
+sub GNATS_DIR { "/home/gnats" }
+sub GNATS_TZ { "America/Los_Angeles" }
+sub DATFILE { "/tmp/prstats.dat" }
+sub GNUPLOT { "|/usr/local/bin/gnuplot /dev/stdin" }
+sub TIMEFMT { "%Y-%m-%d/%H:%M:%S" }
+
+sub parse_date($) {
+ my $date = shift; # Date to parse
+
+ my $year;
+ my $month;
+ my $day;
+ my $hour;
+ my $minute;
+ my $second;
+
+ $date =~ s/\s+/ /g;
+ $date =~ s/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun)\w*\s*//;
+# $date =~ s/mi$/96/; # XXX bin/129
+# $date =~ s/ed$/96/; # XXX bin/184
+# $date =~ s/ug$/96/; # XXX bin/323
+# $date =~ s/-u$/96/; # XXX bin/636
+# $date =~ s/ow$/96/; # XXX bin/657
+# $date =~ s/:f$/96/; # XXX gnu/1047
+# $date =~ s/rs$/96/; # XXX bin/1132
+# $date =~ s/ca$/96/; # XXX bin/1158
+# $date =~ s/s:$/96/; # XXX gnu/1209
+# $date =~ s/:c$/96/; # XXX bin/1215
+# $date =~ s/io$/96/; # XXX bin/1279
+# $date =~ s/d-$/96/; # XXX bin/1385
+# $date =~ s/bs$/96/; # XXX bin/1403
+# $date =~ s/-b$/96/; # XXX gnu/1471
+# $date =~ s/sd$/96/; # XXX gnu/1472
+# $date =~ s/al$/96/; # XXX bin/1785
+# $date =~ s/eb$/96/; # XXX bin/1823
+# $date =~ s/it$/96/; # XXX bin/1832
+# $date =~ s/re$/96/; # XXX gnu/1835
+# $date =~ s/ri$/97/; # XXX gnu/3247
+ if ($date =~ m/^(\w{3}) (\d\d?) (\d\d):(\d\d):(\d\d) [A-Z ]*(\d{4})$/) {
+ ($month, $day, $hour, $minute, $second, $year) =
+ ($1, $2, $3, $4, $5, $6);
+ } else {
+ die("Unrecognized date format: $date\n");
+ }
+ defined($month = $MONTH{$month})
+ or die("Invalid month: $month\n");
+ return mktime($second, $minute, $hour, $day, $month - 1, $year - 1900);
+}
+
+sub scan_pr($) {
+ my $fn = shift; # File name
+
+ local *FILE; # File handle
+ my $pr = {}; # PR hash
+
+ sysopen(FILE, $fn, O_RDONLY)
+ or die("$fn: open(): $!\n");
+ while (<FILE>) {
+ if (m/^>([A-Za-z-]+):\s+(.*?)\s*$/o ||
+ m/^(State-Changed-[A-Za-z-]+):\s+(.*?)\s*$/o) {
+ $pr->{lc($1)} = $2;
+ }
+ }
+
+ exists($PR{$pr->{'number'}})
+ and die("$fn: PR $pr->{'number'} already exists\n");
+
+ if ($TTY) {
+ print(" "x40, "\r", scalar(keys(%PR)),
+ " $pr->{'category'}/$pr->{'number'} ");
+ }
+
+ foreach ('arrival-date', 'closed-date', 'last-modified',
+ 'state-changed-when') {
+ if (defined($pr->{$_}) && length($pr->{$_})) {
+ $pr->{$_} = parse_date($pr->{$_});
+ }
+ }
+
+ $pr->{'_created'} = $pr->{'arrival-date'};
+ if ($pr->{'state'} eq 'closed') {
+ $pr->{'_closed'} = $pr->{'closed-date'} || $pr->{'state-changed-when'};
+ $pr->{'_closed_by'} = $pr->{'state-changed-by'};
+ }
+
+# $PR{$pr->{'number'} = $pr;
+ $PR{$pr->{'number'}} = {
+ #'category' => $pr->{'category'},
+ #'number' => $pr->{'number'},
+ #'responsible' => $pr->{'responsible'},
+ 'created' => $pr->{'created'},
+ 'closed' => $pr->{'closed'},
+ #'closer' => $pr->{'_closed_by'},
+ };
+ push(@EVENTS, [ $pr->{'_created'}, +1 ]);
+ push(@EVENTS, [ $pr->{'_closed'}, -1 ])
+ if defined($pr->{'_closed'});
+ ++$STATE{$pr->{'state'}};
+ ++$CATEGORY{$pr->{'category'}};
+}
+
+sub scan_recurse($);
+sub scan_recurse($) {
+ my $dn = shift; # Directory name
+
+ local *DIR; # Directory handle
+ my $entry; # Entry
+
+ opendir(DIR, $dn)
+ or die("$dn: opendir(): $!\n");
+ while ($entry = readdir(DIR)) {
+ next if ($entry eq '.' || $entry eq '..');
+ if (-d "$dn/$entry") {
+ scan_recurse("$dn/$entry");
+ } elsif ($entry =~ m/^\d+$/) {
+ eval {
+ scan_pr("$dn/$entry");
+ };
+ }
+ }
+ closedir(DIR);
+}
+
+sub count_prs() {
+
+ my $pr; # Iterator
+ my @events; # Creations or closures
+ my $event; # Iterator
+ my $count; # PR count
+
+ print(int(@EVENTS), " events\n");
+ @COUNT = ( [ 0, 0 ] );
+ foreach $event (sort({ $a->[0] <=> $b->[0] } @EVENTS)) {
+ if ($event->[0] == $COUNT[-1]->[0]) {
+ $COUNT[-1]->[1] += $event->[1];
+ } else {
+ push(@COUNT, [ $event->[0], $COUNT[-1]->[1] + $event->[1] ]);
+ }
+ }
+ if (@COUNT > 1) {
+ $COUNT[0]->[0] = $COUNT[1]->[0] - 1;
+ unshift(@COUNT, [ 0, 0 ]);
+ }
+}
+
+sub gnuplot(@) {
+ my @commands = @_; # Commands
+
+ my $pid; # Child PID
+ local *PIPE; # Pipe
+
+ open(PIPE, &GNUPLOT)
+ or die("fork(): $!\n");
+ print(PIPE join("\n", @commands, ""));
+ close(PIPE);
+ if ($? & 0x7f) {
+ die("gnuplot caught a signal " . ($? & 0x7f) . "\n");
+ } elsif ($?) {
+ die("gunplot returned exit code " . ($? >> 8) . "\n");
+ }
+}
+
+sub write_dat_file($) {
+ my $fn = shift; # File name
+
+ local *FILE; # File handle
+ my $datum; # Iterator
+
+ sysopen(FILE, $fn, O_RDWR|O_CREAT|O_TRUNC, 0640)
+ or die("$fn: open(): $!\n");
+ foreach $datum (@COUNT) {
+ print(FILE strftime(&TIMEFMT, localtime($datum->[0])),
+ " ", $datum->[1],
+ " ", $COUNT[-1]->[1],
+ "\n");
+ }
+ close(FILE);
+}
+
+sub graph_open_prs($$$$$) {
+ my $datfn = shift; # Data file name
+ my $fn = shift; # File name
+ my $start = shift; # Starting date
+ my $end = shift; # Ending date
+ my $title = shift; # Title
+
+ my $tickfmt; # Tick format
+ my $timefmt; # Time format
+
+ if ($end - $start > 86400 * 30) {
+ $tickfmt = "%Y-%m-%d";
+ } else {
+ $tickfmt = "%m-%d";
+ }
+ $start = strftime(&TIMEFMT, localtime($start));
+ $end = strftime(&TIMEFMT, localtime($end));
+ $timefmt = &TIMEFMT;
+ gnuplot("
+set term png small color
+set xdata time
+set timefmt '$timefmt'
+set data style line
+set grid
+set output '$fn'
+set format x '$tickfmt'
+set xrange ['$start':'$end']
+set yrange [0:*]
+set title '$title'
+plot '$datfn' using 1:2 title 'Open PRs'
+");
+}
+
+MAIN:{
+ my $now; # Current time
+
+ $| = 1;
+ $TTY = isatty(*STDOUT);
+
+ # Perl lacks strptime(), and its mktime() doesn't accept a
+ # timezone argument, so we set our local timezone to that of the
+ # FreeBSD cluster and use localtime() instead.
+ $ENV{'TZ'} = &GNATS_TZ;
+ tzset();
+
+ if (@ARGV) {
+ foreach (@ARGV) {
+ scan_recurse(join('/', &GNATS_DIR, $_));
+ }
+ } else {
+ scan_recurse(&GNATS_DIR);
+ }
+ if ($TTY) {
+ print("\r", scalar(keys(%PR)), " problem reports scanned\n");
+ }
+
+ count_prs();
+ write_dat_file(&DATFILE);
+ $now = time();
+ graph_open_prs(&DATFILE, "week.png", $now - (86400 * 7) + 1, $now,
+ "Open FreeBSD problem reports (week view)");
+ graph_open_prs(&DATFILE, "month.png", $now - (86400 * 30) + 1, $now,
+ "Open FreeBSD problem reports (month view)");
+ graph_open_prs(&DATFILE, "year.png", $now - (86400 * 365) + 1, $now,
+ "Open FreeBSD problem reports (year view)");
+ graph_open_prs(&DATFILE, "ever.png", $COUNT[1]->[0], $now,
+ "Open FreeBSD problem reports (project history)");
+ graph_open_prs(&DATFILE, "drive.png", mktime(0, 0, 0, 29, 4, 101), $now,
+ "Open FreeBSD problem reports (drive progress)");
+ #unlink(&DATFILE);
+}
OpenPOWER on IntegriCloud