summaryrefslogtreecommitdiff
path: root/bin/check_build_logs
blob: 178ab1983c5ede9450f9f6c025769b97f7f4b7fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
    & eval 'exec perl -S $0 $argv:q'
    if 0;

# $Id$
#
# Reviews build logs and reports problems, via stdout or mail.

use strict;

my $usage="$0 [-l log directory] [-m mail recipient(s)] [-p purify output]\n";

####
#### Configuration parameters.
####
my $subject = 'ACE+TAO build results';
my $find = -e '/pkg/gnu/bin/find'  ?  '/pkg/gnu/bin/find'  :  'find';
my $mail = "mail -s '$subject'";

my $ostype = $ENV{'OSTYPE'}  ||  `/bin/uname -s`;
if ( "$ostype" =~ /(solaris)|(SunOS)/i ) {
  #### $mail = "/pkg/mh/bin/mhmail -subject '$subject'";
  $mail = "/usr/bin/mailx -s '$subject'";
}

$ENV{'LD_LIBRARY_PATH'} = '/opt/SUNWspro_5.0/dt/lib:/usr/openwin/lib:/usr/lib:/project/danzon/pkg/egcs/lib:' unless $ENV{'LD_LIBRARY_PATH'};
$ENV{'TMPDIR'} = '/tmp';
$ENV{'USER'} = $ENV{'LOGNAME'};

my $log_directory = '/project/danzontmp/levine/build-logs';
my $mail_recipients = '';
my $purify = '';

####
#### Process command line args.
####
while ($#ARGV >= $[) {
  if ($ARGV[0] eq '-l') {
    if ($ARGV[1] =~ /^[^-]/) {
      $log_directory = $ARGV[1];
      shift;
    } else {
      print STDERR "$0:  must provide argument for -l option\n";
      die $usage;
    }
  } elsif ($ARGV[0] eq '-m') {
    if ($ARGV[1] =~ /^[\w@\.]+$/) {
      $mail_recipients = $ARGV[1];
      shift;
    } else {
      print STDERR "$0:  must provide argument for -m option\n";
      die $usage;
    }
  } elsif ($ARGV[0] eq '-p') {
    if ($ARGV[1] !~ /^-/) {
      $purify = $ARGV[1];
      shift;
    } else {
      print STDERR "$0:  must provide argument for -p option\n";
      die $usage;
    }
  } elsif ($ARGV[0] eq '-?') {
    print "$usage";
    exit;
  } else {
    print "$0: unknown arg: $ARGV[0]\n";
    print "$usage";
    exit 1;
  }
  shift;
}


####
#### Find the log files.
####
chdir $log_directory  ||
  die "$0: unable to cd to \"$log_directory\"\n";

(my $log_files = ( `$find . -name '*.log' -daystart -ctime 0 -print` )) =~
  tr [\n] [ ];


####
#### Grep the log files for problems.
####
my @output = ();
open (EGREP, "egrep -n \'Error|errors|[^a]Stop|No rule to make|\(undefined symb\)|[Ww]arn|not exist|core dumped|: #[0-9]|cxx:\' $log_files /dev/null |")  ||
  die "$0: unable to open egrep\n";
while (<EGREP>) {
  push @output, $_ unless /calls, 0 errors$/  ||
                          /Found non-pic R_SPARC/  ||
                          /Purify engine: Error: .* Ignoring it\.$/;
}
close EGREP;


####
#### Check a Purify output file for bad things.
####
if ("$purify") {
  my $found_anomaly = 0;

  open (PURIFY, "$purify")  ||
    die "$0: unable to open $purify\n";
  while (<PURIFY>) {
    if (/^[A-Z][A-Z][A-Z]:/) {
      unless ($found_anomaly) {
        push @output, "\n";
        push @output, "Purify detected anomalies!!!!\n";
        push @output, "See $purify:\n";
        $found_anomaly = 1;
      }

      push @output, $_;
    }
  }
  close PURIFY;
}


####
#### Produce output, if there were any problems.
####
if ($#output == -1) {
  push @output, "No problems to report.\n";
}

{
  my $tmp_file;

  if ("$mail_recipients") {
    $tmp_file = "/tmp/check_build_logs.$$";
    open (MAIL, "> $tmp_file")  ||
      die "$0: unable to open $tmp_file\n";
    select MAIL;
  }

  print "This is an automatically generated message.\n\n";
  print "Log files are in $log_directory.\n\n";

  print @output;

  if ("$mail_recipients") {
    close MAIL;
    system ("$mail $mail_recipients < $tmp_file")  &&
      warn "$0: $mail $mail_recipients failed with status $?\n";
    unlink $tmp_file;
  }
}