forked from bazel-ios/rules_ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxcspec_extractor.py
214 lines (171 loc) · 6.97 KB
/
xcspec_extractor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#!/usr/bin/env python
"""
Extracts xcspec info from a given Xcode developer dir
and prints out a bzl file that contains a single constant, `SETTINGS`,
that can be used to access the xcspecs from starlark.
Usage: xcspec_extractor.py /Application/Xcode.app/Contents/Developer 11.2.1
"""
import plistlib
import pprint
import subprocess
import os
import re
import sys
try:
from StringIO import BytesIO # for Python 2
except ImportError:
from io import BytesIO # for Python 3
def xcspec_from_file(path):
xml = subprocess.check_output(
['plutil', '-convert', 'xml1', '-o', '-', '--', path])
plist = plistlib.loads(xml, fmt=plistlib.FMT_XML)
if not isinstance(plist, list):
plist = [plist]
return plist
developer_dir = sys.argv[1]
xcode_version = sys.argv[2]
xcspec_bzl_path = sys.argv[3]
eval_bzl_path = sys.argv[4]
xcode = os.path.dirname(os.path.dirname(developer_dir))
xcode3plusgins = os.path.join(
xcode, 'Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins')
xcspecs = [
os.path.join(xcode3plusgins,
"CoreBuildTasks.xcplugin/Contents/Resources/Ld.xcspec"),
os.path.join(
xcode3plusgins, "Clang LLVM 1.0.xcplugin/Contents/Resources/Clang LLVM 1.0.xcspec"),
os.path.join(xcode3plusgins,
"Core Data.xcplugin/Contents/Resources/Core Data.xcspec"),
os.path.join(
xcode3plusgins, "IBCompilerPlugin.xcplugin/Contents/Resources/IBCompiler.xcspec"),
os.path.join(xcode3plusgins,
"XCLanguageSupport.xcplugin/Contents/Resources/Swift.xcspec"),
]
a = []
for path in xcspecs:
a.extend(xcspec_from_file(path))
a.sort(key=lambda x: x['Identifier'])
ids = (
"com.apple.compilers.llvm.clang.1_0",
"com.apple.compilers.model.coredata",
"com.apple.compilers.model.coredatamapping",
"com.apple.pbx.linkers.ld",
"com.apple.xcode.tools.ibtool.compiler",
"com.apple.xcode.tools.swift.compiler",
)
header = """
############################################################################
# THIS IS GENERATED CODE #
# Extracted from Xcode {xcode_version} #
# To update, in rules_ios run `bazel run data_generators:extract_xcspecs` #
############################################################################
""".format(xcode_version=xcode_version)
xcpec_evals_bzl_contents = """
{header}
""".format(header=header)
xcspecs_bzl_contents = """
{header}
SETTINGS = """.format(header=header)
eval_methods = {}
XCCONFIG_EXPANSION = re.compile("\$\(([^\$)]+)\)")
STRING_FORMAT_EVAL_VAL_REFERENCE = re.compile('{(eval_val_\d+)}')
CONDITION_EVAL_VAL_REFERENCE = re.compile(
"(?:^|[(&|!= ])(?!eval_val_\d+)([A-Za-z0-9_]+)")
def generate_method_body_for_expression(string, key):
if not XCCONFIG_EXPANSION.search(string):
return 'return (False, %s)' % repr(string)
expanded_variables = {}
def record_substitution(match):
name = match[1]
if name not in expanded_variables:
expanded_variables[name] = (
'eval_val_%s' % len(expanded_variables),
name,
'eval_key_%s' % len(expanded_variables),
)
if key == "DefaultValue":
return "{%s}" % expanded_variables[name][0]
return expanded_variables[name][0]
while True:
(string, subs_made) = XCCONFIG_EXPANSION.subn(
repl=record_substitution, string=string)
if not subs_made:
break
def format_str(s):
val_references = STRING_FORMAT_EVAL_VAL_REFERENCE.findall(s)
if not val_references:
return '"%s"' % s
if len(val_references) == 1:
if s == '{%s}' % val_references[0]:
# directly return the variable, without using an format string
return val_references[0]
return '"{string}".format({format})'.format(
string=s,
format=', '.join(('{var} = {var}'.format(var=v) for v in val_references)))
method_body = "\n used_user_content = False\n"
method_body += "\n".join((
"""
{var} = ""
{key} = {key_value}
if {key} in xcconfigs:
{var} = xcconfigs[{key}]
used_user_content = True
elif {key} in id_configs:
opt = id_configs[{key}]
if "DefaultValue" in opt:
({var}_used_user_content, {var}) = XCSPEC_EVALS[opt["DefaultValue"]](xcconfigs, id_configs)
used_user_content = used_user_content or {var}_used_user_content""".format(var=var, name=name, key=key, key_value=format_str(name))
for (name, (var, _i, key)) in expanded_variables.items()
))
if key == 'DefaultValue':
return method_body + '\n\n return (used_user_content, %s)' % (format_str(string), )
elif key == 'Condition':
string = CONDITION_EVAL_VAL_REFERENCE.sub(
repl=lambda m: repr(m[1]), string=string)
return method_body + \
'\n\n return (used_user_content, ({}))'.format(
string.replace('||', 'or').replace('!=', '__NEQ__').replace(
'!', 'not ').replace('&&', 'and').replace('__NEQ__', '!=')
)
raise "Unknown key %s" % key
def add_eval(id, name, key, string, eval_methods):
method_name = '__'.join(
(id.replace('.', '_'), name.replace('.', '_'), key))
if method_name in eval_methods:
raise "Duplicate method {}".format(method_name)
eval_methods[method_name] = """
def _{method_name}(xcconfigs, id_configs):
# {string}
{expr}
""".format(method_name=method_name, string=string, expr=generate_method_body_for_expression(string, key))
return method_name
to_print = {
x['Identifier']:
{k: ({o['Name']:
{ok: (add_eval(x['Identifier'], o['Name'], ok, ov, eval_methods) if ok in (
'DefaultValue', 'Condition') else ov) for (ok, ov) in o.items() if ok not in ('Name',)}
for o in v if o['Name'] not in ('SDKROOT',)} if k == 'Options' else v)
for (k, v) in x.items()}
for x in a if x['Identifier'] in ids
}
for (m, s) in eval_methods.items():
xcpec_evals_bzl_contents += s
xcpec_evals_bzl_contents += "\nXCSPEC_EVALS = {\n%s\n}\n" % "\n".join(
sorted((' "{k}": _{k},'.format(k=k)) for k in eval_methods))
# stop sorting dictionary entries
# both of these are needed to be compatible with various python versions
pprint._sorted = lambda x: x
pprint.sorted = lambda x, key: x
xcspecs_bzl_contents += pprint.pformat(to_print, width=150)
xcspecs_bzl_contents = re.sub(
r"([\"'])(\n\s*['\"])", r"\1 +\2", xcspecs_bzl_contents)
def buildifier(input):
try:
return subprocess.check_output(
['buildifier', '-lint', 'fix', '-type', 'bzl'], input=input, text=True)
except FileNotFoundError:
return input
with open(xcspec_bzl_path, 'w') as f:
print(buildifier(xcspecs_bzl_contents), file=f, end='')
with open(eval_bzl_path, 'w') as f:
print(buildifier(xcpec_evals_bzl_contents), file=f, end='')