forked from swiftlang/swift-source-compat-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.py
executable file
·454 lines (375 loc) · 14.6 KB
/
common.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
#!/usr/bin/env python
# ===--- common.py --------------------------------------------------------===
#
# This source file is part of the Swift.org open source project
#
# Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
# Licensed under Apache License v2.0 with Runtime Library Exception
#
# See https://swift.org/LICENSE.txt for license information
# See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
#
# ===----------------------------------------------------------------------===
"""A library containing common utility functionality."""
import multiprocessing
import os
import pipes
import platform
import signal
import subprocess
import sys
import shlex
DEFAULT_EXECUTE_TIMEOUT = 10*60
branches = {
'master': {
'llvm': 'stable',
'clang': 'stable',
'compiler-rt': 'stable',
'swift': 'master',
'cmark': 'master',
'ninja': 'release',
'llbuild': 'master',
'swiftpm': 'master',
'swift-corelibs-libdispatch': 'master',
'swift-corelibs-foundation': 'master',
'swift-corelibs-xctest': 'master',
},
'swift-4.0-branch': {
'llvm': 'swift-4.0-branch',
'clang': 'swift-4.0-branch',
'compiler-rt': 'swift-4.0-branch',
'swift': 'swift-4.0-branch',
'cmark': 'master',
'ninja': 'release',
'llbuild': 'swift-4.0-branch',
'swiftpm': 'swift-4.0-branch',
'swift-corelibs-libdispatch': 'swift-4.0-branch',
'swift-corelibs-foundation': 'swift-4.0-branch',
'swift-corelibs-xctest': 'swift-4.0-branch',
},
'swift-3.1-branch': {
'llvm': 'swift-3.1-branch',
'clang': 'swift-3.1-branch',
'compiler-rt': 'swift-3.1-branch',
'swift': 'swift-3.1-branch',
'cmark': 'master',
'ninja': 'release',
'llbuild': 'swift-3.1-branch',
'swiftpm': 'swift-3.1-branch',
'swift-corelibs-libdispatch': 'swift-3.1-branch',
'swift-corelibs-foundation': 'swift-3.1-branch',
'swift-corelibs-xctest': 'swift-3.1-branch',
},
'swift-3.0-branch': {
'llvm': 'swift-3.0-branch',
'clang': 'swift-3.0-branch',
'compiler-rt': 'swift-3.0-branch',
'swift': 'swift-3.0-branch',
'cmark': 'master',
'ninja': 'release',
},
}
swiftc_operation = {
'master': '-typecheck',
'swift-3.1-branch': '-typecheck',
'swift-3.0-branch': '-parse',
}
swiftc_version = {
'master': '3',
'swift-3.1-branch': '3',
'swift-3.0-branch': None,
}
swift_branch = None
def set_swift_branch(branch):
"""Configure the common library for a specific branch.
>>> set_swift_branch('master')
"""
global swift_branch
swift_branch = branch
def clone_repos():
"""Clone Swift and dependencies in parallel.
>>> import tempfile
>>> set_swift_branch('master')
>>> tmpdir = tempfile.mkdtemp()
>>> with DirectoryContext(tmpdir):
... clone_repos()
>>> repos = os.listdir(tmpdir)
>>> check_execute(['rm', '-rf', tmpdir])
0
>>> repos #doctest: +NORMALIZE_WHITESPACE
['clang', 'cmark', 'compiler-rt', 'llbuild', 'llvm', 'ninja', 'swift',
'swift-corelibs-foundation', 'swift-corelibs-libdispatch',
'swift-corelibs-xctest', 'swiftpm']
"""
cpu_count = multiprocessing.cpu_count()
workspace = private_workspace('.')
repos = [
'{} https://github.com/apple/swift-llvm.git {}/llvm '.format(
branches[swift_branch]['llvm'], workspace
),
'{} https://github.com/apple/swift-clang.git {}/clang '.format(
branches[swift_branch]['clang'], workspace
),
'{} https://github.com/apple/swift-compiler-rt.git '
'{}/compiler-rt '.format(
branches[swift_branch]['compiler-rt'], workspace
),
'{} https://github.com/apple/swift.git {}/swift '.format(
branches[swift_branch]['swift'], workspace
),
'{} https://github.com/apple/swift-cmark.git {}/cmark '.format(
branches[swift_branch]['cmark'], workspace
),
'{} https://github.com/ninja-build/ninja.git {}/ninja '.format(
branches[swift_branch]['ninja'], workspace
),
'{} https://github.com/apple/swift-llbuild.git {}/llbuild '.format(
branches[swift_branch]['llbuild'], workspace
),
'{} https://github.com/apple/swift-package-manager.git '
'{}/swiftpm '.format(
branches[swift_branch]['swiftpm'], workspace
),
'{} https://github.com/apple/swift-corelibs-foundation.git '
'{}/swift-corelibs-foundation '.format(
branches[swift_branch]['swift-corelibs-foundation'], workspace
),
'{} https://github.com/apple/swift-corelibs-libdispatch.git '
'{}/swift-corelibs-libdispatch '.format(
branches[swift_branch]['swift-corelibs-libdispatch'], workspace
),
'{} https://github.com/apple/swift-corelibs-xctest.git '
'{}/swift-corelibs-xctest '.format(
branches[swift_branch]['swift-corelibs-xctest'], workspace
),
]
process0 = subprocess.Popen([
'xargs', '-P%s' % cpu_count, '-n3',
'bash', '-c', 'set -x; git clone -q -b "$0" --recursive "$1" "$2"'
], stdin=subprocess.PIPE)
for repo in repos:
process0.stdin.write(repo)
process0.stdin.close()
assert process0.wait() == 0
class Unreachable(Exception):
"""An exception to be thrown at an unreachable."""
def __init__(self, s):
self.s = s
def __str__(self):
return 'Unreachable("{}")'.format(self.s)
class Unimplemented(Exception):
"""An exception to be thrown at an unimplemented."""
pass
class UnsupportedPlatform(Exception):
"""An exception to be thrown at an unsupported platform."""
pass
class Alarm(Exception):
pass
def alarm_handler(signum, frame):
"""A callback function that raises an alarm."""
raise Alarm
class Timeout(object):
"""A class to enable timing out a given 'with' block.
>>> import time
>>> with Timeout(1):
... time.sleep(0.5)
>>> with Timeout(1):
... time.sleep(2)
Traceback (most recent call last):
Alarm
"""
def __init__(self, timeout_seconds):
self.timeout_seconds = timeout_seconds
def __enter__(self):
signal.signal(signal.SIGALRM, alarm_handler)
signal.alarm(self.timeout_seconds)
def __exit__(self, etype, value, traceback):
signal.alarm(0)
def shell_join(command):
"""Return a valid shell string from a given command list.
>>> shell_join(['echo', 'Hello, World!'])
"echo 'Hello, World!'"
"""
return ' '.join([pipes.quote(x) for x in command])
def debug_print(s, stderr=sys.stderr):
"""Print a string to stderr and flush."""
print >>stderr, s
stderr.flush()
def shell_debug_print(command, stderr=sys.stderr):
"""Print a command list as a shell string to stderr and flush."""
debug_print('$ ' + shell_join(command), stderr=stderr)
class ExecuteCommandFailure(Exception):
"""An exception to be thrown when check_execute functions fail."""
def __init__(self, command, returncode):
self.command = command
self.returncode = returncode
def __str__(self):
return ('ExecuteCommandFailure('
'command="{}", '
'returncode={})'.format(
shell_join(self.command),
self.returncode))
def execute(command, timeout=DEFAULT_EXECUTE_TIMEOUT,
stdout=sys.stdout, stderr=sys.stderr,
**kwargs):
"""Execute a given command with an optional timeout in seconds.
>>> execute(['echo', 'Hello, World!'])
0
"""
shell_debug_print(command, stderr=stderr)
returncode = 124 # timeout return code
try:
with Timeout(timeout):
returncode = subprocess.call(
command, stdout=stdout, stderr=stderr, **kwargs
)
except Alarm:
debug_print(command[0] + ': Timed out', stderr=stderr)
return returncode
def check_execute_output(command, timeout=DEFAULT_EXECUTE_TIMEOUT,
stdout=sys.stdout, stderr=sys.stderr, **kwargs):
"""Check execute a given command and return its output.
>>> check_execute_output(['echo', 'Hello, World!'])
'Hello, World!\\n'
"""
shell_debug_print(command, stderr=stderr)
try:
with Timeout(timeout):
output = subprocess.check_output(
command, stderr=stderr, **kwargs
)
except subprocess.CalledProcessError as e:
debug_print(e, stderr=stderr)
raise
return output
def check_execute(command, timeout=DEFAULT_EXECUTE_TIMEOUT,
sandbox_profile=None, max_retries=1,
stdout=sys.stdout, stderr=sys.stderr,
**kwargs):
"""Check execute a given command.
>>> check_execute(['echo', 'Hello, World!'])
0
"""
if sandbox_profile:
if platform.system() == 'Darwin':
command = ['sandbox-exec', '-f', sandbox_profile] + command
elif platform.system() == 'Linux':
# TODO: remove explicit dns after Firejail bug is resolved
command = ['firejail', '--quiet', '--profile=%s' % sandbox_profile,
'--private=.', '--overlay-tmpfs',
'--dns=8.8.8.8'] + command
returncode = -1
for retry in range(max_retries):
returncode = execute(command, timeout=timeout,
stdout=stdout, stderr=stderr,
**kwargs)
if returncode == 0:
return returncode
raise ExecuteCommandFailure(command, returncode)
def git_submodule_update(path, stdout=sys.stdout, stderr=sys.stderr):
"""Perform a git submodule update operation on a path."""
command = ['git', '-C', path, 'submodule', 'update', '--init',
'--recursive']
return check_execute(command, stdout=stdout, stderr=stderr)
def git_clean(path, stdout=sys.stdout, stderr=sys.stderr):
"""Perform a git clean operation on a path."""
command = ['git', '-C', path, 'clean', '-ffdx']
check_execute(['chflags', '-R', 'nouchg', path], stdout=stdout, stderr=stderr)
return check_execute(command, stdout=stdout, stderr=stderr)
def git_pull(path, stdout=sys.stdout, stderr=sys.stderr):
"""Perform a git pull operation on a path."""
command = ['git', '-C', path, 'pull']
return check_execute(command, stdout=stdout, stderr=stderr)
def git_clone(url, path, tree=None, recursive=True,
stdout=sys.stdout, stderr=sys.stderr):
"""Perform a git clone operation on a url to a path."""
returncodes = []
command = ['git', 'clone', url, path]
returncodes.append(check_execute(command, stdout=stdout, stderr=stderr))
if tree:
returncodes.append(git_checkout(tree, path,
force=True,
stdout=stdout, stderr=stderr))
if recursive:
returncodes.append(git_submodule_update(path,
stdout=stdout, stderr=stderr))
return 0 if all(rc == 0 for rc in returncodes) else 1
def git_checkout(tree, path, force=False,
stdout=sys.stdout, stderr=sys.stderr):
"""Perform a git checkout operation on a path."""
command = ['git', '-C', path, 'checkout', tree]
if force:
command.insert(4, '-f')
return check_execute(command, stdout=stdout, stderr=stderr)
def git_sha(path, stdout=sys.stdout, stderr=sys.stderr):
"""Return the current sha of a Git repo at a path."""
command = ['git', '-C', path, 'rev-parse', 'HEAD']
return check_execute_output(command, stdout=stdout, stderr=stderr).strip()
def git_update(url, configured_sha, path,
incremental=False,
stdout=sys.stdout, stderr=sys.stderr):
"""Update a repository to a given sha if necessary."""
returncodes = []
try:
if not incremental:
git_clean(path, stdout=stdout, stderr=stderr)
current_sha = git_sha(path, stdout=stdout, stderr=stderr)
debug_print('current_sha: ' + current_sha, stderr=stderr)
debug_print('configured_sha: ' + configured_sha, stderr=stderr)
if current_sha != configured_sha:
debug_print('current_sha != configured_sha', stderr=stderr)
command_fetch = ['git', '-C', path, 'fetch']
returncodes.append(check_execute(command_fetch,
stdout=stdout, stderr=stderr))
returncodes.append(git_checkout(configured_sha, path,
force=True,
stdout=stdout, stderr=stderr))
returncodes.append(git_submodule_update(
path, stdout=stdout, stderr=stderr
))
else:
debug_print('current_sha == configured_sha', stderr=stderr)
except ExecuteCommandFailure:
debug_print("warning: Unable to update. Falling back to a clone.",
stderr=stderr)
check_execute(['rm', '-rf', path], stdout=stdout, stderr=stderr)
return git_clone(url, path, tree=configured_sha,
stdout=stdout, stderr=stderr)
return 0 if all(rc == 0 for rc in returncodes) else 1
class DirectoryContext(object):
"""Change to a given directory for the duration of a given 'with' block."""
def __init__(self, path, stderr=sys.stderr):
self.path = os.path.expanduser(path)
self.stderr = stderr
def __enter__(self):
self.previous_path = os.getcwd()
shell_debug_print(['pushd', self.path], stderr=self.stderr)
os.chdir(self.path)
def __exit__(self, etype, value, traceback):
shell_debug_print(['popd'], stderr=self.stderr)
os.chdir(self.previous_path)
def private_workspace(path):
"""Return a path relative to a private workspace."""
if 'WORKSPACE' in os.environ:
workspace = os.environ['WORKSPACE']
return os.path.abspath(os.path.join(
os.path.dirname(os.path.dirname(workspace)),
'workspace-private',
os.path.basename(workspace), path
))
else:
return os.path.abspath(path)
def popen(*args, **kwargs):
formatted = [x.format(**os.environ) for x in args[0]]
shell_debug_print(args[0])
args = (formatted,) + args[1:]
return subprocess.Popen(*args, **kwargs)
def call(c):
if isinstance(c, basestring):
c = shlex.split(c)
formatted = [x.format(**os.environ) for x in c]
shell_debug_print(c)
return subprocess.call(formatted)
if __name__ == "__main__":
import doctest
doctest.testmod(verbose=True)