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 | cd25c13 | 2008-12-03 19:50:37 +0000 | [diff] [blame] | 22 | use Cwd qw/ getcwd abs_path /; |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 23 | use Sys::Hostname; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 24 | |
| 25 | my $Verbose = 0; # Verbose output from this script. |
| 26 | my $Prog = "scan-build"; |
Ted Kremenek | f4cdf41 | 2008-05-23 18:17:05 +0000 | [diff] [blame] | 27 | my $BuildName; |
| 28 | my $BuildDate; |
Ted Kremenek | 95aa105 | 2008-09-04 17:52:41 +0000 | [diff] [blame] | 29 | my $CXX; # Leave undefined initially. |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 30 | |
Ted Kremenek | 0e68938 | 2008-09-11 18:17:51 +0000 | [diff] [blame] | 31 | my $TERM = $ENV{'TERM'}; |
| 32 | my $UseColor = (defined $TERM and $TERM eq 'xterm-color' and -t STDOUT |
| 33 | and defined $ENV{'SCAN_BUILD_COLOR'}); |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 34 | |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 35 | my $UserName = HtmlEscape(getpwuid($<) || 'unknown'); |
| 36 | my $HostName = HtmlEscape(hostname() || 'unknown'); |
| 37 | my $CurrentDir = HtmlEscape(getcwd()); |
| 38 | my $CurrentDirSuffix = basename($CurrentDir); |
| 39 | |
| 40 | my $CmdArgs; |
| 41 | |
| 42 | my $HtmlTitle; |
| 43 | |
| 44 | my $Date = localtime(); |
| 45 | |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 46 | ##----------------------------------------------------------------------------## |
| 47 | # Diagnostics |
| 48 | ##----------------------------------------------------------------------------## |
| 49 | |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 50 | sub Diag { |
| 51 | if ($UseColor) { |
| 52 | print BOLD, MAGENTA "$Prog: @_"; |
| 53 | print RESET; |
| 54 | } |
| 55 | else { |
| 56 | print "$Prog: @_"; |
| 57 | } |
| 58 | } |
| 59 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 60 | sub DiagCrashes { |
| 61 | my $Dir = shift; |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 62 | Diag ("The analyzer encountered problems on some source files.\n"); |
| 63 | Diag ("Preprocessed versions of these sources were deposited in '$Dir/failures'.\n"); |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 64 | Diag ("Please consider submitting a bug report using these files:\n"); |
| 65 | Diag (" http://clang.llvm.org/StaticAnalysisUsage.html#filingbugs\n") |
| 66 | } |
| 67 | |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 68 | sub DieDiag { |
| 69 | if ($UseColor) { |
| 70 | print BOLD, RED "$Prog: "; |
| 71 | print RESET, RED @_; |
| 72 | print RESET; |
| 73 | } |
| 74 | else { |
| 75 | print "$Prog: ", @_; |
| 76 | } |
| 77 | exit(0); |
| 78 | } |
| 79 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 80 | ##----------------------------------------------------------------------------## |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 81 | # Some initial preprocessing of Clang options. |
| 82 | ##----------------------------------------------------------------------------## |
| 83 | |
Ted Kremenek | 833da02 | 2009-03-29 00:31:32 +0000 | [diff] [blame] | 84 | # First, look for 'clang-cc' in libexec. |
Ted Kremenek | fd9df0e | 2009-05-09 19:19:28 +0000 | [diff] [blame] | 85 | my $ClangCCSB = Cwd::realpath("$RealBin/libexec/clang-cc"); |
Ted Kremenek | 833da02 | 2009-03-29 00:31:32 +0000 | [diff] [blame] | 86 | # Second, look for 'clang-cc' in the same directory as scan-build. |
Ted Kremenek | fd9df0e | 2009-05-09 19:19:28 +0000 | [diff] [blame] | 87 | if (!defined $ClangCCSB || ! -x $ClangCCSB) { |
| 88 | $ClangCCSB = Cwd::realpath("$RealBin/clang-cc"); |
Ted Kremenek | 43b7bd3 | 2009-03-09 23:14:38 +0000 | [diff] [blame] | 89 | } |
Ted Kremenek | 833da02 | 2009-03-29 00:31:32 +0000 | [diff] [blame] | 90 | # Third, look for 'clang-cc' in ../libexec |
Ted Kremenek | fd9df0e | 2009-05-09 19:19:28 +0000 | [diff] [blame] | 91 | if (!defined $ClangCCSB || ! -x $ClangCCSB) { |
| 92 | $ClangCCSB = Cwd::realpath("$RealBin/../libexec/clang-cc"); |
| 93 | } |
| 94 | # Finally, default to looking for 'clang-cc' in the path. |
| 95 | if (!defined $ClangCCSB || ! -x $ClangCCSB) { |
| 96 | $ClangCCSB = "clang-cc"; |
| 97 | } |
| 98 | my $ClangCC = $ClangCCSB; |
| 99 | |
| 100 | # Now find 'clang' |
| 101 | my $ClangSB = Cwd::realpath("$RealBin/bin/clang"); |
Ted Kremenek | 8d10cdd | 2009-02-20 04:34:29 +0000 | [diff] [blame] | 102 | if (!defined $ClangSB || ! -x $ClangSB) { |
Ted Kremenek | fd9df0e | 2009-05-09 19:19:28 +0000 | [diff] [blame] | 103 | $ClangSB = Cwd::realpath("$RealBin/clang"); |
| 104 | } |
| 105 | # Third, look for 'clang' in ../bin |
| 106 | if (!defined $ClangSB || ! -x $ClangSB) { |
| 107 | $ClangSB = Cwd::realpath("$RealBin/../bin/clang"); |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 108 | } |
Ted Kremenek | 833da02 | 2009-03-29 00:31:32 +0000 | [diff] [blame] | 109 | # Finally, default to looking for 'clang-cc' in the path. |
| 110 | if (!defined $ClangSB || ! -x $ClangSB) { |
Ted Kremenek | fd9df0e | 2009-05-09 19:19:28 +0000 | [diff] [blame] | 111 | $ClangSB = "clang"; |
Ted Kremenek | 833da02 | 2009-03-29 00:31:32 +0000 | [diff] [blame] | 112 | } |
| 113 | my $Clang = $ClangSB; |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 114 | |
Ted Kremenek | fd9df0e | 2009-05-09 19:19:28 +0000 | [diff] [blame] | 115 | |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 116 | my %AvailableAnalyses; |
| 117 | |
| 118 | # Query clang for analysis options. |
Ted Kremenek | fd9df0e | 2009-05-09 19:19:28 +0000 | [diff] [blame] | 119 | open(PIPE, "-|", $ClangCC, "--help") or |
| 120 | DieDiag("Cannot execute '$ClangCC'\n"); |
Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 121 | |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 122 | my $FoundAnalysis = 0; |
| 123 | |
| 124 | while(<PIPE>) { |
| 125 | if ($FoundAnalysis == 0) { |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 126 | if (/Checks and Analyses/) { |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 127 | $FoundAnalysis = 1; |
| 128 | } |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 129 | next; |
| 130 | } |
| 131 | |
| 132 | if (/^\s\s\s\s([^\s]+)\s(.+)$/) { |
| 133 | next if ($1 =~ /-dump/ or $1 =~ /-view/ |
| 134 | or $1 =~ /-checker-simple/ or $1 =~ /-warn-uninit/); |
| 135 | |
| 136 | $AvailableAnalyses{$1} = $2; |
| 137 | next; |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 138 | } |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 139 | last; |
| 140 | } |
| 141 | |
| 142 | close (PIPE); |
| 143 | |
| 144 | my %AnalysesDefaultEnabled = ( |
| 145 | '-warn-dead-stores' => 1, |
| 146 | '-checker-cfref' => 1, |
Ted Kremenek | 9012599 | 2008-07-15 23:41:32 +0000 | [diff] [blame] | 147 | '-warn-objc-methodsigs' => 1, |
Ted Kremenek | d76c6a3 | 2009-02-25 21:08:30 +0000 | [diff] [blame] | 148 | # Do not enable the missing -dealloc check by default. |
| 149 | # '-warn-objc-missing-dealloc' => 1, |
Ted Kremenek | 5d44349 | 2008-09-18 06:34:16 +0000 | [diff] [blame] | 150 | '-warn-objc-unused-ivars' => 1, |
Ted Kremenek | 3a92d6d | 2009-07-24 02:52:07 +0000 | [diff] [blame] | 151 | '-warn-security-syntactic' => 1 |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 152 | ); |
| 153 | |
| 154 | ##----------------------------------------------------------------------------## |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 155 | # GetHTMLRunDir - Construct an HTML directory name for the current sub-run. |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 156 | ##----------------------------------------------------------------------------## |
| 157 | |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 158 | sub GetHTMLRunDir { |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 159 | |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 160 | die "Not enough arguments." if (@_ == 0); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 161 | my $Dir = shift @_; |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 162 | |
| 163 | my $TmpMode = 0; |
| 164 | if (!defined $Dir) { |
Ted Kremenek | ffda0b4 | 2008-10-31 05:48:42 +0000 | [diff] [blame] | 165 | if (`uname` =~ /Darwin/) { |
| 166 | $Dir = $ENV{'TMPDIR'}; |
| 167 | if (!defined $Dir) { $Dir = "/tmp"; } |
| 168 | } |
| 169 | else { |
| 170 | $Dir = "/tmp"; |
| 171 | } |
| 172 | |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 173 | $TmpMode = 1; |
| 174 | } |
Ted Kremenek | bf762c9 | 2009-02-24 02:38:02 +0000 | [diff] [blame] | 175 | |
| 176 | # Chop off any trailing '/' characters. |
| 177 | while ($Dir =~ /\/$/) { chop $Dir; } |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 178 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 179 | # Get current date and time. |
| 180 | |
| 181 | my @CurrentTime = localtime(); |
| 182 | |
| 183 | my $year = $CurrentTime[5] + 1900; |
| 184 | my $day = $CurrentTime[3]; |
| 185 | my $month = $CurrentTime[4] + 1; |
| 186 | |
Ted Kremenek | 9d7405f | 2008-05-14 17:23:56 +0000 | [diff] [blame] | 187 | my $DateString = sprintf("%d-%02d-%02d", $year, $month, $day); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 188 | |
| 189 | # Determine the run number. |
| 190 | |
| 191 | my $RunNumber; |
| 192 | |
| 193 | if (-d $Dir) { |
| 194 | |
| 195 | if (! -r $Dir) { |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 196 | DieDiag("directory '$Dir' exists but is not readable.\n"); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | # Iterate over all files in the specified directory. |
| 200 | |
| 201 | my $max = 0; |
| 202 | |
| 203 | opendir(DIR, $Dir); |
Ted Kremenek | 29da6c5 | 2008-08-07 17:57:34 +0000 | [diff] [blame] | 204 | my @FILES = grep { -d "$Dir/$_" } readdir(DIR); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 205 | closedir(DIR); |
| 206 | |
| 207 | foreach my $f (@FILES) { |
| 208 | |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 209 | # Strip the prefix '$Prog-' if we are dumping files to /tmp. |
| 210 | if ($TmpMode) { |
| 211 | next if (!($f =~ /^$Prog-(.+)/)); |
| 212 | $f = $1; |
| 213 | } |
| 214 | |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 215 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 216 | my @x = split/-/, $f; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 217 | next if (scalar(@x) != 4); |
| 218 | next if ($x[0] != $year); |
| 219 | next if ($x[1] != $month); |
| 220 | next if ($x[2] != $day); |
| 221 | |
| 222 | if ($x[3] > $max) { |
| 223 | $max = $x[3]; |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | $RunNumber = $max + 1; |
| 228 | } |
| 229 | else { |
| 230 | |
| 231 | if (-x $Dir) { |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 232 | DieDiag("'$Dir' exists but is not a directory.\n"); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 233 | } |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 234 | |
| 235 | if ($TmpMode) { |
Ted Kremenek | 445fa77 | 2008-10-10 00:17:08 +0000 | [diff] [blame] | 236 | DieDiag("The directory '/tmp' does not exist or cannot be accessed.\n"); |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 237 | } |
| 238 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 239 | # $Dir does not exist. It will be automatically created by the |
| 240 | # clang driver. Set the run number to 1. |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 241 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 242 | $RunNumber = 1; |
| 243 | } |
| 244 | |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 245 | die "RunNumber must be defined!" if (!defined $RunNumber); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 246 | |
| 247 | # Append the run number. |
Ted Kremenek | fc0898a | 2008-09-04 23:56:36 +0000 | [diff] [blame] | 248 | my $NewDir; |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 249 | if ($TmpMode) { |
Ted Kremenek | fc0898a | 2008-09-04 23:56:36 +0000 | [diff] [blame] | 250 | $NewDir = "$Dir/$Prog-$DateString-$RunNumber"; |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 251 | } |
| 252 | else { |
Ted Kremenek | fc0898a | 2008-09-04 23:56:36 +0000 | [diff] [blame] | 253 | $NewDir = "$Dir/$DateString-$RunNumber"; |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 254 | } |
Ted Kremenek | fc0898a | 2008-09-04 23:56:36 +0000 | [diff] [blame] | 255 | system 'mkdir','-p',$NewDir; |
| 256 | return $NewDir; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 257 | } |
| 258 | |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 259 | sub SetHtmlEnv { |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 260 | |
| 261 | die "Wrong number of arguments." if (scalar(@_) != 2); |
| 262 | |
| 263 | my $Args = shift; |
| 264 | my $Dir = shift; |
| 265 | |
| 266 | die "No build command." if (scalar(@$Args) == 0); |
| 267 | |
| 268 | my $Cmd = $$Args[0]; |
| 269 | |
| 270 | if ($Cmd =~ /configure/) { |
| 271 | return; |
| 272 | } |
| 273 | |
| 274 | if ($Verbose) { |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 275 | Diag("Emitting reports for this run to '$Dir'.\n"); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | $ENV{'CCC_ANALYZER_HTML'} = $Dir; |
| 279 | } |
| 280 | |
| 281 | ##----------------------------------------------------------------------------## |
Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 282 | # ComputeDigest - Compute a digest of the specified file. |
| 283 | ##----------------------------------------------------------------------------## |
| 284 | |
| 285 | sub ComputeDigest { |
| 286 | my $FName = shift; |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 287 | DieDiag("Cannot read $FName to compute Digest.\n") if (! -r $FName); |
Ted Kremenek | a6e2481 | 2008-04-19 18:05:48 +0000 | [diff] [blame] | 288 | |
| 289 | # 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] | 290 | # just looking for duplicate files that come from a non-malicious source. |
| 291 | # 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] | 292 | # come bundled on most systems. |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 293 | open(FILE, $FName) or DieDiag("Cannot open $FName when computing Digest.\n"); |
Ted Kremenek | a6e2481 | 2008-04-19 18:05:48 +0000 | [diff] [blame] | 294 | binmode FILE; |
| 295 | my $Result = Digest::MD5->new->addfile(*FILE)->hexdigest; |
| 296 | close(FILE); |
| 297 | |
Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 298 | # Return the digest. |
Ted Kremenek | a6e2481 | 2008-04-19 18:05:48 +0000 | [diff] [blame] | 299 | return $Result; |
Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | ##----------------------------------------------------------------------------## |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 303 | # UpdatePrefix - Compute the common prefix of files. |
| 304 | ##----------------------------------------------------------------------------## |
| 305 | |
| 306 | my $Prefix; |
| 307 | |
| 308 | sub UpdatePrefix { |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 309 | my $x = shift; |
| 310 | my $y = basename($x); |
| 311 | $x =~ s/\Q$y\E$//; |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 312 | |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 313 | if (!defined $Prefix) { |
| 314 | $Prefix = $x; |
| 315 | return; |
| 316 | } |
| 317 | |
Ted Kremenek | 20b2bae | 2008-09-11 21:15:10 +0000 | [diff] [blame] | 318 | chop $Prefix while (!($x =~ /^\Q$Prefix/)); |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | sub GetPrefix { |
| 322 | return $Prefix; |
| 323 | } |
| 324 | |
| 325 | ##----------------------------------------------------------------------------## |
| 326 | # UpdateInFilePath - Update the path in the report file. |
| 327 | ##----------------------------------------------------------------------------## |
| 328 | |
| 329 | sub UpdateInFilePath { |
| 330 | my $fname = shift; |
| 331 | my $regex = shift; |
| 332 | my $newtext = shift; |
Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 333 | |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 334 | open (RIN, $fname) or die "cannot open $fname"; |
Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 335 | open (ROUT, ">", "$fname.tmp") or die "cannot open $fname.tmp"; |
| 336 | |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 337 | while (<RIN>) { |
| 338 | s/$regex/$newtext/; |
| 339 | print ROUT $_; |
| 340 | } |
Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 341 | |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 342 | close (ROUT); |
| 343 | close (RIN); |
Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 344 | system("mv", "$fname.tmp", $fname); |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | ##----------------------------------------------------------------------------## |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 348 | # ScanFile - Scan a report file for various identifying attributes. |
| 349 | ##----------------------------------------------------------------------------## |
| 350 | |
Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 351 | # Sometimes a source file is scanned more than once, and thus produces |
| 352 | # multiple error reports. We use a cache to solve this problem. |
| 353 | |
| 354 | my %AlreadyScanned; |
| 355 | |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 356 | sub ScanFile { |
| 357 | |
| 358 | my $Index = shift; |
| 359 | my $Dir = shift; |
| 360 | my $FName = shift; |
| 361 | |
Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 362 | # Compute a digest for the report file. Determine if we have already |
| 363 | # scanned a file that looks just like it. |
| 364 | |
| 365 | my $digest = ComputeDigest("$Dir/$FName"); |
| 366 | |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 367 | if (defined $AlreadyScanned{$digest}) { |
Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 368 | # Redundant file. Remove it. |
Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 369 | system ("rm", "-f", "$Dir/$FName"); |
Ted Kremenek | 57cf446 | 2008-04-18 15:09:30 +0000 | [diff] [blame] | 370 | return; |
| 371 | } |
| 372 | |
| 373 | $AlreadyScanned{$digest} = 1; |
| 374 | |
Ted Kremenek | 809709f | 2008-04-18 16:58:34 +0000 | [diff] [blame] | 375 | # 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] | 376 | system ("chmod", "644", "$Dir/$FName"); |
Ted Kremenek | 684bb09 | 2008-04-18 15:18:20 +0000 | [diff] [blame] | 377 | |
| 378 | # Scan the report file for tags. |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 379 | open(IN, "$Dir/$FName") or DieDiag("Cannot open '$Dir/$FName'\n"); |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 380 | |
Ted Kremenek | a26ddab | 2009-01-27 01:53:39 +0000 | [diff] [blame] | 381 | my $BugType = ""; |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 382 | my $BugFile = ""; |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 383 | my $BugCategory; |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 384 | my $BugPathLength = 1; |
| 385 | my $BugLine = 0; |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 386 | |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 387 | while (<IN>) { |
Ted Kremenek | d658e67 | 2009-08-03 23:45:27 +0000 | [diff] [blame] | 388 | last if (/<!-- BUGMETAEND -->/); |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 389 | |
Ted Kremenek | a26ddab | 2009-01-27 01:53:39 +0000 | [diff] [blame] | 390 | if (/<!-- BUGTYPE (.*) -->$/) { |
| 391 | $BugType = $1; |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 392 | } |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 393 | elsif (/<!-- BUGFILE (.*) -->$/) { |
Ted Kremenek | 990c2f4 | 2008-12-03 19:19:23 +0000 | [diff] [blame] | 394 | $BugFile = abs_path($1); |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 395 | UpdatePrefix($BugFile); |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 396 | } |
| 397 | elsif (/<!-- BUGPATHLENGTH (.*) -->$/) { |
| 398 | $BugPathLength = $1; |
| 399 | } |
| 400 | elsif (/<!-- BUGLINE (.*) -->$/) { |
| 401 | $BugLine = $1; |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 402 | } |
| 403 | elsif (/<!-- BUGCATEGORY (.*) -->$/) { |
| 404 | $BugCategory = $1; |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 405 | } |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | close(IN); |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 409 | |
| 410 | if (!defined $BugCategory) { |
| 411 | $BugCategory = "Other"; |
| 412 | } |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 413 | |
Ted Kremenek | a26ddab | 2009-01-27 01:53:39 +0000 | [diff] [blame] | 414 | push @$Index,[ $FName, $BugCategory, $BugType, $BugFile, $BugLine, |
Ted Kremenek | 8198311 | 2008-09-28 04:13:09 +0000 | [diff] [blame] | 415 | $BugPathLength ]; |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | ##----------------------------------------------------------------------------## |
Ted Kremenek | 3ce1207 | 2008-09-22 17:50:47 +0000 | [diff] [blame] | 419 | # CopyFiles - Copy resource files to target directory. |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 420 | ##----------------------------------------------------------------------------## |
| 421 | |
Ted Kremenek | 3ce1207 | 2008-09-22 17:50:47 +0000 | [diff] [blame] | 422 | sub CopyFiles { |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 423 | |
| 424 | my $Dir = shift; |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 425 | |
| 426 | my $JS = Cwd::realpath("$RealBin/sorttable.js"); |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 427 | |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 428 | DieDiag("Cannot find 'sorttable.js'.\n") |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 429 | if (! -r $JS); |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 430 | |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 431 | system ("cp", $JS, "$Dir"); |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 432 | |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 433 | DieDiag("Could not copy 'sorttable.js' to '$Dir'.\n") |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 434 | if (! -r "$Dir/sorttable.js"); |
Ted Kremenek | 3ce1207 | 2008-09-22 17:50:47 +0000 | [diff] [blame] | 435 | |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 436 | my $CSS = Cwd::realpath("$RealBin/scanview.css"); |
| 437 | |
Ted Kremenek | 3ce1207 | 2008-09-22 17:50:47 +0000 | [diff] [blame] | 438 | DieDiag("Cannot find 'scanview.css'.\n") |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 439 | if (! -r $CSS); |
Ted Kremenek | 3ce1207 | 2008-09-22 17:50:47 +0000 | [diff] [blame] | 440 | |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 441 | system ("cp", $CSS, "$Dir"); |
Ted Kremenek | 3ce1207 | 2008-09-22 17:50:47 +0000 | [diff] [blame] | 442 | |
| 443 | DieDiag("Could not copy 'scanview.css' to '$Dir'.\n") |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 444 | if (! -r $CSS); |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | ##----------------------------------------------------------------------------## |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 448 | # Postprocess - Postprocess the results of an analysis scan. |
| 449 | ##----------------------------------------------------------------------------## |
| 450 | |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 451 | sub Postprocess { |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 452 | |
| 453 | my $Dir = shift; |
Ted Kremenek | 684bb09 | 2008-04-18 15:18:20 +0000 | [diff] [blame] | 454 | my $BaseDir = shift; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 455 | |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 456 | die "No directory specified." if (!defined $Dir); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 457 | |
| 458 | if (! -d $Dir) { |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 459 | Diag("No bugs found.\n"); |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 460 | return 0; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | opendir(DIR, $Dir); |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 464 | my @files = grep { /^report-.*\.html$/ } readdir(DIR); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 465 | closedir(DIR); |
| 466 | |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 467 | if (scalar(@files) == 0 and ! -e "$Dir/failures") { |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 468 | Diag("Removing directory '$Dir' because it contains no reports.\n"); |
Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 469 | system ("rm", "-fR", $Dir); |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 470 | return 0; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 471 | } |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 472 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 473 | # Scan each report file and build an index. |
| 474 | my @Index; |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 475 | foreach my $file (@files) { ScanFile(\@Index, $Dir, $file); } |
| 476 | |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 477 | # Scan the failures directory and use the information in the .info files |
Ted Kremenek | d52e425 | 2008-08-25 20:45:07 +0000 | [diff] [blame] | 478 | # to update the common prefix directory. |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 479 | my @failures; |
| 480 | my @attributes_ignored; |
| 481 | if (-d "$Dir/failures") { |
| 482 | opendir(DIR, "$Dir/failures"); |
| 483 | @failures = grep { /[.]info.txt$/ && !/attribute_ignored/; } readdir(DIR); |
Ted Kremenek | d52e425 | 2008-08-25 20:45:07 +0000 | [diff] [blame] | 484 | closedir(DIR); |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 485 | opendir(DIR, "$Dir/failures"); |
| 486 | @attributes_ignored = grep { /^attribute_ignored/; } readdir(DIR); |
| 487 | closedir(DIR); |
| 488 | foreach my $file (@failures) { |
| 489 | open IN, "$Dir/failures/$file" or DieDiag("cannot open $file\n"); |
Ted Kremenek | d52e425 | 2008-08-25 20:45:07 +0000 | [diff] [blame] | 490 | my $Path = <IN>; |
| 491 | if (defined $Path) { UpdatePrefix($Path); } |
| 492 | close IN; |
| 493 | } |
| 494 | } |
| 495 | |
Ted Kremenek | 63c2017 | 2008-08-04 17:34:06 +0000 | [diff] [blame] | 496 | # Generate an index.html file. |
| 497 | my $FName = "$Dir/index.html"; |
| 498 | open(OUT, ">", $FName) or DieDiag("Cannot create file '$FName'\n"); |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 499 | |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 500 | # Print out the header. |
| 501 | |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 502 | print OUT <<ENDTEXT; |
| 503 | <html> |
| 504 | <head> |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 505 | <title>${HtmlTitle}</title> |
Ted Kremenek | f143545 | 2008-09-23 22:34:51 +0000 | [diff] [blame] | 506 | <link type="text/css" rel="stylesheet" href="scanview.css"/> |
Ted Kremenek | 22d6a63 | 2008-04-02 20:43:36 +0000 | [diff] [blame] | 507 | <script src="sorttable.js"></script> |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 508 | <script language='javascript' type="text/javascript"> |
| 509 | function SetDisplay(RowClass, DisplayVal) |
| 510 | { |
| 511 | var Rows = document.getElementsByTagName("tr"); |
| 512 | for ( var i = 0 ; i < Rows.length; ++i ) { |
| 513 | if (Rows[i].className == RowClass) { |
| 514 | Rows[i].style.display = DisplayVal; |
| 515 | } |
| 516 | } |
| 517 | } |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 518 | |
Ted Kremenek | 2350a46 | 2008-10-28 19:56:52 +0000 | [diff] [blame] | 519 | function CopyCheckedStateToCheckButtons(SummaryCheckButton) { |
| 520 | var Inputs = document.getElementsByTagName("input"); |
| 521 | for ( var i = 0 ; i < Inputs.length; ++i ) { |
| 522 | if (Inputs[i].type == "checkbox") { |
| 523 | if(Inputs[i] != SummaryCheckButton) { |
| 524 | Inputs[i].checked = SummaryCheckButton.checked; |
| 525 | Inputs[i].onclick(); |
| 526 | } |
| 527 | } |
| 528 | } |
| 529 | } |
| 530 | |
Ted Kremenek | 999e120 | 2008-10-28 20:09:57 +0000 | [diff] [blame] | 531 | function returnObjById( id ) { |
| 532 | if (document.getElementById) |
| 533 | var returnVar = document.getElementById(id); |
| 534 | else if (document.all) |
| 535 | var returnVar = document.all[id]; |
| 536 | else if (document.layers) |
| 537 | var returnVar = document.layers[id]; |
| 538 | return returnVar; |
| 539 | } |
| 540 | |
| 541 | var NumUnchecked = 0; |
| 542 | |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 543 | function ToggleDisplay(CheckButton, ClassName) { |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 544 | if (CheckButton.checked) { |
| 545 | SetDisplay(ClassName, ""); |
Ted Kremenek | 999e120 | 2008-10-28 20:09:57 +0000 | [diff] [blame] | 546 | if (--NumUnchecked == 0) { |
| 547 | returnObjById("AllBugsCheck").checked = true; |
| 548 | } |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 549 | } |
| 550 | else { |
| 551 | SetDisplay(ClassName, "none"); |
Ted Kremenek | 999e120 | 2008-10-28 20:09:57 +0000 | [diff] [blame] | 552 | NumUnchecked++; |
| 553 | returnObjById("AllBugsCheck").checked = false; |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 554 | } |
| 555 | } |
| 556 | </script> |
Ted Kremenek | 1d1abb1 | 2008-09-22 17:52:58 +0000 | [diff] [blame] | 557 | <!-- SUMMARYENDHEAD --> |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 558 | </head> |
| 559 | <body> |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 560 | <h1>${HtmlTitle}</h1> |
| 561 | |
| 562 | <table> |
| 563 | <tr><th>User:</th><td>${UserName}\@${HostName}</td></tr> |
| 564 | <tr><th>Working Directory:</th><td>${CurrentDir}</td></tr> |
| 565 | <tr><th>Command Line:</th><td>${CmdArgs}</td></tr> |
| 566 | <tr><th>Date:</th><td>${Date}</td></tr> |
| 567 | ENDTEXT |
| 568 | |
| 569 | print OUT "<tr><th>Version:</th><td>${BuildName} (${BuildDate})</td></tr>\n" |
| 570 | if (defined($BuildName) && defined($BuildDate)); |
| 571 | |
| 572 | print OUT <<ENDTEXT; |
| 573 | </table> |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 574 | ENDTEXT |
| 575 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 576 | if (scalar(@files)) { |
| 577 | # Print out the summary table. |
| 578 | my %Totals; |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 579 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 580 | for my $row ( @Index ) { |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 581 | my $bug_type = ($row->[2]); |
| 582 | my $bug_category = ($row->[1]); |
| 583 | my $key = "$bug_category:$bug_type"; |
| 584 | |
| 585 | if (!defined $Totals{$key}) { $Totals{$key} = [1,$bug_category,$bug_type]; } |
| 586 | else { $Totals{$key}->[0]++; } |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 587 | } |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 588 | |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 589 | print OUT "<h2>Bug Summary</h2>"; |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 590 | |
| 591 | if (defined $BuildName) { |
| 592 | 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] | 593 | } |
Ted Kremenek | f4cdf41 | 2008-05-23 18:17:05 +0000 | [diff] [blame] | 594 | |
Ted Kremenek | 2350a46 | 2008-10-28 19:56:52 +0000 | [diff] [blame] | 595 | my $TotalBugs = scalar(@Index); |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 596 | print OUT <<ENDTEXT; |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 597 | <table> |
| 598 | <thead><tr><td>Bug Type</td><td>Quantity</td><td class="sorttable_nosort">Display?</td></tr></thead> |
Ted Kremenek | 999e120 | 2008-10-28 20:09:57 +0000 | [diff] [blame] | 599 | <tr style="font-weight:bold"><td class="SUMM_DESC">All Bugs</td><td class="Q">$TotalBugs</td><td><center><input type="checkbox" id="AllBugsCheck" onClick="CopyCheckedStateToCheckButtons(this);" checked/></center></td></tr> |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 600 | ENDTEXT |
| 601 | |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 602 | my $last_category; |
| 603 | |
| 604 | for my $key ( |
| 605 | sort { |
| 606 | my $x = $Totals{$a}; |
| 607 | my $y = $Totals{$b}; |
| 608 | my $res = $x->[1] cmp $y->[1]; |
| 609 | $res = $x->[2] cmp $y->[2] if ($res == 0); |
| 610 | $res |
| 611 | } keys %Totals ) |
| 612 | { |
| 613 | my $val = $Totals{$key}; |
| 614 | my $category = $val->[1]; |
| 615 | if (!defined $last_category or $last_category ne $category) { |
| 616 | $last_category = $category; |
| 617 | print OUT "<tr><th>$category</th><th colspan=2></th></tr>\n"; |
| 618 | } |
| 619 | my $x = lc $key; |
| 620 | $x =~ s/[ ,'":\/()]+/_/g; |
| 621 | print OUT "<tr><td class=\"SUMM_DESC\">"; |
| 622 | print OUT $val->[2]; |
Ted Kremenek | 2350a46 | 2008-10-28 19:56:52 +0000 | [diff] [blame] | 623 | print OUT "</td><td class=\"Q\">"; |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 624 | print OUT $val->[0]; |
| 625 | print OUT "</td><td><center><input type=\"checkbox\" onClick=\"ToggleDisplay(this,'bt_$x');\" checked/></center></td></tr>\n"; |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 626 | } |
Ted Kremenek | 6e6eff7 | 2008-04-15 20:47:02 +0000 | [diff] [blame] | 627 | |
| 628 | # Print out the table of errors. |
| 629 | |
| 630 | print OUT <<ENDTEXT; |
| 631 | </table> |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 632 | <h2>Reports</h2> |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 633 | |
| 634 | <table class="sortable" style="table-layout:automatic"> |
| 635 | <thead><tr> |
| 636 | <td>Bug Group</td> |
| 637 | <td class="sorttable_sorted">Bug Type<span id="sorttable_sortfwdind"> ▾</span></td> |
Ted Kremenek | bba1cf5 | 2008-04-03 05:50:51 +0000 | [diff] [blame] | 638 | <td>File</td> |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 639 | <td class="Q">Line</td> |
Ted Kremenek | 8198311 | 2008-09-28 04:13:09 +0000 | [diff] [blame] | 640 | <td class="Q">Path Length</td> |
Ted Kremenek | 2645c77 | 2008-07-07 16:58:44 +0000 | [diff] [blame] | 641 | <td class="sorttable_nosort"></td> |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 642 | <!-- REPORTBUGCOL --> |
| 643 | </tr></thead> |
| 644 | <tbody> |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 645 | ENDTEXT |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 646 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 647 | my $prefix = GetPrefix(); |
| 648 | my $regex; |
| 649 | my $InFileRegex; |
| 650 | my $InFilePrefix = "File:</td><td>"; |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 651 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 652 | if (defined $prefix) { |
| 653 | $regex = qr/^\Q$prefix\E/is; |
| 654 | $InFileRegex = qr/\Q$InFilePrefix$prefix\E/is; |
| 655 | } |
Ted Kremenek | 7a4648d | 2008-05-02 22:04:53 +0000 | [diff] [blame] | 656 | |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 657 | for my $row ( sort { $a->[2] cmp $b->[2] } @Index ) { |
| 658 | my $x = "$row->[1]:$row->[2]"; |
| 659 | $x = lc $x; |
| 660 | $x =~ s/[ ,'":\/()]+/_/g; |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 661 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 662 | my $ReportFile = $row->[0]; |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 663 | |
| 664 | print OUT "<tr class=\"bt_$x\">"; |
| 665 | print OUT "<td class=\"DESC\">"; |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 666 | print OUT $row->[1]; |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 667 | print OUT "</td>"; |
| 668 | print OUT "<td class=\"DESC\">"; |
| 669 | print OUT $row->[2]; |
| 670 | print OUT "</td>"; |
| 671 | |
| 672 | # Update the file prefix. |
| 673 | my $fname = $row->[3]; |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 674 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 675 | if (defined $regex) { |
| 676 | $fname =~ s/$regex//; |
| 677 | UpdateInFilePath("$Dir/$ReportFile", $InFileRegex, $InFilePrefix) |
| 678 | } |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 679 | |
Ted Kremenek | 91639ef | 2008-09-22 17:42:31 +0000 | [diff] [blame] | 680 | print OUT "<td>"; |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 681 | my @fname = split /\//,$fname; |
| 682 | if ($#fname > 0) { |
| 683 | while ($#fname >= 0) { |
| 684 | my $x = shift @fname; |
| 685 | print OUT $x; |
| 686 | if ($#fname >= 0) { |
| 687 | print OUT "<span class=\"W\"> </span>/"; |
| 688 | } |
| 689 | } |
| 690 | } |
| 691 | else { |
| 692 | print OUT $fname; |
Ted Kremenek | 91639ef | 2008-09-22 17:42:31 +0000 | [diff] [blame] | 693 | } |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 694 | print OUT "</td>"; |
| 695 | |
| 696 | # Print out the quantities. |
Ted Kremenek | 8198311 | 2008-09-28 04:13:09 +0000 | [diff] [blame] | 697 | for my $j ( 4 .. 5 ) { |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 698 | print OUT "<td class=\"Q\">$row->[$j]</td>"; |
| 699 | } |
| 700 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 701 | # Print the rest of the columns. |
Ted Kremenek | 8198311 | 2008-09-28 04:13:09 +0000 | [diff] [blame] | 702 | for (my $j = 6; $j <= $#{$row}; ++$j) { |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 703 | print OUT "<td>$row->[$j]</td>" |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 704 | } |
Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 705 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 706 | # Emit the "View" link. |
Ted Kremenek | 68005dd | 2008-09-22 17:39:18 +0000 | [diff] [blame] | 707 | print OUT "<td><a href=\"$ReportFile#EndPath\">View Report</a></td>"; |
Ted Kremenek | 3cea9ee | 2008-07-30 17:58:08 +0000 | [diff] [blame] | 708 | |
Daniel Dunbar | e43038e | 2008-09-19 23:18:44 +0000 | [diff] [blame] | 709 | # Emit REPORTBUG markers. |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 710 | print OUT "\n<!-- REPORTBUG id=\"$ReportFile\" -->\n"; |
Daniel Dunbar | e43038e | 2008-09-19 23:18:44 +0000 | [diff] [blame] | 711 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 712 | # End the row. |
| 713 | print OUT "</tr>\n"; |
| 714 | } |
| 715 | |
Ted Kremenek | ebb7413 | 2008-09-21 06:58:09 +0000 | [diff] [blame] | 716 | print OUT "</tbody>\n</table>\n\n"; |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 717 | } |
| 718 | |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 719 | if (scalar (@failures) || scalar(@attributes_ignored)) { |
| 720 | print OUT "<h2>Analyzer Failures</h2>\n"; |
| 721 | |
| 722 | if (scalar @attributes_ignored) { |
| 723 | print OUT "The analyzer's parser ignored the following attributes:<p>\n"; |
| 724 | print OUT "<table>\n"; |
| 725 | print OUT "<thead><tr><td>Attribute</td><td>Source File</td><td>Preprocessed File</td><td>STDERR Output</td></tr></thead>\n"; |
| 726 | foreach my $file (sort @attributes_ignored) { |
| 727 | die "cannot demangle attribute name\n" if (! ($file =~ /^attribute_ignored_(.+).txt/)); |
| 728 | my $attribute = $1; |
| 729 | # Open the attribute file to get the first file that failed. |
| 730 | next if (!open (ATTR, "$Dir/failures/$file")); |
| 731 | my $ppfile = <ATTR>; |
| 732 | chomp $ppfile; |
| 733 | close ATTR; |
| 734 | next if (! -e "$Dir/failures/$ppfile"); |
| 735 | # Open the info file and get the name of the source file. |
| 736 | open (INFO, "$Dir/failures/$ppfile.info.txt") or |
| 737 | die "Cannot open $Dir/failures/$ppfile.info.txt\n"; |
| 738 | my $srcfile = <INFO>; |
| 739 | chomp $srcfile; |
| 740 | close (INFO); |
| 741 | # Print the information in the table. |
| 742 | my $prefix = GetPrefix(); |
| 743 | if (defined $prefix) { $srcfile =~ s/^\Q$prefix//; } |
| 744 | print OUT "<tr><td>$attribute</td><td>$srcfile</td><td><a href=\"failures/$ppfile\">$ppfile</a></td><td><a href=\"failures/$ppfile.stderr.txt\">$ppfile.stderr.txt</a></td></tr>\n"; |
| 745 | my $ppfile_clang = $ppfile; |
| 746 | $ppfile_clang =~ s/[.](.+)$/.clang.$1/; |
| 747 | print OUT " <!-- REPORTPROBLEM src=\"$srcfile\" file=\"failures/$ppfile\" clangfile=\"failures/$ppfile_clang\" stderr=\"failures/$ppfile.stderr.txt\" info=\"failures/$ppfile.info.txt\" -->\n"; |
| 748 | } |
| 749 | print OUT "</table>\n"; |
| 750 | } |
| 751 | |
| 752 | if (scalar @failures) { |
| 753 | print OUT "<p>The analyzer had problems processing the following files:</p>\n"; |
| 754 | print OUT "<table>\n"; |
| 755 | print OUT "<thead><tr><td>Problem</td><td>Source File</td><td>Preprocessed File</td><td>STDERR Output</td></tr></thead>\n"; |
| 756 | foreach my $file (sort @failures) { |
Ted Kremenek | 82a1253 | 2008-09-25 00:25:16 +0000 | [diff] [blame] | 757 | $file =~ /(.+).info.txt$/; |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 758 | # Get the preprocessed file. |
| 759 | my $ppfile = $1; |
| 760 | # Open the info file and get the name of the source file. |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 761 | open (INFO, "$Dir/failures/$file") or |
| 762 | die "Cannot open $Dir/failures/$file\n"; |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 763 | my $srcfile = <INFO>; |
Ted Kremenek | 5d31f83 | 2008-08-18 18:38:29 +0000 | [diff] [blame] | 764 | chomp $srcfile; |
| 765 | my $problem = <INFO>; |
| 766 | chomp $problem; |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 767 | close (INFO); |
| 768 | # Print the information in the table. |
Ted Kremenek | d52e425 | 2008-08-25 20:45:07 +0000 | [diff] [blame] | 769 | my $prefix = GetPrefix(); |
Ted Kremenek | 9f9b1fd | 2008-09-12 22:49:36 +0000 | [diff] [blame] | 770 | if (defined $prefix) { $srcfile =~ s/^\Q$prefix//; } |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 771 | print OUT "<tr><td>$problem</td><td>$srcfile</td><td><a href=\"failures/$ppfile\">$ppfile</a></td><td><a href=\"failures/$ppfile.stderr.txt\">$ppfile.stderr.txt</a></td></tr>\n"; |
Daniel Dunbar | ce723ce | 2008-09-25 01:10:50 +0000 | [diff] [blame] | 772 | my $ppfile_clang = $ppfile; |
| 773 | $ppfile_clang =~ s/[.](.+)$/.clang.$1/; |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 774 | print OUT " <!-- REPORTPROBLEM src=\"$srcfile\" file=\"failures/$ppfile\" clangfile=\"failures/$ppfile_clang\" stderr=\"failures/$ppfile.stderr.txt\" info=\"failures/$ppfile.info.txt\" -->\n"; |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 775 | } |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 776 | print OUT "</table>\n"; |
| 777 | } |
| 778 | print OUT "<p>Please consider submitting preprocessed files as <a href=\"http://clang.llvm.org/StaticAnalysisUsage.html#filingbugs\">bug reports</a>. <!-- REPORTCRASHES --> </p>\n"; |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 779 | } |
| 780 | |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 781 | print OUT "</body></html>\n"; |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 782 | close(OUT); |
Ted Kremenek | 3ce1207 | 2008-09-22 17:50:47 +0000 | [diff] [blame] | 783 | CopyFiles($Dir); |
Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 784 | |
| 785 | # Make sure $Dir and $BaseDir are world readable/executable. |
| 786 | system("chmod", "755", $Dir); |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 787 | if (defined $BaseDir) { system("chmod", "755", $BaseDir); } |
Ted Kremenek | 20161e9 | 2008-07-15 20:18:21 +0000 | [diff] [blame] | 788 | |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 789 | my $Num = scalar(@Index); |
Ted Kremenek | 150c212 | 2008-07-11 19:15:05 +0000 | [diff] [blame] | 790 | Diag("$Num bugs found.\n"); |
| 791 | if ($Num > 0 && -r "$Dir/index.html") { |
Ted Kremenek | 5950b3f | 2008-09-22 06:47:01 +0000 | [diff] [blame] | 792 | Diag("Run 'scan-view $Dir' to examine bug reports.\n"); |
Ted Kremenek | 150c212 | 2008-07-11 19:15:05 +0000 | [diff] [blame] | 793 | } |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 794 | |
Ted Kremenek | 938eef1 | 2009-02-17 23:31:05 +0000 | [diff] [blame] | 795 | DiagCrashes($Dir) if (scalar @failures || scalar @attributes_ignored); |
Ted Kremenek | 991c54b | 2008-08-08 20:46:42 +0000 | [diff] [blame] | 796 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 797 | return $Num; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | ##----------------------------------------------------------------------------## |
Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 801 | # RunBuildCommand - Run the build command. |
| 802 | ##----------------------------------------------------------------------------## |
| 803 | |
Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 804 | sub AddIfNotPresent { |
| 805 | my $Args = shift; |
| 806 | my $Arg = shift; |
| 807 | my $found = 0; |
| 808 | |
| 809 | foreach my $k (@$Args) { |
| 810 | if ($k eq $Arg) { |
| 811 | $found = 1; |
| 812 | last; |
| 813 | } |
| 814 | } |
| 815 | |
| 816 | if ($found == 0) { |
| 817 | push @$Args, $Arg; |
| 818 | } |
| 819 | } |
| 820 | |
Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 821 | sub RunBuildCommand { |
| 822 | |
| 823 | my $Args = shift; |
Ted Kremenek | 7442ca6 | 2008-04-02 16:04:51 +0000 | [diff] [blame] | 824 | my $IgnoreErrors = shift; |
Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 825 | my $Cmd = $Args->[0]; |
Ted Kremenek | 6195c37 | 2008-06-02 21:52:47 +0000 | [diff] [blame] | 826 | my $CCAnalyzer = shift; |
Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 827 | |
Ted Kremenek | 3301cb1 | 2008-06-30 18:18:16 +0000 | [diff] [blame] | 828 | # Get only the part of the command after the last '/'. |
| 829 | if ($Cmd =~ /\/([^\/]+)$/) { |
| 830 | $Cmd = $1; |
| 831 | } |
| 832 | |
Ted Kremenek | 92548fe | 2008-11-19 01:46:21 +0000 | [diff] [blame] | 833 | if ($Cmd =~ /(.*\/?gcc[^\/]*$)/ or |
| 834 | $Cmd =~ /(.*\/?cc[^\/]*$)/ or |
| 835 | $Cmd =~ /(.*\/?llvm-gcc[^\/]*$)/ or |
| 836 | $Cmd =~ /(.*\/?ccc-analyzer[^\/]*$)/) { |
| 837 | |
| 838 | if (!($Cmd =~ /ccc-analyzer/) and !defined $ENV{"CCC_CC"}) { |
| 839 | $ENV{"CCC_CC"} = $1; |
| 840 | } |
| 841 | |
Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 842 | shift @$Args; |
Ted Kremenek | 6195c37 | 2008-06-02 21:52:47 +0000 | [diff] [blame] | 843 | unshift @$Args, $CCAnalyzer; |
Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 844 | } |
Ted Kremenek | 7442ca6 | 2008-04-02 16:04:51 +0000 | [diff] [blame] | 845 | elsif ($IgnoreErrors) { |
| 846 | if ($Cmd eq "make" or $Cmd eq "gmake") { |
Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 847 | AddIfNotPresent($Args,"-k"); |
Ted Kremenek | 8912b54 | 2008-05-13 21:28:02 +0000 | [diff] [blame] | 848 | AddIfNotPresent($Args,"-i"); |
Ted Kremenek | 7442ca6 | 2008-04-02 16:04:51 +0000 | [diff] [blame] | 849 | } |
| 850 | elsif ($Cmd eq "xcodebuild") { |
Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 851 | AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES"); |
Ted Kremenek | 7442ca6 | 2008-04-02 16:04:51 +0000 | [diff] [blame] | 852 | } |
Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 853 | } |
| 854 | |
Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 855 | if ($Cmd eq "xcodebuild") { |
Ted Kremenek | 87752b2 | 2009-05-15 21:14:16 +0000 | [diff] [blame] | 856 | # Check if using iPhone SDK 3.0 (simulator). If so the compiler being |
| 857 | # used should be gcc-4.2. |
| 858 | if (!defined $ENV{"CCC_CC"}) { |
| 859 | for (my $i = 0 ; $i < scalar(@$Args); ++$i) { |
| 860 | if ($Args->[$i] eq "-sdk" && $i + 1 < scalar(@$Args)) { |
| 861 | if (@$Args[$i+1] =~ /^iphonesimulator3/) { |
| 862 | $ENV{"CCC_CC"} = "gcc-4.2"; |
| 863 | } |
| 864 | } |
| 865 | } |
| 866 | } |
| 867 | |
Ted Kremenek | cfd4c7b | 2008-05-23 22:18:16 +0000 | [diff] [blame] | 868 | # Disable distributed builds for xcodebuild. |
Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 869 | AddIfNotPresent($Args,"-nodistribute"); |
Ted Kremenek | cfd4c7b | 2008-05-23 22:18:16 +0000 | [diff] [blame] | 870 | |
| 871 | # Disable PCH files until clang supports them. |
| 872 | AddIfNotPresent($Args,"GCC_PRECOMPILE_PREFIX_HEADER=NO"); |
Ted Kremenek | 915e972 | 2008-05-27 23:18:07 +0000 | [diff] [blame] | 873 | |
| 874 | # When 'CC' is set, xcodebuild uses it to do all linking, even if we are |
| 875 | # linking C++ object files. Set 'LDPLUSPLUS' so that xcodebuild uses 'g++' |
| 876 | # when linking such files. |
Ted Kremenek | 95aa105 | 2008-09-04 17:52:41 +0000 | [diff] [blame] | 877 | die if (!defined $CXX); |
| 878 | my $LDPLUSPLUS = `which $CXX`; |
Ted Kremenek | 915e972 | 2008-05-27 23:18:07 +0000 | [diff] [blame] | 879 | $LDPLUSPLUS =~ s/\015?\012//; # strip newlines |
| 880 | $ENV{'LDPLUSPLUS'} = $LDPLUSPLUS; |
Ted Kremenek | 6b62898 | 2008-04-30 23:47:12 +0000 | [diff] [blame] | 881 | } |
Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 882 | |
Ted Kremenek | 5a4ddaf | 2008-08-25 20:10:45 +0000 | [diff] [blame] | 883 | return (system(@$Args) >> 8); |
Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 884 | } |
| 885 | |
Ted Kremenek | dab1110 | 2008-04-02 04:43:42 +0000 | [diff] [blame] | 886 | ##----------------------------------------------------------------------------## |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 887 | # DisplayHelp - Utility function to display all help options. |
| 888 | ##----------------------------------------------------------------------------## |
| 889 | |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 890 | sub DisplayHelp { |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 891 | |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 892 | print <<ENDTEXT; |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 893 | USAGE: $Prog [options] <build command> [build options] |
Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 894 | |
Ted Kremenek | f4cdf41 | 2008-05-23 18:17:05 +0000 | [diff] [blame] | 895 | ENDTEXT |
| 896 | |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 897 | if (defined $BuildName) { |
Ted Kremenek | f4cdf41 | 2008-05-23 18:17:05 +0000 | [diff] [blame] | 898 | print "ANALYZER BUILD: $BuildName ($BuildDate)\n\n"; |
| 899 | } |
| 900 | |
| 901 | print <<ENDTEXT; |
Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 902 | OPTIONS: |
| 903 | |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 904 | -analyze-headers - Also analyze functions in #included files. |
| 905 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 906 | -o - Target directory for HTML report files. Subdirectories |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 907 | will be created as needed to represent separate "runs" of |
Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 908 | the analyzer. If this option is not specified, a directory |
Ted Kremenek | ffda0b4 | 2008-10-31 05:48:42 +0000 | [diff] [blame] | 909 | is created in /tmp (TMPDIR on Mac OS X) to store the reports. |
Ted Kremenek | db4f5f2 | 2008-11-04 00:02:53 +0000 | [diff] [blame] | 910 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 911 | -h - Display this message. |
| 912 | --help |
Ted Kremenek | 1262fc4 | 2008-05-14 20:10:33 +0000 | [diff] [blame] | 913 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 914 | -k - Add a "keep on going" option to the specified build command. |
| 915 | --keep-going This option currently supports make and xcodebuild. |
Ted Kremenek | f02e8db | 2008-04-02 16:41:25 +0000 | [diff] [blame] | 916 | This is a convenience option; one can specify this |
| 917 | behavior directly using build options. |
Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 918 | |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 919 | --html-title [title] - Specify the title used on generated HTML pages. |
| 920 | --html-title=[title] If not specified, a default title will be used. |
| 921 | |
Ted Kremenek | db4f5f2 | 2008-11-04 00:02:53 +0000 | [diff] [blame] | 922 | -plist - By default the output of scan-build is a set of HTML files. |
| 923 | This option outputs the results as a set of .plist files. |
| 924 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 925 | --status-bugs - By default, the exit status of $Prog is the same as the |
| 926 | executed build command. Specifying this option causes the |
| 927 | exit status of $Prog to be 1 if it found potential bugs |
| 928 | and 0 otherwise. |
Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 929 | |
Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 930 | --use-cc [compiler path] - By default, $Prog uses 'gcc' to compile and link |
| 931 | --use-cc=[compiler path] your C and Objective-C code. Use this option |
| 932 | to specify an alternate compiler. |
| 933 | |
| 934 | --use-c++ [compiler path] - By default, $Prog uses 'g++' to compile and link |
| 935 | --use-c++=[compiler path] your C++ and Objective-C++ code. Use this option |
| 936 | to specify an alternate compiler. |
Ted Kremenek | f17ef3c | 2008-08-21 21:47:09 +0000 | [diff] [blame] | 937 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 938 | -v - Verbose output from $Prog and the analyzer. |
Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 939 | A second and third '-v' increases verbosity. |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 940 | |
| 941 | -V - View analysis results in a web browser when the build |
| 942 | --view completes. |
Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 943 | |
Ted Kremenek | be1fe1e | 2009-02-17 04:27:41 +0000 | [diff] [blame] | 944 | ADVANCED OPTIONS: |
| 945 | |
Ted Kremenek | 9f4ecb3 | 2009-02-20 21:49:22 +0000 | [diff] [blame] | 946 | -constraints [model] - Specify the contraint engine used by the analyzer. |
| 947 | By default the 'range' model is used. Specifying |
| 948 | 'basic' uses a simpler, less powerful constraint model |
Ted Kremenek | d4c7684 | 2009-02-21 04:46:41 +0000 | [diff] [blame] | 949 | used by checker-0.160 and earlier. |
Ted Kremenek | be1fe1e | 2009-02-17 04:27:41 +0000 | [diff] [blame] | 950 | |
| 951 | -store [model] - Specify the store model used by the analyzer. By default, |
Ted Kremenek | b8bb3e7 | 2009-09-25 05:55:59 +0000 | [diff] [blame] | 952 | the 'region' store model is used. 'region' specifies a field- |
| 953 | sensitive store model. Users can also specify 'basic', which |
| 954 | is far less precise but can more quickly analyze code. |
| 955 | 'basic' was the default store model for checker-0.221 and |
| 956 | earlier. |
| 957 | |
Ted Kremenek | e600bed | 2009-07-30 23:55:19 +0000 | [diff] [blame] | 958 | -no-failure-reports - Do not create a 'failures' subdirectory that includes |
| 959 | analyzer crash reports and preprocessed source files. |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 960 | |
Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 961 | AVAILABLE ANALYSES (multiple analyses may be specified): |
Ted Kremenek | d52e425 | 2008-08-25 20:45:07 +0000 | [diff] [blame] | 962 | |
| 963 | ENDTEXT |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 964 | |
| 965 | foreach my $Analysis (sort keys %AvailableAnalyses) { |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 966 | if (defined $AnalysesDefaultEnabled{$Analysis}) { |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 967 | print " (+)"; |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 968 | } |
| 969 | else { |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 970 | print " "; |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 971 | } |
| 972 | |
| 973 | print " $Analysis $AvailableAnalyses{$Analysis}\n"; |
| 974 | } |
| 975 | |
| 976 | print <<ENDTEXT |
| 977 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 978 | NOTE: "(+)" indicates that an analysis is enabled by default unless one |
| 979 | or more analysis options are specified |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 980 | |
Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 981 | BUILD OPTIONS |
| 982 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 983 | You can specify any build option acceptable to the build command. |
Ted Kremenek | 39eefde | 2008-04-02 16:47:27 +0000 | [diff] [blame] | 984 | |
Ted Kremenek | 5744dc2 | 2008-04-02 18:03:36 +0000 | [diff] [blame] | 985 | EXAMPLE |
Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 986 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 987 | $Prog -o /tmp/myhtmldir make -j4 |
Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 988 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 989 | The above example causes analysis reports to be deposited into |
| 990 | a subdirectory of "/tmp/myhtmldir" and to run "make" with the "-j4" option. |
| 991 | A different subdirectory is created each time $Prog analyzes a project. |
| 992 | The analyzer should support most parallel builds, but not distributed builds. |
Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 993 | |
| 994 | ENDTEXT |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 995 | } |
| 996 | |
| 997 | ##----------------------------------------------------------------------------## |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 998 | # HtmlEscape - HTML entity encode characters that are special in HTML |
| 999 | ##----------------------------------------------------------------------------## |
| 1000 | |
| 1001 | sub HtmlEscape { |
| 1002 | # copy argument to new variable so we don't clobber the original |
| 1003 | my $arg = shift || ''; |
| 1004 | my $tmp = $arg; |
Ted Kremenek | 87f8de7 | 2008-11-03 07:44:16 +0000 | [diff] [blame] | 1005 | $tmp =~ s/&/&/g; |
| 1006 | $tmp =~ s/</</g; |
| 1007 | $tmp =~ s/>/>/g; |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 1008 | return $tmp; |
| 1009 | } |
| 1010 | |
| 1011 | ##----------------------------------------------------------------------------## |
| 1012 | # ShellEscape - backslash escape characters that are special to the shell |
| 1013 | ##----------------------------------------------------------------------------## |
| 1014 | |
| 1015 | sub ShellEscape { |
| 1016 | # copy argument to new variable so we don't clobber the original |
| 1017 | my $arg = shift || ''; |
Ted Kremenek | 87f8de7 | 2008-11-03 07:44:16 +0000 | [diff] [blame] | 1018 | if ($arg =~ /["\s]/) { return "'" . $arg . "'"; } |
| 1019 | return $arg; |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
| 1022 | ##----------------------------------------------------------------------------## |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1023 | # Process command-line arguments. |
| 1024 | ##----------------------------------------------------------------------------## |
| 1025 | |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 1026 | my $AnalyzeHeaders = 0; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1027 | my $HtmlDir; # Parent directory to store HTML files. |
| 1028 | my $IgnoreErrors = 0; # Ignore build errors. |
Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 1029 | my $ViewResults = 0; # View results when the build terminates. |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 1030 | my $ExitStatusFoundBugs = 0; # Exit status reflects whether bugs were found |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 1031 | my @AnalysesToRun; |
Zhongxing Xu | 07c3767 | 2008-10-27 14:26:32 +0000 | [diff] [blame] | 1032 | my $StoreModel; |
Ted Kremenek | be1fe1e | 2009-02-17 04:27:41 +0000 | [diff] [blame] | 1033 | my $ConstraintsModel; |
Ted Kremenek | 8d8bc91 | 2009-08-04 17:05:18 +0000 | [diff] [blame] | 1034 | my $OutputFormat = "html"; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1035 | |
| 1036 | if (!@ARGV) { |
| 1037 | DisplayHelp(); |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 1038 | exit 1; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1039 | } |
| 1040 | |
| 1041 | while (@ARGV) { |
| 1042 | |
| 1043 | # Scan for options we recognize. |
| 1044 | |
| 1045 | my $arg = $ARGV[0]; |
| 1046 | |
Sam Bishop | 2f2418e | 2008-04-03 14:29:47 +0000 | [diff] [blame] | 1047 | if ($arg eq "-h" or $arg eq "--help") { |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1048 | DisplayHelp(); |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 1049 | exit 0; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1050 | } |
| 1051 | |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 1052 | if ($arg eq '-analyze-headers') { |
| 1053 | shift @ARGV; |
| 1054 | $AnalyzeHeaders = 1; |
| 1055 | next; |
| 1056 | } |
| 1057 | |
Ted Kremenek | fc1d340 | 2008-08-04 18:15:26 +0000 | [diff] [blame] | 1058 | if (defined $AvailableAnalyses{$arg}) { |
Ted Kremenek | 1262fc4 | 2008-05-14 20:10:33 +0000 | [diff] [blame] | 1059 | shift @ARGV; |
Ted Kremenek | b7770c0 | 2008-07-15 17:06:13 +0000 | [diff] [blame] | 1060 | push @AnalysesToRun, $arg; |
Ted Kremenek | 1262fc4 | 2008-05-14 20:10:33 +0000 | [diff] [blame] | 1061 | next; |
| 1062 | } |
| 1063 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1064 | if ($arg eq "-o") { |
| 1065 | shift @ARGV; |
| 1066 | |
| 1067 | if (!@ARGV) { |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 1068 | DieDiag("'-o' option requires a target directory name.\n"); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1069 | } |
| 1070 | |
Ted Kremenek | db51a55 | 2009-03-11 18:20:33 +0000 | [diff] [blame] | 1071 | # Construct an absolute path. Uses the current working directory |
| 1072 | # as a base if the original path was not absolute. |
| 1073 | $HtmlDir = abs_path(shift @ARGV); |
| 1074 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1075 | next; |
| 1076 | } |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 1077 | |
| 1078 | if ($arg =~ /^--html-title(=(.+))?$/) { |
| 1079 | shift @ARGV; |
| 1080 | |
Ted Kremenek | 278a551 | 2009-05-12 18:04:43 +0000 | [diff] [blame] | 1081 | if (!defined $2 || $2 eq '') { |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 1082 | if (!@ARGV) { |
| 1083 | DieDiag("'--html-title' option requires a string.\n"); |
| 1084 | } |
| 1085 | |
| 1086 | $HtmlTitle = shift @ARGV; |
| 1087 | } else { |
| 1088 | $HtmlTitle = $2; |
| 1089 | } |
| 1090 | |
| 1091 | next; |
| 1092 | } |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1093 | |
Ted Kremenek | 2b74ab6 | 2008-04-01 21:22:03 +0000 | [diff] [blame] | 1094 | if ($arg eq "-k" or $arg eq "--keep-going") { |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1095 | shift @ARGV; |
| 1096 | $IgnoreErrors = 1; |
| 1097 | next; |
| 1098 | } |
| 1099 | |
Ted Kremenek | f17ef3c | 2008-08-21 21:47:09 +0000 | [diff] [blame] | 1100 | if ($arg =~ /^--use-cc(=(.+))?$/) { |
| 1101 | shift @ARGV; |
| 1102 | my $cc; |
| 1103 | |
Ted Kremenek | 278a551 | 2009-05-12 18:04:43 +0000 | [diff] [blame] | 1104 | if (!defined $2 || $2 eq "") { |
Ted Kremenek | f17ef3c | 2008-08-21 21:47:09 +0000 | [diff] [blame] | 1105 | if (!@ARGV) { |
| 1106 | DieDiag("'--use-cc' option requires a compiler executable name.\n"); |
| 1107 | } |
| 1108 | $cc = shift @ARGV; |
| 1109 | } |
| 1110 | else { |
| 1111 | $cc = $2; |
| 1112 | } |
| 1113 | |
| 1114 | $ENV{"CCC_CC"} = $cc; |
| 1115 | next; |
| 1116 | } |
| 1117 | |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 1118 | if ($arg =~ /^--use-c\+\+(=(.+))?$/) { |
Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 1119 | shift @ARGV; |
| 1120 | |
Ted Kremenek | 278a551 | 2009-05-12 18:04:43 +0000 | [diff] [blame] | 1121 | if (!defined $2 || $2 eq "") { |
Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 1122 | if (!@ARGV) { |
| 1123 | DieDiag("'--use-c++' option requires a compiler executable name.\n"); |
| 1124 | } |
| 1125 | $CXX = shift @ARGV; |
| 1126 | } |
| 1127 | else { |
| 1128 | $CXX = $2; |
| 1129 | } |
| 1130 | next; |
| 1131 | } |
| 1132 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1133 | if ($arg eq "-v") { |
| 1134 | shift @ARGV; |
| 1135 | $Verbose++; |
| 1136 | next; |
| 1137 | } |
| 1138 | |
Ted Kremenek | 7f8a325 | 2008-04-02 18:42:49 +0000 | [diff] [blame] | 1139 | if ($arg eq "-V" or $arg eq "--view") { |
| 1140 | shift @ARGV; |
| 1141 | $ViewResults = 1; |
| 1142 | next; |
| 1143 | } |
| 1144 | |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 1145 | if ($arg eq "--status-bugs") { |
| 1146 | shift @ARGV; |
| 1147 | $ExitStatusFoundBugs = 1; |
| 1148 | next; |
| 1149 | } |
Zhongxing Xu | 07c3767 | 2008-10-27 14:26:32 +0000 | [diff] [blame] | 1150 | |
| 1151 | if ($arg eq "-store") { |
| 1152 | shift @ARGV; |
Ted Kremenek | be1fe1e | 2009-02-17 04:27:41 +0000 | [diff] [blame] | 1153 | $StoreModel = shift @ARGV; |
| 1154 | next; |
| 1155 | } |
| 1156 | |
| 1157 | if ($arg eq "-constraints") { |
| 1158 | shift @ARGV; |
| 1159 | $ConstraintsModel = shift @ARGV; |
Zhongxing Xu | 07c3767 | 2008-10-27 14:26:32 +0000 | [diff] [blame] | 1160 | next; |
| 1161 | } |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 1162 | |
Ted Kremenek | db4f5f2 | 2008-11-04 00:02:53 +0000 | [diff] [blame] | 1163 | if ($arg eq "-plist") { |
| 1164 | shift @ARGV; |
| 1165 | $OutputFormat = "plist"; |
| 1166 | next; |
| 1167 | } |
Ted Kremenek | 7753b35 | 2009-07-27 22:10:34 +0000 | [diff] [blame] | 1168 | if ($arg eq "-plist-html") { |
| 1169 | shift @ARGV; |
| 1170 | $OutputFormat = "plist-html"; |
| 1171 | next; |
| 1172 | } |
Ted Kremenek | e600bed | 2009-07-30 23:55:19 +0000 | [diff] [blame] | 1173 | |
| 1174 | if ($arg eq "-no-failure-reports") { |
| 1175 | $ENV{"CCC_REPORT_FAILURES"} = 0; |
| 1176 | next; |
| 1177 | } |
Ted Kremenek | 7753b35 | 2009-07-27 22:10:34 +0000 | [diff] [blame] | 1178 | |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 1179 | DieDiag("unrecognized option '$arg'\n") if ($arg =~ /^-/); |
Ted Kremenek | 0062ad4 | 2008-04-02 16:35:01 +0000 | [diff] [blame] | 1180 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1181 | last; |
| 1182 | } |
| 1183 | |
| 1184 | if (!@ARGV) { |
Ted Kremenek | 23cfca3 | 2008-06-16 22:40:14 +0000 | [diff] [blame] | 1185 | Diag("No build command specified.\n\n"); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1186 | DisplayHelp(); |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 1187 | exit 1; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1188 | } |
| 1189 | |
Ted Kremenek | 7cba112 | 2008-09-22 01:35:58 +0000 | [diff] [blame] | 1190 | $CmdArgs = HtmlEscape(join(' ', map(ShellEscape($_), @ARGV))); |
| 1191 | $HtmlTitle = "${CurrentDirSuffix} - scan-build results" |
| 1192 | unless (defined($HtmlTitle)); |
Ted Kremenek | 386c693 | 2008-09-03 17:59:35 +0000 | [diff] [blame] | 1193 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1194 | # Determine the output directory for the HTML reports. |
Ted Kremenek | 684bb09 | 2008-04-18 15:18:20 +0000 | [diff] [blame] | 1195 | my $BaseDir = $HtmlDir; |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 1196 | $HtmlDir = GetHTMLRunDir($HtmlDir); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1197 | |
| 1198 | # Set the appropriate environment variables. |
Sam Bishop | a0e2266 | 2008-04-02 03:35:43 +0000 | [diff] [blame] | 1199 | SetHtmlEnv(\@ARGV, $HtmlDir); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1200 | |
Ted Kremenek | 91ea79d | 2009-03-24 05:30:14 +0000 | [diff] [blame] | 1201 | my $Cmd = Cwd::realpath("$RealBin/libexec/ccc-analyzer"); |
Ted Kremenek | ce87b92 | 2009-02-25 22:54:02 +0000 | [diff] [blame] | 1202 | if (!defined $Cmd || ! -x $Cmd) { |
| 1203 | $Cmd = Cwd::realpath("$RealBin/ccc-analyzer"); |
Ted Kremenek | 6b89636 | 2009-02-27 06:17:05 +0000 | [diff] [blame] | 1204 | DieDiag("Executable 'ccc-analyzer' does not exist at '$Cmd'\n") if(! -x $Cmd); |
Ted Kremenek | ce87b92 | 2009-02-25 22:54:02 +0000 | [diff] [blame] | 1205 | } |
Ted Kremenek | f22eacb | 2008-04-18 22:00:56 +0000 | [diff] [blame] | 1206 | |
Ted Kremenek | fd9df0e | 2009-05-09 19:19:28 +0000 | [diff] [blame] | 1207 | if (!defined $ClangCCSB || ! -x $ClangCCSB) { |
Ted Kremenek | 91ea79d | 2009-03-24 05:30:14 +0000 | [diff] [blame] | 1208 | Diag("'clang-cc' executable not found in '$RealBin/libexec'.\n"); |
Ted Kremenek | 318e6a6 | 2009-03-24 04:29:13 +0000 | [diff] [blame] | 1209 | Diag("Using 'clang-cc' from path.\n"); |
Ted Kremenek | f22eacb | 2008-04-18 22:00:56 +0000 | [diff] [blame] | 1210 | } |
Ted Kremenek | fd9df0e | 2009-05-09 19:19:28 +0000 | [diff] [blame] | 1211 | if (!defined $ClangSB || ! -x $ClangSB) { |
| 1212 | Diag("'clang' executable not found in '$RealBin/bin'.\n"); |
| 1213 | Diag("Using 'clang' from path.\n"); |
| 1214 | } |
Ted Kremenek | 0b6c153 | 2008-04-08 20:22:12 +0000 | [diff] [blame] | 1215 | |
Ted Kremenek | 95aa105 | 2008-09-04 17:52:41 +0000 | [diff] [blame] | 1216 | if (defined $CXX) { |
| 1217 | $ENV{'CXX'} = $CXX; |
| 1218 | } |
| 1219 | else { |
| 1220 | $CXX = 'g++'; # This variable is used by other parts of scan-build |
| 1221 | # that need to know a default C++ compiler to fall back to. |
| 1222 | } |
| 1223 | |
Ted Kremenek | 4f4b17d | 2008-04-03 20:08:18 +0000 | [diff] [blame] | 1224 | $ENV{'CC'} = $Cmd; |
Ted Kremenek | fd9df0e | 2009-05-09 19:19:28 +0000 | [diff] [blame] | 1225 | $ENV{'CLANG_CC'} = $ClangCC; |
Ted Kremenek | f22eacb | 2008-04-18 22:00:56 +0000 | [diff] [blame] | 1226 | $ENV{'CLANG'} = $Clang; |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1227 | |
| 1228 | if ($Verbose >= 2) { |
| 1229 | $ENV{'CCC_ANALYZER_VERBOSE'} = 1; |
| 1230 | } |
| 1231 | |
Ted Kremenek | a9525c9 | 2008-05-12 22:07:14 +0000 | [diff] [blame] | 1232 | if ($Verbose >= 3) { |
| 1233 | $ENV{'CCC_ANALYZER_LOG'} = 1; |
| 1234 | } |
| 1235 | |
Ted Kremenek | 9012599 | 2008-07-15 23:41:32 +0000 | [diff] [blame] | 1236 | if (scalar(@AnalysesToRun) == 0) { |
| 1237 | foreach my $key (keys %AnalysesDefaultEnabled) { |
| 1238 | push @AnalysesToRun,$key; |
| 1239 | } |
Ted Kremenek | 0100678 | 2008-07-02 23:16:10 +0000 | [diff] [blame] | 1240 | } |
Ted Kremenek | 1262fc4 | 2008-05-14 20:10:33 +0000 | [diff] [blame] | 1241 | |
Ted Kremenek | e15fa27 | 2008-10-13 21:46:42 +0000 | [diff] [blame] | 1242 | if ($AnalyzeHeaders) { |
| 1243 | push @AnalysesToRun,"-analyzer-opt-analyze-headers"; |
| 1244 | } |
| 1245 | |
Ted Kremenek | 9012599 | 2008-07-15 23:41:32 +0000 | [diff] [blame] | 1246 | $ENV{'CCC_ANALYZER_ANALYSIS'} = join ' ',@AnalysesToRun; |
| 1247 | |
Zhongxing Xu | 3cab2b1 | 2008-11-02 10:58:16 +0000 | [diff] [blame] | 1248 | if (defined $StoreModel) { |
Zhongxing Xu | 07c3767 | 2008-10-27 14:26:32 +0000 | [diff] [blame] | 1249 | $ENV{'CCC_ANALYZER_STORE_MODEL'} = $StoreModel; |
| 1250 | } |
| 1251 | |
Ted Kremenek | be1fe1e | 2009-02-17 04:27:41 +0000 | [diff] [blame] | 1252 | if (defined $ConstraintsModel) { |
| 1253 | $ENV{'CCC_ANALYZER_CONSTRAINTS_MODEL'} = $ConstraintsModel; |
| 1254 | } |
| 1255 | |
Ted Kremenek | db4f5f2 | 2008-11-04 00:02:53 +0000 | [diff] [blame] | 1256 | if (defined $OutputFormat) { |
| 1257 | $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'} = $OutputFormat; |
| 1258 | } |
| 1259 | |
| 1260 | |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1261 | # Run the build. |
Ted Kremenek | 5656a98 | 2008-07-15 17:09:28 +0000 | [diff] [blame] | 1262 | my $ExitStatus = RunBuildCommand(\@ARGV, $IgnoreErrors, $Cmd); |
Ted Kremenek | 9cc8c2c | 2008-04-01 20:47:38 +0000 | [diff] [blame] | 1263 | |
Ted Kremenek | 7753b35 | 2009-07-27 22:10:34 +0000 | [diff] [blame] | 1264 | if (defined $OutputFormat) { |
Daniel Dunbar | 1182502 | 2009-07-29 16:21:23 +0000 | [diff] [blame] | 1265 | if ($OutputFormat =~ /plist/) { |
| 1266 | Diag "Analysis run complete.\n"; |
| 1267 | Diag "Analysis results (plist files) deposited in '$HtmlDir'\n"; |
| 1268 | } |
| 1269 | elsif ($OutputFormat =~ /html/) { |
Ted Kremenek | 7753b35 | 2009-07-27 22:10:34 +0000 | [diff] [blame] | 1270 | # Postprocess the HTML directory. |
| 1271 | my $NumBugs = Postprocess($HtmlDir, $BaseDir); |
Ted Kremenek | 5656a98 | 2008-07-15 17:09:28 +0000 | [diff] [blame] | 1272 | |
Ted Kremenek | 7753b35 | 2009-07-27 22:10:34 +0000 | [diff] [blame] | 1273 | if ($ViewResults and -r "$HtmlDir/index.html") { |
| 1274 | Diag "Analysis run complete.\n"; |
| 1275 | Diag "Viewing analysis results in '$HtmlDir' using scan-view.\n"; |
| 1276 | my $ScanView = Cwd::realpath("$RealBin/scan-view"); |
| 1277 | if (! -x $ScanView) { $ScanView = "scan-view"; } |
| 1278 | exec $ScanView, "$HtmlDir"; |
| 1279 | } |
| 1280 | |
| 1281 | if ($ExitStatusFoundBugs) { |
| 1282 | exit 1 if ($NumBugs > 0); |
| 1283 | exit 0; |
| 1284 | } |
Ted Kremenek | db4f5f2 | 2008-11-04 00:02:53 +0000 | [diff] [blame] | 1285 | } |
Ted Kremenek | 363dc3f | 2008-07-15 22:03:09 +0000 | [diff] [blame] | 1286 | } |
| 1287 | |
Ted Kremenek | 5656a98 | 2008-07-15 17:09:28 +0000 | [diff] [blame] | 1288 | exit $ExitStatus; |
| 1289 | |