1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
#!/usr/bin/perl
# print out a list of open customer/P1/regression bugs by engineer
# if the file "Customer support list.txt" is present the customer number
# is replaced by the customer name
# the format of this file is:
#
# #1 ART Artifex Software Inc.
# #666 NSA National Security Agency
# .
# .
# .
use strict;
use warnings;
use LWP::Simple;
use Date::Calc qw(Delta_Days);
use Data::Dumper;
my @enhancements;
sub daysFromNow($) {
my $date=shift;
my $diff=0;
if ($date =~ m/(\d\d\d\d)-(\d\d)-(\d\d)/) {
my $year1=$1;
my $month1=$2;
my $day1=$3;
my $year2;
my $month2;
my $day2;
($day2, $month2, $year2) = (localtime)[3,4,5];
$year2+=1900;
$month2+=1;
$diff=Delta_Days($year1,$month1,$day1,$year2,$month2,$day2);
}
return($diff);
}
#read Customer support list.txt
my %customers;
{
my $filename="Customer support list.txt";
if (open(F,"<$filename")) {
while(<F>) {
chomp;
if (m/#(\d+) (...) (.+)/) {
my $number=$1;
my $id=$2;
my $name=$3;
$customers{$number}=$name;
}
}
close(F);
} else {
print STDERR "file \"Customer support list.txt\" not found, proceeding without.\n";
}
$customers{'P1'}='P1';
$customers{'Regression'}='Regression';
}
sub printReport($) {
my $engineer=shift;
print "\n";
print "-------------------------------------------------------------------------------------------------------------------\n";
print "\n";
print "Engineer: $engineer\n";
print "\n";
print " Days\n";
print " Bug Days Days Days Engr\n";
print "Number Open Assign Idle Resp Customer(s) Summary\n";
print "\n";
my $a;
my @a;
my %bugList;
#$a=`lynx -nolist -width 1024 -dump http://bugs.ghostscript.com/buglist.cgi?short_desc_type=allwordssubstr\\&short_desc=\\&long_desc_type=allwordssubstr\\&long_desc=\\&keywords_type=allwords\\&bug_status=UNCONFIRMED\\&bug_status=NEW\\&bug_status=ASSIGNED\\&bug_status=REOPENED\\&bug_severity=blocker\\&bug_severity=critical\\&bug_severity=major\\&bug_severity=normal\\&bug_severity=minor\\&bug_severity=trivial\\&emailassigned_to1=1\\&emailtype1=substring\\&email1=$engineer\\&emailassigned_to2=1\\&bugidtype=include\\&chfieldto=Now\\&field0-0-0=Customer\\&type0-0-0=greaterthan\\&value0-0-0=0`;
#$a=`lynx -nolist -width 1024 -dump "http://bugs.ghostscript.com/buglist.cgi?emailassigned_to1=1;query_format=advanced;field0-0-0=cf_customer;bug_status=UNCONFIRMED;bug_status=NEW;bug_status=ASSIGNED;bug_status=REOPENED;email1=$engineer;type0-0-0=greaterthan;value0-0-0=0;emailtype1=substring"`;
$a=`lynx -nolist -width 1024 -dump "http://bugs.ghostscript.com/buglist.cgi?emailassigned_to1=1&query_format=advanced&field0-0-0=cf_customer&bug_severity=blocker&bug_severity=critical&bug_severity=major&bug_severity=normal&bug_severity=minor&bug_severity=trivial&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=$engineer&type0-0-0=greaterthan&value0-0-0=0&emailtype1=substring"`;
#print "$a\n"; exit;
@a=split '\n',$a;
foreach (@a) {
chomp;
if (m/(\d\d\d\d\d\d) ... P. /) {
$bugList{$1}="Customer";
}
}
#$a=`lynx -nolist -width 1024 -dump http://bugs.ghostscript.com/buglist.cgi?short_desc_type=allwordssubstr\\&short_desc=\\&long_desc_type=allwordssubstr\\&long_desc=\\&keywords_type=allwords\\&bug_status=UNCONFIRMED\\&bug_status=NEW\\&bug_status=ASSIGNED\\&bug_status=REOPENED\\&bug_severity=enhancement\\&emailassigned_to1=1\\&emailtype1=substring\\&email1=$engineer\\&emailassigned_to2=1\\&bugidtype=include\\&chfieldto=Now\\&field0-0-0=Customer\\&type0-0-0=greaterthan\\&value0-0-0=0`;
$a=`lynx -nolist -width 1024 -dump "http://bugs.ghostscript.com/buglist.cgi?emailassigned_to1=1;query_format=advanced;field0-0-0=cf_customer;bug_severity=enhancement;bug_status=UNCONFIRMED;bug_status=NEW;bug_status=ASSIGNED;bug_status=REOPENED;email1=$engineer;type0-0-0=greaterthan;value0-0-0=0;emailtype1=substring"`;
@a=split '\n',$a;
foreach (@a) {
chomp;
if (m/(\d\d\d\d\d\d) ... P. /) {
$bugList{$1}="Enhancement";
}
}
#foreach my $i (sort keys %bugList) {
# print "$i\n";
#}
#exit;
#$a=`lynx -nolist -width 1024 -dump http://bugs.ghostscript.com/buglist.cgi?short_desc_type=allwordssubstr\\&short_desc=Regression%3A\\&long_desc_type=allwordssubstr\\&long_desc=\\&keywords_type=allwords\\&bug_status=UNCONFIRMED\\&bug_status=NEW\\&bug_status=ASSIGNED\\&bug_status=REOPENED\\&bug_severity=blocker\\&bug_severity=critical\\&bug_severity=major\\&bug_severity=normal\\&bug_severity=minor\\&bug_severity=trivial\\&emailassigned_to1=1\\&emailtype1=substring\\&email1=$engineer\\&emailassigned_to2=1\\&bugidtype=include\\&chfieldto=Now`;
$a=`lynx -nolist -width 1024 -dump "http://bugs.ghostscript.com/buglist.cgi?emailassigned_to1=1;query_format=advanced;short_desc=Regression%3A;bug_status=UNCONFIRMED;bug_status=NEW;bug_status=ASSIGNED;bug_status=REOPENED;short_desc_type=allwordssubstr;email1=$engineer;emailtype1=substring"`;
@a=split '\n',$a;
foreach (@a) {
chomp;
if (m/(\d\d\d\d\d\d) ... P. /) {
$bugList{$1}="Regression" if (!exists $bugList{$1});
}
}
#$a=`lynx -nolist -width 1024 -dump http://bugs.ghostscript.com/buglist.cgi?short_desc_type=allwordssubstr\\&short_desc=\\&long_desc_type=allwordssubstr\\&long_desc=\\&keywords_type=allwords\\&bug_status=UNCONFIRMED\\&bug_status=NEW\\&bug_status=ASSIGNED\\&bug_status=REOPENED\\&bug_severity=blocker\\&bug_severity=critical\\&bug_severity=major\\&bug_severity=normal\\&bug_severity=minor\\&bug_severity=trivial\\&emailassigned_to1=1\\&emailtype1=substring\\&email1=$engineer\\&emailassigned_to2=1\\&bugidtype=include\\&chfieldto=Now\\&priority=P1`;
$a=`lynx -nolist -width 1024 -dump "http://bugs.ghostscript.com/buglist.cgi?priority=P1;emailassigned_to1=1;query_format=advanced;bug_status=UNCONFIRMED;bug_status=NEW;bug_status=ASSIGNED;bug_status=REOPENED;email1=$engineer;emailtype1=substring"`;
@a=split '\n',$a;
foreach (@a) {
chomp;
if (m/(\d\d\d\d\d\d) ... P. /) {
$bugList{$1}="P1" if (!exists $bugList{$1});
}
}
#print Dumper(\%bugList); exit;
foreach (sort keys %bugList) {
my $bugNumber=$_;
my $opened="0000-00-00 00:00";
my $modified="0000-00-00 00:00";
my $dateAssigned="0000-00-00 00:00";
my $customerNumber=0;
my $entered="unknown1";
my $assigned="unknown2";
my $comment="unknown3";
my $commentedUpon="never";
my $b=`lynx -nolist -width 1025 -dump http://bugs.ghostscript.com/show_bug.cgi?id=$bugNumber`;
my $description="";
$description=$1 if ($b =~ m/Bug \d\d\d\d\d.\s+?(\S.+?)\n/);
my @b=split '\n',$b;
foreach (@b) {
chomp;
if (m/Reported: (\d\d\d\d-\d\d-\d\d \d\d:\d\d)/) {
$opened=$1;
$commentedUpon=$opened if ($entered eq $assigned);
}
$modified=$1 if (m/Modified: (\d\d\d\d-\d\d-\d\d \d\d:\d\d)/);
$entered=$1 if (m/Reporter: \S+ \((.+)\)$/);
$assigned=$1 if (m/Assigned To: (.+)$/);
if (m/Comment \d+ (.+?) (\d\d\d\d-\d\d-\d\d \d\d:\d\d)/) {
$comment=$1;
$commentedUpon=$2 if ($comment eq $assigned);
}
}
#print "$bugNumber\n$opened\n$modified\n$dateAssigned\n$customerNumber\n$entered\n$assigned\n$comment\n$commentedUpon\n"; exit;
if ($bugList{$bugNumber} eq "Customer" || $bugList{$bugNumber} eq "Enhancement") {
my $url="http://bugs.ghostscript.com/show_bug.cgi?id=$bugNumber";
$b=get $url;
# $customerNumber=$1 if ($b =~ m/"Customer"\s.+?value="(.+?)"/s);
$customerNumber=$1 if ($b =~ m/"field_container_cf_customer"\s.+?>(.+?)</s);
# id="field_container_cf_customer" colspan="2">870</td>
# print "$b $bugNumber $customerNumber\n"; exit;
} else {
$customerNumber=$bugList{$bugNumber};
}
$b=`lynx -nolist -width 1025 -dump http://bugs.ghostscript.com/show_activity.cgi?id=$bugNumber`;
$dateAssigned=$1 if ($b =~ m/.*(\d\d\d\d-\d\d-\d\d \d\d:\d\d):\d\d .+ Assignee/s);
#print "$b\n";
#print "$opened\t$modified\t$dateAssigned\t$customerNumber\n";
$dateAssigned=$opened if ($dateAssigned eq "0000-00-00 00:00"); # bugs that are automatically assigned when they are entered don't show AssignedTo on the activity page
$modified =$opened if ($modified eq "0000-00-00 00:00");
# print "$opened\t$modified\t$dateAssigned\t$customerNumber\n";
$customerNumber =~ s/,/ /g;
$customerNumber =~ s/ / /g;
my $customerName=$customerNumber;
my @customers=split ' ',$customerNumber;
foreach my $customerCount (0..(scalar @customers)-1) {
$customerNumber=$customers[$customerCount];
$customerName=$customerNumber;
$customerName=$customers{$customerNumber} if (exists($customers{$customerNumber}));
$customerName=substr $customerName,0,30;
my $responseNeeded='---';
$responseNeeded=daysFromNow($commentedUpon) if ($commentedUpon ne "never");
# $description = "Enhancement: ".$description if ($bugList{$bugNumber} eq "Enhancement");
if ($bugList{$bugNumber} eq "Enhancement") {
my $s=sprintf "%d %5d %5d %5d %3s %-30s %s\n",$bugNumber,daysFromNow($opened),daysFromNow($dateAssigned),daysFromNow($modified),$responseNeeded,$customerName,$description;
push @enhancements, $s;
} else {
if ($customerCount==0) {
printf "%d %5d %5d %5d %3s %-30s %s\n",$bugNumber,daysFromNow($opened),daysFromNow($dateAssigned),daysFromNow($modified),$responseNeeded,$customerName,$description;
} else {
printf " %-30s\n",$customerName;
}
}
}
}
print "\n";
}
printReport("Alex");
printReport("Chris");
printReport("Henry");
printReport("Ken");
printReport("Marcos");
printReport("Masaki");
printReport("Michael");
printReport("Ralph");
printReport("Ray");
printReport("Robin");
printReport("Tor");
printReport("htl");
printReport("larsu");
printReport("support");
my @sorted=sort(@enhancements);
print "\n";
print "-------------------------------------------------------------------------------------------------------------------\n";
print "\n";
print "Enhancement requests:\n";
print "\n";
print " Days\n";
print " Bug Days Days Days Engr\n";
print "Number Open Assign Idle Resp Customer(s) Summary\n";
print "\n";
foreach (@sorted) {
print "$_";
}
|