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
|
#!/usr/bin/env python3
# Copyright 2018 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Generate report files to view and/or compare (diff) milestones.
Size files are located in a Google Cloud Storage bucket for various Chrome
versions. This script generates various HTML report files to view a single
milesone, or to compare two milestones with the same CPU and APK.
Desired CPUs, APKs, and milestone versions are set in constants below. If
specified by the --skip-existing flag, the script checks what HTML report files
have already been uploaded to the GCS bucket, then works on generating the
remaining desired files.
Reports can be uploaded automatically with the --sync flag. Otherwise, they can
be uploaded at a later point.
"""
import argparse
import collections
import contextlib
import errno
import itertools
import json
import logging
import multiprocessing
import os
import re
import shutil
import sys
import subprocess
import tempfile
_DIR_SOURCE_ROOT = os.path.normpath(
os.path.join(os.path.dirname(__file__), '..', '..'))
_GSUTIL = os.path.join(_DIR_SOURCE_ROOT, 'third_party', 'depot_tools',
'gsutil.py')
_PUSH_URL = 'gs://chrome-supersize/milestones/'
_DESIRED_CPUS = ['arm', 'arm_64']
_DESIRED_APKS = ['Monochrome.apk', 'AndroidWebview.apk', 'TrichromeGoogle']
# Versions are manually gathered from
# https://omahaproxy.appspot.com/history?os=android&channel=stable
_DESIRED_VERSIONS = [
'60.0.3112.116',
'61.0.3163.98',
'62.0.3202.84',
'63.0.3239.111',
'64.0.3282.137',
'65.0.3325.85',
'66.0.3359.158',
'67.0.3396.87',
'68.0.3440.85',
'69.0.3497.91',
'70.0.3538.64',
'71.0.3578.99',
'72.0.3626.105',
'73.0.3683.75',
'74.0.3729.112',
'75.0.3770.143',
'76.0.3809.132',
'77.0.3865.115',
'78.0.3904.62',
'79.0.3945.136',
'80.0.3987.99',
'81.0.4044.138',
'83.0.4103.60',
'84.0.4147.89',
'85.0.4183.81',
'86.0.4240.198',
'87.0.4280.66',
'88.0.4324.93',
'89.0.4389.105',
'90.0.4430.82',
'91.0.4472.120',
'92.0.4515.70',
'93.0.4577.37',
'94.0.4606.6',
'94.0.4606.85',
'95.0.4638.7',
'96.0.4664.6',
'97.0.4692.9',
'98.0.4758.8',
'99.0.4844.7',
'100.0.4896.12',
'101.0.4951.20',
'102.0.5005.37',
'103.0.5060.9',
'104.0.5112.9',
'105.0.5195.7',
'106.0.5249.7',
'107.0.5304.14',
'108.0.5359.12',
'109.0.5414.8',
'110.0.5481.29',
'111.0.5563.31',
'112.0.5615.7',
'113.0.5672.10',
'114.0.5735.4',
'115.0.5790.5',
'116.0.5845.20',
'117.0.5938.5',
'118.0.5993.5',
'119.0.6045.7',
]
def _VersionMajor(version):
return tuple(int(x) for x in version.split('.'))[0]
def _IsBundle(apk, version):
version = _VersionMajor(version)
if apk == 'Monochrome.apk' and version >= 73:
return True
if apk == 'AndroidWebview.apk' and version >= 89:
return True
return False
def _EnumerateReports():
for cpu, apk in itertools.product(_DESIRED_CPUS, _DESIRED_APKS):
versions = _DESIRED_VERSIONS
# Webview .size files do not exist before M71.
if apk == 'AndroidWebview.apk':
versions = [v for v in versions if _VersionMajor(v) >= 71]
elif apk == 'TrichromeGoogle':
versions = [v for v in versions if _VersionMajor(v) >= 88]
for version in versions:
yield Report(cpu, apk, version)
class Report(collections.namedtuple('Report', 'cpu,apk,version')):
def GetSizeFileSubpath(self, local):
# TrichromeGoogle at older milestones lived in a subdir.
if not local and self.apk == 'TrichromeGoogle' and _VersionMajor(
self.version) < 91:
template = '{version}/{cpu}/for-signing-only/{apk}.size'
else:
template = '{version}/{cpu}/{apk}.size'
ret = template.format(**self._asdict())
if not local and _IsBundle(self.apk, self.version):
ret = ret.replace('.apk', '.minimal.apks')
return ret
def _MakeDirectory(path):
# Function is safe even from racing fork()ed processes.
try:
os.makedirs(path)
except OSError as e:
if e.errno != errno.EEXIST:
raise
def _Shard(func, arg_tuples):
pool = multiprocessing.Pool()
try:
for x in pool.imap_unordered(func, arg_tuples):
yield x
finally:
pool.close()
def _DownloadOneSizeFile(arg_tuples):
subpath, temp_dir, base_url = arg_tuples
src = '{}/{}'.format(base_url, subpath)
dest = os.path.join(temp_dir, subpath)
_MakeDirectory(os.path.dirname(dest))
subprocess.check_call([_GSUTIL, '-q', 'cp', src, dest])
@contextlib.contextmanager
def _DownloadSizeFiles(base_url, reports):
temp_dir = tempfile.mkdtemp()
try:
subpaths = set(x.GetSizeFileSubpath(local=False) for x in reports)
arg_tuples = ((p, temp_dir, base_url) for p in subpaths)
for _ in _Shard(_DownloadOneSizeFile, arg_tuples):
pass
yield temp_dir
finally:
shutil.rmtree(temp_dir)
def _WriteMilestonesJson(path):
with open(path, 'w') as out_file:
# TODO(agrieve): Record the full list of reports rather than three arrays
# so that the UI can prevent selecting non-existent entries.
pushed_reports_obj = {
'pushed': {
'apk': _DESIRED_APKS,
'cpu': _DESIRED_CPUS,
'version': _DESIRED_VERSIONS,
},
}
json.dump(pushed_reports_obj, out_file, sort_keys=True, indent=2)
def _BuildOneReport(report, output_directory, size_file_directory):
# Newer Monochrome builds are minimal builds, with names like
# "Monochrome.minimal.apks.size". Standardize to "Monochrome.apk.size".
local_size_path = os.path.join(output_directory,
report.GetSizeFileSubpath(local=True))
_MakeDirectory(os.path.dirname(local_size_path))
size_file = os.path.join(size_file_directory,
report.GetSizeFileSubpath(local=False))
shutil.copyfile(size_file, local_size_path)
def main():
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument(
'--size-file-bucket',
required=True,
help='GCS bucket to find size files in. (e.g. "gs://bucket/subdir")')
parser.add_argument(
'--sync',
action='store_true',
help='Sync data files to GCS (otherwise just prints out command to run).')
parser.add_argument('--wait',
action='store_true',
help='Allow user to examine staged content before exit.')
args = parser.parse_args()
size_file_bucket = args.size_file_bucket.rstrip('/')
if not size_file_bucket.startswith('gs://'):
parser.error('Size file bucket must start with gs://')
reports_to_make = set(_EnumerateReports())
logging.warning('Downloading %d size files.', len(reports_to_make))
with _DownloadSizeFiles(args.size_file_bucket, reports_to_make) as sizes_dir:
staging_dir = os.path.join(sizes_dir, 'staging')
_MakeDirectory(staging_dir)
if not args.sync:
logging.warning('Staging dir: %s', staging_dir)
for r in reports_to_make:
_BuildOneReport(r, staging_dir, sizes_dir)
_WriteMilestonesJson(os.path.join(staging_dir, 'milestones.json'))
if args.sync:
subprocess.check_call(
[_GSUTIL, '-m', 'rsync', '-r', staging_dir, _PUSH_URL])
milestones_json = _PUSH_URL + 'milestones.json'
# The main index.html page has no authentication code, so make .json file
# world-readable.
subprocess.check_call(
[_GSUTIL, 'acl', 'set', '-a', 'public-read', milestones_json])
subprocess.check_call(
[_GSUTIL, 'setmeta', '-h', 'Cache-Control:no-cache', milestones_json])
else:
logging.warning('Finished dry run. Run with --sync to upload.')
if args.wait:
input('Press <enter> to delete staging dir %s, and finish.' % staging_dir)
if __name__ == '__main__':
main()
|