cmake_static_check_smatch.py 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #!/usr/bin/env python3
  2. # ***** BEGIN GPL LICENSE BLOCK *****
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; either version 2
  7. # of the License, or (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software Foundation,
  16. # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. #
  18. # Contributor(s): Campbell Barton
  19. #
  20. # ***** END GPL LICENSE BLOCK *****
  21. # <pep8 compliant>
  22. CHECKER_IGNORE_PREFIX = [
  23. "extern",
  24. "intern/moto",
  25. ]
  26. CHECKER_BIN = "smatch"
  27. CHECKER_ARGS = [
  28. "--full-path",
  29. "--two-passes",
  30. ]
  31. import project_source_info
  32. import subprocess
  33. import sys
  34. import os
  35. USE_QUIET = (os.environ.get("QUIET", None) is not None)
  36. def main():
  37. source_info = project_source_info.build_info(use_cxx=False, ignore_prefix_list=CHECKER_IGNORE_PREFIX)
  38. source_defines = project_source_info.build_defines_as_args()
  39. check_commands = []
  40. for c, inc_dirs, defs in source_info:
  41. cmd = ([CHECKER_BIN] +
  42. CHECKER_ARGS +
  43. [c] +
  44. [("-I%s" % i) for i in inc_dirs] +
  45. [("-D%s" % d) for d in defs] +
  46. source_defines
  47. )
  48. check_commands.append((c, cmd))
  49. def my_process(i, c, cmd):
  50. if not USE_QUIET:
  51. percent = 100.0 * (i / len(check_commands))
  52. percent_str = "[" + ("%.2f]" % percent).rjust(7) + " %:"
  53. sys.stdout.flush()
  54. sys.stdout.write("%s %s\n" % (percent_str, c))
  55. return subprocess.Popen(cmd)
  56. process_functions = []
  57. for i, (c, cmd) in enumerate(check_commands):
  58. process_functions.append((my_process, (i, c, cmd)))
  59. project_source_info.queue_processes(process_functions)
  60. if __name__ == "__main__":
  61. main()