László Csomor | 5f99fda | 2017-08-11 09:28:12 +0200 | [diff] [blame] | 1 | # pylint: disable=g-direct-third-party-import |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 2 | # pylint: disable=g-bad-file-header |
| 3 | # Copyright 2017 The Bazel Authors. All rights reserved. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
Googler | bd7a6b9 | 2022-02-24 07:38:58 -0800 | [diff] [blame] | 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | """Creates the embedded_tools.zip that is part of the Bazel binary.""" |
| 17 | |
hlopko | 5a661c7 | 2017-08-09 12:03:03 +0200 | [diff] [blame] | 18 | import contextlib |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 19 | import fnmatch |
| 20 | import os |
| 21 | import os.path |
| 22 | import re |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 23 | import sys |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 24 | import zipfile |
| 25 | |
László Csomor | 5f99fda | 2017-08-11 09:28:12 +0200 | [diff] [blame] | 26 | from src.create_embedded_tools_lib import copy_tar_to_zip |
| 27 | from src.create_embedded_tools_lib import copy_zip_to_zip |
| 28 | from src.create_embedded_tools_lib import is_executable |
| 29 | |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 30 | output_paths = [ |
Ivo List | 504a5b7 | 2020-12-03 04:00:13 -0800 | [diff] [blame] | 31 | ('*tools/jdk/BUILD.tools', lambda x: 'tools/jdk/BUILD'), |
Klaus Aehlig | 6f52fca | 2019-03-18 03:43:40 -0700 | [diff] [blame] | 32 | ('*tools/build_defs/repo/BUILD.repo', |
| 33 | lambda x: 'tools/build_defs/repo/BUILD'), |
ilist | 84464b6 | 2021-11-29 23:47:39 -0800 | [diff] [blame] | 34 | ('*tools/j2objc/BUILD.tools', lambda x: 'tools/j2objc/BUILD'), |
philwo | e67c961 | 2019-05-06 04:28:48 -0700 | [diff] [blame] | 35 | ('*tools/platforms/BUILD.tools', lambda x: 'platforms/BUILD'), |
cpeyser | 8613c90 | 2017-09-01 00:15:29 +0200 | [diff] [blame] | 36 | ('*tools/platforms/*', lambda x: 'platforms/' + os.path.basename(x)), |
hlopko | bea9d25 | 2019-11-15 07:30:16 -0800 | [diff] [blame] | 37 | ('*tools/cpp/BUILD.tools', lambda x: 'tools/cpp/BUILD'), |
Laszlo Csomor | ea642d6 | 2018-09-03 05:37:04 -0700 | [diff] [blame] | 38 | ('*tools/cpp/runfiles/generated_*', |
| 39 | lambda x: 'tools/cpp/runfiles/' + os.path.basename(x)[len('generated_'):]), |
iirina | d4651e8 | 2019-03-15 03:15:37 -0700 | [diff] [blame] | 40 | ('*BUILD.java_langtools', lambda x: 'third_party/java/jdk/langtools/BUILD'), |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 41 | ('*launcher.exe', lambda x: 'tools/launcher/launcher.exe'), |
Yun Peng | 394211b | 2017-09-15 15:59:14 +0200 | [diff] [blame] | 42 | ('*def_parser.exe', lambda x: 'tools/def_parser/def_parser.exe'), |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 43 | ('*zipper.exe', lambda x: 'tools/zip/zipper/zipper.exe'), |
| 44 | ('*zipper', lambda x: 'tools/zip/zipper/zipper'), |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 45 | ('*xcode*make_hashed_objlist.py', |
| 46 | lambda x: 'tools/objc/make_hashed_objlist.py'), |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 47 | ('*xcode*xcode-locator', lambda x: 'tools/objc/xcode-locator'), |
philwo | e67c961 | 2019-05-06 04:28:48 -0700 | [diff] [blame] | 48 | ('*src/tools/xcode/*', lambda x: 'tools/objc/' + os.path.basename(x)), |
Googler | 3d994df | 2021-02-11 07:23:35 -0800 | [diff] [blame] | 49 | # --experimental_sibling_repository_layout=false |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 50 | ('*external/openjdk_*/file/*.tar.gz', lambda x: 'jdk.tar.gz'), |
| 51 | ('*external/openjdk_*/file/*.zip', lambda x: 'jdk.zip'), |
Googler | 3d994df | 2021-02-11 07:23:35 -0800 | [diff] [blame] | 52 | # --experimental_sibling_repository_layout=true |
| 53 | ('*openjdk_*/file/*.tar.gz', lambda x: 'jdk.tar.gz'), |
| 54 | ('*openjdk_*/file/*.zip', lambda x: 'jdk.zip'), |
twerth | 683922c | 2018-12-20 05:12:08 -0800 | [diff] [blame] | 55 | ('*src/minimal_jdk.tar.gz', lambda x: 'jdk.tar.gz'), |
| 56 | ('*src/minimal_jdk.zip', lambda x: 'jdk.zip'), |
laszlocsomor | a654505 | 2019-11-05 05:18:32 -0800 | [diff] [blame] | 57 | ('*.bzl.tools', lambda x: x[:-6]), |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 58 | ('*', lambda x: re.sub(r'^.*bazel-out/[^/]*/bin/', '', x, count=1)), |
| 59 | ] |
| 60 | |
| 61 | |
| 62 | def get_output_path(path): |
| 63 | for pattern, transformer in output_paths: |
| 64 | if fnmatch.fnmatch(path.replace('\\', '/'), pattern): |
| 65 | # BUILD.tools are stored as BUILD files. |
| 66 | return transformer(path).replace('/BUILD.tools', '/BUILD') |
| 67 | |
| 68 | |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 69 | def get_input_files(argsfile): |
philwo | e67c961 | 2019-05-06 04:28:48 -0700 | [diff] [blame] | 70 | """Returns a dict of archive_file to input_file. |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 71 | |
| 72 | This describes the files that should be put into the generated archive. |
| 73 | |
| 74 | Args: |
| 75 | argsfile: The file containing the list of input files. |
philwo | e67c961 | 2019-05-06 04:28:48 -0700 | [diff] [blame] | 76 | |
| 77 | Raises: |
| 78 | ValueError: When two input files map to the same output file. |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 79 | """ |
| 80 | with open(argsfile, 'r') as f: |
philwo | e67c961 | 2019-05-06 04:28:48 -0700 | [diff] [blame] | 81 | input_files = sorted(set(x.strip() for x in f.readlines())) |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 82 | |
| 83 | result = {} |
| 84 | for input_file in input_files: |
| 85 | # If we have both a BUILD and a BUILD.tools file, take the latter only. |
| 86 | if (os.path.basename(input_file) == 'BUILD' and |
| 87 | input_file + '.tools' in input_files): |
| 88 | continue |
| 89 | |
philwo | e67c961 | 2019-05-06 04:28:48 -0700 | [diff] [blame] | 90 | # It's an error to have two files map to the same output file, because the |
| 91 | # result is hard to predict and can easily be wrong. |
| 92 | output_path = get_output_path(input_file) |
| 93 | if output_path in result: |
| 94 | raise ValueError( |
| 95 | 'Duplicate output file: Both {} and {} map to {}'.format( |
| 96 | result[output_path], input_file, output_path)) |
| 97 | result[output_path] = input_file |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 98 | |
philwo | e67c961 | 2019-05-06 04:28:48 -0700 | [diff] [blame] | 99 | return result |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 100 | |
| 101 | |
| 102 | def copy_jdk_into_archive(output_zip, archive_file, input_file): |
Laszlo Csomor | ea642d6 | 2018-09-03 05:37:04 -0700 | [diff] [blame] | 103 | """Extract the JDK and adds it to the archive under jdk/*.""" |
László Csomor | 5f99fda | 2017-08-11 09:28:12 +0200 | [diff] [blame] | 104 | |
| 105 | def _replace_dirname(filename): |
| 106 | # Rename the first folder to 'jdk', because Bazel looks for a |
| 107 | # bundled JDK in the embedded tools using that folder name. |
| 108 | return 'jdk/' + '/'.join(filename.split('/')[1:]) |
| 109 | |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 110 | # The JDK is special - it's extracted instead of copied. |
| 111 | if archive_file.endswith('.tar.gz'): |
László Csomor | 5f99fda | 2017-08-11 09:28:12 +0200 | [diff] [blame] | 112 | copy_tar_to_zip(output_zip, input_file, _replace_dirname) |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 113 | elif archive_file.endswith('.zip'): |
László Csomor | 5f99fda | 2017-08-11 09:28:12 +0200 | [diff] [blame] | 114 | copy_zip_to_zip(output_zip, input_file, _replace_dirname) |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 115 | |
| 116 | |
| 117 | def main(): |
| 118 | output_zip = os.path.join(os.getcwd(), sys.argv[1]) |
| 119 | input_files = get_input_files(sys.argv[2]) |
| 120 | |
| 121 | # Copy all the input_files into output_zip. |
hlopko | 5a661c7 | 2017-08-09 12:03:03 +0200 | [diff] [blame] | 122 | # Adding contextlib.closing to be python 2.6 (for centos 6.7) compatible |
| 123 | with contextlib.closing( |
| 124 | zipfile.ZipFile(output_zip, 'w', zipfile.ZIP_DEFLATED)) as output_zip: |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 125 | zipinfo = zipfile.ZipInfo('WORKSPACE', (1980, 1, 1, 0, 0, 0)) |
| 126 | zipinfo.external_attr = 0o644 << 16 |
| 127 | output_zip.writestr(zipinfo, 'workspace(name = "bazel_tools")\n') |
| 128 | |
philwo | e67c961 | 2019-05-06 04:28:48 -0700 | [diff] [blame] | 129 | # By sorting the file list, the resulting ZIP file will be reproducible and |
| 130 | # deterministic. |
| 131 | for archive_file, input_file in sorted(input_files.items()): |
Philipp Wollermann | 4c55898 | 2017-07-27 18:01:12 +0200 | [diff] [blame] | 132 | if os.path.basename(archive_file) in ('jdk.tar.gz', 'jdk.zip'): |
| 133 | copy_jdk_into_archive(output_zip, archive_file, input_file) |
| 134 | else: |
| 135 | zipinfo = zipfile.ZipInfo(archive_file, (1980, 1, 1, 0, 0, 0)) |
| 136 | zipinfo.external_attr = 0o755 << 16 if is_executable( |
| 137 | input_file) else 0o644 << 16 |
| 138 | zipinfo.compress_type = zipfile.ZIP_DEFLATED |
| 139 | with open(input_file, 'rb') as f: |
| 140 | output_zip.writestr(zipinfo, f.read()) |
| 141 | |
| 142 | |
| 143 | if __name__ == '__main__': |
| 144 | main() |