3 # ***** BEGIN GPL LICENSE BLOCK *****
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software Foundation,
17 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 # Contributor(s): Campbell Barton
21 # ***** END GPL LICENSE BLOCK *****
25 CHECKER_IGNORE_PREFIX = [
30 CHECKER_BIN = "sparse"
34 import project_source_info
39 USE_QUIET = (os.environ.get("QUIET", None) is not None)
43 source_info = project_source_info.build_info(use_cxx=False, ignore_prefix_list=CHECKER_IGNORE_PREFIX)
44 source_defines = project_source_info.build_defines_as_args()
47 for c, inc_dirs, defs in source_info:
49 cmd = ([CHECKER_BIN] +
52 [("-I%s" % i) for i in inc_dirs] +
53 [("-D%s" % d) for d in defs] +
57 check_commands.append((c, cmd))
59 def my_process(i, c, cmd):
61 percent = 100.0 * (i / len(check_commands))
62 percent_str = "[" + ("%.2f]" % percent).rjust(7) + " %:"
65 sys.stdout.write("%s %s\n" % (percent_str, c))
67 return subprocess.Popen(cmd)
69 process_functions = []
70 for i, (c, cmd) in enumerate(check_commands):
71 process_functions.append((my_process, (i, c, cmd)))
73 project_source_info.queue_processes(process_functions)
76 if __name__ == "__main__":