blob: 3d1d6fbcaa049d45e494a53d202576d33d4762ba [file] [log] [blame]
Channagoud Kadabi1a82c2b2016-07-01 12:28:20 -07001#! /usr/bin/env python2
2# -*- coding: utf-8 -*-
3
Satya Durga Srinivasu Prabhala41259a42017-05-22 17:00:49 -07004# Copyright (c) 2011-2017, The Linux Foundation. All rights reserved.
Channagoud Kadabi1a82c2b2016-07-01 12:28:20 -07005#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are met:
8# * Redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above copyright
11# notice, this list of conditions and the following disclaimer in the
12# documentation and/or other materials provided with the distribution.
13# * Neither the name of The Linux Foundation nor
14# the names of its contributors may be used to endorse or promote
15# products derived from this software without specific prior written
16# permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
22# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30# Invoke gcc, looking for warnings, and causing a failure if there are
31# non-whitelisted warnings.
32
33import errno
34import re
35import os
36import sys
37import subprocess
38
39# Note that gcc uses unicode, which may depend on the locale. TODO:
40# force LANG to be set to en_US.UTF-8 to get consistent warnings.
41
42allowed_warnings = set([
Channagoud Kadabi1a82c2b2016-07-01 12:28:20 -070043 ])
44
45# Capture the name of the object file, can find it.
46ofile = None
47
48warning_re = re.compile(r'''(.*/|)([^/]+\.[a-z]+:\d+):(\d+:)? warning:''')
49def interpret_warning(line):
50 """Decode the message from gcc. The messages we care about have a filename, and a warning"""
51 line = line.rstrip('\n')
52 m = warning_re.match(line)
53 if m and m.group(2) not in allowed_warnings:
Shadab Naseemd733f8f2019-02-20 12:57:27 +053054 print >> sys.stderr, "error, forbidden warning:", m.group(2)
Channagoud Kadabi1a82c2b2016-07-01 12:28:20 -070055
56 # If there is a warning, remove any object if it exists.
57 if ofile:
58 try:
59 os.remove(ofile)
60 except OSError:
61 pass
62 sys.exit(1)
63
64def run_gcc():
65 args = sys.argv[1:]
66 # Look for -o
67 try:
68 i = args.index('-o')
69 global ofile
70 ofile = args[i+1]
71 except (ValueError, IndexError):
72 pass
73
74 compiler = sys.argv[0]
75
76 try:
77 proc = subprocess.Popen(args, stderr=subprocess.PIPE)
78 for line in proc.stderr:
Shadab Naseemd733f8f2019-02-20 12:57:27 +053079 print >> sys.stderr, line,
Channagoud Kadabi1a82c2b2016-07-01 12:28:20 -070080 interpret_warning(line)
81
82 result = proc.wait()
83 except OSError as e:
84 result = e.errno
85 if result == errno.ENOENT:
Shadab Naseemd733f8f2019-02-20 12:57:27 +053086 print >> sys.stderr, args[0] + ':',e.strerror
87 print >> sys.stderr, 'Is your PATH set correctly?'
Channagoud Kadabi1a82c2b2016-07-01 12:28:20 -070088 else:
Shadab Naseemd733f8f2019-02-20 12:57:27 +053089 print >> sys.stderr, ' '.join(args), str(e)
Channagoud Kadabi1a82c2b2016-07-01 12:28:20 -070090
91 return result
92
93if __name__ == '__main__':
94 status = run_gcc()
95 sys.exit(status)