blob: d2da4b95a566e355576466c102c8665998d662a3 [file] [log] [blame]
Primiano Tucciae2879e2017-09-27 11:02:09 +09001#!/usr/bin/env python
2# Copyright (C) 2017 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16import argparse
17import hashlib
18import logging
19import os
20import shutil
Primiano Tucci0825bc82017-09-28 18:50:23 +010021import subprocess
Primiano Tucciae2879e2017-09-27 11:02:09 +090022import sys
23import urllib
24import zipfile
25
Primiano Tuccid7750452017-09-29 14:38:51 +010026from collections import namedtuple
27
Primiano Tucci636ede12017-10-30 16:03:07 +000028# When adding a new git dependency here please also add a corresponding entry in
29# .travis.yml under the "cache:" section.
30
Primiano Tuccib60d4b02017-11-10 11:03:00 +000031# The format for the deps below is the following:
32# (target_folder, source_url, sha1, target_platform)
33# |source_url| can be either a git repo or a http url.
34# If a git repo, |sha1| is the committish that will be checked out.
35# If a http url, |sha1| is the shasum of the original file.
36# If the url is a .zip or .tgz file it will be automatically deflated under
37# |target_folder|, taking care of stripping the root folder if it's a single
38# root (to avoid ending up with buildtools/protobuf/protobuf-1.2.3/... and have
39# instead just buildtools/protobuf).
40# |target_platform| is either 'darwin', 'linux2' or 'all' and applies the dep
41# only on the given platform (ask python why linux2 and not just linux).
42
Primiano Tuccid7750452017-09-29 14:38:51 +010043# Dependencies required to build code on the host or when targeting desktop OS.
44BUILD_DEPS_HOST = [
Primiano Tucciae2879e2017-09-27 11:02:09 +090045 # GN
46 ('buildtools/mac/gn',
Primiano Tuccic2eb5102018-05-15 10:40:01 +010047 'https://storage.googleapis.com/chromium-gn/9be792dd9010ce303a9c3a497a67bcc5ac8c7666',
48 '9be792dd9010ce303a9c3a497a67bcc5ac8c7666',
Primiano Tucciae2879e2017-09-27 11:02:09 +090049 'darwin'
50 ),
51 ('buildtools/linux64/gn',
Primiano Tuccic2eb5102018-05-15 10:40:01 +010052 'https://storage.googleapis.com/chromium-gn/2f27ff0b6118e5886df976da5effa6003d19d1ce',
53 '2f27ff0b6118e5886df976da5effa6003d19d1ce',
Primiano Tucciae2879e2017-09-27 11:02:09 +090054 'linux2'
55 ),
56
Primiano Tucci104bd6d2017-10-12 00:10:24 +020057 # clang-format
58 ('buildtools/mac/clang-format',
59 'https://storage.googleapis.com/chromium-clang-format/0679b295e2ce2fce7919d1e8d003e497475f24a3',
60 '0679b295e2ce2fce7919d1e8d003e497475f24a3',
61 'darwin'
62 ),
63 ('buildtools/linux64/clang-format',
64 'https://storage.googleapis.com/chromium-clang-format/5349d1954e17f6ccafb6e6663b0f13cdb2bb33c8',
65 '5349d1954e17f6ccafb6e6663b0f13cdb2bb33c8',
66 'linux2'
67 ),
68 # Keep the SHA1 in sync with |clang_format_rev| in chromium //buildtools/DEPS.
69 ('buildtools/clang_format/script',
70 'https://chromium.googlesource.com/chromium/llvm-project/cfe/tools/clang-format.git',
71 '0653eee0c81ea04715c635dd0885e8096ff6ba6d',
72 'all'
73 ),
74
Primiano Tucciae2879e2017-09-27 11:02:09 +090075 # Ninja
76 ('buildtools/mac/ninja',
77 'https://storage.googleapis.com/fuchsia-build/fuchsia/ninja/mac/a1db595e824c50cf565fbf0af2437fd91b7babf4',
78 'a1db595e824c50cf565fbf0af2437fd91b7babf4',
79 'darwin'
80 ),
81 ('buildtools/linux64/ninja',
82 'https://storage.googleapis.com/fuchsia-build/fuchsia/ninja/linux64/d35b36c84a09f7e38b25947cafada10e8bf835bc',
83 'd35b36c84a09f7e38b25947cafada10e8bf835bc',
84 'linux2'
85 ),
86
Primiano Tuccid7750452017-09-29 14:38:51 +010087 # Keep in sync with Android's //external/googletest/README.version.
88 ('buildtools/googletest.zip',
89 'https://github.com/google/googletest/archive/ff07a5de0e81580547f1685e101194ed1a4fcd56.zip',
90 'c7edec7d7e6db1fc37a20710de9c4d89e3a3893b',
91 'all'
92 ),
93
94 # Keep in sync with Android's //external/protobuf/README.version.
95 ('buildtools/protobuf.zip',
96 'https://github.com/google/protobuf/releases/download/v3.0.0-beta-3/protobuf-cpp-3.0.0-beta-3.zip',
97 '3caec60aa9d8eefc8c3c3201b6b8ca19935edb89',
98 'all'
99 ),
100
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000101 # libc++, libc++abi and libunwind for Linux where we need to rebuild the C++
102 # lib from sources. Keep the SHA1s in sync with Chrome's src/buildtools/DEPS.
Primiano Tuccid7750452017-09-29 14:38:51 +0100103 ('buildtools/libcxx',
104 'https://chromium.googlesource.com/chromium/llvm-project/libcxx.git',
Primiano Tucci5403e4f2018-11-27 10:07:03 +0000105 '2199647acb904b91eea0a5e045f5b227c87d6e85',
Primiano Tuccid7750452017-09-29 14:38:51 +0100106 'all'
107 ),
108 ('buildtools/libcxxabi',
109 'https://chromium.googlesource.com/chromium/llvm-project/libcxxabi.git',
Primiano Tucci5403e4f2018-11-27 10:07:03 +0000110 'c3f4753f7139c73063304235781e4f7788a94c06',
Primiano Tuccid7750452017-09-29 14:38:51 +0100111 'all'
112 ),
Primiano Tucci7278dea2017-10-31 11:50:32 +0000113 ('buildtools/libunwind',
114 'https://chromium.googlesource.com/external/llvm.org/libunwind.git',
Eric Seckler676421f2019-02-12 14:43:31 +0000115 '317087cfd8e608bd24e53934d59b5b85e0a9ded6',
Primiano Tucci7278dea2017-10-31 11:50:32 +0000116 'all'
117 ),
Hector Dearman88a10112017-10-12 11:07:10 +0100118
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000119 # Keep the revision in sync with Chrome's CLANG_REVISION in
120 # tools/clang/scripts/update.py.
121 ('buildtools/clang.tgz',
Primiano Tucci5403e4f2018-11-27 10:07:03 +0000122 'https://commondatastorage.googleapis.com/chromium-browser-clang/Linux_x64/clang-346388-1.tgz',
123 'c2998d67a9c623fe12e01a33e8b7cf437b396099',
Primiano Tuccia65497e2018-09-26 19:53:58 +0100124 'linux2'
125 ),
126
127 # Keep in sync with chromium DEPS.
128 ('buildtools/libfuzzer',
129 'https://chromium.googlesource.com/chromium/llvm-project/compiler-rt/lib/fuzzer.git',
Primiano Tucci5403e4f2018-11-27 10:07:03 +0000130 '2a53098584c48af50aec3fb51febe5e651489774',
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000131 'linux2'
132 ),
133
Hector Dearman88a10112017-10-12 11:07:10 +0100134 # Benchmarking tool.
135 ('buildtools/benchmark.zip',
Lalit Magantic99d93c2018-03-22 15:09:30 +0000136 'https://github.com/google/benchmark/archive/v1.3.0.zip',
137 'f387e0df37d54bfd5be239e8d0d3ea2e2c3e34f4',
Hector Dearman88a10112017-10-12 11:07:10 +0100138 'all'
139 ),
Primiano Tucci38faa6f2018-04-01 20:12:08 +0200140
141 # Libbacktrace, for stacktraces in Linux/Android debug builds.
142 ('buildtools/libbacktrace.zip',
143 'https://github.com/ianlancetaylor/libbacktrace/archive/177940370e4a6b2509e92a0aaa9749184e64af43.zip',
144 'b723fe9d671d1ab54df1297f6afbf2893a41c3ea',
145 'all'
146 ),
Lalit Maganti6fe26e62018-05-23 12:14:38 +0100147
148 # Sqlite for the trace processing library.
Ioannis Ilkos178535e2018-11-05 17:32:45 +0000149 # This is the amalgamated source whose compiled output is meant to be faster.
150 # We still pull the full source for the extensions (not amalgamated).
Lalit Maganti6fe26e62018-05-23 12:14:38 +0100151 ('buildtools/sqlite.zip',
Lalit Maganti10d6deb2018-11-20 15:15:50 +0000152 'https://storage.googleapis.com/perfetto/sqlite-amalgamation-3250300.zip',
153 'b78c2cb0d2c9182686c582312479f96a82bf5380',
Lalit Maganti6fe26e62018-05-23 12:14:38 +0100154 'all'
155 ),
Ioannis Ilkos178535e2018-11-05 17:32:45 +0000156 ('buildtools/sqlite_src.zip',
Lalit Maganti10d6deb2018-11-20 15:15:50 +0000157 'https://storage.googleapis.com/perfetto/sqlite-src-3250300.zip',
158 'd1af2883bb800852946f9bf8ab6055e7698e18ee',
Ioannis Ilkos178535e2018-11-05 17:32:45 +0000159 'all'
160 ),
Primiano Tucci0d72a312018-08-07 14:42:45 +0100161
162 # JsonCpp for legacy json import. Used only by the trace processor in
163 # standalone builds.
164 ('buildtools/jsoncpp.zip',
165 'https://github.com/open-source-parsers/jsoncpp/archive/1.0.0.zip',
166 '3219e26f2e249bb46b7d688478208c7ec138fea4',
167 'all'
168 ),
Florian Mayer475bd7e2018-08-07 20:04:03 +0100169
Florian Mayerf8335662018-08-08 11:30:32 +0100170 # These dependencies are for libunwindstack, which is used by src/profiling.
171 ('buildtools/android-core',
Florian Mayer475bd7e2018-08-07 20:04:03 +0100172 'https://android.googlesource.com/platform/system/core.git',
Florian Mayerc37de002019-01-30 15:36:29 +0000173 'dd70df2e69d06abd87c00b957840248397917dcc',
Florian Mayer475bd7e2018-08-07 20:04:03 +0100174 'all'
175 ),
176
177 ('buildtools/lzma',
178 'https://android.googlesource.com/platform/external/lzma.git',
179 '7851dce6f4ca17f5caa1c93a4e0a45686b1d56c3',
180 'all'
181 ),
Hector Dearman7f71d0e2018-08-09 11:26:10 +0100182
Florian Mayerb64d6b12018-08-30 10:46:30 -0700183 ('buildtools/bionic',
184 'https://android.googlesource.com/platform/bionic.git',
Primiano Tuccifb012ab2018-10-05 00:48:33 +0100185 '4b7c5cca7fbd0330cdfef41c97f1401824e78fba',
Florian Mayerb64d6b12018-08-30 10:46:30 -0700186 'all'
187 ),
188
Hector Dearman7f71d0e2018-08-09 11:26:10 +0100189 # Example traces for regression tests.
190 ('buildtools/test_data.zip',
Lalit Magantia824c332019-01-23 17:55:58 +0000191 'https://storage.googleapis.com/perfetto/test-data-20190123.zip',
Lalit Maganti41c98922019-01-23 19:35:58 +0000192 '3761a0501669fc070022025678a8651f4a9495ad',
Hector Dearman7f71d0e2018-08-09 11:26:10 +0100193 'all',
194 ),
Hector Dearmane44ad452018-09-21 11:51:57 +0100195
Primiano Tucci21d41a72018-09-24 23:12:04 +0100196 # Linenoise, used only by trace_processor in standalone builds.
Hector Dearmane44ad452018-09-21 11:51:57 +0100197 ('buildtools/linenoise',
Primiano Tucci21d41a72018-09-24 23:12:04 +0100198 'https://fuchsia.googlesource.com/third_party/linenoise.git',
199 'c894b9e59f02203dbe4e2be657572cf88c4230c3',
Hector Dearmane44ad452018-09-21 11:51:57 +0100200 'all'
201 ),
Primiano Tuccid7750452017-09-29 14:38:51 +0100202]
203
204# Dependencies required to build Android code.
205# URLs and SHA1s taken from:
206# - https://dl.google.com/android/repository/repository-11.xml
207# - https://dl.google.com/android/repository/sys-img/android/sys-img.xml
208BUILD_DEPS_ANDROID = [
Primiano Tucciae2879e2017-09-27 11:02:09 +0900209 # Android NDK
210 ('buildtools/ndk.zip',
Florian Mayeraa5316b2018-08-20 17:45:12 -0700211 'https://dl.google.com/android/repository/android-ndk-r17b-darwin-x86_64.zip',
212 'f990aafaffec0b583d2c5420bfa622e52ac14248',
Primiano Tucciae2879e2017-09-27 11:02:09 +0900213 'darwin'
214 ),
215 ('buildtools/ndk.zip',
Florian Mayeraa5316b2018-08-20 17:45:12 -0700216 'https://dl.google.com/android/repository/android-ndk-r17b-linux-x86_64.zip',
217 'dd5762ee7ef4995ad04fe0c45a608c344d99ca9f',
Primiano Tucciae2879e2017-09-27 11:02:09 +0900218 'linux2'
219 ),
Primiano Tuccid7750452017-09-29 14:38:51 +0100220]
Primiano Tucciae2879e2017-09-27 11:02:09 +0900221
Primiano Tuccid7750452017-09-29 14:38:51 +0100222# Dependencies required to run Android tests.
223TEST_DEPS_ANDROID = [
Lalit Maganti367fcd52018-02-05 16:06:13 +0000224 # Android emulator images.
225 ('buildtools/aosp-arm.zip',
226 'https://storage.googleapis.com/perfetto/aosp-02022018-arm.zip',
227 'a480d5e7d3ca888b0a58fe15ce76b1791537429a',
Primiano Tuccie7ca7c62018-04-07 08:28:03 +0200228 'all'
Primiano Tucciae2879e2017-09-27 11:02:09 +0900229 ),
230
Primiano Tuccid7750452017-09-29 14:38:51 +0100231 # platform-tools.zip contains adb binaries.
232 ('buildtools/android_sdk/platform-tools.zip',
233 'https://dl.google.com/android/repository/platform-tools_r26.0.0-darwin.zip',
234 'e75b6137dc444f777eb02f44a6d9819b3aabff82',
235 'darwin'
236 ),
237 ('buildtools/android_sdk/platform-tools.zip',
238 'https://dl.google.com/android/repository/platform-tools_r26.0.0-linux.zip',
239 '00de8a6631405b617c10f68cd11ff2e1cd528e23',
240 'linux2'
Primiano Tucciae2879e2017-09-27 11:02:09 +0900241 ),
Primiano Tucci0825bc82017-09-28 18:50:23 +0100242
Lalit Maganti367fcd52018-02-05 16:06:13 +0000243 # Android emulator binaries.
244 ('buildtools/emulator',
245 'https://android.googlesource.com/platform/prebuilts/android-emulator.git',
246 '4b260028dc27bc92c39bee9129cb2ba839970956',
247 'all'
Primiano Tucci0825bc82017-09-28 18:50:23 +0100248 ),
Primiano Tuccid7750452017-09-29 14:38:51 +0100249]
Primiano Tucciae2879e2017-09-27 11:02:09 +0900250
Primiano Tucci1c752c12018-10-23 09:27:19 +0100251# This variable is updated by tools/roll-catapult-trace-viewer.
252CATAPULT_SHA1 = 'ff5d8fd7244680b4d4456c25d5fdc04c76f9ef66'
253
Hector Dearman6177b752019-01-24 10:17:32 +0000254TYPEFACES_SHA1 = '756b0a015b8f99f5718f7fdf967d052c1ec55ab3'
255
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100256UI_DEPS = [
257 ('buildtools/nodejs.tgz',
Primiano Tuccidca96092018-05-31 11:47:16 +0100258 'https://storage.googleapis.com/perfetto/node-v10.3.0-darwin-x64.tar.gz',
259 '6d9a122785f38c256add3b25f74adf125497861a',
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100260 'darwin'
261 ),
262 ('buildtools/nodejs.tgz',
Primiano Tuccidca96092018-05-31 11:47:16 +0100263 'https://storage.googleapis.com/perfetto/node-v10.3.0-linux-x64.tar.xz',
264 '118f6ea19f75089b3f12ac2ddfce357bff872b5e',
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100265 'linux2'
266 ),
267 ('buildtools/emsdk/emscripten.tgz',
268 'https://storage.googleapis.com/perfetto/emscripten-1.37.40.tar.gz',
269 '588c28221321ebbdfc8e3a6f47ea6106f589669b',
270 'all'
271 ),
272 ('buildtools/emsdk/llvm.tgz',
273 'https://storage.googleapis.com/perfetto/emscripten-llvm-e1.37.40-darwin.tar.gz',
274 '7a894ef0a52821c62f6abaac552dc4ce5d424607',
275 'darwin'
276 ),
277 ('buildtools/emsdk/llvm.tgz',
Primiano Tuccife199902018-06-04 12:33:04 +0200278 'https://storage.googleapis.com/perfetto/emscripten-llvm-e1.37.40-static-linux.tar.gz',
279 '478501b9b7a14884e546c84efe209a90052cbb07',
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100280 'linux2'
281 ),
Hector Dearmand9628d32018-10-17 14:38:26 +0100282 ('buildtools/d8.tgz',
283 'https://storage.googleapis.com/perfetto/d8-linux2-5.7.492.65.tar.gz',
284 '95e82ad7faf0a6f74d950c2aa65e3858b7bdb6c6',
285 'linux2'
286 ),
287 ('buildtools/d8.tgz',
288 'https://storage.googleapis.com/perfetto/d8-darwin-6.6.346.32.tar.gz',
289 '1abd630619bb1977ab62095570a113d782a1545d',
290 'darwin'
291 ),
Primiano Tucci1c752c12018-10-23 09:27:19 +0100292 ('buildtools/catapult_trace_viewer.tgz',
293 'https://storage.googleapis.com/perfetto/catapult_trace_viewer-%s.tar.gz' % CATAPULT_SHA1,
294 CATAPULT_SHA1,
295 'all'
296 ),
Hector Dearman6177b752019-01-24 10:17:32 +0000297 ('buildtools/typefaces.tgz',
298 'https://storage.googleapis.com/perfetto/typefaces-%s.tar.gz' % TYPEFACES_SHA1,
299 TYPEFACES_SHA1,
300 'all'
301 )
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100302]
303
Primiano Tucciae2879e2017-09-27 11:02:09 +0900304ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
305
306
307def ReadFile(path):
308 if not os.path.exists(path):
309 return None
310 with open(path) as f:
311 return f.read().strip()
312
313
Primiano Tucci0825bc82017-09-28 18:50:23 +0100314def MkdirRecursive(path):
315 # Works with both relative and absolute paths
316 cwd = '/' if path.startswith('/') else ROOT_DIR
317 for part in path.split('/'):
Primiano Tucciae2879e2017-09-27 11:02:09 +0900318 cwd = os.path.join(cwd, part)
319 if not os.path.exists(cwd):
320 os.makedirs(cwd)
321 else:
322 assert(os.path.isdir(cwd))
323
324
325def HashLocalFile(path):
326 if not os.path.exists(path):
327 return None
328 with open(path, 'rb') as f:
329 return hashlib.sha1(f.read()).hexdigest()
330
331
332def ExtractZipfilePreservePermissions(zf, info, path):
333 zf.extract(info.filename, path=path)
334 target_path = os.path.join(path, info.filename)
335 min_acls = 0o755 if info.filename.endswith('/') else 0o644
336 os.chmod(target_path, (info.external_attr >> 16L) | min_acls)
337
338
Primiano Tucci0825bc82017-09-28 18:50:23 +0100339def IsGitRepoCheckoutOutAtRevision(path, revision):
340 return ReadFile(os.path.join(path, '.git', 'HEAD')) == revision
341
342
343def CheckoutGitRepo(path, git_url, revision):
344 if IsGitRepoCheckoutOutAtRevision(path, revision):
Eric Seckler676421f2019-02-12 14:43:31 +0000345 return False
Primiano Tucci0825bc82017-09-28 18:50:23 +0100346 if os.path.exists(path):
347 shutil.rmtree(path)
348 MkdirRecursive(path)
349 logging.info('Fetching %s @ %s into %s', git_url, revision, path)
Lalit Maganti367fcd52018-02-05 16:06:13 +0000350 subprocess.check_call(['git', 'init', path], cwd=path)
351 subprocess.check_call(
Ryan Savitskie957ce82018-11-06 14:53:33 +0000352 ['git', 'fetch', '--quiet', '--depth', '1', git_url, revision], cwd=path)
Primiano Tucci0825bc82017-09-28 18:50:23 +0100353 subprocess.check_call(['git', 'checkout', revision, '--quiet'], cwd=path)
354 assert(IsGitRepoCheckoutOutAtRevision(path, revision))
Eric Seckler676421f2019-02-12 14:43:31 +0000355 return True
Primiano Tucci0825bc82017-09-28 18:50:23 +0100356
Deepanjan Royacf8c072018-07-13 11:37:04 -0400357def InstallNodeModules():
358 ui_dir = os.path.join(ROOT_DIR, 'ui')
359 logging.info("Running npm install in {0}".format(ui_dir))
360 subprocess.check_call(
361 [os.path.join(ui_dir, 'npm'), 'install', '--no-save'],
362 cwd=os.path.join(ROOT_DIR, 'ui'))
Primiano Tucci0825bc82017-09-28 18:50:23 +0100363
Primiano Tucciae2879e2017-09-27 11:02:09 +0900364def Main():
365 parser = argparse.ArgumentParser()
Primiano Tuccid7750452017-09-29 14:38:51 +0100366 parser.add_argument('--no-android', action='store_true')
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100367 parser.add_argument('--ui', action='store_true')
Primiano Tucciae2879e2017-09-27 11:02:09 +0900368 args = parser.parse_args()
Primiano Tuccid7750452017-09-29 14:38:51 +0100369 deps = BUILD_DEPS_HOST
370 if not args.no_android:
371 deps += BUILD_DEPS_ANDROID + TEST_DEPS_ANDROID
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100372 if args.ui:
373 deps += UI_DEPS
Eric Seckler6e828f32019-01-02 11:10:56 +0000374 deps_updated = False
Primiano Tuccid7750452017-09-29 14:38:51 +0100375 for rel_path, url, expected_sha1, platform in deps:
Lalit Maganti367fcd52018-02-05 16:06:13 +0000376 if (platform != 'all' and platform != sys.platform):
Primiano Tucciae2879e2017-09-27 11:02:09 +0900377 continue
Primiano Tucciae2879e2017-09-27 11:02:09 +0900378 local_path = os.path.join(ROOT_DIR, rel_path)
Primiano Tucci0825bc82017-09-28 18:50:23 +0100379 if url.endswith('.git'):
Eric Seckler676421f2019-02-12 14:43:31 +0000380 deps_updated |= CheckoutGitRepo(local_path, url, expected_sha1)
Primiano Tucci0825bc82017-09-28 18:50:23 +0100381 continue
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000382 is_zip = local_path.endswith('.zip') or local_path.endswith('.tgz')
Primiano Tucciae2879e2017-09-27 11:02:09 +0900383 zip_target_dir = local_path[:-4] if is_zip else None
384 zip_dir_stamp = os.path.join(zip_target_dir, '.stamp') if is_zip else None
385
386 if ((not is_zip and HashLocalFile(local_path) == expected_sha1) or
387 (is_zip and ReadFile(zip_dir_stamp) == expected_sha1)):
388 continue
Eric Seckler6e828f32019-01-02 11:10:56 +0000389 deps_updated = True
Primiano Tucciae2879e2017-09-27 11:02:09 +0900390 MkdirRecursive(os.path.dirname(rel_path))
391 if HashLocalFile(local_path) != expected_sha1:
392 download_path = local_path + '.tmp'
393 logging.info('Downloading %s from %s', local_path, url)
394 urllib.urlretrieve(url, download_path)
395 os.chmod(download_path, 0o755)
Hector Dearmand9628d32018-10-17 14:38:26 +0100396 actual_sha1 = HashLocalFile(download_path)
397 if (actual_sha1 != expected_sha1):
Primiano Tucciae2879e2017-09-27 11:02:09 +0900398 os.remove(download_path)
Hector Dearmand9628d32018-10-17 14:38:26 +0100399 logging.fatal('SHA1 mismatch for {} expected {} was {}'.format(
400 download_path, expected_sha1, actual_sha1))
Primiano Tucciae2879e2017-09-27 11:02:09 +0900401 return 1
402 os.rename(download_path, local_path)
403 assert(HashLocalFile(local_path) == expected_sha1)
404
405 if is_zip:
406 logging.info('Extracting %s into %s' % (local_path, zip_target_dir))
407 assert(os.path.commonprefix((ROOT_DIR, zip_target_dir)) == ROOT_DIR)
408 if os.path.exists(zip_target_dir):
409 logging.info('Deleting stale dir %s' % zip_target_dir)
410 shutil.rmtree(zip_target_dir)
Primiano Tucciae2879e2017-09-27 11:02:09 +0900411
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000412 # Decompress the archive.
413 if local_path.endswith('.tgz'):
414 MkdirRecursive(zip_target_dir)
Primiano Tucci4bdc4c42018-05-10 15:52:33 +0100415 subprocess.check_call(['tar', '-xf', local_path], cwd=zip_target_dir)
Primiano Tuccib60d4b02017-11-10 11:03:00 +0000416 elif local_path.endswith('.zip'):
417 with zipfile.ZipFile(local_path, 'r') as zf:
418 for info in zf.infolist():
419 ExtractZipfilePreservePermissions(zf, info, zip_target_dir)
420
421 # If the zip contains one root folder, rebase one level up moving all
422 # its sub files and folders inside |target_dir|.
423 subdir = os.listdir(zip_target_dir)
424 if len(subdir) == 1:
425 subdir = os.path.join(zip_target_dir, subdir[0])
426 if os.path.isdir(subdir):
427 for subf in os.listdir(subdir):
428 shutil.move(os.path.join(subdir,subf), zip_target_dir)
429 os.rmdir(subdir)
430
431 # Create stamp and remove the archive.
432 with open(zip_dir_stamp, 'w') as stamp_file:
433 stamp_file.write(expected_sha1)
434 os.remove(local_path)
Primiano Tucciae2879e2017-09-27 11:02:09 +0900435
Deepanjan Royacf8c072018-07-13 11:37:04 -0400436 if args.ui:
437 # Needs to happen after nodejs is installed above.
438 InstallNodeModules()
Primiano Tucciae2879e2017-09-27 11:02:09 +0900439
Eric Seckler6e828f32019-01-02 11:10:56 +0000440 if deps_updated:
441 # Stale binary files may be compiled against old sysroot headers that aren't
442 # tracked by gn.
443 logging.warn('Remember to run "gn clean <output_directory>" ' +
444 'to avoid stale binary files.')
445
Primiano Tucciae2879e2017-09-27 11:02:09 +0900446if __name__ == '__main__':
447 logging.basicConfig(level=logging.INFO)
448 sys.exit(Main())