blob: c280bb4d40a3f69c68ad7897e2cea5a24c40b666 [file] [log] [blame]
Ted Kremenek5a15d922012-01-03 22:05:57 +00001#!/usr/bin/python
2
3# [PR 11661] Note that we hardwire to /usr/bin/python because we
4# want to the use the system version of Python on Mac OS X.
5# This one has the scripting bridge enabled.
Ted Kremenek7aaa9532010-02-08 20:54:01 +00006
7import os
Ted Kremenek2775b932012-02-22 18:44:35 +00008import subprocess
Ted Kremenek7aaa9532010-02-08 20:54:01 +00009import sys
10import re
11import tempfile
12import shutil
13import stat
Ted Kremenek962da0b2010-02-09 18:46:58 +000014from AppKit import *
Ted Kremenek7aaa9532010-02-08 20:54:01 +000015
16def FindClangSpecs(path):
Ted Kremenek2775b932012-02-22 18:44:35 +000017 print "(+) Searching for xcspec file in: ", path
Ted Kremenek7aaa9532010-02-08 20:54:01 +000018 for root, dirs, files in os.walk(path):
19 for f in files:
20 if f.endswith(".xcspec") and f.startswith("Clang LLVM"):
21 yield os.path.join(root, f)
22
23def ModifySpec(path, pathToChecker):
Ted Kremenek7aaa9532010-02-08 20:54:01 +000024 t = tempfile.NamedTemporaryFile(delete=False)
25 foundAnalyzer = False
26 with open(path) as f:
27 for line in f:
28 if not foundAnalyzer:
29 if line.find("Static Analyzer") >= 0:
30 foundAnalyzer = True
31 else:
32 m = re.search('^(\s*ExecPath\s*=\s*")', line)
33 if m:
34 line = "".join([m.group(0), pathToChecker, '";\n'])
35 t.write(line)
36 t.close()
Ted Kremenek8d699372010-02-09 18:51:44 +000037 print "(+) processing:", path
Ted Kremenek757a9d12010-02-08 21:19:27 +000038 try:
39 shutil.copy(t.name, path)
40 os.chmod(path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IROTH)
41 except IOError, why:
Ted Kremenek8d699372010-02-09 18:51:44 +000042 print " (-) Cannot update file:", why, "\n"
Ted Kremenek757a9d12010-02-08 21:19:27 +000043 except OSError, why:
Ted Kremenek8d699372010-02-09 18:51:44 +000044 print " (-) Cannot update file:", why, "\n"
Ted Kremenek7aaa9532010-02-08 20:54:01 +000045 os.unlink(t.name)
46
47def main():
48 from optparse import OptionParser
49 parser = OptionParser('usage: %prog [options]')
50 parser.set_description(__doc__)
51 parser.add_option("--use-checker-build", dest="path",
52 help="Use the Clang located at the provided absolute path, e.g. /Users/foo/checker-1")
53 parser.add_option("--use-xcode-clang", action="store_const",
54 const="$(CLANG)", dest="default",
55 help="Use the Clang bundled with Xcode")
56 (options, args) = parser.parse_args()
57 if options.path is None and options.default is None:
58 parser.error("You must specify a version of Clang to use for static analysis. Specify '-h' for details")
59
Ted Kremenek962da0b2010-02-09 18:46:58 +000060 # determine if Xcode is running
61 for x in NSWorkspace.sharedWorkspace().runningApplications():
62 if x.localizedName().find("Xcode") >= 0:
Ted Kremenek8d699372010-02-09 18:51:44 +000063 print "(-) You must quit Xcode first before modifying its configuration files."
Ted Kremenek962da0b2010-02-09 18:46:58 +000064 return
65
Ted Kremenek7aaa9532010-02-08 20:54:01 +000066 if options.path:
67 # Expand tildes.
68 path = os.path.expanduser(options.path)
69 if not path.endswith("clang"):
Ted Kremenek8d699372010-02-09 18:51:44 +000070 print "(+) Using Clang bundled with checker build:", path
Ted Kremenek7aaa9532010-02-08 20:54:01 +000071 path = os.path.join(path, "bin", "clang");
72 else:
Ted Kremenek8d699372010-02-09 18:51:44 +000073 print "(+) Using Clang located at:", path
Ted Kremenek7aaa9532010-02-08 20:54:01 +000074 else:
Ted Kremenek8d699372010-02-09 18:51:44 +000075 print "(+) Using the Clang bundled with Xcode"
Ted Kremenek7aaa9532010-02-08 20:54:01 +000076 path = options.default
Ted Kremenek962da0b2010-02-09 18:46:58 +000077
Ted Kremenekb8971b22012-07-16 21:39:29 +000078 try:
79 xcode_path = subprocess.check_output(["xcode-select", "-print-path"])
80 except AttributeError:
81 # Fall back to the default install location when using Python < 2.7.0
82 xcode_path = "/Developer"
Ted Kremenek2775b932012-02-22 18:44:35 +000083 if (re.search("Xcode.app", xcode_path)):
84 # Cut off the 'Developer' dir, as the xcspec lies in another part
85 # of the Xcode.app subtree.
86 xcode_path = os.path.dirname(xcode_path)
87
88 for x in FindClangSpecs(xcode_path):
Ted Kremenek7aaa9532010-02-08 20:54:01 +000089 ModifySpec(x, path)
90
91if __name__ == '__main__':
92 main()
93