| OLD | NEW |
| (Empty) |
| 1 #!/usr/bin/python | |
| 2 # Copyright 2017 The Chromium Authors. All rights reserved. | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 import argparse | |
| 7 import os | |
| 8 import sys | |
| 9 | |
| 10 _BUILD_ANDROID = os.path.join(os.path.dirname(__file__), os.pardir) | |
| 11 sys.path.append(_BUILD_ANDROID) | |
| 12 from pylib.constants import host_paths | |
| 13 | |
| 14 sys.path.append(os.path.join(host_paths.DIR_SOURCE_ROOT, 'build')) | |
| 15 import find_depot_tools # pylint: disable=import-error,unused-import | |
| 16 import download_from_google_storage | |
| 17 | |
| 18 CURRENT_MILESTONE = '58' | |
| 19 DEFAULT_BUCKET = 'gs://chromium-android-tools/apks' | |
| 20 DEFAULT_DOWNLOAD_PATH = os.path.join(os.path.dirname(__file__), 'apks') | |
| 21 DEFAULT_BUILDER = 'Android_Builder' | |
| 22 DEFAULT_APK = 'MonochromePublic.apk' | |
| 23 | |
| 24 | |
| 25 def MaybeDownloadApk(builder, milestone, apk, download_path, bucket): | |
| 26 """Returns path to the downloaded APK or None if not found.""" | |
| 27 apk_path = os.path.join(download_path, builder, milestone, apk) | |
| 28 sha1_path = apk_path + '.sha1' | |
| 29 base_url = os.path.join(bucket, builder, milestone) | |
| 30 if os.path.exists(apk_path): | |
| 31 print '%s already exists' % apk_path | |
| 32 return apk_path | |
| 33 elif not os.path.exists(sha1_path): | |
| 34 print 'Skipping %s, file not found' % sha1_path | |
| 35 return None | |
| 36 else: | |
| 37 download_from_google_storage.download_from_google_storage( | |
| 38 input_filename=sha1_path, | |
| 39 sha1_file=sha1_path, | |
| 40 base_url=base_url, | |
| 41 gsutil=download_from_google_storage.Gsutil( | |
| 42 download_from_google_storage.GSUTIL_DEFAULT_PATH), | |
| 43 num_threads=1, | |
| 44 directory=False, | |
| 45 recursive=False, | |
| 46 force=False, | |
| 47 output=apk_path, | |
| 48 ignore_errors=False, | |
| 49 verbose=True, | |
| 50 auto_platform=False, | |
| 51 extract=False) | |
| 52 return apk_path | |
| 53 | |
| 54 | |
| 55 def main(): | |
| 56 argparser = argparse.ArgumentParser( | |
| 57 description='Utility for downloading archived APKs used for measuring ' | |
| 58 'per-milestone patch size growth.', | |
| 59 formatter_class=argparse.ArgumentDefaultsHelpFormatter) | |
| 60 argparser.add_argument('--download-path', default=DEFAULT_DOWNLOAD_PATH, | |
| 61 help='Directory to store downloaded APKs.') | |
| 62 argparser.add_argument('--milestone', default=CURRENT_MILESTONE, | |
| 63 help='Download reference APK for this milestone.') | |
| 64 argparser.add_argument('--apk', default=DEFAULT_APK, help='APK name.') | |
| 65 argparser.add_argument('--builder', default=DEFAULT_BUILDER, | |
| 66 help='Builder name.') | |
| 67 argparser.add_argument('--bucket', default=DEFAULT_BUCKET, | |
| 68 help='Google storage bucket where APK is stored.') | |
| 69 args = argparser.parse_args() | |
| 70 MaybeDownloadApk( | |
| 71 args.builder, args.milestone, args.apk, args.download_path, args.bucket) | |
| 72 | |
| 73 | |
| 74 if __name__ == '__main__': | |
| 75 sys.exit(main()) | |
| OLD | NEW |