Ted Kremenek | 5a15d92 | 2012-01-03 22:05:57 +0000 | [diff] [blame] | 1 | #!/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 Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 6 | |
Ted Kremenek | e756b65 | 2013-01-04 19:04:42 +0000 | [diff] [blame] | 7 | import sys |
| 8 | if sys.version_info < (2, 7): |
| 9 | print "set-xcode-analyzer requires Python 2.7 or later" |
| 10 | sys.exit(1) |
| 11 | |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 12 | import os |
Ted Kremenek | 2775b93 | 2012-02-22 18:44:35 +0000 | [diff] [blame] | 13 | import subprocess |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 14 | import re |
| 15 | import tempfile |
| 16 | import shutil |
| 17 | import stat |
Ted Kremenek | 962da0b | 2010-02-09 18:46:58 +0000 | [diff] [blame] | 18 | from AppKit import * |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 19 | |
| 20 | def FindClangSpecs(path): |
Ted Kremenek | 2775b93 | 2012-02-22 18:44:35 +0000 | [diff] [blame] | 21 | print "(+) Searching for xcspec file in: ", path |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 22 | for root, dirs, files in os.walk(path): |
| 23 | for f in files: |
| 24 | if f.endswith(".xcspec") and f.startswith("Clang LLVM"): |
| 25 | yield os.path.join(root, f) |
| 26 | |
Ted Kremenek | 8b03277 | 2012-10-11 00:40:41 +0000 | [diff] [blame] | 27 | def ModifySpec(path, isBuiltinAnalyzer, pathToChecker): |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 28 | t = tempfile.NamedTemporaryFile(delete=False) |
| 29 | foundAnalyzer = False |
| 30 | with open(path) as f: |
Ted Kremenek | 8b03277 | 2012-10-11 00:40:41 +0000 | [diff] [blame] | 31 | if isBuiltinAnalyzer: |
| 32 | # First search for CLANG_ANALYZER_EXEC. Newer |
| 33 | # versions of Xcode set EXEC_PATH to be CLANG_ANALYZER_EXEC. |
| 34 | with open(path) as f2: |
| 35 | for line in f2: |
| 36 | if line.find("CLANG_ANALYZER_EXEC") >= 0: |
| 37 | pathToChecker = "$(CLANG_ANALYZER_EXEC)" |
| 38 | break |
| 39 | # Now create a new file. |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 40 | for line in f: |
| 41 | if not foundAnalyzer: |
| 42 | if line.find("Static Analyzer") >= 0: |
| 43 | foundAnalyzer = True |
| 44 | else: |
| 45 | m = re.search('^(\s*ExecPath\s*=\s*")', line) |
| 46 | if m: |
| 47 | line = "".join([m.group(0), pathToChecker, '";\n']) |
Ted Kremenek | 1b15e85 | 2013-01-05 07:31:54 +0000 | [diff] [blame] | 48 | # Do not modify further ExecPath's later in the xcspec. |
| 49 | foundAnalyzer = False |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 50 | t.write(line) |
| 51 | t.close() |
Ted Kremenek | 8d69937 | 2010-02-09 18:51:44 +0000 | [diff] [blame] | 52 | print "(+) processing:", path |
Ted Kremenek | 757a9d1 | 2010-02-08 21:19:27 +0000 | [diff] [blame] | 53 | try: |
| 54 | shutil.copy(t.name, path) |
| 55 | os.chmod(path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IROTH) |
| 56 | except IOError, why: |
Ted Kremenek | 8d69937 | 2010-02-09 18:51:44 +0000 | [diff] [blame] | 57 | print " (-) Cannot update file:", why, "\n" |
Ted Kremenek | 757a9d1 | 2010-02-08 21:19:27 +0000 | [diff] [blame] | 58 | except OSError, why: |
Ted Kremenek | 8d69937 | 2010-02-09 18:51:44 +0000 | [diff] [blame] | 59 | print " (-) Cannot update file:", why, "\n" |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 60 | os.unlink(t.name) |
| 61 | |
| 62 | def main(): |
| 63 | from optparse import OptionParser |
| 64 | parser = OptionParser('usage: %prog [options]') |
| 65 | parser.set_description(__doc__) |
| 66 | parser.add_option("--use-checker-build", dest="path", |
| 67 | help="Use the Clang located at the provided absolute path, e.g. /Users/foo/checker-1") |
| 68 | parser.add_option("--use-xcode-clang", action="store_const", |
| 69 | const="$(CLANG)", dest="default", |
| 70 | help="Use the Clang bundled with Xcode") |
| 71 | (options, args) = parser.parse_args() |
| 72 | if options.path is None and options.default is None: |
| 73 | parser.error("You must specify a version of Clang to use for static analysis. Specify '-h' for details") |
| 74 | |
Ted Kremenek | 962da0b | 2010-02-09 18:46:58 +0000 | [diff] [blame] | 75 | # determine if Xcode is running |
| 76 | for x in NSWorkspace.sharedWorkspace().runningApplications(): |
| 77 | if x.localizedName().find("Xcode") >= 0: |
Ted Kremenek | 8d69937 | 2010-02-09 18:51:44 +0000 | [diff] [blame] | 78 | print "(-) You must quit Xcode first before modifying its configuration files." |
Ted Kremenek | f64c18a | 2013-01-11 21:49:36 +0000 | [diff] [blame] | 79 | sys.exit(1) |
Ted Kremenek | 962da0b | 2010-02-09 18:46:58 +0000 | [diff] [blame] | 80 | |
Ted Kremenek | 8b03277 | 2012-10-11 00:40:41 +0000 | [diff] [blame] | 81 | isBuiltinAnalyzer = False |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 82 | if options.path: |
| 83 | # Expand tildes. |
| 84 | path = os.path.expanduser(options.path) |
| 85 | if not path.endswith("clang"): |
Ted Kremenek | 8d69937 | 2010-02-09 18:51:44 +0000 | [diff] [blame] | 86 | print "(+) Using Clang bundled with checker build:", path |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 87 | path = os.path.join(path, "bin", "clang"); |
| 88 | else: |
Ted Kremenek | 8d69937 | 2010-02-09 18:51:44 +0000 | [diff] [blame] | 89 | print "(+) Using Clang located at:", path |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 90 | else: |
Ted Kremenek | 8d69937 | 2010-02-09 18:51:44 +0000 | [diff] [blame] | 91 | print "(+) Using the Clang bundled with Xcode" |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 92 | path = options.default |
Ted Kremenek | 8b03277 | 2012-10-11 00:40:41 +0000 | [diff] [blame] | 93 | isBuiltinAnalyzer = True |
Ted Kremenek | 962da0b | 2010-02-09 18:46:58 +0000 | [diff] [blame] | 94 | |
Ted Kremenek | b8971b2 | 2012-07-16 21:39:29 +0000 | [diff] [blame] | 95 | try: |
| 96 | xcode_path = subprocess.check_output(["xcode-select", "-print-path"]) |
| 97 | except AttributeError: |
| 98 | # Fall back to the default install location when using Python < 2.7.0 |
| 99 | xcode_path = "/Developer" |
Ted Kremenek | 9d86eab | 2012-09-26 18:13:03 +0000 | [diff] [blame] | 100 | if (xcode_path.find(".app/") != -1): |
Ted Kremenek | 2775b93 | 2012-02-22 18:44:35 +0000 | [diff] [blame] | 101 | # Cut off the 'Developer' dir, as the xcspec lies in another part |
| 102 | # of the Xcode.app subtree. |
| 103 | xcode_path = os.path.dirname(xcode_path) |
| 104 | |
Ted Kremenek | b2d6bc3 | 2012-09-26 18:19:55 +0000 | [diff] [blame] | 105 | foundSpec = False |
Ted Kremenek | 2775b93 | 2012-02-22 18:44:35 +0000 | [diff] [blame] | 106 | for x in FindClangSpecs(xcode_path): |
Ted Kremenek | b2d6bc3 | 2012-09-26 18:19:55 +0000 | [diff] [blame] | 107 | foundSpec = True |
Ted Kremenek | 8b03277 | 2012-10-11 00:40:41 +0000 | [diff] [blame] | 108 | ModifySpec(x, isBuiltinAnalyzer, path) |
Ted Kremenek | b2d6bc3 | 2012-09-26 18:19:55 +0000 | [diff] [blame] | 109 | |
| 110 | if foundSpec == False: |
| 111 | print "(-) No compiler configuration file was found. Xcode's analyzer has not been updated." |
Ted Kremenek | 7aaa953 | 2010-02-08 20:54:01 +0000 | [diff] [blame] | 112 | |
| 113 | if __name__ == '__main__': |
| 114 | main() |
| 115 | |