blob: 92fba41e5df6d5e48b79583183c4da77330e3bfa [file] [log] [blame]
Alan Viverettef5cb0e62017-11-17 15:15:23 -05001#!/usr/bin/python3
Alan Viverette95f6d362017-04-06 09:40:50 -04002
Alan Viverettecd3de262017-08-14 09:51:30 -04003# This script is used to update platform SDK prebuilts, Support Library, and a variety of other
4# prebuilt libraries used by Android's Makefile builds. For details on how to use this script,
5# visit go/update-prebuilts.
Alan Viverette95f6d362017-04-06 09:40:50 -04006import os, sys, getopt, zipfile, re
Alan Viveretted4527e62017-05-11 15:03:25 -04007import argparse
Jiyong Park1d1c9632018-05-29 17:45:27 +09008import glob
Alan Viveretted4527e62017-05-11 15:03:25 -04009import subprocess
shepshaparde4127cf2019-09-03 16:08:44 -070010from shutil import copyfile, rmtree, which, move
Alan Viveretted4527e62017-05-11 15:03:25 -040011from distutils.version import LooseVersion
Alan Viverettef5cb0e62017-11-17 15:15:23 -050012from functools import reduce
Alan Viverette95f6d362017-04-06 09:40:50 -040013
Alan Viverette45837092017-05-12 14:50:53 -040014current_path = 'current'
Andy Wickhamc3c99af2020-10-26 20:47:58 +000015framework_sdk_target = 'sdk_phone_armv7-win_sdk'
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040016androidx_dir = os.path.join(current_path, 'androidx')
Alan Viverette3e57a4a2017-08-11 15:49:47 -040017extras_dir = os.path.join(current_path, 'extras')
Alan Viverettec1c32b62017-12-20 09:40:36 -050018buildtools_dir = 'tools'
Jeff Gaston553a4372018-03-29 18:34:22 -040019jetifier_dir = os.path.join(buildtools_dir, 'jetifier', 'jetifier-standalone')
Alan Viverette95f6d362017-04-06 09:40:50 -040020
Jeff Gastona68a8d42018-03-23 14:00:13 -040021temp_dir = os.path.join(os.getcwd(), "support_tmp")
22os.chdir(os.path.dirname(os.path.dirname(os.path.realpath(sys.argv[0]))))
23git_dir = os.getcwd()
24
Alan Viverettecd3de262017-08-14 09:51:30 -040025# See go/fetch_artifact for details on this script.
Alan Viveretted4527e62017-05-11 15:03:25 -040026FETCH_ARTIFACT = '/google/data/ro/projects/android/fetch_artifact'
Jeff Sharkeyabe16df2021-05-25 10:09:03 -060027FETCH_ARTIFACT_BEYOND_CORP = '/usr/bin/fetch_artifact'
Alan Viveretted4527e62017-05-11 15:03:25 -040028
Alan Viverette0723aff2021-08-31 17:07:47 +000029# Leave map blank to automatically populate name and path:
30# - Name format is MAVEN.replaceAll(':','_')
31# - Path format is MAVEN.replaceAll(':','/').replaceAll('.','/')
Alan Viverette95f6d362017-04-06 09:40:50 -040032maven_to_make = {
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040033 # AndroidX
Alan Viverettef3c12722021-08-30 19:50:33 +000034 'androidx.benchmark:benchmark-macro': { },
35 'androidx.benchmark:benchmark-macro-junit4': { },
36 'androidx.benchmark:benchmark-common': { },
37 'androidx.benchmark:benchmark-junit4': { },
38 'androidx.tracing:tracing': { },
39 'androidx.tracing:tracing-ktx': { },
40 'androidx.slice:slice-builders': { },
41 'androidx.slice:slice-core': { },
42 'androidx.slice:slice-view': { },
43 'androidx.remotecallback:remotecallback': { },
Alan Viverette0723aff2021-08-31 17:07:47 +000044 'androidx.remotecallback:remotecallback-processor': {'host':True},
45 'androidx.versionedparcelable:versionedparcelable': { },
Alan Viverettef3c12722021-08-30 19:50:33 +000046 'androidx.vectordrawable:vectordrawable-animated': { },
47 'androidx.activity:activity': { },
48 'androidx.activity:activity-ktx': { },
Alan Viverette0723aff2021-08-31 17:07:47 +000049 'androidx.annotation:annotation': {'host_and_device':True},
Alan Viverettef3c12722021-08-30 19:50:33 +000050 'androidx.annotation:annotation-experimental': { },
51 'androidx.asynclayoutinflater:asynclayoutinflater': { },
52 'androidx.collection:collection': { },
53 'androidx.collection:collection-ktx': { },
54 'androidx.concurrent:concurrent-futures': { },
55 'androidx.concurrent:concurrent-listenablefuture-callback': { },
56 'androidx.concurrent:concurrent-listenablefuture': { },
57 'androidx.core:core': { },
58 'androidx.core:core-animation': { },
59 'androidx.core:core-ktx': { },
60 'androidx.contentpaging:contentpaging': { },
61 'androidx.coordinatorlayout:coordinatorlayout': { },
62 'androidx.legacy:legacy-support-core-ui': { },
63 'androidx.legacy:legacy-support-core-utils': { },
64 'androidx.cursoradapter:cursoradapter': { },
65 'androidx.browser:browser': { },
66 'androidx.customview:customview': { },
67 'androidx.documentfile:documentfile': { },
68 'androidx.drawerlayout:drawerlayout': { },
69 'androidx.dynamicanimation:dynamicanimation': { },
70 'androidx.emoji:emoji': { },
71 'androidx.emoji:emoji-appcompat': { },
72 'androidx.emoji:emoji-bundled': { },
73 'androidx.emoji2:emoji2': { },
74 'androidx.emoji2:emoji2-views-helper': { },
75 'androidx.exifinterface:exifinterface': { },
76 'androidx.fragment:fragment': { },
77 'androidx.fragment:fragment-ktx': { },
78 'androidx.heifwriter:heifwriter': { },
79 'androidx.interpolator:interpolator': { },
80 'androidx.loader:loader': { },
81 'androidx.localbroadcastmanager:localbroadcastmanager': { },
82 'androidx.media:media': { },
83 'androidx.media2:media2-player': { },
84 'androidx.media2:media2-session': { },
85 'androidx.media2:media2-common': { },
86 'androidx.media2:media2-exoplayer': { },
87 'androidx.media2:media2-widget': { },
88 'androidx.navigation:navigation-common': { },
89 'androidx.navigation:navigation-common-ktx': { },
90 'androidx.navigation:navigation-fragment': { },
91 'androidx.navigation:navigation-fragment-ktx': { },
92 'androidx.navigation:navigation-runtime': { },
93 'androidx.navigation:navigation-runtime-ktx': { },
94 'androidx.navigation:navigation-ui': { },
95 'androidx.navigation:navigation-ui-ktx': { },
96 'androidx.percentlayout:percentlayout': { },
97 'androidx.print:print': { },
98 'androidx.recommendation:recommendation': { },
99 'androidx.recyclerview:recyclerview-selection': { },
100 'androidx.savedstate:savedstate': { },
101 'androidx.savedstate:savedstate-ktx': { },
102 'androidx.slidingpanelayout:slidingpanelayout': { },
103 'androidx.swiperefreshlayout:swiperefreshlayout': { },
104 'androidx.textclassifier:textclassifier': { },
105 'androidx.transition:transition': { },
106 'androidx.tvprovider:tvprovider': { },
107 'androidx.legacy:legacy-support-v13': { },
108 'androidx.legacy:legacy-preference-v14': { },
109 'androidx.leanback:leanback': { },
110 'androidx.leanback:leanback-preference': { },
111 'androidx.legacy:legacy-support-v4': { },
112 'androidx.appcompat:appcompat': { },
113 'androidx.appcompat:appcompat-resources': { },
114 'androidx.cardview:cardview': { },
115 'androidx.gridlayout:gridlayout': { },
116 'androidx.mediarouter:mediarouter': { },
117 'androidx.palette:palette': { },
118 'androidx.preference:preference': { },
119 'androidx.recyclerview:recyclerview': { },
120 'androidx.vectordrawable:vectordrawable': { },
121 'androidx.viewpager:viewpager': { },
122 'androidx.viewpager2:viewpager2': { },
123 'androidx.wear:wear': { },
124 'androidx.wear:wear-ongoing': { },
125 'androidx.webkit:webkit': { },
126 'androidx.biometric:biometric': { },
127 'androidx.autofill:autofill': { },
128 'androidx.appsearch:appsearch': { },
Alan Viverette0723aff2021-08-31 17:07:47 +0000129 'androidx.appsearch:appsearch-local-storage': {'name':'androidx.appsearch_appsearch_local_storage'},
130 'androidx.appsearch:appsearch-platform-storage': { },
131 'androidx.appsearch:appsearch-compiler': {'name':'androidx.appsearch_appsearch-compiler', 'host':True},
Alan Viverettef3c12722021-08-30 19:50:33 +0000132 'androidx.car.app:app': { },
133 'androidx.car.app:app-automotive': { },
134 'androidx.car.app:app-testing': { },
135 'androidx.startup:startup-runtime': { },
136 'androidx.window:window': { },
137 'androidx.resourceinspection:resourceinspection-annotation': { },
138 'androidx.profileinstaller:profileinstaller': { },
Aurimas Liutikas6e87bbf2021-07-30 10:04:05 -0700139
Alan Viverettef44e2f92021-08-31 17:26:26 +0000140 # AndroidX for Compose
141 'androidx.compose.compiler:compiler-hosted': { },
142 'androidx.compose.runtime:runtime': { },
143 'androidx.compose.runtime:runtime-saveable': { },
144 'androidx.compose.foundation:foundation': { },
145 'androidx.compose.foundation:foundation-layout': { },
146 'androidx.compose.foundation:foundation-text': { },
147 'androidx.compose.ui:ui': { },
148 'androidx.compose.ui:ui-geometry': { },
149 'androidx.compose.ui:ui-graphics': { },
150 'androidx.compose.ui:ui-text': { },
151 'androidx.compose.ui:ui-unit': { },
152 'androidx.compose.ui:ui-util': { },
153 'androidx.compose.animation:animation-core': { },
154 'androidx.compose.animation:animation': { },
155 'androidx.compose.material:material-icons-core': { },
156 'androidx.compose.material:material-ripple': { },
157 'androidx.compose.material:material': { },
158 'androidx.activity:activity-compose': { },
159
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400160 # AndroidX for Multidex
Alan Viverette0723aff2021-08-31 17:07:47 +0000161 'androidx.multidex:multidex': { },
162 'androidx.multidex:multidex-instrumentation': { },
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400163
164 # AndroidX for Constraint Layout
Alan Viverette0723aff2021-08-31 17:07:47 +0000165 'androidx.constraintlayout:constraintlayout': {'name':'androidx-constraintlayout_constraintlayout'},
166 'androidx.constraintlayout:constraintlayout-solver': {'name':'androidx-constraintlayout_constraintlayout-solver'},
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400167
168 # AndroidX for Architecture Components
Alan Viverettef3c12722021-08-30 19:50:33 +0000169 'androidx.arch.core:core-common': { },
170 'androidx.arch.core:core-runtime': { },
171 'androidx.lifecycle:lifecycle-common': { },
172 'androidx.lifecycle:lifecycle-common-java8': { },
173 'androidx.lifecycle:lifecycle-extensions': { },
174 'androidx.lifecycle:lifecycle-livedata': { },
175 'androidx.lifecycle:lifecycle-livedata-ktx': { },
176 'androidx.lifecycle:lifecycle-livedata-core': { },
177 'androidx.lifecycle:lifecycle-livedata-core-ktx': { },
178 'androidx.lifecycle:lifecycle-process': { },
179 'androidx.lifecycle:lifecycle-runtime': { },
180 'androidx.lifecycle:lifecycle-runtime-ktx': { },
181 'androidx.lifecycle:lifecycle-service': { },
182 'androidx.lifecycle:lifecycle-viewmodel': { },
183 'androidx.lifecycle:lifecycle-viewmodel-ktx': { },
184 'androidx.lifecycle:lifecycle-viewmodel-savedstate': { },
185 'androidx.paging:paging-common': { },
186 'androidx.paging:paging-common-ktx': { },
187 'androidx.paging:paging-runtime': { },
188 'androidx.sqlite:sqlite': { },
189 'androidx.sqlite:sqlite-framework': { },
Alan Viverette0723aff2021-08-31 17:07:47 +0000190 'androidx.room:room-common': {'host_and_device':True},
191 'androidx.room:room-compiler': {'host':True},
192 'androidx.room:room-migration': {'host_and_device':True},
Alan Viverettef3c12722021-08-30 19:50:33 +0000193 'androidx.room:room-runtime': { },
194 'androidx.room:room-testing': { },
Alan Viverette0723aff2021-08-31 17:07:47 +0000195 'androidx.room:room-compiler-processing': {'host':True},
Alan Viverettef3c12722021-08-30 19:50:33 +0000196 'androidx.work:work-runtime': { },
197 'androidx.work:work-runtime-ktx': { },
198 'androidx.work:work-testing': { },
Allenab72f012018-01-29 18:10:23 -0800199
Alan Viverette19ecd502018-01-05 13:52:16 -0500200 # Lifecycle
Alan Viverettec7e88f12018-02-13 15:29:50 -0500201 # Missing dependencies:
202 # - auto-common
203 # - javapoet
Jeff Gastona0bce602018-08-24 14:05:03 -0400204 #'android.arch.lifecycle:compiler': {'name':'android-arch-lifecycle-compiler', 'path':'arch-lifecycle/compiler'},
Alan Viverettec7e88f12018-02-13 15:29:50 -0500205 # Missing dependencies:
206 # - reactive-streams
Jeff Gastona0bce602018-08-24 14:05:03 -0400207 #'android.arch.lifecycle:reactivestreams': 'android-arch-lifecycle-reactivestreams','arch-lifecycle/reactivestreams',
Allenab72f012018-01-29 18:10:23 -0800208
Alan Viverette19ecd502018-01-05 13:52:16 -0500209 # Room
Alan Viverettec7e88f12018-02-13 15:29:50 -0500210 # Missing dependencies:
211 # - auto-common
212 # - javapoet
213 # - antlr4
214 # - kotlin-metadata
215 # - commons-codec
Jeff Gastona0bce602018-08-24 14:05:03 -0400216 #'android.arch.persistence.room:compiler': {'name':'android-arch-room-compiler', 'path':'arch-room/compiler'},
Alan Viverettec7e88f12018-02-13 15:29:50 -0500217 # Missing dependencies:
218 # - rxjava
Jeff Gastona0bce602018-08-24 14:05:03 -0400219 #'android.arch.persistence.room:rxjava2': {'name':'android-arch-room-rxjava2', 'path':'arch-room/rxjava2'},
Allenab72f012018-01-29 18:10:23 -0800220
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400221 # Third-party dependencies
Jeff Gastona0bce602018-08-24 14:05:03 -0400222 'com.google.android:flexbox': {'name':'flexbox', 'path':'flexbox'},
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400223
Jeff Gastonfa7c7e82018-04-06 13:35:48 -0400224 # Androidx Material Design Components
Alan Viverettef3c12722021-08-30 19:50:33 +0000225 'com.google.android.material:material': { },
Alan Viverette95f6d362017-04-06 09:40:50 -0400226}
227
Alan Viverettef3c12722021-08-30 19:50:33 +0000228
229def name_for_artifact(group_artifact):
230 return group_artifact.replace(':','_')
231
232
233def path_for_artifact(group_artifact):
234 return group_artifact.replace('.','/').replace(':','/')
235
236
237# Add automatic entries to maven_to_make.
238for key in maven_to_make:
239 if ('name' not in maven_to_make[key]):
240 maven_to_make[key]['name'] = name_for_artifact(key)
241 if ('path' not in maven_to_make[key]):
242 maven_to_make[key]['path'] = path_for_artifact(key)
243
Alan Viverette95f6d362017-04-06 09:40:50 -0400244# Always remove these files.
245blacklist_files = [
246 'annotations.zip',
247 'public.txt',
248 'R.txt',
Alan Viverette44ad4e42017-08-09 17:45:00 -0400249 'AndroidManifest.xml',
Alan Viverettef48d9b42017-08-17 14:45:46 -0400250 os.path.join('libs','noto-emoji-compat-java.jar')
Alan Viverette95f6d362017-04-06 09:40:50 -0400251]
252
Alan Viverette44ad4e42017-08-09 17:45:00 -0400253artifact_pattern = re.compile(r"^(.+?)-(\d+\.\d+\.\d+(?:-\w+\d+)?(?:-[\d.]+)*)\.(jar|aar)$")
Alan Viverette95f6d362017-04-06 09:40:50 -0400254
Alan Viverettec960cfb2017-12-04 13:09:22 -0500255
256class MavenLibraryInfo:
Jeff Gastonc302bb92018-03-23 13:53:48 -0400257 def __init__(self, key, group_id, artifact_id, version, dir, repo_dir, file):
Alan Viverettec960cfb2017-12-04 13:09:22 -0500258 self.key = key
259 self.group_id = group_id
260 self.artifact_id = artifact_id
261 self.version = version
Jeff Gastonc302bb92018-03-23 13:53:48 -0400262 self.dir = dir
Alan Viverettec960cfb2017-12-04 13:09:22 -0500263 self.repo_dir = repo_dir
264 self.file = file
265
266
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500267def print_e(*args, **kwargs):
268 print(*args, file=sys.stderr, **kwargs)
269
Alan Viverette95f6d362017-04-06 09:40:50 -0400270
271def touch(fname, times=None):
272 with open(fname, 'a'):
273 os.utime(fname, times)
274
275
Alan Viverette45837092017-05-12 14:50:53 -0400276def path(*path_parts):
277 return reduce((lambda x, y: os.path.join(x, y)), path_parts)
278
279
Alan Viverettecd3de262017-08-14 09:51:30 -0400280def flatten(list):
281 return reduce((lambda x, y: "%s %s" % (x, y)), list)
282
283
Alan Viverette45837092017-05-12 14:50:53 -0400284def rm(path):
285 if os.path.isdir(path):
286 rmtree(path)
287 elif os.path.exists(path):
288 os.remove(path)
289
290
291def mv(src_path, dst_path):
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400292 if os.path.exists(dst_path):
Alan Viverettecd3de262017-08-14 09:51:30 -0400293 rm(dst_path)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400294 if not os.path.exists(os.path.dirname(dst_path)):
295 os.makedirs(os.path.dirname(dst_path))
Jiyong Park1d1c9632018-05-29 17:45:27 +0900296 for f in (glob.glob(src_path)):
297 if '*' in dst_path:
298 dst = os.path.join(os.path.dirname(dst_path), os.path.basename(f))
299 else:
300 dst = dst_path
shepshaparde4127cf2019-09-03 16:08:44 -0700301 move(f, dst)
Alan Viverette45837092017-05-12 14:50:53 -0400302
303
Jeff Gastonc302bb92018-03-23 13:53:48 -0400304def detect_artifacts(maven_repo_dirs):
Alan Viveretted4527e62017-05-11 15:03:25 -0400305 maven_lib_info = {}
306
Dan Willemsen814152e2017-11-06 13:22:11 -0800307 # Find the latest revision for each artifact, remove others
Jeff Gastonc302bb92018-03-23 13:53:48 -0400308 for repo_dir in maven_repo_dirs:
Dan Willemsen814152e2017-11-06 13:22:11 -0800309 for root, dirs, files in os.walk(repo_dir):
310 for file in files:
Alan Viverettec960cfb2017-12-04 13:09:22 -0500311 if file[-4:] == ".pom":
312 # Read the POM (hack hack hack).
313 group_id = ''
314 artifact_id = ''
315 version = ''
316 file = os.path.join(root, file)
317 with open(file) as pom_file:
318 for line in pom_file:
319 if line[:11] == ' <groupId>':
320 group_id = line[11:-11]
321 elif line[:14] == ' <artifactId>':
322 artifact_id = line[14:-14]
323 elif line[:11] == ' <version>':
324 version = line[11:-11]
325 if group_id == '' or artifact_id == '' or version == '':
326 print_e('Failed to find Maven artifact data in ' + file)
327 continue
Alan Viverette95f6d362017-04-06 09:40:50 -0400328
Alan Viverettec960cfb2017-12-04 13:09:22 -0500329 # Locate the artifact.
330 artifact_file = file[:-4]
331 if os.path.exists(artifact_file + '.jar'):
332 artifact_file = artifact_file + '.jar'
333 elif os.path.exists(artifact_file + '.aar'):
334 artifact_file = artifact_file + '.aar'
335 else:
336 print_e('Failed to find artifact for ' + artifact_file)
337 continue
338
339 # Make relative to root.
340 artifact_file = artifact_file[len(root) + 1:]
341
342 # Find the mapping.
343 group_artifact = group_id + ':' + artifact_id
Jeff Gaston3e622ba2018-03-26 23:24:46 -0400344 if group_artifact in maven_to_make:
Alan Viverettec960cfb2017-12-04 13:09:22 -0500345 key = group_artifact
Jeff Gaston3e622ba2018-03-26 23:24:46 -0400346 elif artifact_id in maven_to_make:
347 key = artifact_id
Alan Viverettec960cfb2017-12-04 13:09:22 -0500348 else:
Alan Viverettef3c12722021-08-30 19:50:33 +0000349 print('Failed to find artifact mapping for ' + group_artifact + ', using default')
Alan Viverettec960cfb2017-12-04 13:09:22 -0500350 continue
351
352 # Store the latest version.
353 version = LooseVersion(version)
354 if key not in maven_lib_info \
355 or version > maven_lib_info[key].version:
356 maven_lib_info[key] = MavenLibraryInfo(key, group_id, artifact_id, version,
357 root, repo_dir, artifact_file)
Alan Viverette95f6d362017-04-06 09:40:50 -0400358
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400359 return maven_lib_info
360
361
Colin Cross59b59db2018-04-24 13:58:05 -0700362def transform_maven_repos(maven_repo_dirs, transformed_dir, extract_res=True, include_static_deps=True):
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400363 cwd = os.getcwd()
364
365 # Use a temporary working directory.
Jeff Gastonc302bb92018-03-23 13:53:48 -0400366 maven_lib_info = detect_artifacts(maven_repo_dirs)
Jeff Gastona68a8d42018-03-23 14:00:13 -0400367 working_dir = temp_dir
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400368
Alan Viverettec960cfb2017-12-04 13:09:22 -0500369 if not maven_lib_info:
370 print_e('Failed to detect artifacts')
371 return False
372
Jeff Gastonc302bb92018-03-23 13:53:48 -0400373 # extract some files (for example, AndroidManifest.xml) from any relevant artifacts
Alan Viveretted4527e62017-05-11 15:03:25 -0400374 for info in maven_lib_info.values():
Alan Viveretted8ce7222017-12-11 17:24:43 -0500375 transform_maven_lib(working_dir, info, extract_res)
Dan Willemsen814152e2017-11-06 13:22:11 -0800376
Colin Cross74683bc2018-04-11 17:36:18 -0700377 # generate a single Android.bp that specifies to use all of the above artifacts
378 makefile = os.path.join(working_dir, 'Android.bp')
Alan Viverette4ec9a172018-02-20 16:19:31 -0500379 with open(makefile, 'w') as f:
Anton Hanssonbd2021c2021-04-06 19:21:34 +0000380 args = ["pom2bp"]
Aurimas Liutikas6e87bbf2021-07-30 10:04:05 -0700381 args.extend(["-sdk-version", "31"])
Anton Hanssonbd2021c2021-04-06 19:21:34 +0000382 args.extend(["-default-min-sdk-version", "24"])
Jeff Gaston1cc06092018-03-28 15:51:02 -0400383 if include_static_deps:
384 args.append("-static-deps")
Jeff Gaston54868ee2018-04-25 19:43:35 -0400385 rewriteNames = sorted([name for name in maven_to_make if ":" in name] + [name for name in maven_to_make if ":" not in name])
Jeff Gastona0bce602018-08-24 14:05:03 -0400386 args.extend(["-rewrite=^" + name + "$=" + maven_to_make[name]['name'] for name in rewriteNames])
Colin Cross5542fc22021-04-14 11:36:46 -0700387 args.extend(["-rewrite=^auto-common$=auto_common"])
388 args.extend(["-rewrite=^auto-value-annotations$=auto_value_annotations"])
Aurimas Liutikas6e87bbf2021-07-30 10:04:05 -0700389 args.extend(["-rewrite=^com.google.auto.value:auto-value$=auto_value_plugin"])
Dustin Lamda15cd42020-04-01 19:06:23 -0700390 args.extend(["-rewrite=^monitor$=androidx.test.monitor"])
391 args.extend(["-rewrite=^rules$=androidx.test.rules"])
392 args.extend(["-rewrite=^runner$=androidx.test.runner"])
Aurimas Liutikas6e87bbf2021-07-30 10:04:05 -0700393 args.extend(["-rewrite=^androidx.test:core$=androidx.test.core"])
Yiqun Wu9e020fe2020-11-18 21:16:08 +0000394 args.extend(["-rewrite=^com.squareup:javapoet$=javapoet"])
Aurimas Liutikasd9124762018-09-28 15:31:35 -0700395 args.extend(["-rewrite=^com.google.guava:listenablefuture$=guava-listenablefuture-prebuilt-jar"])
Tony Mak0f658752019-07-19 11:11:05 +0100396 args.extend(["-rewrite=^sqlite-jdbc$=xerial-sqlite-jdbc"])
Tony Mak0f658752019-07-19 11:11:05 +0100397 args.extend(["-rewrite=^gson$=gson-prebuilt-jar"])
Sunny Goyal6667ddb2020-03-03 15:15:54 -0800398 args.extend(["-rewrite=^com.intellij:annotations$=jetbrains-annotations"])
Aurimas Liutikas6e87bbf2021-07-30 10:04:05 -0700399 args.extend(["-rewrite=^javax.annotation:javax.annotation-api$=javax-annotation-api-prebuilt-host-jar"])
400 args.extend(["-rewrite=^org.robolectric:robolectric$=Robolectric_all-target"])
Alan Viverettef44e2f92021-08-31 17:26:26 +0000401 args.extend(["-rewrite=^org.jetbrains.kotlin:kotlin-stdlib-common$=kotlin-stdlib"])
Aurimas Liutikas6e87bbf2021-07-30 10:04:05 -0700402 args.extend(["-rewrite=^org.jetbrains.kotlinx:kotlinx-coroutines-core$=kotlinx_coroutines"])
403 args.extend(["-rewrite=^org.jetbrains.kotlinx:kotlinx-coroutines-android$=kotlinx_coroutines_android"])
404 args.extend(["-rewrite=^org.jetbrains.kotlinx:kotlinx-metadata-jvm$=kotlinx_metadata_jvm"])
Sunny Goyal6667ddb2020-03-03 15:15:54 -0800405 args.extend(["-extra-static-libs=androidx.room_room-compiler=guava-21.0"])
Jeff Gaston07a3cf72018-08-24 14:16:34 -0400406 args.extend(["-host=" + name for name in maven_to_make if maven_to_make[name].get('host')])
Tony Mak0f658752019-07-19 11:11:05 +0100407 args.extend(["-host-and-device=" + name for name in maven_to_make if maven_to_make[name].get('host_and_device')])
Colin Cross21060072018-04-24 13:52:29 -0700408 # these depend on GSON which is not in AOSP
Tony Mak0f658752019-07-19 11:11:05 +0100409 args.extend(["-exclude=android-arch-room-migration",
Colin Cross21060072018-04-24 13:52:29 -0700410 "-exclude=android-arch-room-testing"])
Jeff Gaston7ec1d8f2018-03-27 00:25:12 -0400411 args.extend(["."])
Dan Willemsen814152e2017-11-06 13:22:11 -0800412 subprocess.check_call(args, stdout=f, cwd=working_dir)
Alan Viverette95f6d362017-04-06 09:40:50 -0400413
414 # Replace the old directory.
Jeff Gastonc302bb92018-03-23 13:53:48 -0400415 output_dir = os.path.join(cwd, transformed_dir)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400416 mv(working_dir, output_dir)
Alan Viverettec960cfb2017-12-04 13:09:22 -0500417 return True
Alan Viverette95f6d362017-04-06 09:40:50 -0400418
Jeff Gastonc302bb92018-03-23 13:53:48 -0400419# moves <artifact_info> (of type MavenLibraryInfo) into the appropriate part of <working_dir> , and possibly unpacks any necessary included files
Alan Viveretted8ce7222017-12-11 17:24:43 -0500420def transform_maven_lib(working_dir, artifact_info, extract_res):
Dan Willemsen814152e2017-11-06 13:22:11 -0800421 # Move library into working dir
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400422 new_dir = os.path.normpath(os.path.join(working_dir, os.path.relpath(artifact_info.dir, artifact_info.repo_dir)))
Jeff Gastonc302bb92018-03-23 13:53:48 -0400423 mv(artifact_info.dir, new_dir)
Dan Willemsen814152e2017-11-06 13:22:11 -0800424
Alan Viverettec960cfb2017-12-04 13:09:22 -0500425 matcher = artifact_pattern.match(artifact_info.file)
426 maven_lib_name = artifact_info.key
Alan Viveretted4527e62017-05-11 15:03:25 -0400427 maven_lib_vers = matcher.group(2)
Alan Viverettec960cfb2017-12-04 13:09:22 -0500428 maven_lib_type = artifact_info.file[-3:]
Alan Viveretted4527e62017-05-11 15:03:25 -0400429
Alan Viverettef3c12722021-08-30 19:50:33 +0000430 group_artifact = artifact_info.key
431 make_lib_name = maven_to_make[group_artifact]['name']
432 make_dir_name = maven_to_make[group_artifact]['path']
Alan Viveretted4527e62017-05-11 15:03:25 -0400433
Alan Viverette129555e2018-01-30 09:57:57 -0500434 artifact_file = os.path.join(new_dir, artifact_info.file)
435
Colin Cross59b59db2018-04-24 13:58:05 -0700436 if maven_lib_type == "aar":
437 if extract_res:
438 target_dir = os.path.join(working_dir, make_dir_name)
439 if not os.path.exists(target_dir):
440 os.makedirs(target_dir)
Dan Willemsen814152e2017-11-06 13:22:11 -0800441
Alan Viverettec960cfb2017-12-04 13:09:22 -0500442 process_aar(artifact_file, target_dir)
Alan Viveretted4527e62017-05-11 15:03:25 -0400443
Colin Cross59b59db2018-04-24 13:58:05 -0700444 with zipfile.ZipFile(artifact_file) as zip:
445 manifests_dir = os.path.join(working_dir, "manifests")
446 zip.extract("AndroidManifest.xml", os.path.join(manifests_dir, make_lib_name))
Dan Willemsend677b602017-11-08 22:13:17 -0800447
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500448 print(maven_lib_vers, ":", maven_lib_name, "->", make_lib_name)
Alan Viveretted4527e62017-05-11 15:03:25 -0400449
Alan Viverette95f6d362017-04-06 09:40:50 -0400450
Alan Viverettec960cfb2017-12-04 13:09:22 -0500451def process_aar(artifact_file, target_dir):
Alan Viverette95f6d362017-04-06 09:40:50 -0400452 # Extract AAR file to target_dir.
453 with zipfile.ZipFile(artifact_file) as zip:
454 zip.extractall(target_dir)
455
Dan Willemsen814152e2017-11-06 13:22:11 -0800456 # Remove classes.jar
Alan Viverette95f6d362017-04-06 09:40:50 -0400457 classes_jar = os.path.join(target_dir, "classes.jar")
458 if os.path.exists(classes_jar):
Dan Willemsen814152e2017-11-06 13:22:11 -0800459 os.remove(classes_jar)
Alan Viverette95f6d362017-04-06 09:40:50 -0400460
461 # Remove or preserve empty dirs.
462 for root, dirs, files in os.walk(target_dir):
463 for dir in dirs:
464 dir_path = os.path.join(root, dir)
465 if not os.listdir(dir_path):
466 os.rmdir(dir_path)
467
468 # Remove top-level cruft.
469 for file in blacklist_files:
470 file_path = os.path.join(target_dir, file)
471 if os.path.exists(file_path):
472 os.remove(file_path)
473
Alan Viverettef17c9402017-07-19 12:57:40 -0400474
Alan Viverettecd3de262017-08-14 09:51:30 -0400475def fetch_artifact(target, build_id, artifact_path):
Jeff Sharkeyabe16df2021-05-25 10:09:03 -0600476 global args
Jiyong Park1d1c9632018-05-29 17:45:27 +0900477 download_to = os.path.join('.', os.path.dirname(artifact_path))
478 print('Fetching %s from %s ...' % (artifact_path, target))
479 if not os.path.exists(download_to):
480 os.makedirs(download_to)
Jeff Sharkeyabe16df2021-05-25 10:09:03 -0600481 if args.beyond_corp:
482 fetch_cmd = [FETCH_ARTIFACT_BEYOND_CORP, '--use_oauth2',
483 '--bid', str(build_id), '--target', target, artifact_path, download_to]
484 else:
485 fetch_cmd = [FETCH_ARTIFACT,
486 '--bid', str(build_id), '--target', target, artifact_path, download_to]
Jeff Gaston97a9b762018-10-02 15:15:12 -0400487 print("Running: " + ' '.join(fetch_cmd))
Alan Viverette45837092017-05-12 14:50:53 -0400488 try:
Alan Viverettecd3de262017-08-14 09:51:30 -0400489 subprocess.check_output(fetch_cmd, stderr=subprocess.STDOUT)
Alan Viverette45837092017-05-12 14:50:53 -0400490 except subprocess.CalledProcessError:
Jeff Gaston13e38412018-02-06 14:45:36 -0500491 print_e('FAIL: Unable to retrieve %s artifact for build ID %s' % (artifact_path, build_id))
Alan Viverettec1c32b62017-12-20 09:40:36 -0500492 print_e('Please make sure you are authenticated for build server access!')
Alan Viverette45837092017-05-12 14:50:53 -0400493 return None
494 return artifact_path
495
496
Anton Hansson1d01a032018-04-09 10:29:37 +0100497def fetch_artifacts(target, build_id, artifact_dict):
498 for artifact, target_path in artifact_dict.items():
499 artifact_path = fetch_artifact(target, build_id.url_id, artifact)
500 if not artifact_path:
501 return False
502 mv(artifact_path, target_path)
503 return True
504
505
Alan Viverette129555e2018-01-30 09:57:57 -0500506def extract_artifact(artifact_path):
Alan Viverette45837092017-05-12 14:50:53 -0400507 # Unzip the repo archive into a separate directory.
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400508 repo_dir = os.path.basename(artifact_path)[:-4]
Alan Viverette45837092017-05-12 14:50:53 -0400509 with zipfile.ZipFile(artifact_path) as zipFile:
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400510 zipFile.extractall(repo_dir)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400511 return repo_dir
512
513
Alan Viverette7e897e22018-03-09 15:24:10 -0500514def fetch_and_extract(target, build_id, file, artifact_path=None):
515 if not artifact_path:
516 artifact_path = fetch_artifact(target, build_id, file)
Alan Viverette129555e2018-01-30 09:57:57 -0500517 if not artifact_path:
518 return None
519 return extract_artifact(artifact_path)
520
521
Jeff Gaston08a2ee42018-05-07 18:08:41 -0400522def update_androidx(target, build_id, local_file):
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400523 if build_id:
Anthony Chenacbb4872018-07-02 11:22:48 -0700524 repo_file = 'top-of-tree-m2repository-all-%s.zip' % build_id.fs_id
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400525 repo_dir = fetch_and_extract(target, build_id.url_id, repo_file, None)
526 else:
527 repo_dir = fetch_and_extract(target, None, None, local_file)
528 if not repo_dir:
529 print_e('Failed to extract AndroidX repository')
530 return False
531
Tony Mak0f658752019-07-19 11:11:05 +0100532 # Keep JavaPlugins.bp file untounched.
533 java_plugins_bp_path = os.path.join(androidx_dir, 'JavaPlugins.bp')
534 tmp_java_plugins_bp_path = os.path.join('/tmp', 'JavaPlugins.bp')
535 mv(java_plugins_bp_path, tmp_java_plugins_bp_path)
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400536
Tony Mak0f658752019-07-19 11:11:05 +0100537 # Transform the repo archive into a Makefile-compatible format.
538 if not transform_maven_repos([repo_dir], androidx_dir, extract_res=False):
539 return False
540
541 # Import JavaPlugins.bp in Android.bp.
542 makefile = os.path.join(androidx_dir, 'Android.bp')
543 with open(makefile, "a+") as f:
544 f.write('\nbuild = ["JavaPlugins.bp"]\n')
545 mv(tmp_java_plugins_bp_path, java_plugins_bp_path)
546
547 return True
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400548
Alan Viverette6dc45752020-04-16 14:56:20 +0000549
Jeff Gaston782c3e32018-02-06 14:36:17 -0500550def update_jetifier(target, build_id):
551 repo_file = 'jetifier-standalone.zip'
552 repo_dir = fetch_and_extract(target, build_id.url_id, repo_file)
553 if not repo_dir:
554 print_e('Failed to extract Jetifier')
555 return False
556
557 rm(jetifier_dir)
Jeff Gaston553a4372018-03-29 18:34:22 -0400558 mv(os.path.join(repo_dir, 'jetifier-standalone'), jetifier_dir)
559 os.chmod(os.path.join(jetifier_dir, 'bin', 'jetifier-standalone'), 0o755)
Jeff Gaston782c3e32018-02-06 14:36:17 -0500560 return True
561
Alan Viverette7e897e22018-03-09 15:24:10 -0500562
Alan Viverette6dc45752020-04-16 14:56:20 +0000563def update_constraint(local_file):
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400564 repo_dir = extract_artifact(local_file)
565 if not repo_dir:
Alan Viverette6dc45752020-04-16 14:56:20 +0000566 print_e('Failed to extract Constraint Layout')
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400567 return False
568 return transform_maven_repos([repo_dir], os.path.join(extras_dir, 'constraint-layout-x'), extract_res=False)
569
Alan Viverette45837092017-05-12 14:50:53 -0400570
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400571def update_material(file):
572 design_dir = extract_artifact(file)
573 if not design_dir:
Alan Viverette6dc45752020-04-16 14:56:20 +0000574 print_e('Failed to extract Material Design Components')
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400575 return False
576
577 # Don't bother extracting resources -- this should only be used with AAPT2.
578 return transform_maven_repos([design_dir],
579 os.path.join(extras_dir, 'material-design-x'), extract_res=False)
580
581
Anton Hansson1d01a032018-04-09 10:29:37 +0100582def update_framework(build_id, sdk_dir):
Anton Hansson83f92172020-03-26 11:12:03 +0000583 api_scope_list = ['public', 'system', 'test', 'module-lib', 'system-server']
Sundong Ahn66091f22018-08-29 18:54:28 +0900584 if sdk_dir == 'current':
585 api_scope_list.append('core')
586
587 for api_scope in api_scope_list:
Jiyong Park1d1c9632018-05-29 17:45:27 +0900588 target_dir = path(sdk_dir, api_scope)
Sundong Ahn66091f22018-08-29 18:54:28 +0900589 if api_scope == 'core':
590 artifact_to_path = {'core.current.stubs.jar': path(target_dir, 'android.jar')}
591 else:
592 artifact_to_path = {'apistubs/android/' + api_scope + '/*.jar': path(target_dir, '*')}
Anton Hansson1d01a032018-04-09 10:29:37 +0100593
594 if not fetch_artifacts(framework_sdk_target, build_id, artifact_to_path):
595 return False
596
Jiyong Park1d1c9632018-05-29 17:45:27 +0900597 if api_scope == 'public':
Anton Hansson1d01a032018-04-09 10:29:37 +0100598 # Fetch a few artifacts from the public sdk.
Sundong Ahn66091f22018-08-29 18:54:28 +0900599 artifact = 'sdk-repo-linux-platforms-%s.zip' % build_id.fs_id
Anton Hansson1d01a032018-04-09 10:29:37 +0100600 artifact_path = fetch_artifact(framework_sdk_target, build_id.url_id, artifact)
Anton Hansson9709fd42018-04-03 16:52:13 +0100601 if not artifact_path:
602 return False
Anton Hansson1d01a032018-04-09 10:29:37 +0100603
604 with zipfile.ZipFile(artifact_path) as zipFile:
Colin Crossd338d702020-07-10 19:17:54 -0700605 extra_files = [
606 'android.jar',
607 'framework.aidl',
608 'uiautomator.jar',
609 'core-for-system-modules.jar',
610 'data/annotations.zip',
611 'data/api-versions.xml']
612 for filename in extra_files:
Anton Hanssona26e4812020-03-25 12:54:39 +0000613 matches = list(filter(lambda path: filename in path, zipFile.namelist()))
614 if len(matches) != 1:
615 print_e('Expected 1 file named \'%s\' in zip %s, found %d' %
616 (filename, zipFile.filename, len(matches)))
617 return False
618 zip_path = matches[0]
619 src_path = zipFile.extract(zip_path)
620 dst_path = path(target_dir, filename)
621 mv(src_path, dst_path)
Anton Hansson9709fd42018-04-03 16:52:13 +0100622
Anton Hansson73be1512021-06-24 10:56:05 +0100623 # Filtered API DB is currently only available for "public"
624 fetch_artifacts(framework_sdk_target, build_id, {'api-versions-public-filtered.xml': path(target_dir, 'data/api-versions-filtered.xml')})
625
Alan Viverettecd3de262017-08-14 09:51:30 -0400626 return True
Alan Viverette45837092017-05-12 14:50:53 -0400627
Sundong Ahncc34cc32018-07-11 15:18:47 +0900628def update_makefile(build_id):
629 template = '"%s",\n\
630 "current"'
631 makefile = os.path.join(git_dir, 'Android.bp')
632
633 with open(makefile, 'r+') as f:
634 contents = f.read().replace('"current"', template % build_id)
635 f.seek(0)
636 f.write(contents)
637
638 return True
Alan Viverette45837092017-05-12 14:50:53 -0400639
Anton Hansson1d01a032018-04-09 10:29:37 +0100640def finalize_sdk(build_id, sdk_version):
641 target_finalize_dir = '%d' % sdk_version
Anton Hansson9709fd42018-04-03 16:52:13 +0100642
Anton Hanssonaa554c02020-04-30 14:06:20 +0100643 for api_scope in ['public', 'system', 'test', 'module-lib', 'system-server']:
Sundong Ahn66091f22018-08-29 18:54:28 +0900644 artifact_to_path = {'apistubs/android/' + api_scope + '/api/*.txt':
645 path(target_finalize_dir, api_scope, 'api', '*')}
646
647 if not fetch_artifacts(framework_sdk_target, build_id, artifact_to_path):
648 return False
649
650 return update_framework(build_id, target_finalize_dir) \
Sundong Ahncc34cc32018-07-11 15:18:47 +0900651 and update_makefile(target_finalize_dir)
Anton Hansson9709fd42018-04-03 16:52:13 +0100652
Anton Hansson9709fd42018-04-03 16:52:13 +0100653
Anton Hansson1d01a032018-04-09 10:29:37 +0100654def update_framework_current(build_id):
655 return update_framework(build_id, current_path)
Anton Hansson9709fd42018-04-03 16:52:13 +0100656
657
Alan Viverettec1c32b62017-12-20 09:40:36 -0500658def update_buildtools(target, arch, build_id):
Jeff Gaston13e38412018-02-06 14:45:36 -0500659 artifact_path = fetch_and_extract(target, build_id.url_id,
660 "sdk-repo-%s-build-tools-%s.zip" % (arch, build_id.fs_id))
Alan Viverettec1c32b62017-12-20 09:40:36 -0500661 if not artifact_path:
662 return False
663
664 top_level_dir = os.listdir(artifact_path)[0]
665 src_path = os.path.join(artifact_path, top_level_dir)
666 dst_path = path(buildtools_dir, arch)
Colin Cross20648d32021-02-12 13:30:51 -0800667
668 # There are a few libraries that have been manually added to the
669 # build tools, copy them from the destination back to the source
670 # before the destination is overwritten.
671 files_to_save = (
672 'lib64/libconscrypt_openjdk_jni.dylib',
673 'lib64/libconscrypt_openjdk_jni.so',
674 'bin/lib64/libwinpthread-1.dll',
675 )
676 for file in files_to_save:
677 src_file = os.path.join(dst_path, file)
678 dst_file = os.path.join(src_path, file)
679 if os.path.exists(dst_path):
680 mv(src_file, dst_file)
681
Alan Viverettec1c32b62017-12-20 09:40:36 -0500682 mv(src_path, dst_path)
683
684 # Move all top-level files to /bin and make them executable
685 bin_path = path(dst_path, 'bin')
686 top_level_files = filter(lambda e: os.path.isfile(path(dst_path, e)), os.listdir(dst_path))
687 for file in top_level_files:
688 src_file = path(dst_path, file)
689 dst_file = path(bin_path, file)
690 mv(src_file, dst_file)
691 os.chmod(dst_file, 0o755)
692
Colin Cross6673ceb2021-02-12 13:14:14 -0800693 # Make the files under lld-bin executable
694 lld_bin_files = os.listdir(os.path.join(dst_path, 'lld-bin'))
695 for file in lld_bin_files:
696 os.chmod(os.path.join(dst_path, 'lld-bin', file), 0o755)
697
Alan Viverettec1c32b62017-12-20 09:40:36 -0500698 # Remove renderscript
699 rm(path(dst_path, 'renderscript'))
700
701 return True
702
703
Alan Viverettecd3de262017-08-14 09:51:30 -0400704def append(text, more_text):
705 if text:
706 return "%s, %s" % (text, more_text)
707 return more_text
Alan Viverette45837092017-05-12 14:50:53 -0400708
Alan Viverette95f6d362017-04-06 09:40:50 -0400709
Jeff Gaston13e38412018-02-06 14:45:36 -0500710class buildId(object):
711 def __init__(self, url_id, fs_id):
712 # id when used in build server urls
713 self.url_id = url_id
714 # id when used in build commands
715 self.fs_id = fs_id
716
Jeff Gastonb9b09052018-02-05 14:16:05 -0500717def getBuildId(args):
Jeff Gaston13e38412018-02-06 14:45:36 -0500718 # must be in the format 12345 or P12345
Jeff Gastonb9b09052018-02-05 14:16:05 -0500719 source = args.source
Jeff Gaston13e38412018-02-06 14:45:36 -0500720 number_text = source[:]
721 presubmit = False
722 if number_text.startswith("P"):
723 presubmit = True
724 number_text = number_text[1:]
725 if not number_text.isnumeric():
Alan Viverette7e897e22018-03-09 15:24:10 -0500726 return None
Jeff Gaston13e38412018-02-06 14:45:36 -0500727 url_id = source
728 fs_id = url_id
729 if presubmit:
730 fs_id = "0"
731 args.file = False
732 return buildId(url_id, fs_id)
Jeff Gastonb9b09052018-02-05 14:16:05 -0500733
Colin Cross573e1212018-02-12 14:59:52 -0800734def getFile(args):
735 source = args.source
736 if not source.isnumeric():
737 return args.source
Alan Viverette7e897e22018-03-09 15:24:10 -0500738 return None
Colin Cross573e1212018-02-12 14:59:52 -0800739
Alan Viverette4ec9a172018-02-20 16:19:31 -0500740
741def script_relative(rel_path):
Jeff Gastona68a8d42018-03-23 14:00:13 -0400742 return os.path.join(script_dir, rel_path)
Alan Viverette4ec9a172018-02-20 16:19:31 -0500743
744
Jeff Gastoncc296a82018-03-23 14:33:24 -0400745def uncommittedChangesExist():
746 try:
747 # Make sure we don't overwrite any pending changes.
748 diffCommand = "cd " + git_dir + " && git diff --quiet"
749 subprocess.check_call(diffCommand, shell=True)
750 subprocess.check_call(diffCommand + " --cached", shell=True)
751 return False
752 except subprocess.CalledProcessError:
753 return True
754
755
Jeff Gastona7fba9b2018-03-26 23:48:51 -0400756rm(temp_dir)
Alan Viveretted4527e62017-05-11 15:03:25 -0400757parser = argparse.ArgumentParser(
Alan Viverette45837092017-05-12 14:50:53 -0400758 description=('Update current prebuilts'))
Alan Viveretted4527e62017-05-11 15:03:25 -0400759parser.add_argument(
Alan Viverette129555e2018-01-30 09:57:57 -0500760 'source',
761 help='Build server build ID or local Maven ZIP file')
762parser.add_argument(
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400763 '-m', '--material', action="store_true",
Alan Viverette6dc45752020-04-16 14:56:20 +0000764 help='If specified, updates only Material Design Components')
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400765parser.add_argument(
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400766 '-c', '--constraint', action="store_true",
767 help='If specified, updates only Constraint Layout')
768parser.add_argument(
Jeff Gaston782c3e32018-02-06 14:36:17 -0500769 '-j', '--jetifier', action="store_true",
770 help='If specified, updates only Jetifier')
771parser.add_argument(
Alan Viverette5bfe05b2017-06-06 14:21:29 -0400772 '-p', '--platform', action="store_true",
773 help='If specified, updates only the Android Platform')
Alan Viverettec1c32b62017-12-20 09:40:36 -0500774parser.add_argument(
Anton Hansson9709fd42018-04-03 16:52:13 +0100775 '-f', '--finalize_sdk', type=int,
776 help='If specified, imports the source build as the specified finalized SDK version')
777parser.add_argument(
Alan Viverettec1c32b62017-12-20 09:40:36 -0500778 '-b', '--buildtools', action="store_true",
779 help='If specified, updates only the Build Tools')
Jeff Gastoncc296a82018-03-23 14:33:24 -0400780parser.add_argument(
Alan Viverette6dc45752020-04-16 14:56:20 +0000781 '-x', '--androidx', action="store_true",
782 help='If specified, updates only the Jetpack (androidx) libraries excluding those covered by other arguments')
Jeff Gaston41fd5e62018-04-25 17:02:02 -0400783parser.add_argument(
Jeff Gastoncc296a82018-03-23 14:33:24 -0400784 '--commit-first', action="store_true",
785 help='If specified, then if uncommited changes exist, commit before continuing')
Jeff Sharkeyabe16df2021-05-25 10:09:03 -0600786parser.add_argument(
787 '--beyond-corp', action="store_true",
788 help='If specified, then fetch artifacts with tooling that works on BeyondCorp devices')
Alan Viveretted4527e62017-05-11 15:03:25 -0400789args = parser.parse_args()
Jeff Gaston56fe2762018-02-06 14:54:37 -0500790args.file = True
Alan Viverette129555e2018-01-30 09:57:57 -0500791if not args.source:
792 parser.error("You must specify a build ID or local Maven ZIP file")
Alan Viveretted4527e62017-05-11 15:03:25 -0400793 sys.exit(1)
Alan Viverette6dc45752020-04-16 14:56:20 +0000794if not (args.platform or args.buildtools \
795 or args.jetifier or args.androidx or args.material \
796 or args.finalize_sdk or args.constraint):
Alan Viverettec1c32b62017-12-20 09:40:36 -0500797 parser.error("You must specify at least one target to update")
Alan Viverettecd3de262017-08-14 09:51:30 -0400798 sys.exit(1)
Alan Viverette6dc45752020-04-16 14:56:20 +0000799if (args.constraint or args.material or args.androidx) \
Colin Cross74683bc2018-04-11 17:36:18 -0700800 and which('pom2bp') is None:
Louis Pullen-Freilich61bb70e2019-04-09 16:15:32 +0100801 parser.error("Cannot find pom2bp in path; please run lunch to set up build environment. You may also need to run 'm pom2bp' if it hasn't been built already.")
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500802 sys.exit(1)
Alan Viveretted4527e62017-05-11 15:03:25 -0400803
Jeff Gastoncc296a82018-03-23 14:33:24 -0400804if uncommittedChangesExist():
805 if args.commit_first:
806 subprocess.check_call("cd " + git_dir + " && git add -u", shell=True)
807 subprocess.check_call("cd " + git_dir + " && git commit -m 'save working state'", shell=True)
808
809if uncommittedChangesExist():
Anton Hansson10861a02018-04-06 13:57:08 +0100810 print_e('FAIL: There are uncommitted changes here. Please commit or stash before continuing, because %s will run "git reset --hard" if execution fails' % os.path.basename(__file__))
Alan Viveretted4527e62017-05-11 15:03:25 -0400811 sys.exit(1)
812
813try:
Alan Viverettecd3de262017-08-14 09:51:30 -0400814 components = None
815 if args.constraint:
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400816 if update_constraint_x(getFile(args)):
817 components = append(components, 'Constraint Layout X')
818 else:
819 print_e('Failed to update Constraint Layout X, aborting...')
Alan Viverettecd3de262017-08-14 09:51:30 -0400820 sys.exit(1)
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400821 if args.androidx:
Jeff Gaston17ccf8f2018-08-29 11:33:19 -0400822 if update_androidx('androidx', \
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400823 getBuildId(args), getFile(args)):
824 components = append(components, 'AndroidX')
825 else:
826 print_e('Failed to update AndroidX, aborting...')
827 sys.exit(1)
Jeff Gaston782c3e32018-02-06 14:36:17 -0500828 if args.jetifier:
Jeff Gaston17ccf8f2018-08-29 11:33:19 -0400829 if update_jetifier('androidx', getBuildId(args)):
Jeff Gaston782c3e32018-02-06 14:36:17 -0500830 components = append(components, 'Jetifier')
831 else:
832 print_e('Failed to update Jetifier, aborting...')
833 sys.exit(1)
Anton Hanssonbe15e8c2018-04-26 17:35:45 +0100834 if args.platform or args.finalize_sdk:
Anton Hansson87654c42018-04-26 15:19:42 +0100835 if update_framework_current(getBuildId(args)):
Alan Viverettecd3de262017-08-14 09:51:30 -0400836 components = append(components, 'platform SDK')
837 else:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500838 print_e('Failed to update platform SDK, aborting...')
Alan Viverettecd3de262017-08-14 09:51:30 -0400839 sys.exit(1)
Anton Hansson9709fd42018-04-03 16:52:13 +0100840 if args.finalize_sdk:
Anton Hanssonbe15e8c2018-04-26 17:35:45 +0100841 n = args.finalize_sdk
842 if finalize_sdk(getBuildId(args), n):
843 # We commit the finalized dir separately from the current sdk update.
844 msg = "Import final sdk version %d from build %s" % (n, getBuildId(args).url_id)
845 subprocess.check_call(['git', 'add', '%d' % n])
Sundong Ahncc34cc32018-07-11 15:18:47 +0900846 subprocess.check_call(['git', 'add', 'Android.bp'])
Anton Hanssonbe15e8c2018-04-26 17:35:45 +0100847 subprocess.check_call(['git', 'commit', '-m', msg])
Anton Hansson9709fd42018-04-03 16:52:13 +0100848 else:
Anton Hanssonbe15e8c2018-04-26 17:35:45 +0100849 print_e('Failed to finalize SDK %d, aborting...' % n)
Anton Hansson9709fd42018-04-03 16:52:13 +0100850 sys.exit(1)
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400851 if args.material:
852 if update_material(getFile(args)):
853 components = append(components, 'intermediate-AndroidX Design Library')
854 else:
855 print_e('Failed to update intermediate-AndroidX Design Library, aborting...')
Alan Viverette129555e2018-01-30 09:57:57 -0500856 sys.exit(1)
Alan Viverettec1c32b62017-12-20 09:40:36 -0500857 if args.buildtools:
Jeff Gastonb9b09052018-02-05 14:16:05 -0500858 if update_buildtools('sdk_phone_armv7-sdk_mac', 'darwin', getBuildId(args)) \
859 and update_buildtools('sdk_phone_x86_64-sdk', 'linux', getBuildId(args)) \
860 and update_buildtools('sdk_phone_armv7-win_sdk', 'windows', getBuildId(args)):
Alan Viverettec1c32b62017-12-20 09:40:36 -0500861 components = append(components, 'build tools')
862 else:
863 print_e('Failed to update build tools, aborting...')
864 sys.exit(1)
Jeff Gastonb70daa92018-03-29 20:10:22 -0400865
Jeff Gastonf12f3ce2018-03-23 16:41:24 -0400866
Alan Viveretted4527e62017-05-11 15:03:25 -0400867
Colin Cross941d9802018-05-03 21:37:57 -0700868 subprocess.check_call(['git', 'add', current_path, buildtools_dir])
Colin Cross573e1212018-02-12 14:59:52 -0800869 if not args.source.isnumeric():
Alan Viverette129555e2018-01-30 09:57:57 -0500870 src_msg = "local Maven ZIP"
871 else:
Jeff Gaston13e38412018-02-06 14:45:36 -0500872 src_msg = "build %s" % (getBuildId(args).url_id)
Alan Viverette129555e2018-01-30 09:57:57 -0500873 msg = "Import %s from %s\n\n%s" % (components, src_msg, flatten(sys.argv))
Alan Viveretted4527e62017-05-11 15:03:25 -0400874 subprocess.check_call(['git', 'commit', '-m', msg])
Anton Hanssonbe15e8c2018-04-26 17:35:45 +0100875 if args.finalize_sdk:
876 print('NOTE: Created two commits:')
877 subprocess.check_call(['git', 'log', '-2', '--oneline'])
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500878 print('Remember to test this change before uploading it to Gerrit!')
Alan Viveretted4527e62017-05-11 15:03:25 -0400879
880finally:
881 # Revert all stray files, including the downloaded zip.
882 try:
883 with open(os.devnull, 'w') as bitbucket:
884 subprocess.check_call(['git', 'add', '-Af', '.'], stdout=bitbucket)
885 subprocess.check_call(
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400886 ['git', 'commit', '-m', 'COMMIT TO REVERT - RESET ME!!!', '--allow-empty'], stdout=bitbucket)
Alan Viveretted4527e62017-05-11 15:03:25 -0400887 subprocess.check_call(['git', 'reset', '--hard', 'HEAD~1'], stdout=bitbucket)
888 except subprocess.CalledProcessError:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500889 print_e('ERROR: Failed cleaning up, manual cleanup required!!!')