blob: 890f0145a5dc49bbfc2121e042f23c25914750e9 [file] [log] [blame]
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +00001#!/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
15use strict;
16use warnings;
17use File::Temp qw/ :mktemp /;
Ted Kremenek22d6a632008-04-02 20:43:36 +000018use FindBin qw($RealBin);
Ted Kremeneka6e24812008-04-19 18:05:48 +000019use Digest::MD5;
Ted Kremenek7a4648d2008-05-02 22:04:53 +000020use File::Basename;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +000021
22my $Verbose = 0; # Verbose output from this script.
23my $Prog = "scan-build";
24
25##----------------------------------------------------------------------------##
26# GetHTMLRunDir - Construct an HTML directory name for the current run.
27##----------------------------------------------------------------------------##
28
Sam Bishopa0e22662008-04-02 03:35:43 +000029sub GetHTMLRunDir {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +000030
31 die "Not enough arguments." if (@_ == 0);
32
33 my $Dir = shift @_;
34
35 # Get current date and time.
36
37 my @CurrentTime = localtime();
38
39 my $year = $CurrentTime[5] + 1900;
40 my $day = $CurrentTime[3];
41 my $month = $CurrentTime[4] + 1;
42
Ted Kremenek9d7405f2008-05-14 17:23:56 +000043 my $DateString = sprintf("%d-%02d-%02d", $year, $month, $day);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +000044
45 # Determine the run number.
46
47 my $RunNumber;
48
49 if (-d $Dir) {
50
51 if (! -r $Dir) {
Sam Bishopa0e22662008-04-02 03:35:43 +000052 die "error: '$Dir' exists but is not readable.\n";
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +000053 }
54
55 # Iterate over all files in the specified directory.
56
57 my $max = 0;
58
59 opendir(DIR, $Dir);
60 my @FILES= readdir(DIR);
61 closedir(DIR);
62
63 foreach my $f (@FILES) {
64
65 my @x = split/-/, $f;
66
67 next if (scalar(@x) != 4);
68 next if ($x[0] != $year);
69 next if ($x[1] != $month);
70 next if ($x[2] != $day);
71
72 if ($x[3] > $max) {
73 $max = $x[3];
74 }
75 }
76
77 $RunNumber = $max + 1;
78 }
79 else {
80
81 if (-x $Dir) {
Sam Bishopa0e22662008-04-02 03:35:43 +000082 die "error: '$Dir' exists but is not a directory.\n";
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +000083 }
84
85 # $Dir does not exist. It will be automatically created by the
86 # clang driver. Set the run number to 1.
87
88 $RunNumber = 1;
89 }
90
91 die "RunNumber must be defined!" if (!defined($RunNumber));
92
93 # Append the run number.
94
95 return "$Dir/$DateString-$RunNumber";
96}
97
Sam Bishopa0e22662008-04-02 03:35:43 +000098sub SetHtmlEnv {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +000099
100 die "Wrong number of arguments." if (scalar(@_) != 2);
101
102 my $Args = shift;
103 my $Dir = shift;
104
105 die "No build command." if (scalar(@$Args) == 0);
106
107 my $Cmd = $$Args[0];
108
109 if ($Cmd =~ /configure/) {
110 return;
111 }
112
113 if ($Verbose) {
114 print "$Prog: Emitting reports for this run to '$Dir'.\n";
115 }
116
117 $ENV{'CCC_ANALYZER_HTML'} = $Dir;
118}
119
120##----------------------------------------------------------------------------##
Ted Kremenek57cf4462008-04-18 15:09:30 +0000121# ComputeDigest - Compute a digest of the specified file.
122##----------------------------------------------------------------------------##
123
124sub ComputeDigest {
125 my $FName = shift;
126 die "Cannot read $FName" if (! -r $FName);
Ted Kremeneka6e24812008-04-19 18:05:48 +0000127
128 # Use Digest::MD5. We don't have to be cryptographically secure. We're
Ted Kremenek7ea02e62008-04-19 18:07:44 +0000129 # just looking for duplicate files that come from a non-malicious source.
130 # We use Digest::MD5 because it is a standard Perl module that should
Ted Kremeneka6e24812008-04-19 18:05:48 +0000131 # come bundled on most systems.
132
133 open(FILE, $FName) or die "Cannot open $FName.";
134 binmode FILE;
135 my $Result = Digest::MD5->new->addfile(*FILE)->hexdigest;
136 close(FILE);
137
138 # Return the digest.
139
140 return $Result;
Ted Kremenek57cf4462008-04-18 15:09:30 +0000141}
142
143##----------------------------------------------------------------------------##
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000144# UpdatePrefix - Compute the common prefix of files.
145##----------------------------------------------------------------------------##
146
147my $Prefix;
148
149sub UpdatePrefix {
150
151 my $x = shift;
152 my $y = basename($x);
153 $x =~ s/\Q$y\E$//;
154
155 # Ignore /usr, /Library, /System, /Developer
156
157 return if ( $x =~ /^\/usr/ or $x =~ /^\/Library/
158 or $x =~ /^\/System/ or $x =~ /^\/Developer/);
159
160
161 if (!defined $Prefix) {
162 $Prefix = $x;
163 return;
164 }
165
166 chop $Prefix while (!($x =~ /^$Prefix/));
167}
168
169sub GetPrefix {
170 return $Prefix;
171}
172
173##----------------------------------------------------------------------------##
174# UpdateInFilePath - Update the path in the report file.
175##----------------------------------------------------------------------------##
176
177sub UpdateInFilePath {
178 my $fname = shift;
179 my $regex = shift;
180 my $newtext = shift;
181
182 open (RIN, $fname) or die "cannot open $fname";
183 open (ROUT, ">$fname.tmp") or die "cannot open $fname.tmp";
184
185 while (<RIN>) {
186 s/$regex/$newtext/;
187 print ROUT $_;
188 }
189
190 close (ROUT);
191 close (RIN);
192 `mv $fname.tmp $fname`;
193}
194
195##----------------------------------------------------------------------------##
Ted Kremenek5744dc22008-04-02 18:03:36 +0000196# ScanFile - Scan a report file for various identifying attributes.
197##----------------------------------------------------------------------------##
198
Ted Kremenek57cf4462008-04-18 15:09:30 +0000199# Sometimes a source file is scanned more than once, and thus produces
200# multiple error reports. We use a cache to solve this problem.
201
202my %AlreadyScanned;
203
Ted Kremenek5744dc22008-04-02 18:03:36 +0000204sub ScanFile {
205
206 my $Index = shift;
207 my $Dir = shift;
208 my $FName = shift;
209
Ted Kremenek57cf4462008-04-18 15:09:30 +0000210 # Compute a digest for the report file. Determine if we have already
211 # scanned a file that looks just like it.
212
213 my $digest = ComputeDigest("$Dir/$FName");
214
215 if (defined($AlreadyScanned{$digest})) {
216 # Redundant file. Remove it.
217 `rm -f $Dir/$FName`;
218 return;
219 }
220
221 $AlreadyScanned{$digest} = 1;
222
Ted Kremenek809709f2008-04-18 16:58:34 +0000223 # At this point the report file is not world readable. Make it happen.
Ted Kremenek684bb092008-04-18 15:18:20 +0000224 `chmod 644 $Dir/$FName`;
225
226 # Scan the report file for tags.
Ted Kremenek5744dc22008-04-02 18:03:36 +0000227 open(IN, "$Dir/$FName") or die "$Prog: Cannot open '$Dir/$FName'\n";
228
229 my $BugDesc = "";
Ted Kremenek22d6a632008-04-02 20:43:36 +0000230 my $BugFile = "";
231 my $BugPathLength = 1;
232 my $BugLine = 0;
Ted Kremenek5744dc22008-04-02 18:03:36 +0000233
234 while (<IN>) {
235
236 if (/<!-- BUGDESC (.*) -->$/) {
237 $BugDesc = $1;
Ted Kremenek5744dc22008-04-02 18:03:36 +0000238 }
Ted Kremenek22d6a632008-04-02 20:43:36 +0000239 elsif (/<!-- BUGFILE (.*) -->$/) {
240 $BugFile = $1;
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000241 UpdatePrefix($BugFile);
Ted Kremenek22d6a632008-04-02 20:43:36 +0000242 }
243 elsif (/<!-- BUGPATHLENGTH (.*) -->$/) {
244 $BugPathLength = $1;
245 }
246 elsif (/<!-- BUGLINE (.*) -->$/) {
247 $BugLine = $1;
248 }
Ted Kremenek5744dc22008-04-02 18:03:36 +0000249 }
250
251 close(IN);
252
Ted Kremenek22d6a632008-04-02 20:43:36 +0000253 push @$Index,[ $FName, $BugDesc, $BugFile, $BugLine, $BugPathLength ];
254}
255
256##----------------------------------------------------------------------------##
257# CopyJS - Copy JavaScript code to target directory.
258##----------------------------------------------------------------------------##
259
260sub CopyJS {
261
262 my $Dir = shift;
263
264 die "$Prog: Cannot find 'sorttable.js'.\n"
265 if (! -r "$RealBin/sorttable.js");
266
267 `cp $RealBin/sorttable.js $Dir`;
268
269 die "$Prog: Could not copy 'sorttable.js' to '$Dir'."
270 if (! -r "$Dir/sorttable.js");
Ted Kremenek5744dc22008-04-02 18:03:36 +0000271}
272
273##----------------------------------------------------------------------------##
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000274# Postprocess - Postprocess the results of an analysis scan.
275##----------------------------------------------------------------------------##
276
Sam Bishopa0e22662008-04-02 03:35:43 +0000277sub Postprocess {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000278
279 my $Dir = shift;
Ted Kremenek684bb092008-04-18 15:18:20 +0000280 my $BaseDir = shift;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000281
282 die "No directory specified." if (!defined($Dir));
Ted Kremenek684bb092008-04-18 15:18:20 +0000283 die "No base directory specified." if (!defined($BaseDir));
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000284
285 if (! -d $Dir) {
286 return;
287 }
288
289 opendir(DIR, $Dir);
290 my @files = grep(/^report-.*\.html$/,readdir(DIR));
291 closedir(DIR);
292
293 if (scalar(@files) == 0) {
Ted Kremenek02493782008-04-02 07:05:07 +0000294 print "$Prog: Removing directory '$Dir' because it contains no reports.\n";
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000295 `rm -fR $Dir`;
296 return;
297 }
Ted Kremenek5744dc22008-04-02 18:03:36 +0000298
299 # Scan each report file and build an index.
300
301 my @Index;
302
303 foreach my $file (@files) { ScanFile(\@Index, $Dir, $file); }
304
305 # Generate an index.html file.
306
307 my $FName = "$Dir/index.html";
308
309 open(OUT, ">$FName") or die "$Prog: Cannot create file '$FName'\n";
310
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000311 # Print out the header.
312
Ted Kremenek5744dc22008-04-02 18:03:36 +0000313print OUT <<ENDTEXT;
314<html>
315<head>
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000316<style type="text/css">
317 body { color:#000000; background-color:#ffffff }
Ted Kremenek22d6a632008-04-02 20:43:36 +0000318 body { font-family: Helvetica, sans-serif; font-size:9pt }
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000319 h1 { font-size:12pt }
Ted Kremenek22d6a632008-04-02 20:43:36 +0000320 table.sortable thead {
321 background-color:#eee; color:#666666;
322 font-weight: bold; cursor: default;
Ted Kremenekbba1cf52008-04-03 05:50:51 +0000323 text-align:center;
324 border-top: 2px solid #000000;
325 border-bottom: 2px solid #000000;
326 font-weight: bold; font-family: Verdana
327 }
Ted Kremenek22d6a632008-04-02 20:43:36 +0000328 table.sortable { border: 1px #000000 solid }
329 table.sortable { border-collapse: collapse; border-spacing: 0px }
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000330 td { border-bottom: 1px #000000 dotted }
Ted Kremenek22d6a632008-04-02 20:43:36 +0000331 td { padding:5px; padding-left:8px; padding-right:8px }
Ted Kremenekd8c6d0c2008-04-07 23:50:07 +0000332 td { text-align:left; font-size:9pt }
Ted Kremenek22d6a632008-04-02 20:43:36 +0000333 td.View { padding-left: 10px }
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000334</style>
Ted Kremenek22d6a632008-04-02 20:43:36 +0000335<script src="sorttable.js"></script>
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000336<script language='javascript' type="text/javascript">
337function SetDisplay(RowClass, DisplayVal)
338{
339 var Rows = document.getElementsByTagName("tr");
340 for ( var i = 0 ; i < Rows.length; ++i ) {
341 if (Rows[i].className == RowClass) {
342 Rows[i].style.display = DisplayVal;
343 }
344 }
345}
346
347function ToggleDisplay(CheckButton, ClassName) {
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000348 if (CheckButton.checked) {
349 SetDisplay(ClassName, "");
350 }
351 else {
352 SetDisplay(ClassName, "none");
353 }
354}
355</script>
356</head>
357<body>
358ENDTEXT
359
360 # Print out the summary table.
361
362 my %Totals;
363
364 for my $row ( @Index ) {
365
Ted Kremenek432af592008-05-06 18:11:36 +0000366 #my $bug_type = lc($row->[1]);
367 my $bug_type = ($row->[1]);
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000368
369 if (!defined($Totals{$bug_type})) {
370 $Totals{$bug_type} = 1;
371 }
372 else {
373 $Totals{$bug_type}++;
374 }
375 }
376
377print OUT <<ENDTEXT;
378<h3>Summary</h3>
379<table class="sortable">
380<tr>
381 <td>Bug Type</td>
382 <td>Quantity</td>
383 <td "sorttable_nosort">Display?</td>
384</tr>
385ENDTEXT
386
387 for my $key ( sort { $a cmp $b } keys %Totals ) {
Ted Kremenekbdf66c72008-05-06 23:51:45 +0000388 my $x = lc($key);
389 $x =~ s/\s[,]/_/g;
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000390 print OUT "<tr><td>$key</td><td>$Totals{$key}</td><td><input type=\"checkbox\" onClick=\"ToggleDisplay(this,'bt_$x');\" checked/></td></tr>\n";
391 }
392
393 # Print out the table of errors.
394
395print OUT <<ENDTEXT;
396</table>
397<h3>Reports</h3>
Ted Kremenek22d6a632008-04-02 20:43:36 +0000398<table class="sortable">
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000399<tr>
Ted Kremenekbba1cf52008-04-03 05:50:51 +0000400 <td>Bug Type</td>
401 <td>File</td>
402 <td>Line</td>
403 <td>Path Length</td>
404 <td "sorttable_nosort"></td>
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000405</tr>
Ted Kremenek5744dc22008-04-02 18:03:36 +0000406ENDTEXT
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000407
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000408 my $prefix = GetPrefix();
409 my $regex;
410 my $InFileRegex;
411 my $InFilePrefix = "File:</td><td>";
412
413 if (defined($prefix)) {
414 $regex = qr/^\Q$prefix\E/is;
415 $InFileRegex = qr/\Q$InFilePrefix$prefix\E/is;
416 }
417
Ted Kremenek5744dc22008-04-02 18:03:36 +0000418 for my $row ( sort { $a->[1] cmp $b->[1] } @Index ) {
419
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000420 my $x = lc($row->[1]);
Ted Kremenekbdf66c72008-05-06 23:51:45 +0000421 $x =~ s/\s[,]/_/g;
Ted Kremenek6e6eff72008-04-15 20:47:02 +0000422
423 print OUT "<tr class=\"bt_$x\">\n";
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000424
Ted Kremenek5744dc22008-04-02 18:03:36 +0000425 my $ReportFile = $row->[0];
426
Ted Kremenek22d6a632008-04-02 20:43:36 +0000427 print OUT " <td class=\"DESC\">";
Ted Kremenek432af592008-05-06 18:11:36 +0000428 #print OUT lc($row->[1]);
429 print OUT $row->[1];
Ted Kremenek22d6a632008-04-02 20:43:36 +0000430 print OUT "</td>\n";
Ted Kremenek5744dc22008-04-02 18:03:36 +0000431
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000432 # Update the file prefix.
433
434 my $fname = $row->[2];
435 if (defined($regex)) {
436 $fname =~ s/$regex//;
437 UpdateInFilePath("$Dir/$ReportFile", $InFileRegex, $InFilePrefix)
438 }
Ted Kremenek3e56e0b2008-05-02 23:40:49 +0000439
Ted Kremenek7a4648d2008-05-02 22:04:53 +0000440 print OUT "<td>$fname</td>\n";
441
442 # Print the rest of the columns.
443
444 for my $j ( 3 .. $#{$row} ) {
Ted Kremenek5744dc22008-04-02 18:03:36 +0000445 print OUT "<td>$row->[$j]</td>\n"
446 }
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000447
448 # Emit the "View" link.
Ted Kremenek5744dc22008-04-02 18:03:36 +0000449
Ted Kremenek22d6a632008-04-02 20:43:36 +0000450 print OUT " <td class=\"View\"><a href=\"$ReportFile#EndPath\">View</a></td>\n";
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000451
452 # End the row.
Ted Kremenek5744dc22008-04-02 18:03:36 +0000453 print OUT "</tr>\n";
454 }
455
456 print OUT "</table>\n</body></html>\n";
457 close(OUT);
Ted Kremenek22d6a632008-04-02 20:43:36 +0000458
Ted Kremenek22d6a632008-04-02 20:43:36 +0000459 CopyJS($Dir);
Ted Kremenek684bb092008-04-18 15:18:20 +0000460
461 # Make sure $Dir and $BaseDir is world readable/executable.
462 `chmod 755 $Dir`;
463 `chmod 755 $BaseDir`;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000464}
465
466##----------------------------------------------------------------------------##
Ted Kremenekdab11102008-04-02 04:43:42 +0000467# RunBuildCommand - Run the build command.
468##----------------------------------------------------------------------------##
469
Ted Kremenek6b628982008-04-30 23:47:12 +0000470sub AddIfNotPresent {
471 my $Args = shift;
472 my $Arg = shift;
473 my $found = 0;
474
475 foreach my $k (@$Args) {
476 if ($k eq $Arg) {
477 $found = 1;
478 last;
479 }
480 }
481
482 if ($found == 0) {
483 push @$Args, $Arg;
484 }
485}
486
Ted Kremenekdab11102008-04-02 04:43:42 +0000487sub RunBuildCommand {
488
489 my $Args = shift;
Ted Kremenek7442ca62008-04-02 16:04:51 +0000490 my $IgnoreErrors = shift;
Ted Kremenekdab11102008-04-02 04:43:42 +0000491 my $Cmd = $Args->[0];
492
Ted Kremenek6a43ba92008-04-02 15:34:12 +0000493 if ($Cmd eq "gcc" or $Cmd eq "cc" or $Cmd eq "llvm-gcc") {
Ted Kremenekdab11102008-04-02 04:43:42 +0000494 shift @$Args;
495 unshift @$Args, "ccc-analyzer"
496 }
Ted Kremenek7442ca62008-04-02 16:04:51 +0000497 elsif ($IgnoreErrors) {
498 if ($Cmd eq "make" or $Cmd eq "gmake") {
Ted Kremenek6b628982008-04-30 23:47:12 +0000499 AddIfNotPresent($Args,"-k");
Ted Kremenek8912b542008-05-13 21:28:02 +0000500 AddIfNotPresent($Args,"-i");
Ted Kremenek7442ca62008-04-02 16:04:51 +0000501 }
502 elsif ($Cmd eq "xcodebuild") {
Ted Kremenek6b628982008-04-30 23:47:12 +0000503 AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES");
Ted Kremenek7442ca62008-04-02 16:04:51 +0000504 }
Ted Kremenek6b628982008-04-30 23:47:12 +0000505 }
506
507 # Disable distributed builds for xcodebuild.
508 if ($Cmd eq "xcodebuild") {
509 AddIfNotPresent($Args,"-nodistribute");
510 }
Ted Kremenekdab11102008-04-02 04:43:42 +0000511
512 system(@$Args);
513}
514
Ted Kremenekdab11102008-04-02 04:43:42 +0000515##----------------------------------------------------------------------------##
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000516# DisplayHelp - Utility function to display all help options.
517##----------------------------------------------------------------------------##
518
Sam Bishopa0e22662008-04-02 03:35:43 +0000519sub DisplayHelp {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000520
Ted Kremenek5744dc22008-04-02 18:03:36 +0000521print <<ENDTEXT;
Sam Bishopa0e22662008-04-02 03:35:43 +0000522USAGE: $Prog [options] <build command> [build options]
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000523
524OPTIONS:
525
526 -o - Target directory for HTML report files. Subdirectories
Sam Bishopa0e22662008-04-02 03:35:43 +0000527 will be created as needed to represent separate "runs" of
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000528 the analyzer. If this option is not specified, a directory
529 is created in /tmp to store the reports.
530
Ted Kremenek10f883f2008-04-03 07:11:44 +0000531 -h - Display this message.
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000532 --help
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000533
Ted Kremenekaf08f642008-04-02 16:31:58 +0000534 -k - Add a "keep on going" option to the specified build command.
Ted Kremenekf02e8db2008-04-02 16:41:25 +0000535 --keep-going This option currently supports make and xcodebuild.
536 This is a convenience option; one can specify this
537 behavior directly using build options.
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000538
Ted Kremenekdab11102008-04-02 04:43:42 +0000539 -v - Verbose output from $Prog and the analyzer.
540 A second "-v" increases verbosity.
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000541
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000542 -V - View analysis results in a web browser when the build
543 --view completes.
544
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000545BUILD OPTIONS
546
Ted Kremenek39eefde2008-04-02 16:47:27 +0000547 You can specify any build option acceptable to the build command.
548
Ted Kremenek5744dc22008-04-02 18:03:36 +0000549EXAMPLE
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000550
Ted Kremenek5744dc22008-04-02 18:03:36 +0000551 $Prog -o /tmp/myhtmldir make -j4
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000552
Ted Kremenek39eefde2008-04-02 16:47:27 +0000553 The above example causes analysis reports to be deposited into
554 a subdirectory of "/tmp/myhtmldir" and to run "make" with the "-j4" option.
555 A different subdirectory is created each time $Prog analyzes a project.
556 The analyzer should support most parallel builds, but not distributed builds.
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000557
558ENDTEXT
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000559}
560
561##----------------------------------------------------------------------------##
562# Process command-line arguments.
563##----------------------------------------------------------------------------##
564
565my $HtmlDir; # Parent directory to store HTML files.
566my $IgnoreErrors = 0; # Ignore build errors.
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000567my $ViewResults = 0; # View results when the build terminates.
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000568
569if (!@ARGV) {
570 DisplayHelp();
Sam Bishopa0e22662008-04-02 03:35:43 +0000571 exit 1;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000572}
573
574while (@ARGV) {
575
576 # Scan for options we recognize.
577
578 my $arg = $ARGV[0];
579
Sam Bishop2f2418e2008-04-03 14:29:47 +0000580 if ($arg eq "-h" or $arg eq "--help") {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000581 DisplayHelp();
Sam Bishopa0e22662008-04-02 03:35:43 +0000582 exit 0;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000583 }
584
585 if ($arg eq "-o") {
586 shift @ARGV;
587
588 if (!@ARGV) {
Ted Kremenek0062ad42008-04-02 16:35:01 +0000589 die "$Prog: '-o' option requires a target directory name.\n";
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000590 }
591
592 $HtmlDir = shift @ARGV;
593 next;
594 }
595
Ted Kremenek2b74ab62008-04-01 21:22:03 +0000596 if ($arg eq "-k" or $arg eq "--keep-going") {
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000597 shift @ARGV;
598 $IgnoreErrors = 1;
599 next;
600 }
601
602 if ($arg eq "-v") {
603 shift @ARGV;
604 $Verbose++;
605 next;
606 }
607
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000608 if ($arg eq "-V" or $arg eq "--view") {
609 shift @ARGV;
610 $ViewResults = 1;
611 next;
612 }
613
Ted Kremenek0062ad42008-04-02 16:35:01 +0000614 die "$Prog: unrecognized option '$arg'\n" if ($arg =~ /^-/);
615
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000616 last;
617}
618
619if (!@ARGV) {
620 print STDERR "$Prog: No build command specified.\n\n";
621 DisplayHelp();
Sam Bishopa0e22662008-04-02 03:35:43 +0000622 exit 1;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000623}
624
625# Determine the output directory for the HTML reports.
626
627if (!defined($HtmlDir)) {
628
Sam Bishopa0e22662008-04-02 03:35:43 +0000629 $HtmlDir = mkdtemp("/tmp/$Prog-XXXXXX");
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000630
631 if (!defined($HtmlDir)) {
Sam Bishopa0e22662008-04-02 03:35:43 +0000632 die "error: Cannot create HTML directory in /tmp.\n";
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000633 }
634
635 if (!$Verbose) {
636 print "$Prog: Using '$HtmlDir' as base HTML report directory.\n";
637 }
638}
639
Ted Kremenek684bb092008-04-18 15:18:20 +0000640my $BaseDir = $HtmlDir;
Sam Bishopa0e22662008-04-02 03:35:43 +0000641$HtmlDir = GetHTMLRunDir($HtmlDir);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000642
643# Set the appropriate environment variables.
644
Sam Bishopa0e22662008-04-02 03:35:43 +0000645SetHtmlEnv(\@ARGV, $HtmlDir);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000646
Ted Kremenek0b6c1532008-04-08 20:22:12 +0000647my $Cmd = "$RealBin/ccc-analyzer";
648
649die "$Prog: Executable 'ccc-analyzer' does not exist at '$Cmd'\n"
650 if (! -x $Cmd);
Ted Kremenekf22eacb2008-04-18 22:00:56 +0000651
652my $Clang = "$RealBin/clang";
653
654if (! -x $Clang) {
655 print "$Prog: 'clang' executable not found in '$RealBin'. Using 'clang' from path.\n";
656 $Clang = "clang";
657}
Ted Kremenek0b6c1532008-04-08 20:22:12 +0000658
Ted Kremenek4f4b17d2008-04-03 20:08:18 +0000659$ENV{'CC'} = $Cmd;
Ted Kremenekf22eacb2008-04-18 22:00:56 +0000660$ENV{'CLANG'} = $Clang;
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000661
662if ($Verbose >= 2) {
663 $ENV{'CCC_ANALYZER_VERBOSE'} = 1;
664}
665
Ted Kremeneka9525c92008-05-12 22:07:14 +0000666if ($Verbose >= 3) {
667 $ENV{'CCC_ANALYZER_LOG'} = 1;
668}
669
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000670# Run the build.
671
Ted Kremenek7442ca62008-04-02 16:04:51 +0000672RunBuildCommand(\@ARGV, $IgnoreErrors);
Ted Kremenek9cc8c2c2008-04-01 20:47:38 +0000673
674# Postprocess the HTML directory.
675
Ted Kremenek684bb092008-04-18 15:18:20 +0000676Postprocess($HtmlDir, $BaseDir);
Ted Kremenek7f8a3252008-04-02 18:42:49 +0000677
678if ($ViewResults and -r "$HtmlDir/index.html") {
679 # Only works on Mac OS X (for now).
680 print "Viewing analysis results: '$HtmlDir/index.html'\n";
681 `open $HtmlDir/index.html`
682}