| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1 | #!/usr/bin/env perl | 
 | 2 | # | 
 | 3 | #                     The LLVM Compiler Infrastructure | 
 | 4 | # | 
 | 5 | # This file is distributed under the University of Illinois Open Source | 
 | 6 | # License. See LICENSE.TXT for details. | 
 | 7 | # | 
 | 8 | ##===----------------------------------------------------------------------===## | 
 | 9 | # | 
 | 10 | # A script designed to wrap a build so that all calls to gcc are intercepted | 
 | 11 | # and piped to the static analyzer. | 
 | 12 | # | 
 | 13 | ##===----------------------------------------------------------------------===## | 
 | 14 |  | 
 | 15 | use strict; | 
 | 16 | use warnings; | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 17 | use FindBin qw($RealBin); | 
| Ted Kremenek | a6e2481 | 2008-04-19 18:05:48 +0000 | [diff] [blame] | 18 | use Digest::MD5; | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 19 | use File::Basename; | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 20 | use Term::ANSIColor; | 
 | 21 | use Term::ANSIColor qw(:constants); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 22 |  | 
 | 23 | my $Verbose = 0;       # Verbose output from this script. | 
 | 24 | my $Prog = "scan-build"; | 
| Ted Kremenek | f4cdf41 | 2008-05-23 18:17:05 +0000 | [diff] [blame] | 25 | my $BuildName; | 
 | 26 | my $BuildDate; | 
| Ted Kremenek | 95aa105 | 2008-09-04 17:52:41 +0000 | [diff] [blame] | 27 | my $CXX;  # Leave undefined initially. | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 28 |  | 
| Ted Kremenek | 0e68938 | 2008-09-11 18:17:51 +0000 | [diff] [blame] | 29 | my $TERM = $ENV{'TERM'}; | 
 | 30 | my $UseColor = (defined $TERM and $TERM eq 'xterm-color' and -t STDOUT | 
 | 31 |                 and defined $ENV{'SCAN_BUILD_COLOR'}); | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 32 |  | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 33 | ##----------------------------------------------------------------------------## | 
 | 34 | # Diagnostics | 
 | 35 | ##----------------------------------------------------------------------------## | 
 | 36 |  | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 37 | sub Diag { | 
 | 38 |   if ($UseColor) { | 
 | 39 |     print BOLD, MAGENTA "$Prog: @_"; | 
 | 40 |     print RESET; | 
 | 41 |   } | 
 | 42 |   else { | 
 | 43 |     print "$Prog: @_"; | 
 | 44 |   }   | 
 | 45 | } | 
 | 46 |  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 47 | sub DiagCrashes { | 
 | 48 |   my $Dir = shift; | 
 | 49 |   Diag ("The analyzer crashed on some source files.\n"); | 
| Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 50 |   Diag ("Preprocessed versions of crashed files were deposited in '$Dir/crashes'.\n"); | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 51 |   Diag ("Please consider submitting a bug report using these files:\n"); | 
 | 52 |   Diag ("  http://clang.llvm.org/StaticAnalysisUsage.html#filingbugs\n") | 
 | 53 | } | 
 | 54 |  | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 55 | sub DieDiag { | 
 | 56 |   if ($UseColor) { | 
 | 57 |     print BOLD, RED "$Prog: "; | 
 | 58 |     print RESET, RED @_; | 
 | 59 |     print RESET; | 
 | 60 |   } | 
 | 61 |   else { | 
 | 62 |     print "$Prog: ", @_; | 
 | 63 |   } | 
 | 64 |   exit(0); | 
 | 65 | } | 
 | 66 |  | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 67 | ##----------------------------------------------------------------------------## | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 68 | # Some initial preprocessing of Clang options. | 
 | 69 | ##----------------------------------------------------------------------------## | 
 | 70 |  | 
 | 71 | my $ClangSB = "$RealBin/clang"; | 
 | 72 | my $Clang = $ClangSB; | 
 | 73 |  | 
 | 74 | if (! -x $ClangSB) { | 
 | 75 |   $Clang = "clang"; | 
 | 76 | } | 
 | 77 |  | 
 | 78 | my %AvailableAnalyses; | 
 | 79 |  | 
 | 80 | # Query clang for analysis options. | 
| Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 81 | open(PIPE, "-|", $Clang, "--help") or | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 82 |   DieDiag("Cannot execute '$Clang'"); | 
| Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 83 |  | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 84 | my $FoundAnalysis = 0; | 
 | 85 |  | 
 | 86 | while(<PIPE>) { | 
 | 87 |   if ($FoundAnalysis == 0) { | 
 | 88 |     if (/Available Source Code Analyses/) { | 
 | 89 |       $FoundAnalysis = 1; | 
 | 90 |     } | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 91 |  | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 92 |     next; | 
 | 93 |   } | 
 | 94 |      | 
 | 95 |   if (/^\s\s\s\s([^\s]+)\s(.+)$/) { | 
 | 96 |     next if ($1 =~ /-dump/ or $1 =~ /-view/  | 
 | 97 |              or $1 =~ /-checker-simple/ or $1 =~ /-warn-uninit/); | 
 | 98 |               | 
 | 99 |     $AvailableAnalyses{$1} = $2; | 
 | 100 |     next; | 
 | 101 |   } | 
 | 102 |    | 
 | 103 |   last; | 
 | 104 | } | 
 | 105 |  | 
 | 106 | close (PIPE); | 
 | 107 |  | 
 | 108 | my %AnalysesDefaultEnabled = ( | 
 | 109 |   '-warn-dead-stores' => 1, | 
 | 110 |   '-checker-cfref' => 1, | 
| Ted Kremenek | 9012599 | 2008-07-15 23:41:32 +0000 | [diff] [blame] | 111 |   '-warn-objc-methodsigs' => 1, | 
| Ted Kremenek | bde3a05 | 2008-07-25 20:35:01 +0000 | [diff] [blame] | 112 |   '-warn-objc-missing-dealloc' => 1, | 
| Ted Kremenek | 5d44349 | 2008-09-18 06:34:16 +0000 | [diff] [blame] | 113 |   '-warn-objc-unused-ivars' => 1, | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 114 | ); | 
 | 115 |  | 
 | 116 | ##----------------------------------------------------------------------------## | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 117 | # GetHTMLRunDir - Construct an HTML directory name for the current sub-run. | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 118 | ##----------------------------------------------------------------------------## | 
 | 119 |  | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 120 | sub GetHTMLRunDir {   | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 121 |  | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 122 |   die "Not enough arguments." if (@_ == 0);   | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 123 |   my $Dir = shift @_; | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 124 |      | 
 | 125 |   my $TmpMode = 0; | 
 | 126 |   if (!defined $Dir) { | 
 | 127 |     $Dir = "/tmp"; | 
 | 128 |     $TmpMode = 1; | 
 | 129 |   } | 
 | 130 |  | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 131 |   # Get current date and time. | 
 | 132 |    | 
 | 133 |   my @CurrentTime = localtime(); | 
 | 134 |    | 
 | 135 |   my $year  = $CurrentTime[5] + 1900; | 
 | 136 |   my $day   = $CurrentTime[3]; | 
 | 137 |   my $month = $CurrentTime[4] + 1; | 
 | 138 |    | 
| Ted Kremenek | 9d7405f | 2008-05-14 17:23:56 +0000 | [diff] [blame] | 139 |   my $DateString = sprintf("%d-%02d-%02d", $year, $month, $day); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 140 |    | 
 | 141 |   # Determine the run number. | 
 | 142 |    | 
 | 143 |   my $RunNumber; | 
 | 144 |    | 
 | 145 |   if (-d $Dir) { | 
 | 146 |      | 
 | 147 |     if (! -r $Dir) { | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 148 |       DieDiag("directory '$Dir' exists but is not readable.\n"); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 149 |     } | 
 | 150 |      | 
 | 151 |     # Iterate over all files in the specified directory. | 
 | 152 |      | 
 | 153 |     my $max = 0; | 
 | 154 |      | 
 | 155 |     opendir(DIR, $Dir); | 
| Ted Kremenek | 29da6c5 | 2008-08-07 17:57:34 +0000 | [diff] [blame] | 156 |     my @FILES = grep { -d "$Dir/$_" } readdir(DIR); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 157 |     closedir(DIR); | 
 | 158 |      | 
 | 159 |     foreach my $f (@FILES) { | 
 | 160 |  | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 161 |       # Strip the prefix '$Prog-' if we are dumping files to /tmp. | 
 | 162 |       if ($TmpMode) { | 
 | 163 |         next if (!($f =~ /^$Prog-(.+)/)); | 
 | 164 |         $f = $1; | 
 | 165 |       } | 
 | 166 |  | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 167 |       my @x = split/-/, $f; | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 168 |  | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 169 |       next if (scalar(@x) != 4); | 
 | 170 |       next if ($x[0] != $year); | 
 | 171 |       next if ($x[1] != $month); | 
 | 172 |       next if ($x[2] != $day); | 
 | 173 |        | 
 | 174 |       if ($x[3] > $max) { | 
 | 175 |         $max = $x[3]; | 
 | 176 |       }       | 
 | 177 |     } | 
 | 178 |      | 
 | 179 |     $RunNumber = $max + 1; | 
 | 180 |   } | 
 | 181 |   else { | 
 | 182 |      | 
 | 183 |     if (-x $Dir) { | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 184 |       DieDiag("'$Dir' exists but is not a directory.\n"); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 185 |     } | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 186 |  | 
 | 187 |     if ($TmpMode) { | 
 | 188 |       DieDiag("The directory '/tmp' does not exist or cannot be accessed."); | 
 | 189 |     } | 
 | 190 |  | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 191 |     # $Dir does not exist.  It will be automatically created by the  | 
 | 192 |     # clang driver.  Set the run number to 1.   | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 193 |  | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 194 |     $RunNumber = 1; | 
 | 195 |   } | 
 | 196 |    | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 197 |   die "RunNumber must be defined!" if (!defined $RunNumber); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 198 |    | 
 | 199 |   # Append the run number. | 
| Ted Kremenek | fc0898a | 2008-09-04 23:56:36 +0000 | [diff] [blame] | 200 |   my $NewDir; | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 201 |   if ($TmpMode) { | 
| Ted Kremenek | fc0898a | 2008-09-04 23:56:36 +0000 | [diff] [blame] | 202 |     $NewDir = "$Dir/$Prog-$DateString-$RunNumber"; | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 203 |   } | 
 | 204 |   else { | 
| Ted Kremenek | fc0898a | 2008-09-04 23:56:36 +0000 | [diff] [blame] | 205 |     $NewDir = "$Dir/$DateString-$RunNumber"; | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 206 |   } | 
| Ted Kremenek | fc0898a | 2008-09-04 23:56:36 +0000 | [diff] [blame] | 207 |   system 'mkdir','-p',$NewDir; | 
 | 208 |   return $NewDir; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 209 | } | 
 | 210 |  | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 211 | sub SetHtmlEnv { | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 212 |    | 
 | 213 |   die "Wrong number of arguments." if (scalar(@_) != 2); | 
 | 214 |    | 
 | 215 |   my $Args = shift; | 
 | 216 |   my $Dir = shift; | 
 | 217 |    | 
 | 218 |   die "No build command." if (scalar(@$Args) == 0); | 
 | 219 |    | 
 | 220 |   my $Cmd = $$Args[0]; | 
 | 221 |    | 
 | 222 |   if ($Cmd =~ /configure/) { | 
 | 223 |     return; | 
 | 224 |   } | 
 | 225 |    | 
 | 226 |   if ($Verbose) { | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 227 |     Diag("Emitting reports for this run to '$Dir'.\n"); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 228 |   } | 
 | 229 |    | 
 | 230 |   $ENV{'CCC_ANALYZER_HTML'} = $Dir; | 
 | 231 | } | 
 | 232 |  | 
 | 233 | ##----------------------------------------------------------------------------## | 
| Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 234 | # ComputeDigest - Compute a digest of the specified file. | 
 | 235 | ##----------------------------------------------------------------------------## | 
 | 236 |  | 
 | 237 | sub ComputeDigest { | 
 | 238 |   my $FName = shift; | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 239 |   DieDiag("Cannot read $FName to compute Digest.\n") if (! -r $FName);   | 
| Ted Kremenek | a6e2481 | 2008-04-19 18:05:48 +0000 | [diff] [blame] | 240 |    | 
 | 241 |   # Use Digest::MD5.  We don't have to be cryptographically secure.  We're | 
| Ted Kremenek | 7ea02e6 | 2008-04-19 18:07:44 +0000 | [diff] [blame] | 242 |   # just looking for duplicate files that come from a non-malicious source. | 
 | 243 |   # We use Digest::MD5 because it is a standard Perl module that should | 
| Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 244 |   # come bundled on most systems.   | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 245 |   open(FILE, $FName) or DieDiag("Cannot open $FName when computing Digest.\n"); | 
| Ted Kremenek | a6e2481 | 2008-04-19 18:05:48 +0000 | [diff] [blame] | 246 |   binmode FILE; | 
 | 247 |   my $Result = Digest::MD5->new->addfile(*FILE)->hexdigest; | 
 | 248 |   close(FILE); | 
 | 249 |    | 
| Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 250 |   # Return the digest.   | 
| Ted Kremenek | a6e2481 | 2008-04-19 18:05:48 +0000 | [diff] [blame] | 251 |   return $Result; | 
| Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 252 | } | 
 | 253 |  | 
 | 254 | ##----------------------------------------------------------------------------## | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 255 | #  UpdatePrefix - Compute the common prefix of files. | 
 | 256 | ##----------------------------------------------------------------------------## | 
 | 257 |  | 
 | 258 | my $Prefix; | 
 | 259 |  | 
 | 260 | sub UpdatePrefix { | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 261 |   my $x = shift; | 
 | 262 |   my $y = basename($x); | 
 | 263 |   $x =~ s/\Q$y\E$//; | 
 | 264 |    | 
 | 265 |   # Ignore /usr, /Library, /System, /Developer | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 266 |   return if ( $x =~ /^\/usr/ or $x =~ /^\/Library/ | 
 | 267 |               or $x =~ /^\/System/ or $x =~ /^\/Developer/); | 
 | 268 |  | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 269 |   if (!defined $Prefix) { | 
 | 270 |     $Prefix = $x; | 
 | 271 |     return; | 
 | 272 |   } | 
 | 273 |    | 
| Ted Kremenek | 20b2bae | 2008-09-11 21:15:10 +0000 | [diff] [blame] | 274 |   chop $Prefix while (!($x =~ /^\Q$Prefix/)); | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 275 | } | 
 | 276 |  | 
 | 277 | sub GetPrefix { | 
 | 278 |   return $Prefix; | 
 | 279 | } | 
 | 280 |  | 
 | 281 | ##----------------------------------------------------------------------------## | 
 | 282 | #  UpdateInFilePath - Update the path in the report file. | 
 | 283 | ##----------------------------------------------------------------------------## | 
 | 284 |  | 
 | 285 | sub UpdateInFilePath { | 
 | 286 |   my $fname = shift; | 
 | 287 |   my $regex = shift; | 
 | 288 |   my $newtext = shift; | 
| Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 289 |  | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 290 |   open (RIN, $fname) or die "cannot open $fname"; | 
| Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 291 |   open (ROUT, ">", "$fname.tmp") or die "cannot open $fname.tmp"; | 
 | 292 |  | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 293 |   while (<RIN>) { | 
 | 294 |     s/$regex/$newtext/; | 
 | 295 |     print ROUT $_; | 
 | 296 |   } | 
| Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 297 |  | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 298 |   close (ROUT); | 
 | 299 |   close (RIN); | 
| Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 300 |   system("mv", "$fname.tmp", $fname); | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 301 | } | 
 | 302 |  | 
 | 303 | ##----------------------------------------------------------------------------## | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 304 | # ScanFile - Scan a report file for various identifying attributes. | 
 | 305 | ##----------------------------------------------------------------------------## | 
 | 306 |  | 
| Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 307 | # Sometimes a source file is scanned more than once, and thus produces | 
 | 308 | # multiple error reports.  We use a cache to solve this problem. | 
 | 309 |  | 
 | 310 | my %AlreadyScanned; | 
 | 311 |  | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 312 | sub ScanFile { | 
 | 313 |    | 
 | 314 |   my $Index = shift; | 
 | 315 |   my $Dir = shift; | 
 | 316 |   my $FName = shift; | 
 | 317 |    | 
| Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 318 |   # Compute a digest for the report file.  Determine if we have already | 
 | 319 |   # scanned a file that looks just like it. | 
 | 320 |    | 
 | 321 |   my $digest = ComputeDigest("$Dir/$FName"); | 
 | 322 |  | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 323 |   if (defined $AlreadyScanned{$digest}) { | 
| Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 324 |     # Redundant file.  Remove it. | 
| Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 325 |     system ("rm", "-f", "$Dir/$FName"); | 
| Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 326 |     return; | 
 | 327 |   } | 
 | 328 |    | 
 | 329 |   $AlreadyScanned{$digest} = 1; | 
 | 330 |    | 
| Ted Kremenek | 809709f | 2008-04-18 16:58:34 +0000 | [diff] [blame] | 331 |   # At this point the report file is not world readable.  Make it happen. | 
| Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 332 |   system ("chmod", "644", "$Dir/$FName"); | 
| Ted Kremenek | 684bb09 | 2008-04-18 15:18:20 +0000 | [diff] [blame] | 333 |    | 
 | 334 |   # Scan the report file for tags. | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 335 |   open(IN, "$Dir/$FName") or DieDiag("Cannot open '$Dir/$FName'\n"); | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 336 |  | 
 | 337 |   my $BugDesc = ""; | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 338 |   my $BugFile = ""; | 
 | 339 |   my $BugPathLength = 1; | 
 | 340 |   my $BugLine = 0; | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 341 |    | 
 | 342 |   while (<IN>) { | 
 | 343 |      | 
 | 344 |     if (/<!-- BUGDESC (.*) -->$/) { | 
 | 345 |       $BugDesc = $1; | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 346 |     } | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 347 |     elsif (/<!-- BUGFILE (.*) -->$/) { | 
 | 348 |       $BugFile = $1; | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 349 |       UpdatePrefix($BugFile); | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 350 |     } | 
 | 351 |     elsif (/<!-- BUGPATHLENGTH (.*) -->$/) { | 
 | 352 |       $BugPathLength = $1; | 
 | 353 |     } | 
 | 354 |     elsif (/<!-- BUGLINE (.*) -->$/) { | 
 | 355 |       $BugLine = $1;     | 
 | 356 |     } | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 357 |   } | 
 | 358 |  | 
 | 359 |   close(IN); | 
 | 360 |      | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 361 |   push @$Index,[ $FName, $BugDesc, $BugFile, $BugLine, $BugPathLength ]; | 
 | 362 | } | 
 | 363 |  | 
 | 364 | ##----------------------------------------------------------------------------## | 
 | 365 | # CopyJS - Copy JavaScript code to target directory. | 
 | 366 | ##----------------------------------------------------------------------------## | 
 | 367 |  | 
 | 368 | sub CopyJS { | 
 | 369 |  | 
 | 370 |   my $Dir = shift; | 
 | 371 |    | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 372 |   DieDiag("Cannot find 'sorttable.js'.\n") | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 373 |     if (! -r "$RealBin/sorttable.js");   | 
 | 374 |  | 
| Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 375 |   system ("cp", "$RealBin/sorttable.js", "$Dir"); | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 376 |  | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 377 |   DieDiag("Could not copy 'sorttable.js' to '$Dir'.\n") | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 378 |     if (! -r "$Dir/sorttable.js"); | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 379 | } | 
 | 380 |  | 
 | 381 | ##----------------------------------------------------------------------------## | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 382 | # Postprocess - Postprocess the results of an analysis scan. | 
 | 383 | ##----------------------------------------------------------------------------## | 
 | 384 |  | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 385 | sub Postprocess { | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 386 |    | 
 | 387 |   my $Dir = shift; | 
| Ted Kremenek | 684bb09 | 2008-04-18 15:18:20 +0000 | [diff] [blame] | 388 |   my $BaseDir = shift; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 389 |    | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 390 |   die "No directory specified." if (!defined $Dir); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 391 |    | 
 | 392 |   if (! -d $Dir) { | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 393 |     Diag("No bugs found.\n"); | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 394 |     return 0; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 395 |   } | 
 | 396 |    | 
 | 397 |   opendir(DIR, $Dir); | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 398 |   my $Crashes = 0; | 
 | 399 |   my @files = grep { if ($_ eq "crashes") { $Crashes++; } | 
 | 400 |                      /^report-.*\.html$/; } readdir(DIR); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 401 |   closedir(DIR); | 
 | 402 |  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 403 |   if (scalar(@files) == 0 and $Crashes == 0) { | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 404 |     Diag("Removing directory '$Dir' because it contains no reports.\n"); | 
| Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 405 |     system ("rm", "-fR", $Dir); | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 406 |     return 0; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 407 |   } | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 408 |    | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 409 |   # Scan each report file and build an index.   | 
 | 410 |   my @Index;     | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 411 |   foreach my $file (@files) { ScanFile(\@Index, $Dir, $file); } | 
 | 412 |    | 
| Ted Kremenek | d52e425 | 2008-08-25 20:45:07 +0000 | [diff] [blame] | 413 |   # Scan the crashes directory and use the information in the .info files | 
 | 414 |   # to update the common prefix directory. | 
 | 415 |   if (-d "$Dir/crashes") { | 
 | 416 |     opendir(DIR, "$Dir/crashes"); | 
 | 417 |     my @files = grep { /[.]info$/; } readdir(DIR); | 
 | 418 |     closedir(DIR); | 
 | 419 |     foreach my $file (@files) { | 
 | 420 |       open IN, "$Dir/crashes/$file" or DieDiag("cannot open $file\n"); | 
 | 421 |       my $Path = <IN>; | 
 | 422 |       if (defined $Path) { UpdatePrefix($Path); } | 
 | 423 |       close IN; | 
 | 424 |     }     | 
 | 425 |   } | 
 | 426 |    | 
| Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 427 |   # Generate an index.html file.   | 
 | 428 |   my $FName = "$Dir/index.html";   | 
 | 429 |   open(OUT, ">", $FName) or DieDiag("Cannot create file '$FName'\n"); | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 430 |    | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 431 |   # Print out the header. | 
 | 432 |    | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 433 | print OUT <<ENDTEXT; | 
 | 434 | <html> | 
 | 435 | <head> | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 436 | <style type="text/css"> | 
 | 437 |  body { color:#000000; background-color:#ffffff } | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 438 |  body { font-family: Helvetica, sans-serif; font-size:9pt } | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 439 |  h1 { font-size:12pt } | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 440 |  table thead { | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 441 |    background-color:#eee; color:#666666; | 
 | 442 |    font-weight: bold; cursor: default; | 
| Ted Kremenek | bba1cf5 | 2008-04-03 05:50:51 +0000 | [diff] [blame] | 443 |    text-align:center; | 
 | 444 |    border-top: 2px solid #000000; | 
 | 445 |    border-bottom: 2px solid #000000; | 
 | 446 |    font-weight: bold; font-family: Verdana | 
 | 447 |  }  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 448 |  table { border: 1px #000000 solid } | 
 | 449 |  table { border-collapse: collapse; border-spacing: 0px } | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 450 |  td { border-bottom: 1px #000000 dotted } | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 451 |  td { padding:5px; padding-left:8px; padding-right:8px } | 
| Ted Kremenek | d8c6d0c | 2008-04-07 23:50:07 +0000 | [diff] [blame] | 452 |  td { text-align:left; font-size:9pt } | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 453 |  td.View   { padding-left: 10px } | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 454 | </style> | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 455 | <script src="sorttable.js"></script> | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 456 | <script language='javascript' type="text/javascript"> | 
 | 457 | function SetDisplay(RowClass, DisplayVal) | 
 | 458 | { | 
 | 459 |   var Rows = document.getElementsByTagName("tr"); | 
 | 460 |   for ( var i = 0 ; i < Rows.length; ++i ) { | 
 | 461 |     if (Rows[i].className == RowClass) { | 
 | 462 |       Rows[i].style.display = DisplayVal; | 
 | 463 |     } | 
 | 464 |   } | 
 | 465 | } | 
 | 466 |    | 
 | 467 | function ToggleDisplay(CheckButton, ClassName) { | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 468 |   if (CheckButton.checked) { | 
 | 469 |     SetDisplay(ClassName, ""); | 
 | 470 |   } | 
 | 471 |   else { | 
 | 472 |     SetDisplay(ClassName, "none"); | 
 | 473 |   } | 
 | 474 | } | 
 | 475 | </script> | 
 | 476 | </head> | 
 | 477 | <body> | 
 | 478 | ENDTEXT | 
 | 479 |  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 480 |   if (scalar(@files)) { | 
 | 481 |     # Print out the summary table. | 
 | 482 |     my %Totals; | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 483 |    | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 484 |     for my $row ( @Index ) { | 
 | 485 |       #my $bug_type = lc($row->[1]); | 
 | 486 |       my $bug_type = ($row->[1]); | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 487 |      | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 488 |       if (!defined $Totals{$bug_type}) { $Totals{$bug_type} = 1; } | 
 | 489 |       else { $Totals{$bug_type}++; } | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 490 |     } | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 491 |  | 
 | 492 |     print OUT "<h3>Bug Summary</h3>"; | 
 | 493 |  | 
 | 494 |     if (defined $BuildName) { | 
 | 495 |       print OUT "\n<p>Results in this analysis run are based on analyzer build <b>$BuildName</b>.</p>\n" | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 496 |     } | 
| Ted Kremenek | f4cdf41 | 2008-05-23 18:17:05 +0000 | [diff] [blame] | 497 |    | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 498 | print OUT <<ENDTEXT; | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 499 | <table class="sortable"> | 
 | 500 | <tr> | 
 | 501 |   <td>Bug Type</td> | 
 | 502 |   <td>Quantity</td> | 
| Ted Kremenek | 2645c77 | 2008-07-07 16:58:44 +0000 | [diff] [blame] | 503 |   <td class="sorttable_nosort">Display?</td> | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 504 | </tr> | 
 | 505 | ENDTEXT | 
 | 506 |    | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 507 |     for my $key ( sort { $a cmp $b } keys %Totals ) { | 
 | 508 |       my $x = lc($key); | 
 | 509 |       $x =~ s/[ ,'"]+/_/g; | 
 | 510 |       print OUT "<tr><td>$key</td><td>$Totals{$key}</td><td><input type=\"checkbox\" onClick=\"ToggleDisplay(this,'bt_$x');\" checked/></td></tr>\n"; | 
 | 511 |     } | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 512 |  | 
 | 513 |   # Print out the table of errors. | 
 | 514 |  | 
 | 515 | print OUT <<ENDTEXT; | 
 | 516 | </table> | 
 | 517 | <h3>Reports</h3> | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 518 | <table class="sortable"> | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 519 | <tr> | 
| Ted Kremenek | 88a96d6 | 2008-07-07 17:23:32 +0000 | [diff] [blame] | 520 |   <td class="sorttable_sorted">Bug Type<span id="sorttable_sortfwdind"> ▾</span> | 
| Ted Kremenek | bba1cf5 | 2008-04-03 05:50:51 +0000 | [diff] [blame] | 521 |   <td>File</td> | 
 | 522 |   <td>Line</td> | 
 | 523 |   <td>Path Length</td> | 
| Ted Kremenek | 2645c77 | 2008-07-07 16:58:44 +0000 | [diff] [blame] | 524 |   <td class="sorttable_nosort"></td> | 
| Daniel Dunbar | e43038e | 2008-09-19 23:18:44 +0000 | [diff] [blame^] | 525 |   <td class="sorttable_nosort"></td> | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 526 | </tr> | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 527 | ENDTEXT | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 528 |  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 529 |     my $prefix = GetPrefix(); | 
 | 530 |     my $regex; | 
 | 531 |     my $InFileRegex; | 
 | 532 |     my $InFilePrefix = "File:</td><td>"; | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 533 |    | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 534 |     if (defined $prefix) {  | 
 | 535 |       $regex = qr/^\Q$prefix\E/is;     | 
 | 536 |       $InFileRegex = qr/\Q$InFilePrefix$prefix\E/is; | 
 | 537 |     }     | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 538 |  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 539 |     for my $row ( sort { $a->[1] cmp $b->[1] } @Index ) { | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 540 |      | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 541 |       my $x = lc($row->[1]); | 
 | 542 |       $x =~ s/[ ,'"]+/_/g; | 
| Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 543 |      | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 544 |       print OUT "<tr class=\"bt_$x\">\n"; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 545 |  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 546 |       my $ReportFile = $row->[0]; | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 547 |  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 548 |       print OUT " <td class=\"DESC\">"; | 
 | 549 |       #print OUT lc($row->[1]); | 
 | 550 |       print OUT $row->[1]; | 
 | 551 |       print OUT "</td>\n"; | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 552 |      | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 553 |       # Update the file prefix. | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 554 |      | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 555 |       my $fname = $row->[2]; | 
 | 556 |       if (defined $regex) { | 
 | 557 |         $fname =~ s/$regex//; | 
 | 558 |         UpdateInFilePath("$Dir/$ReportFile", $InFileRegex, $InFilePrefix) | 
 | 559 |       } | 
| Ted Kremenek | 3e56e0b | 2008-05-02 23:40:49 +0000 | [diff] [blame] | 560 |  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 561 |       print OUT "<td>$fname</td>\n"; | 
| Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 562 |  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 563 |       # Print the rest of the columns. | 
 | 564 |       for my $j ( 3 .. $#{$row} ) { | 
 | 565 |         print OUT "<td>$row->[$j]</td>\n" | 
 | 566 |       } | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 567 |  | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 568 |       # Emit the "View" link. | 
 | 569 |       print OUT " <td class=\"View\"><a href=\"$ReportFile#EndPath\">View</a></td>\n"; | 
| Ted Kremenek | 3cea9ee | 2008-07-30 17:58:08 +0000 | [diff] [blame] | 570 |          | 
| Daniel Dunbar | e43038e | 2008-09-19 23:18:44 +0000 | [diff] [blame^] | 571 |       # Emit REPORTBUG markers. | 
 | 572 |       print OUT " <td class=\"ReportBug\"><!-- REPORTBUG id=\"$ReportFile\" --></td>\n"; | 
 | 573 |          | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 574 |       # End the row. | 
 | 575 |       print OUT "</tr>\n"; | 
 | 576 |     } | 
 | 577 |    | 
 | 578 |     print OUT "</table>\n"; | 
 | 579 |   } | 
 | 580 |  | 
 | 581 |   if ($Crashes) { | 
 | 582 |     # Read the crash directory for files. | 
 | 583 |     opendir(DIR, "$Dir/crashes"); | 
 | 584 |     my @files = grep { /[.]info$/ } readdir(DIR); | 
 | 585 |     closedir(DIR); | 
 | 586 |  | 
 | 587 |     if (scalar(@files)) { | 
 | 588 |       print OUT <<ENDTEXT; | 
| Ted Kremenek | 5d31f83 | 2008-08-18 18:38:29 +0000 | [diff] [blame] | 589 | <h3>Analyzer Failures</h3> | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 590 |  | 
| Ted Kremenek | 5d31f83 | 2008-08-18 18:38:29 +0000 | [diff] [blame] | 591 | <p>The analyzer had problems processing the following files:</p> | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 592 |  | 
 | 593 | <table> | 
| Ted Kremenek | 9f9b1fd | 2008-09-12 22:49:36 +0000 | [diff] [blame] | 594 | <thead><tr><td>Problem</td><td>Source File</td><td>Preprocessed File</td><td>STDERR Output</td></tr></thead> | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 595 | ENDTEXT | 
 | 596 |    | 
 | 597 |       foreach my $file (sort @files) { | 
 | 598 |         $file =~ /(.+).info$/; | 
 | 599 |         # Get the preprocessed file. | 
 | 600 |         my $ppfile = $1; | 
 | 601 |         # Open the info file and get the name of the source file. | 
 | 602 |         open (INFO, "$Dir/crashes/$file") or | 
 | 603 |           die "Cannot open $Dir/crashes/$file\n"; | 
 | 604 |         my $srcfile = <INFO>; | 
| Ted Kremenek | 5d31f83 | 2008-08-18 18:38:29 +0000 | [diff] [blame] | 605 |         chomp $srcfile; | 
 | 606 |         my $problem = <INFO>; | 
 | 607 |         chomp $problem; | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 608 |         close (INFO); | 
 | 609 |         # Print the information in the table. | 
| Ted Kremenek | d52e425 | 2008-08-25 20:45:07 +0000 | [diff] [blame] | 610 |         my $prefix = GetPrefix(); | 
| Ted Kremenek | 9f9b1fd | 2008-09-12 22:49:36 +0000 | [diff] [blame] | 611 |         if (defined $prefix) { $srcfile =~ s/^\Q$prefix//; } | 
 | 612 |         print OUT "<tr><td>$problem</td><td>$srcfile</td><td><a href=\"crashes/$ppfile\">$ppfile</a></td><td><a href=\"crashes/$ppfile.stderr.txt\">$ppfile.stderr.txt</a></td></tr>\n"; | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 613 |       } | 
 | 614 |  | 
 | 615 |       print OUT <<ENDTEXT; | 
 | 616 | </table> | 
 | 617 | <p>Please consider submitting preprocessed files as <a href="http://clang.llvm.org/StaticAnalysisUsage.html#filingbugs">bug reports</a>.</p> | 
 | 618 | ENDTEXT | 
 | 619 |     } | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 620 |   } | 
 | 621 |    | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 622 |   print OUT "</body></html>\n";   | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 623 |   close(OUT); | 
| Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 624 |   CopyJS($Dir); | 
| Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 625 |  | 
 | 626 |   # Make sure $Dir and $BaseDir are world readable/executable. | 
 | 627 |   system("chmod", "755", $Dir); | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 628 |   if (defined $BaseDir) { system("chmod", "755", $BaseDir); } | 
| Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 629 |  | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 630 |   my $Num = scalar(@Index); | 
| Ted Kremenek | 150c212 | 2008-07-11 19:15:05 +0000 | [diff] [blame] | 631 |   Diag("$Num bugs found.\n"); | 
 | 632 |   if ($Num > 0 && -r "$Dir/index.html") { | 
 | 633 |     Diag("Open '$Dir/index.html' to examine bug reports.\n"); | 
 | 634 |   } | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 635 |    | 
| Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 636 |   DiagCrashes($Dir) if ($Crashes); | 
 | 637 |    | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 638 |   return $Num; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 639 | } | 
 | 640 |  | 
 | 641 | ##----------------------------------------------------------------------------## | 
| Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 642 | # RunBuildCommand - Run the build command. | 
 | 643 | ##----------------------------------------------------------------------------## | 
 | 644 |  | 
| Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 645 | sub AddIfNotPresent { | 
 | 646 |   my $Args = shift; | 
 | 647 |   my $Arg = shift;   | 
 | 648 |   my $found = 0; | 
 | 649 |    | 
 | 650 |   foreach my $k (@$Args) { | 
 | 651 |     if ($k eq $Arg) { | 
 | 652 |       $found = 1; | 
 | 653 |       last; | 
 | 654 |     } | 
 | 655 |   } | 
 | 656 |    | 
 | 657 |   if ($found == 0) { | 
 | 658 |     push @$Args, $Arg; | 
 | 659 |   } | 
 | 660 | } | 
 | 661 |  | 
| Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 662 | sub RunBuildCommand { | 
 | 663 |    | 
 | 664 |   my $Args = shift; | 
| Ted Kremenek | 7442ca6 | 2008-04-02 16:04:51 +0000 | [diff] [blame] | 665 |   my $IgnoreErrors = shift; | 
| Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 666 |   my $Cmd = $Args->[0]; | 
| Ted Kremenek | 6195c37 | 2008-06-02 21:52:47 +0000 | [diff] [blame] | 667 |   my $CCAnalyzer = shift; | 
| Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 668 |    | 
| Ted Kremenek | 3301cb1 | 2008-06-30 18:18:16 +0000 | [diff] [blame] | 669 |   # Get only the part of the command after the last '/'. | 
 | 670 |   if ($Cmd =~ /\/([^\/]+)$/) { | 
 | 671 |     $Cmd = $1; | 
 | 672 |   } | 
 | 673 |    | 
| Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 674 |   if ($Cmd eq "gcc" or $Cmd eq "cc" or $Cmd eq "llvm-gcc"  | 
 | 675 |    or $Cmd eq "ccc-analyzer") { | 
| Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 676 |     shift @$Args; | 
| Ted Kremenek | 6195c37 | 2008-06-02 21:52:47 +0000 | [diff] [blame] | 677 |     unshift @$Args, $CCAnalyzer; | 
| Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 678 |   } | 
| Ted Kremenek | 7442ca6 | 2008-04-02 16:04:51 +0000 | [diff] [blame] | 679 |   elsif ($IgnoreErrors) { | 
 | 680 |     if ($Cmd eq "make" or $Cmd eq "gmake") { | 
| Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 681 |       AddIfNotPresent($Args,"-k"); | 
| Ted Kremenek | 8912b54 | 2008-05-13 21:28:02 +0000 | [diff] [blame] | 682 |       AddIfNotPresent($Args,"-i"); | 
| Ted Kremenek | 7442ca6 | 2008-04-02 16:04:51 +0000 | [diff] [blame] | 683 |     } | 
 | 684 |     elsif ($Cmd eq "xcodebuild") { | 
| Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 685 |       AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES"); | 
| Ted Kremenek | 7442ca6 | 2008-04-02 16:04:51 +0000 | [diff] [blame] | 686 |     } | 
| Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 687 |   }  | 
 | 688 |    | 
| Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 689 |   if ($Cmd eq "xcodebuild") { | 
| Ted Kremenek | cfd4c7b | 2008-05-23 22:18:16 +0000 | [diff] [blame] | 690 |     # Disable distributed builds for xcodebuild. | 
| Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 691 |     AddIfNotPresent($Args,"-nodistribute"); | 
| Ted Kremenek | cfd4c7b | 2008-05-23 22:18:16 +0000 | [diff] [blame] | 692 |  | 
 | 693 |     # Disable PCH files until clang supports them. | 
 | 694 |     AddIfNotPresent($Args,"GCC_PRECOMPILE_PREFIX_HEADER=NO"); | 
| Ted Kremenek | 915e972 | 2008-05-27 23:18:07 +0000 | [diff] [blame] | 695 |      | 
 | 696 |     # When 'CC' is set, xcodebuild uses it to do all linking, even if we are | 
 | 697 |     # linking C++ object files.  Set 'LDPLUSPLUS' so that xcodebuild uses 'g++' | 
 | 698 |     # when linking such files. | 
| Ted Kremenek | 95aa105 | 2008-09-04 17:52:41 +0000 | [diff] [blame] | 699 |     die if (!defined $CXX); | 
 | 700 |     my $LDPLUSPLUS = `which $CXX`; | 
| Ted Kremenek | 915e972 | 2008-05-27 23:18:07 +0000 | [diff] [blame] | 701 |     $LDPLUSPLUS =~ s/\015?\012//;  # strip newlines | 
 | 702 |     $ENV{'LDPLUSPLUS'} = $LDPLUSPLUS;     | 
| Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 703 |   } | 
| Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 704 |    | 
| Ted Kremenek | 5a4ddaf | 2008-08-25 20:10:45 +0000 | [diff] [blame] | 705 |   return (system(@$Args) >> 8); | 
| Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 706 | } | 
 | 707 |  | 
| Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 708 | ##----------------------------------------------------------------------------## | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 709 | # DisplayHelp - Utility function to display all help options. | 
 | 710 | ##----------------------------------------------------------------------------## | 
 | 711 |  | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 712 | sub DisplayHelp { | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 713 |    | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 714 | print <<ENDTEXT; | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 715 | USAGE: $Prog [options] <build command> [build options] | 
| Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 716 |  | 
| Ted Kremenek | f4cdf41 | 2008-05-23 18:17:05 +0000 | [diff] [blame] | 717 | ENDTEXT | 
 | 718 |  | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 719 |   if (defined $BuildName) { | 
| Ted Kremenek | f4cdf41 | 2008-05-23 18:17:05 +0000 | [diff] [blame] | 720 |     print "ANALYZER BUILD: $BuildName ($BuildDate)\n\n"; | 
 | 721 |   } | 
 | 722 |  | 
 | 723 | print <<ENDTEXT; | 
| Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 724 | OPTIONS: | 
 | 725 |  | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 726 |  -o             - Target directory for HTML report files.  Subdirectories | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 727 |                   will be created as needed to represent separate "runs" of | 
| Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 728 |                   the analyzer.  If this option is not specified, a directory | 
 | 729 |                   is created in /tmp to store the reports. | 
| Ted Kremenek | 1262fc4 | 2008-05-14 20:10:33 +0000 | [diff] [blame] | 730 |  | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 731 |  -h             - Display this message. | 
 | 732 |  --help | 
| Ted Kremenek | 1262fc4 | 2008-05-14 20:10:33 +0000 | [diff] [blame] | 733 |  | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 734 |  -k             - Add a "keep on going" option to the specified build command. | 
 | 735 |  --keep-going     This option currently supports make and xcodebuild. | 
| Ted Kremenek | f02e8db | 2008-04-02 16:41:25 +0000 | [diff] [blame] | 736 |                   This is a convenience option; one can specify this | 
 | 737 |                   behavior directly using build options. | 
| Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 738 |  | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 739 |  --status-bugs  - By default, the exit status of $Prog is the same as the | 
 | 740 |                   executed build command.  Specifying this option causes the | 
 | 741 |                   exit status of $Prog to be 1 if it found potential bugs | 
 | 742 |                   and 0 otherwise. | 
| Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 743 |  | 
| Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 744 |  --use-cc [compiler path]   - By default, $Prog uses 'gcc' to compile and link | 
 | 745 |  --use-cc=[compiler path]     your C and Objective-C code. Use this option | 
 | 746 |                               to specify an alternate compiler. | 
 | 747 |  | 
 | 748 |  --use-c++ [compiler path]  - By default, $Prog uses 'g++' to compile and link | 
 | 749 |  --use-c++=[compiler path]    your C++ and Objective-C++ code. Use this option | 
 | 750 |                               to specify an alternate compiler. | 
| Ted Kremenek | f17ef3c | 2008-08-21 21:47:09 +0000 | [diff] [blame] | 751 |  | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 752 |  -v             - Verbose output from $Prog and the analyzer. | 
| Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 753 |                   A second and third '-v' increases verbosity. | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 754 |  | 
 | 755 |  -V             - View analysis results in a web browser when the build | 
 | 756 |  --view           completes. | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 757 |  | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 758 |  | 
| Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 759 | AVAILABLE ANALYSES (multiple analyses may be specified): | 
| Ted Kremenek | d52e425 | 2008-08-25 20:45:07 +0000 | [diff] [blame] | 760 |  | 
 | 761 | ENDTEXT | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 762 |  | 
 | 763 |   foreach my $Analysis (sort keys %AvailableAnalyses) { | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 764 |     if (defined $AnalysesDefaultEnabled{$Analysis}) { | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 765 |       print " (+)"; | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 766 |     } | 
 | 767 |     else { | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 768 |       print "    "; | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 769 |     } | 
 | 770 |      | 
 | 771 |     print " $Analysis  $AvailableAnalyses{$Analysis}\n"; | 
 | 772 |   } | 
 | 773 |    | 
 | 774 | print <<ENDTEXT | 
 | 775 |  | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 776 |  NOTE: "(+)" indicates that an analysis is enabled by default unless one | 
 | 777 |        or more analysis options are specified | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 778 |  | 
| Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 779 | BUILD OPTIONS | 
 | 780 |  | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 781 |  You can specify any build option acceptable to the build command. | 
| Ted Kremenek | 39eefde | 2008-04-02 16:47:27 +0000 | [diff] [blame] | 782 |  | 
| Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 783 | EXAMPLE | 
| Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 784 |  | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 785 |  $Prog -o /tmp/myhtmldir make -j4 | 
| Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 786 |       | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 787 |  The above example causes analysis reports to be deposited into | 
 | 788 |  a subdirectory of "/tmp/myhtmldir" and to run "make" with the "-j4" option. | 
 | 789 |  A different subdirectory is created each time $Prog analyzes a project. | 
 | 790 |  The analyzer should support most parallel builds, but not distributed builds. | 
| Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 791 |  | 
 | 792 | ENDTEXT | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 793 | } | 
 | 794 |  | 
 | 795 | ##----------------------------------------------------------------------------## | 
 | 796 | # Process command-line arguments. | 
 | 797 | ##----------------------------------------------------------------------------## | 
 | 798 |  | 
 | 799 | my $HtmlDir;           # Parent directory to store HTML files. | 
 | 800 | my $IgnoreErrors = 0;  # Ignore build errors. | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 801 | my $ViewResults  = 0;  # View results when the build terminates. | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 802 | my $ExitStatusFoundBugs = 0; # Exit status reflects whether bugs were found | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 803 | my @AnalysesToRun; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 804 |  | 
 | 805 | if (!@ARGV) { | 
 | 806 |   DisplayHelp(); | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 807 |   exit 1; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 808 | } | 
 | 809 |  | 
 | 810 | while (@ARGV) { | 
 | 811 |    | 
 | 812 |   # Scan for options we recognize. | 
 | 813 |    | 
 | 814 |   my $arg = $ARGV[0]; | 
 | 815 |  | 
| Sam Bishop | 2f2418e | 2008-04-03 14:29:47 +0000 | [diff] [blame] | 816 |   if ($arg eq "-h" or $arg eq "--help") { | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 817 |     DisplayHelp(); | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 818 |     exit 0; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 819 |   } | 
 | 820 |    | 
| Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 821 |   if (defined $AvailableAnalyses{$arg}) { | 
| Ted Kremenek | 1262fc4 | 2008-05-14 20:10:33 +0000 | [diff] [blame] | 822 |     shift @ARGV; | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 823 |     push @AnalysesToRun, $arg; | 
| Ted Kremenek | 1262fc4 | 2008-05-14 20:10:33 +0000 | [diff] [blame] | 824 |     next; | 
 | 825 |   } | 
 | 826 |    | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 827 |   if ($arg eq "-o") { | 
 | 828 |     shift @ARGV; | 
 | 829 |          | 
 | 830 |     if (!@ARGV) { | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 831 |       DieDiag("'-o' option requires a target directory name.\n"); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 832 |     } | 
 | 833 |      | 
 | 834 |     $HtmlDir = shift @ARGV; | 
 | 835 |     next; | 
 | 836 |   } | 
 | 837 |    | 
| Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 838 |   if ($arg eq "-k" or $arg eq "--keep-going") { | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 839 |     shift @ARGV; | 
 | 840 |     $IgnoreErrors = 1; | 
 | 841 |     next; | 
 | 842 |   } | 
 | 843 |    | 
| Ted Kremenek | f17ef3c | 2008-08-21 21:47:09 +0000 | [diff] [blame] | 844 |   if ($arg =~ /^--use-cc(=(.+))?$/) { | 
 | 845 |     shift @ARGV; | 
 | 846 |     my $cc; | 
 | 847 |      | 
 | 848 |     if ($2 eq "") { | 
 | 849 |       if (!@ARGV) { | 
 | 850 |         DieDiag("'--use-cc' option requires a compiler executable name.\n"); | 
 | 851 |       } | 
 | 852 |       $cc = shift @ARGV; | 
 | 853 |     } | 
 | 854 |     else { | 
 | 855 |       $cc = $2; | 
 | 856 |     } | 
 | 857 |      | 
 | 858 |     $ENV{"CCC_CC"} = $cc; | 
 | 859 |     next; | 
 | 860 |   } | 
 | 861 |    | 
| Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 862 |   if ($arg =~ /^--use-c[+][+](=(.+))?$/) { | 
 | 863 |     shift @ARGV; | 
 | 864 |      | 
 | 865 |     if ($2 eq "") { | 
 | 866 |       if (!@ARGV) { | 
 | 867 |         DieDiag("'--use-c++' option requires a compiler executable name.\n"); | 
 | 868 |       } | 
 | 869 |       $CXX = shift @ARGV; | 
 | 870 |     } | 
 | 871 |     else { | 
 | 872 |       $CXX = $2; | 
 | 873 |     } | 
 | 874 |     next; | 
 | 875 |   } | 
 | 876 |    | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 877 |   if ($arg eq "-v") { | 
 | 878 |     shift @ARGV; | 
 | 879 |     $Verbose++; | 
 | 880 |     next; | 
 | 881 |   } | 
 | 882 |    | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 883 |   if ($arg eq "-V" or $arg eq "--view") { | 
 | 884 |     shift @ARGV; | 
 | 885 |     $ViewResults = 1;     | 
 | 886 |     next; | 
 | 887 |   } | 
 | 888 |    | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 889 |   if ($arg eq "--status-bugs") { | 
 | 890 |     shift @ARGV; | 
 | 891 |     $ExitStatusFoundBugs = 1; | 
 | 892 |     next; | 
 | 893 |   } | 
 | 894 |    | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 895 |   DieDiag("unrecognized option '$arg'\n") if ($arg =~ /^-/); | 
| Ted Kremenek | 0062ad4 | 2008-04-02 16:35:01 +0000 | [diff] [blame] | 896 |    | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 897 |   last; | 
 | 898 | } | 
 | 899 |  | 
 | 900 | if (!@ARGV) { | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 901 |   Diag("No build command specified.\n\n"); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 902 |   DisplayHelp(); | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 903 |   exit 1; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 904 | } | 
 | 905 |  | 
| Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 906 |  | 
 | 907 |  | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 908 | # Determine the output directory for the HTML reports. | 
| Ted Kremenek | 684bb09 | 2008-04-18 15:18:20 +0000 | [diff] [blame] | 909 | my $BaseDir = $HtmlDir; | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 910 | $HtmlDir = GetHTMLRunDir($HtmlDir); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 911 |  | 
 | 912 | # Set the appropriate environment variables. | 
| Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 913 | SetHtmlEnv(\@ARGV, $HtmlDir); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 914 |  | 
| Ted Kremenek | 0b6c153 | 2008-04-08 20:22:12 +0000 | [diff] [blame] | 915 | my $Cmd = "$RealBin/ccc-analyzer"; | 
 | 916 |  | 
| Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 917 | DieDiag("Executable 'ccc-analyzer' does not exist at '$Cmd'\n") | 
| Ted Kremenek | 0b6c153 | 2008-04-08 20:22:12 +0000 | [diff] [blame] | 918 |   if (! -x $Cmd); | 
| Ted Kremenek | f22eacb | 2008-04-18 22:00:56 +0000 | [diff] [blame] | 919 |  | 
| Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 920 | if (! -x $ClangSB) { | 
 | 921 |   Diag("'clang' executable not found in '$RealBin'.\n"); | 
 | 922 |   Diag("Using 'clang' from path.\n"); | 
| Ted Kremenek | f22eacb | 2008-04-18 22:00:56 +0000 | [diff] [blame] | 923 | } | 
| Ted Kremenek | 0b6c153 | 2008-04-08 20:22:12 +0000 | [diff] [blame] | 924 |  | 
| Ted Kremenek | 95aa105 | 2008-09-04 17:52:41 +0000 | [diff] [blame] | 925 | if (defined $CXX) { | 
 | 926 |   $ENV{'CXX'} = $CXX; | 
 | 927 | } | 
 | 928 | else { | 
 | 929 |   $CXX = 'g++';  # This variable is used by other parts of scan-build | 
 | 930 |                  # that need to know a default C++ compiler to fall back to. | 
 | 931 | } | 
 | 932 |    | 
| Ted Kremenek | 4f4b17d | 2008-04-03 20:08:18 +0000 | [diff] [blame] | 933 | $ENV{'CC'} = $Cmd; | 
| Ted Kremenek | f22eacb | 2008-04-18 22:00:56 +0000 | [diff] [blame] | 934 | $ENV{'CLANG'} = $Clang; | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 935 |  | 
 | 936 | if ($Verbose >= 2) { | 
 | 937 |   $ENV{'CCC_ANALYZER_VERBOSE'} = 1; | 
 | 938 | } | 
 | 939 |  | 
| Ted Kremenek | a9525c9 | 2008-05-12 22:07:14 +0000 | [diff] [blame] | 940 | if ($Verbose >= 3) { | 
 | 941 |   $ENV{'CCC_ANALYZER_LOG'} = 1; | 
 | 942 | } | 
 | 943 |  | 
| Ted Kremenek | 9012599 | 2008-07-15 23:41:32 +0000 | [diff] [blame] | 944 | if (scalar(@AnalysesToRun) == 0) { | 
 | 945 |   foreach my $key (keys %AnalysesDefaultEnabled) { | 
 | 946 |     push @AnalysesToRun,$key; | 
 | 947 |   } | 
| Ted Kremenek | 0100678 | 2008-07-02 23:16:10 +0000 | [diff] [blame] | 948 | } | 
| Ted Kremenek | 1262fc4 | 2008-05-14 20:10:33 +0000 | [diff] [blame] | 949 |  | 
| Ted Kremenek | 9012599 | 2008-07-15 23:41:32 +0000 | [diff] [blame] | 950 | $ENV{'CCC_ANALYZER_ANALYSIS'} = join ' ',@AnalysesToRun; | 
 | 951 |  | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 952 | # Run the build. | 
| Ted Kremenek | 5656a98 | 2008-07-15 17:09:28 +0000 | [diff] [blame] | 953 | my $ExitStatus = RunBuildCommand(\@ARGV, $IgnoreErrors, $Cmd); | 
| Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 954 |  | 
 | 955 | # Postprocess the HTML directory. | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 956 | my $NumBugs = Postprocess($HtmlDir, $BaseDir); | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 957 |  | 
 | 958 | if ($ViewResults and -r "$HtmlDir/index.html") { | 
 | 959 |   # Only works on Mac OS X (for now). | 
 | 960 |   print "Viewing analysis results: '$HtmlDir/index.html'\n"; | 
| Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 961 |   system("open", "$HtmlDir/index.html"); | 
| Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 962 | } | 
| Ted Kremenek | 5656a98 | 2008-07-15 17:09:28 +0000 | [diff] [blame] | 963 |  | 
| Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 964 | if ($ExitStatusFoundBugs) { | 
 | 965 |   exit 1 if ($NumBugs > 0); | 
 | 966 |   exit 0; | 
 | 967 | } | 
 | 968 |  | 
| Ted Kremenek | 5656a98 | 2008-07-15 17:09:28 +0000 | [diff] [blame] | 969 | exit $ExitStatus; | 
 | 970 |  |