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
40 source_info = project_source_info.build_info(use_cxx=False, ignore_prefix_list=CHECKER_IGNORE_PREFIX)
43 for c, inc_dirs, defs in source_info:
45 cmd = ([CHECKER_BIN] +
48 [("-I%s" % i) for i in inc_dirs] +
49 [("-D%s" % d) for d in defs]
52 check_commands.append((c, cmd))
54 def my_process(i, c, cmd):
55 percent = 100.0 * (i / (len(check_commands) - 1))
56 percent_str = "[" + ("%.2f]" % percent).rjust(7) + " %:"
59 sys.stdout.write("%s %s\n" % (percent_str, c))
61 return subprocess.Popen(cmd)
63 process_functions = []
64 for i, (c, cmd) in enumerate(check_commands):
65 process_functions.append((my_process, (i, c, cmd)))
67 project_source_info.queue_processes(process_functions)
70 if __name__ == "__main__":