]> git.donarmstrong.com Git - bugscan.git/blob - bugcounts
d7adb4d2ea4099f3e7f6781f8818274429f812eb
[bugscan.git] / bugcounts
1 #! /usr/bin/perl
2 # vim: ts=4 sw=4 nowrap
3
4 # Generate some counts for the bugreports
5
6 use Getopt::Std;
7 require scanlib;
8 require bugcfg;
9 use strict;
10 # use warnings;
11
12 my $Version             = "BugCount 1.1\nCopyright (C) Wichert Akkerman <wakkerma\@debian.org>\n";
13 my $statusfile          = "status";
14
15 sub ShowVersion() {
16         print "$Version\n";
17         exit 0;
18 }
19
20 sub ShowUsage() {
21         print <<EOF;
22 Usage:
23   $0 [-V] [-h] [-S file] [-C file]
24 Options:
25   -V    show version
26   -h    show some (hopefully) helpfull information
27   -S    use different statusfile
28 EOF
29         exit 0;
30 }
31
32 our ($opt_h,$opt_V,$opt_S);
33
34 getopts('VhS:');
35 ShowUsage if ($opt_h);
36 ShowVersion if ($opt_V);
37 $statusfile=$opt_S if ($opt_S);
38
39 scanlib::readstatus($statusfile);
40
41 my $total=0;            # total number of bugs
42 my $patchcount=0;       # Number of bugs that have a fix proposed
43 my $pendingcount=0;     # Number of bugs that will have a fix uploaded RSN
44 my $ignorecount=0;  # Number of bugs being ignored
45 my $worrycount=0;       # Number of bugs we're actually worried about
46 my $stablecount=0;      # Number of bugs affecting stable
47
48 for my $bug (values %scanlib::bugs) {
49         $total++;
50         $pendingcount++ if ($bug->{'pending'});
51         $patchcount++ if ($bug->{'patch'});
52         $ignorecount++ if ($bug->{'sarge-ignore'} || $bug->{'etch-ignore'});
53         $worrycount++ if (scanlib::check_worry($bug));
54         $stablecount++ if (scanlib::check_worry_stable($bug));
55 }
56
57 printf("%d %d %d 0 %d 0 %d %d\n", $total, $pendingcount, $patchcount, $ignorecount, $worrycount, $stablecount);