]> git.donarmstrong.com Git - bugscan.git/blob - bugreport
5c6b0c8e679f19edd5a3744e0d16cd5d15baf762
[bugscan.git] / bugreport
1 #!/usr/bin/perl
2 # vim: ts=8 sw=8 nowrap
3
4 # Generate a report of the release-critical bugs for packages
5
6 use Getopt::Std;
7 require scanlib;
8 require bugcfg;
9 use strict;
10 use warnings;
11
12 my $Version             = "BugReport 1.4\nCopyright (C) 1998-2002 Wichert Akkerman <wakkerma\@debian.org>\n";
13 my $html                = 0;
14 my $statusfile          = "status";
15
16 sub ShowVersion() {
17         print "$Version\n";
18         exit 0;
19 }
20
21 sub ShowUsage() {
22         print <<EOF;
23 Usage:
24   $0 [-V] [-h] [-H] [-l] [-s] [-d distrib] [-S file] [-C file]
25 Options:
26   -V    show version
27   -h    show some (hopefully) helpful information
28   -H    produce HTML output
29   -l    list all release-critical bugs
30   -s    list bug statistics
31   -t    show bugs relevant for testing only
32   -d    only list these distributions (comma-separated)
33   -S    use different statusfile
34 EOF
35         exit 0;
36 }
37
38 sub PrintPackageHeader() {
39         my $p   = shift;        # Package to print
40         my ($name, $email);     # Name & email of maintainer
41
42         if ($html) {
43                 print "<div class=\"package\"><pre>";
44                 print "<a name=\"$p\"><strong>Package:</strong></a> " . scanlib::wwwname($p);
45                 if (defined($scanlib::section{$p})) {
46                         print " ($scanlib::section{$p}).\n";
47                 } else {
48                         print " (unknown).\n";
49                 }
50                 print "<strong>Maintainer:</strong> ";
51                 if (exists($scanlib::maintainer{$p}) && $scanlib::maintainer{$p} ne '') {
52                         if ($scanlib::maintainer{$p} =~ /(.*) <([^>]*)>/) {
53                                 ($name,$email) = ($1,$2);
54                         } elsif ($scanlib::maintainer{$p} =~ /<(.*) \((.*)\)>/) {
55                                 ($name,$email) = ($1,$2);
56                         } elsif ($scanlib::maintainer{$p} =~ /<(.*)>/) {
57                                 $name = $email = $1;
58                         }
59                         if (defined($name)) {
60                                 print "$name &lt;<a href=\"http://bugs.debian.org/$email\">$email</A>&gt;\n";
61                         } else {
62                                 print "$scanlib::maintainer{$p}\n";
63                         }
64                 } else {
65                         print "unknown\n";
66                 }
67         } else {
68                 print "\nPackage: $p ($scanlib::section{$p})\n";
69                 print "Maintainer: " . (defined($scanlib::maintainer{$p}) ? $scanlib::maintainer{$p} : "unknown") . "\n";
70         }
71 }
72
73 sub PrintPackageFooter() {
74         my $p   = shift;        # Package to print
75
76         if ($html) {
77                 print "</pre></div>\n";
78         }
79 }
80
81 sub MakeBuglist() {
82         my $p;                          # Index variable
83         my $nr;                 # Current bugnumber
84         my $sect;                       # BTS-subsection for bugnumber
85         my $header;             # Flag if packagename has already been printed
86
87         for my $p (sort {$a cmp $b} keys %scanlib::packagelist) {
88                 $header = 0;
89                 for $nr (sort @{$scanlib::packagelist{$p}}) {
90                         if (! $header) {
91                                 $header = 1;
92                                 &PrintPackageHeader($p);
93                         }
94
95                         if ($html) {
96                                 my $worry = scanlib::check_worry($scanlib::bugs{$nr});
97                         
98                                 if ($scanlib::bugs{$nr}->{'pending'}) {
99                                         print '<span style="color: #f040d0">';
100                                 } elsif ($scanlib::bugs{$nr}->{'patch'}) {
101                                         print '<span style="color: #00aa00">';
102                                 } elsif ($scanlib::bugs{$nr}->{'help'}) {
103                                         print '<span style="color: #ffaa30">';
104                                 }
105                                 print "<strike>" if ($scanlib::bugs{$nr}->{'sarge-ignore'} || $scanlib::bugs{$nr}->{'etch-ignore'});
106                                 print "<em class=\"worry\">" if $worry;
107                                 ($sect=$nr) =~ s/([0-9]{2}).*/$1/;
108                                 printf "<A NAME=\"$nr\"></A>  %s [%s] [%s] %s\n", scanlib::wwwnumber($nr),
109                                         scanlib::get_taginfo($scanlib::bugs{$nr}),
110                                         scanlib::get_relinfo($scanlib::bugs{$nr}), 
111                                         scanlib::htmlsanit($scanlib::bugs{$nr}->{'subject'});
112                                 print "</em>" if $worry;
113                                 print "</strike>" if ($scanlib::bugs{$nr}->{'sarge-ignore'} || $scanlib::bugs{$nr}->{'etch-ignore'});
114                         } else {
115                                 printf("  %-6d [%s] [%s] %s\n", $nr, scanlib::get_taginfo($scanlib::bugs{$nr}),
116                                         scanlib::get_relinfo($scanlib::bugs{$nr}), $scanlib::bugs{$nr}->{'subject'});
117                         }
118                         print "</span>" if ($html && ($scanlib::bugs{$nr}->{'pending'} ||
119                                                       $scanlib::bugs{$nr}->{'patch'} ||
120                                                                                   $scanlib::bugs{$nr}->{'help'}));
121                 }
122                 if ($header) {
123                         &PrintPackageFooter($p);
124                 }
125         }
126 }
127
128
129 sub MakeStatistics() {
130         my $bugcount=0;         # Total number of bugs so far
131         my $patchtotal=0;       # Total number of bugs marked patch
132         my $pendingtotal=0;     # Total number of bugs marked pending
133         my $ignoretotal=0;      # Total number of bugs marked ignore
134         my $worrytotal=0;       # Total number of bugs we're actually worried about
135         my $stabletotal=0;      # Total number of bugs affecting stable
136         my %list;               # List of bugnumber associated with package
137
138         for my $p (sort keys %scanlib::packagelist) {
139                 my $count = 0;          # Number of bugs for this package
140
141                 for my $nr (@{$scanlib::packagelist{$p}}) {
142                         $pendingtotal++ if ($scanlib::bugs{$nr}->{'pending'});
143                         $patchtotal++ if ($scanlib::bugs{$nr}->{'patch'});
144                         $ignoretotal++ if ($scanlib::bugs{$nr}->{'sarge-ignore'} || $scanlib::bugs{$nr}->{'etch-ignore'});
145                         $worrytotal++ if (scanlib::check_worry($scanlib::bugs{$nr}));
146                         $stabletotal++ if (scanlib::check_worry_stable($scanlib::bugs{$nr}));
147
148                         $bugcount++;
149                         $count++;
150                 }
151         }
152
153         if ($html) {
154                 print "<strong>Total number of release-critical bugs:</strong> $bugcount<BR>\n";
155                 printf("<strong>Number that have a patch:</strong> %d<BR>\n", $patchtotal);
156                 printf("<strong>Number that have a fix prepared and waiting to upload:</strong> %d<BR>\n", $pendingtotal);
157                 printf("<strong>Number that are being ignored:</strong> %d<BR>\n", $ignoretotal);
158                 printf("<strong>Number concerning the current stable release:</strong> %d<BR>\n", $stabletotal);
159                 printf("<strong>Number concerning the next release:</strong> %d<P>\n", $worrytotal);
160         } else {
161                 print "Total number of release-critical bugs: $bugcount\n";
162                 printf("Number that have a patch: %d\n", $patchtotal);
163                 printf("Number that have a fix prepared and waiting to upload: %d\n", $pendingtotal);
164                 printf("Number that are being ignored: %d\n", $ignoretotal);
165                 printf("Number concerning the current stable release: %d\n", $stabletotal);
166                 printf("Number concerning the next release: %d\n", $worrytotal);
167         }
168 }
169
170
171 sub FilterPackages($) {
172         my $filter = shift;             # Distribution we want to keep
173
174         for my $p (sort keys %scanlib::packagelist) {
175                 delete $scanlib::packagelist{$p} unless ($scanlib::section{$p} =~ m/^$filter/);
176         }
177 }
178
179 sub FilterBugs() {
180         for my $p (sort keys %scanlib::packagelist) {
181                 $scanlib::packagelist{$p} = [ grep { scanlib::check_worry($scanlib::bugs{$_}) } @{$scanlib::packagelist{$p}} ];
182                 delete $scanlib::packagelist{$p} if (scalar @{$scanlib::packagelist{$p}} == 0);
183         }
184 }
185
186 our ($opt_h,$opt_V,$opt_S,$opt_H,$opt_d,$opt_t,$opt_s,$opt_l);
187
188 getopts('VhHlstd:S:');
189 ShowUsage if ($opt_h);
190 ShowVersion if ($opt_V);
191 $statusfile=$opt_S if ($opt_S);
192 $html=1 if ($opt_H);
193
194 scanlib::readstatus($statusfile);
195
196 FilterPackages($opt_d) if ($opt_d);
197 FilterBugs() if ($opt_t);
198
199 MakeStatistics if ($opt_s);
200 if ($opt_l) {
201         MakeBuglist();
202 }
203
204 exit 0;
205