blob: db5b5c38a723be643c01dff7bf140b8b2a209fe4 [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
8import subprocess
Alan Viverettef5cb0e62017-11-17 15:15:23 -05009from shutil import copyfile, rmtree, which
Alan Viveretted4527e62017-05-11 15:03:25 -040010from distutils.version import LooseVersion
Alan Viverettef5cb0e62017-11-17 15:15:23 -050011from functools import reduce
Alan Viverette95f6d362017-04-06 09:40:50 -040012
Alan Viverette45837092017-05-12 14:50:53 -040013current_path = 'current'
14system_path = 'system_current'
Alan Viverette3e57a4a2017-08-11 15:49:47 -040015support_dir = os.path.join(current_path, 'support')
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 Gaston13e38412018-02-06 14:45:36 -050019jetifier_dir = os.path.join(buildtools_dir, 'jetifier')
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
Jeff Gastonf12f3ce2018-03-23 16:41:24 -040025rerun_extract_deps = False
26
Alan Viverettecd3de262017-08-14 09:51:30 -040027# See go/fetch_artifact for details on this script.
Alan Viveretted4527e62017-05-11 15:03:25 -040028FETCH_ARTIFACT = '/google/data/ro/projects/android/fetch_artifact'
29
Alan Viverette95f6d362017-04-06 09:40:50 -040030maven_to_make = {
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040031 # Support Library
32 'com.android.support:animated-vector-drawable': ['android-support-animatedvectordrawable', 'graphics/drawable'],
33 'com.android.support:appcompat-v7': ['android-support-v7-appcompat', 'v7/appcompat'],
34 'com.android.support:cardview-v7': ['android-support-v7-cardview', 'v7/cardview'],
35 'com.android.support:collections': ['android-support-collections', 'collections', 'jar'],
36 'com.android.support:customtabs': ['android-support-customtabs', 'customtabs'],
37 'com.android.support:exifinterface': ['android-support-exifinterface', 'exifinterface'],
38 'com.android.support:gridlayout-v7': ['android-support-v7-gridlayout', 'v7/gridlayout'],
39 'com.android.support:leanback-v17': ['android-support-v17-leanback', 'v17/leanback'],
40 'com.android.support:mediarouter-v7': ['android-support-v7-mediarouter', 'v7/mediarouter'],
41 'com.android.support:palette-v7': ['android-support-v7-palette', 'v7/palette'],
42 'com.android.support:percent': ['android-support-percent', 'percent'],
43 'com.android.support:preference-leanback-v17': ['android-support-v17-preference-leanback', 'v17/preference-leanback'],
44 'com.android.support:preference-v14': ['android-support-v14-preference', 'v14/preference'],
45 'com.android.support:preference-v7': ['android-support-v7-preference', 'v7/preference'],
46 'com.android.support:recommendation': ['android-support-recommendation', 'recommendation'],
47 'com.android.support:recyclerview-v7': ['android-support-v7-recyclerview', 'v7/recyclerview'],
48 'com.android.support:support-annotations': ['android-support-annotations', 'annotations', 'jar'],
49 'com.android.support:support-compat': ['android-support-compat', 'compat'],
50 'com.android.support:support-core-ui': ['android-support-core-ui', 'core-ui'],
51 'com.android.support:support-core-utils': ['android-support-core-utils', 'core-utils'],
52 'com.android.support:support-dynamic-animation': ['android-support-dynamic-animation', 'dynamic-animation'],
53 'com.android.support:support-emoji-appcompat': ['android-support-emoji-appcompat', 'emoji-appcompat'],
54 'com.android.support:support-emoji-bundled': ['android-support-emoji-bundled', 'emoji-bundled'],
55 'com.android.support:support-emoji': ['android-support-emoji', 'emoji'],
56 'com.android.support:support-fragment': ['android-support-fragment', 'fragment'],
57 'com.android.support:support-media-compat': ['android-support-media-compat', 'media-compat'],
58 'com.android.support:support-tv-provider': ['android-support-tv-provider', 'tv-provider'],
59 'com.android.support:support-v13': ['android-support-v13', 'v13'],
60 'com.android.support:support-v4': ['android-support-v4', 'v4'],
61 'com.android.support:support-vector-drawable': ['android-support-vectordrawable', 'graphics/drawable'],
62 'com.android.support:transition': ['android-support-transition', 'transition'],
63 'com.android.support:wear': ['android-support-wear', 'wear'],
Alan Viverette7bb86da2018-02-21 18:29:02 -050064
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040065 # Support Library (28.0.0 splits + new modules)
66 'com.android.support:heifwriter': ['android-support-heifwriter', 'heifwriter'],
67 'com.android.support:webkit': ['android-support-webkit', 'webkit'],
68 'com.android.support:customview': ['android-support-customview', 'customview'],
69 'com.android.support:textclassifier': ['android-support-textclassifier', 'textclassifier'],
70 'com.android.support:swiperefreshlayout': ['android-support-swiperefreshlayout', 'swiperefreshlayout'],
71 'com.android.support:viewpager': ['android-support-viewpager', 'viewpager'],
72 'com.android.support:coordinatorlayout': ['android-support-coordinatorlayout', 'coordinatorlayout'],
73 'com.android.support:asynclayoutinflater': ['android-support-asynclayoutinflater', 'asynclayoutinflater'],
74 'com.android.support:support-content': ['android-support-support-content', 'support-content'],
75 'com.android.support:documentfile': ['android-support-documentfile', 'documentfile'],
76 'com.android.support:drawerlayout': ['android-support-drawerlayout', 'drawerlayout'],
77 'com.android.support:localbroadcastmanager': ['android-support-localbroadcastmanager', 'localbroadcastmanager'],
78 'com.android.support:print': ['android-support-print', 'print'],
79 'com.android.support:slidingpanelayout': ['android-support-slidingpanelayout', 'slidingpanelayout'],
80 'com.android.support:interpolator': ['android-support-interpolator', 'interpolator'],
81 'com.android.support:cursoradapter': ['android-support-cursoradapter', 'cursoradapter'],
82 'com.android.support:loader': ['android-support-loader', 'loader'],
83 'com.android.support:contentpaging': ['android-support-contentpaging', 'contentpaging'],
84 'com.android.support:recyclerview-selection': ['android-support-recyclerview-selection', 'recyclerview-selection'],
85 'com.android.support:car': ['android-support-car', 'car'],
86 'com.android.support:slices-core': ['android-slices-core', 'slices-core'],
87 'com.android.support:slices-view': ['android-slices-view', 'slices-view'],
88 'com.android.support:slices-builders': ['android-slices-builders', 'slices-builders'],
Alan Viverette19ecd502018-01-05 13:52:16 -050089
90 # Multidex
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040091 'com.android.support:multidex': ['android-support-multidex', 'multidex/library'],
92 'com.android.support:multidex-instrumentation': ['android-support-multidex-instrumentation', 'multidex/instrumentation'],
Alan Viverette19ecd502018-01-05 13:52:16 -050093
94 # Constraint Layout
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040095 'com.android.support.constraint:constraint-layout': ['android-support-constraint-layout', 'constraint-layout'],
96 'com.android.support.constraint:constraint-layout-solver': ['android-support-constraint-layout-solver', 'constraint-layout-solver'],
Alan Viverette19ecd502018-01-05 13:52:16 -050097
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040098 # Architecture Components
Alan Viverette19ecd502018-01-05 13:52:16 -050099 'android.arch.core:runtime': ['android-arch-core-runtime', 'arch-core/runtime'],
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400100 'android.arch.core:common': ['android-arch-core-common', 'arch-core/common'],
101 'android.arch.lifecycle:common': ['android-arch-lifecycle-common', 'arch-lifecycle/common'],
102 'android.arch.lifecycle:common-java8': ['android-arch-lifecycle-common-java8', 'arch-lifecycle/common-java8'],
103 'android.arch.lifecycle:extensions': ['android-arch-lifecycle-extensions', 'arch-lifecycle/extensions'],
104 'android.arch.lifecycle:livedata': ['android-arch-lifecycle-livedata', 'arch-lifecycle/livedata'],
105 'android.arch.lifecycle:livedata-core': ['android-arch-lifecycle-livedata-core', 'arch-lifecycle/livedata-core'],
106 'android.arch.lifecycle:runtime': ['android-arch-lifecycle-runtime', 'arch-lifecycle/runtime'],
107 'android.arch.lifecycle:viewmodel': ['android-arch-lifecycle-viewmodel', 'arch-lifecycle/viewmodel'],
108 'android.arch.paging:common': ['android-arch-paging-common', 'arch-paging/common'],
Alan Viverette19ecd502018-01-05 13:52:16 -0500109 'android.arch.paging:runtime': ['android-arch-paging-runtime', 'arch-paging/runtime'],
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400110 'android.arch.persistence:db': ['android-arch-persistence-db', 'arch-persistence/db'],
111 'android.arch.persistence:db-framework': ['android-arch-persistence-db-framework', 'arch-persistence/db-framework'],
112 'android.arch.persistence.room:common': ['android-arch-room-common', 'arch-room/common'],
113 'android.arch.persistence.room:migration': ['android-arch-room-migration', 'arch-room/migration'],
114 'android.arch.persistence.room:runtime': ['android-arch-room-runtime', 'arch-room/runtime'],
115 'android.arch.persistence.room:testing': ['android-arch-room-testing', 'arch-room/testing'],
116
117 # AndroidX
118 'androidx.slice:slice-builders': ['androidx.slice_slice-builders', 'androidx/slice/slice-builders'],
119 'androidx.slice:slice-core': ['androidx.slice_slice-core', 'androidx/slice/slice-core'],
120 'androidx.slice:slice-view': ['androidx.slice_slice-view', 'androidx/slice/slice-view'],
121 'androidx.vectordrawable:vectordrawable-animated': ['androidx.vectordrawable_vectordrawable-animated', 'androidx/vectordrawable/vectordrawable-animated'],
122 'androidx.annotation:annotation': ['androidx.annotation_annotation', 'androidx/annotation/annotation', 'jar'],
123 'androidx.asynclayoutinflater:asynclayoutinflater': ['androidx.asynclayoutinflater_asynclayoutinflater', 'androidx/asynclayoutinflater/asynclayoutinflater'],
124 'androidx.car:car': ['androidx.car_car', 'androidx/car/car'],
125 'androidx.collection:collection': ['androidx.collection_collection', 'androidx/collection/collection', 'jar'],
126 'androidx.core:core': ['androidx.core_core', 'androidx/core/core'],
127 'androidx.contentpaging:contentpaging': ['androidx.contentpaging_contentpaging', 'androidx/contentpaging/contentpaging'],
128 'androidx.coordinatorlayout:coordinatorlayout': ['androidx.coordinatorlayout_coordinatorlayout', 'androidx/coordinatorlayout/coordinatorlayout'],
129 'androidx.legacy:legacy-support-core-ui': ['androidx.legacy_legacy-support-core-ui', 'androidx/legacy/legacy-support-core-ui'],
130 'androidx.legacy:legacy-support-core-utils': ['androidx.legacy_legacy-support-core-utils', 'androidx/legacy/legacy-support-core-utils'],
131 'androidx.cursoradapter:cursoradapter': ['androidx.cursoradapter_cursoradapter', 'androidx/cursoradapter/cursoradapter'],
132 'androidx.browser:browser': ['androidx.browser_browser', 'androidx/browser/browser'],
133 'androidx.customview:customview': ['androidx.customview_customview', 'androidx/customview/customview'],
134 'androidx.documentfile:documentfile': ['androidx.documentfile_documentfile', 'androidx/documentfile/documentfile'],
135 'androidx.drawerlayout:drawerlayout': ['androidx.drawerlayout_drawerlayout', 'androidx/drawerlayout/drawerlayout'],
136 'androidx.dynamicanimation:dynamicanimation': ['androidx.dynamicanimation_dynamicanimation', 'androidx/dynamicanimation/dynamicanimation'],
137 'androidx.emoji:emoji': ['androidx.emoji_emoji', 'androidx/emoji/emoji'],
138 'androidx.emoji:emoji-appcompat': ['androidx.emoji_emoji-appcompat', 'androidx/emoji/emoji-appcompat'],
139 'androidx.emoji:emoji-bundled': ['androidx.emoji_emoji-bundled', 'androidx/emoji/emoji-bundled'],
140 'androidx.exifinterface:exifinterface': ['androidx.exifinterface_exifinterface', 'androidx/exifinterface/exifinterface'],
141 'androidx.fragment:fragment': ['androidx.fragment_fragment', 'androidx/fragment/fragment'],
142 'androidx.heifwriter:heifwriter': ['androidx.heifwriter_heifwriter', 'androidx/heifwriter/heifwriter'],
143 'androidx.interpolator:interpolator': ['androidx.interpolator_interpolator', 'androidx/interpolator/interpolator'],
144 'androidx.loader:loader': ['androidx.loader_loader', 'androidx/loader/loader'],
145 'androidx.localbroadcastmanager:localbroadcastmanager': ['androidx.localbroadcastmanager_localbroadcastmanager', 'androidx/localbroadcastmanager/localbroadcastmanager'],
146 'androidx.media:media': ['androidx.media_media', 'androidx/media/media'],
147 'androidx.percentlayout:percentlayout': ['androidx.percentlayout_percentlayout', 'androidx/percentlayout/percentlayout'],
148 'androidx.print:print': ['androidx.print_print', 'androidx/print/print'],
149 'androidx.recommendation:recommendation': ['androidx.recommendation_recommendation', 'androidx/recommendation/recommendation'],
150 'androidx.recyclerview:recyclerview-selection': ['androidx.recyclerview_recyclerview-selection', 'androidx/recyclerview/recyclerview-selection'],
151 'androidx.slidingpanelayout:slidingpanelayout': ['androidx.slidingpanelayout_slidingpanelayout', 'androidx/slidingpanelayout/slidingpanelayout'],
152 'androidx.swiperefreshlayout:swiperefreshlayout': ['androidx.swiperefreshlayout_swiperefreshlayout', 'androidx/swiperefreshlayout/swiperefreshlayout'],
153 'androidx.textclassifier:textclassifier': ['androidx.textclassifier_textclassifier', 'androidx/textclassifier/textclassifier'],
154 'androidx.transition:transition': ['androidx.transition_transition', 'androidx/transition/transition'],
155 'androidx.tvprovider:tvprovider': ['androidx.tvprovider_tvprovider', 'androidx/tvprovider/tvprovider'],
156 'androidx.legacy:legacy-support-v13': ['androidx.legacy_legacy-support-v13', 'androidx/legacy/legacy-support-v13'],
157 'androidx.legacy:legacy-preference-v14': ['androidx.legacy_legacy-preference-v14', 'androidx/legacy/legacy-preference-v14'],
158 'androidx.leanback:leanback': ['androidx.leanback_leanback', 'androidx/leanback/leanback'],
159 'androidx.leanback:leanback-preference': ['androidx.leanback_leanback-preference', 'androidx/leanback/leanback-preference'],
160 'androidx.legacy:legacy-support-v4': ['androidx.legacy_legacy-support-v4', 'androidx/legacy/legacy-support-v4'],
161 'androidx.appcompat:appcompat': ['androidx.appcompat_appcompat', 'androidx/appcompat/appcompat'],
162 'androidx.cardview:cardview': ['androidx.cardview_cardview', 'androidx/cardview/cardview'],
163 'androidx.gridlayout:gridlayout': ['androidx.gridlayout_gridlayout', 'androidx/gridlayout/gridlayout'],
164 'androidx.mediarouter:mediarouter': ['androidx.mediarouter_mediarouter', 'androidx/mediarouter/mediarouter'],
165 'androidx.palette:palette': ['androidx.palette_palette', 'androidx/palette/palette'],
166 'androidx.preference:preference': ['androidx.preference_preference', 'androidx/preference/preference'],
167 'androidx.recyclerview:recyclerview': ['androidx.recyclerview_recyclerview', 'androidx/recyclerview/recyclerview'],
168 'androidx.vectordrawable:vectordrawable': ['androidx.vectordrawable_vectordrawable', 'androidx/vectordrawable/vectordrawable'],
169 'androidx.viewpager:viewpager': ['androidx.viewpager_viewpager', 'androidx/viewpager/viewpager'],
170 'androidx.wear:wear': ['androidx.wear_wear', 'androidx/wear/wear'],
171 'androidx.webkit:webkit': ['androidx.webkit_webkit', 'androidx/webkit/webkit'],
172
173 # AndroidX for Multidex
174 'androidx.multidex:multidex': ['androidx-multidex_multidex', 'androidx/multidex/multidex'],
175 'androidx.multidex:multidex-instrumentation': ['androidx-multidex_multidex-instrumentation', 'androidx/multidex/multidex-instrumentation'],
176
177 # AndroidX for Constraint Layout
178 'androidx.constraintlayout:constraintlayout': ['androidx-constraintlayout_constraintlayout', 'androidx/constraintlayout/constraintlayout'],
179 'androidx.constraintlayout:constraintlayout-solver': ['androidx-constraintlayout_constraintlayout-solver', 'androidx/constraintlayout/constraintlayout-solver'],
180
181 # AndroidX for Architecture Components
182 'androidx.arch.core:core-common': ['androidx.arch.core_core-common', 'androidx/arch/core/core-common'],
183 'androidx.arch.core:core-runtime': ['androidx.arch.core_core-runtime', 'androidx/arch/core/core-runtime'],
184 'androidx.lifecycle:lifecycle-common': ['androidx.lifecycle_lifecycle-common', 'androidx/lifecycle/lifecycle-common'],
185 'androidx.lifecycle:lifecycle-common-java8': ['androidx.lifecycle_lifecycle-common-java8', 'androidx/lifecycle/lifecycle-common-java8'],
186 'androidx.lifecycle:lifecycle-extensions': ['androidx.lifecycle_lifecycle-extensions', 'androidx/lifecycle/lifecycle-extensions'],
187 'androidx.lifecycle:lifecycle-livedata': ['androidx.lifecycle_lifecycle-livedata', 'androidx/lifecycle/lifecycle-livedata'],
188 'androidx.lifecycle:lifecycle-livedata-core': ['androidx.lifecycle_lifecycle-livedata-core', 'androidx/lifecycle/lifecycle-livedata-core'],
189 'androidx.lifecycle:lifecycle-runtime': ['androidx.lifecycle_lifecycle-runtime', 'androidx/lifecycle/lifecycle-runtime'],
190 'androidx.lifecycle:lifecycle-viewmodel': ['androidx.lifecycle_lifecycle-viewmodel', 'androidx/lifecycle/lifecycle-viewmodel'],
191 'androidx.paging:paging-common': ['androidx.paging_paging-common', 'androidx/paging/paging-common'],
192 'androidx.paging:paging-runtime': ['androidx.paging_paging-runtime', 'androidx/paging/paging-runtime'],
193 'androidx.sqlite:sqlite': ['androidx.sqlite_sqlite', 'androidx/sqlite/sqlite'],
194 'androidx.sqlite:sqlite-framework': ['androidx.sqlite_sqlite-framework', 'androidx/sqlite/sqlite-framework'],
195 'androidx.room:room-common': ['androidx.room_room-common', 'androidx/room/room-common'],
196 'androidx.room:room-migration': ['androidx.room_room-migration', 'androidx/room/room-migration'],
197 'androidx.room:room-runtime': ['androidx.room_room-runtime', 'androidx/room/room-runtime'],
198 'androidx.room:room-testing': ['androidx.room_room-testing', 'androidx/room/room-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 Gastonbbd6bfc2018-03-27 17:35:49 -0400204 #'android.arch.lifecycle:compiler': ['android-arch-lifecycle-compiler', 'arch-lifecycle/compiler'],
Alan Viverettec7e88f12018-02-13 15:29:50 -0500205 # Missing dependencies:
206 # - reactive-streams
207 #'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 Gastonbbd6bfc2018-03-27 17:35:49 -0400216 #'android.arch.persistence.room:compiler': ['android-arch-room-compiler', 'arch-room/compiler'],
Alan Viverettec7e88f12018-02-13 15:29:50 -0500217 # Missing dependencies:
218 # - rxjava
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400219 #'android.arch.persistence.room:rxjava2': ['android-arch-room-rxjava2', 'arch-room/rxjava2'],
Allenab72f012018-01-29 18:10:23 -0800220
Alan Viverette129555e2018-01-30 09:57:57 -0500221 # Material Design Components
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400222 'com.android.support:design': ['android-support-design', 'design'],
223 'com.android.support:design-animation': ['android-support-design-animation', 'design-animation'],
224 'com.android.support:design-bottomnavigation': ['android-support-design-bottomnavigation', 'design-bottomnavigation'],
225 'com.android.support:design-bottomsheet': ['android-support-design-bottomsheet', 'design-bottomsheet'],
226 'com.android.support:design-button': ['android-support-design-button', 'design-button'],
227 'com.android.support:design-canvas': ['android-support-design-canvas', 'design-canvas'],
228 'com.android.support:design-card': ['android-support-design-card', 'design-card'],
229 'com.android.support:design-chip': ['android-support-design-chip', 'design-chip'],
230 'com.android.support:design-circularreveal': ['android-support-design-circularreveal', 'design-circularreveal'],
231 'com.android.support:design-circularreveal-cardview': ['android-support-design-circularreveal-cardview', 'design-circularreveal-cardview'],
232 'com.android.support:design-circularreveal-coordinatorlayout': ['android-support-design-circularreveal-coordinatorlayout', 'design-circularreveal-coordinatorlayout'],
233 'com.android.support:design-color': ['android-support-design-color', 'design-color'],
234 'com.android.support:design-dialog': ['android-support-design-dialog', 'design-dialog'],
235 'com.android.support:design-drawable': ['android-support-design-drawable', 'design-drawable'],
236 'com.android.support:design-expandable': ['android-support-design-expandable', 'design-expandable'],
237 'com.android.support:design-floatingactionbutton': ['android-support-design-floatingactionbutton', 'design-floatingactionbutton'],
238 'com.android.support:design-internal': ['android-support-design-internal', 'design-internal'],
239 'com.android.support:design-math': ['android-support-design-math', 'design-math'],
240 'com.android.support:design-resources': ['android-support-design-resources', 'design-resources'],
241 'com.android.support:design-ripple': ['android-support-design-ripple', 'design-ripple'],
242 'com.android.support:design-snackbar': ['android-support-design-snackbar', 'design-snackbar'],
243 'com.android.support:design-stateful': ['android-support-design-stateful', 'design-stateful'],
244 'com.android.support:design-textfield': ['android-support-design-textfield', 'design-textfield'],
245 'com.android.support:design-theme': ['android-support-design-theme', 'design-theme'],
246 'com.android.support:design-transformation': ['android-support-design-transformation', 'design-transformation'],
247 'com.android.support:design-typography': ['android-support-design-typography', 'design-typography'],
248 'com.android.support:design-widget': ['android-support-design-widget', 'design-widget'],
249 'com.android.support:design-navigation': ['android-support-design-navigation', 'design-navigation'],
250 'com.android.support:design-tabs': ['android-support-design-tabs', 'design-tabs'],
251 'com.android.support:design-bottomappbar': ['android-support-design-bottomappbar', 'design-bottomappbar'],
252 'com.android.support:design-shape': ['android-support-design-shape', 'design-shape'],
Alan Viverettea59082b2018-02-22 10:27:46 -0500253
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400254 # Third-party dependencies
255 'com.google.android:flexbox': ['flexbox', 'flexbox'],
Alan Viverette95f6d362017-04-06 09:40:50 -0400256}
257
258# Always remove these files.
259blacklist_files = [
260 'annotations.zip',
261 'public.txt',
262 'R.txt',
Alan Viverette44ad4e42017-08-09 17:45:00 -0400263 'AndroidManifest.xml',
Alan Viverettef48d9b42017-08-17 14:45:46 -0400264 os.path.join('libs','noto-emoji-compat-java.jar')
Alan Viverette95f6d362017-04-06 09:40:50 -0400265]
266
Alan Viverette44ad4e42017-08-09 17:45:00 -0400267artifact_pattern = re.compile(r"^(.+?)-(\d+\.\d+\.\d+(?:-\w+\d+)?(?:-[\d.]+)*)\.(jar|aar)$")
Alan Viverette95f6d362017-04-06 09:40:50 -0400268
Alan Viverettec960cfb2017-12-04 13:09:22 -0500269
270class MavenLibraryInfo:
Jeff Gastonc302bb92018-03-23 13:53:48 -0400271 def __init__(self, key, group_id, artifact_id, version, dir, repo_dir, file):
Alan Viverettec960cfb2017-12-04 13:09:22 -0500272 self.key = key
273 self.group_id = group_id
274 self.artifact_id = artifact_id
275 self.version = version
Jeff Gastonc302bb92018-03-23 13:53:48 -0400276 self.dir = dir
Alan Viverettec960cfb2017-12-04 13:09:22 -0500277 self.repo_dir = repo_dir
278 self.file = file
279
280
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500281def print_e(*args, **kwargs):
282 print(*args, file=sys.stderr, **kwargs)
283
Alan Viverette95f6d362017-04-06 09:40:50 -0400284
285def touch(fname, times=None):
286 with open(fname, 'a'):
287 os.utime(fname, times)
288
289
Alan Viverette45837092017-05-12 14:50:53 -0400290def path(*path_parts):
291 return reduce((lambda x, y: os.path.join(x, y)), path_parts)
292
293
Alan Viverettecd3de262017-08-14 09:51:30 -0400294def flatten(list):
295 return reduce((lambda x, y: "%s %s" % (x, y)), list)
296
297
Alan Viverette45837092017-05-12 14:50:53 -0400298def rm(path):
299 if os.path.isdir(path):
300 rmtree(path)
301 elif os.path.exists(path):
302 os.remove(path)
303
304
305def mv(src_path, dst_path):
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400306 if os.path.exists(dst_path):
Alan Viverettecd3de262017-08-14 09:51:30 -0400307 rm(dst_path)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400308 if not os.path.exists(os.path.dirname(dst_path)):
309 os.makedirs(os.path.dirname(dst_path))
Alan Viverette45837092017-05-12 14:50:53 -0400310 os.rename(src_path, dst_path)
311
312
Jeff Gastonc302bb92018-03-23 13:53:48 -0400313def detect_artifacts(maven_repo_dirs):
Alan Viveretted4527e62017-05-11 15:03:25 -0400314 maven_lib_info = {}
315
Dan Willemsen814152e2017-11-06 13:22:11 -0800316 # Find the latest revision for each artifact, remove others
Jeff Gastonc302bb92018-03-23 13:53:48 -0400317 for repo_dir in maven_repo_dirs:
Dan Willemsen814152e2017-11-06 13:22:11 -0800318 for root, dirs, files in os.walk(repo_dir):
319 for file in files:
Alan Viverettec960cfb2017-12-04 13:09:22 -0500320 if file[-4:] == ".pom":
321 # Read the POM (hack hack hack).
322 group_id = ''
323 artifact_id = ''
324 version = ''
325 file = os.path.join(root, file)
326 with open(file) as pom_file:
327 for line in pom_file:
328 if line[:11] == ' <groupId>':
329 group_id = line[11:-11]
330 elif line[:14] == ' <artifactId>':
331 artifact_id = line[14:-14]
332 elif line[:11] == ' <version>':
333 version = line[11:-11]
334 if group_id == '' or artifact_id == '' or version == '':
335 print_e('Failed to find Maven artifact data in ' + file)
336 continue
Alan Viverette95f6d362017-04-06 09:40:50 -0400337
Alan Viverettec960cfb2017-12-04 13:09:22 -0500338 # Locate the artifact.
339 artifact_file = file[:-4]
340 if os.path.exists(artifact_file + '.jar'):
341 artifact_file = artifact_file + '.jar'
342 elif os.path.exists(artifact_file + '.aar'):
343 artifact_file = artifact_file + '.aar'
344 else:
345 print_e('Failed to find artifact for ' + artifact_file)
346 continue
347
348 # Make relative to root.
349 artifact_file = artifact_file[len(root) + 1:]
350
351 # Find the mapping.
352 group_artifact = group_id + ':' + artifact_id
Jeff Gaston3e622ba2018-03-26 23:24:46 -0400353 if group_artifact in maven_to_make:
Alan Viverettec960cfb2017-12-04 13:09:22 -0500354 key = group_artifact
Jeff Gaston3e622ba2018-03-26 23:24:46 -0400355 elif artifact_id in maven_to_make:
356 key = artifact_id
Alan Viverettec960cfb2017-12-04 13:09:22 -0500357 else:
358 print_e('Failed to find artifact mapping for ' + group_artifact)
359 continue
360
361 # Store the latest version.
362 version = LooseVersion(version)
363 if key not in maven_lib_info \
364 or version > maven_lib_info[key].version:
365 maven_lib_info[key] = MavenLibraryInfo(key, group_id, artifact_id, version,
366 root, repo_dir, artifact_file)
Alan Viverette95f6d362017-04-06 09:40:50 -0400367
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400368 return maven_lib_info
369
370
Jeff Gaston1cc06092018-03-28 15:51:02 -0400371def transform_maven_repos(maven_repo_dirs, transformed_dir, extract_res=True, include_static_deps=False):
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400372 cwd = os.getcwd()
373
374 # Use a temporary working directory.
Jeff Gastonc302bb92018-03-23 13:53:48 -0400375 maven_lib_info = detect_artifacts(maven_repo_dirs)
Jeff Gastona68a8d42018-03-23 14:00:13 -0400376 working_dir = temp_dir
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400377
Alan Viverettec960cfb2017-12-04 13:09:22 -0500378 if not maven_lib_info:
379 print_e('Failed to detect artifacts')
380 return False
381
Jeff Gastonc302bb92018-03-23 13:53:48 -0400382 # extract some files (for example, AndroidManifest.xml) from any relevant artifacts
Alan Viveretted4527e62017-05-11 15:03:25 -0400383 for info in maven_lib_info.values():
Alan Viveretted8ce7222017-12-11 17:24:43 -0500384 transform_maven_lib(working_dir, info, extract_res)
Dan Willemsen814152e2017-11-06 13:22:11 -0800385
Jeff Gastonc302bb92018-03-23 13:53:48 -0400386 # generate a single Android.mk that specifies to use all of the above artifacts
Alan Viverette4ec9a172018-02-20 16:19:31 -0500387 makefile = os.path.join(working_dir, 'Android.mk')
388 with open(makefile, 'w') as f:
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400389 args = ["pom2mk", "-sdk-version", "current"]
Jeff Gaston1cc06092018-03-28 15:51:02 -0400390 if include_static_deps:
391 args.append("-static-deps")
Jeff Gaston7ec1d8f2018-03-27 00:25:12 -0400392 rewriteNames = [name for name in maven_to_make if ":" in name] + [name for name in maven_to_make if ":" not in name]
393 args.extend(["-rewrite=^" + name + "$=" + maven_to_make[name][0] for name in rewriteNames])
Alan Viverette4ec9a172018-02-20 16:19:31 -0500394 args.extend(["-extra-deps=android-support-car=prebuilt-android.car-stubs"])
Jeff Gaston7ec1d8f2018-03-27 00:25:12 -0400395 args.extend(["."])
Dan Willemsen814152e2017-11-06 13:22:11 -0800396 subprocess.check_call(args, stdout=f, cwd=working_dir)
Alan Viverette95f6d362017-04-06 09:40:50 -0400397
Jeff Gastonf12f3ce2018-03-23 16:41:24 -0400398 global rerun_extract_deps
399 rerun_extract_deps = True
Alan Viverette4ec9a172018-02-20 16:19:31 -0500400
Alan Viverette95f6d362017-04-06 09:40:50 -0400401 # Replace the old directory.
Jeff Gastonc302bb92018-03-23 13:53:48 -0400402 output_dir = os.path.join(cwd, transformed_dir)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400403 mv(working_dir, output_dir)
Alan Viverettec960cfb2017-12-04 13:09:22 -0500404 return True
Alan Viverette95f6d362017-04-06 09:40:50 -0400405
Jeff Gastonc302bb92018-03-23 13:53:48 -0400406# 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 -0500407def transform_maven_lib(working_dir, artifact_info, extract_res):
Dan Willemsen814152e2017-11-06 13:22:11 -0800408 # Move library into working dir
Jeff Gastonc302bb92018-03-23 13:53:48 -0400409 new_dir = os.path.join(working_dir, os.path.relpath(artifact_info.dir, artifact_info.repo_dir))
410 mv(artifact_info.dir, new_dir)
Dan Willemsen814152e2017-11-06 13:22:11 -0800411
412 for dirpath, dirs, files in os.walk(new_dir):
413 for f in files:
414 if '-sources.jar' in f:
415 os.remove(os.path.join(dirpath, f))
416
Alan Viverettec960cfb2017-12-04 13:09:22 -0500417 matcher = artifact_pattern.match(artifact_info.file)
418 maven_lib_name = artifact_info.key
Alan Viveretted4527e62017-05-11 15:03:25 -0400419 maven_lib_vers = matcher.group(2)
Alan Viverettec960cfb2017-12-04 13:09:22 -0500420 maven_lib_type = artifact_info.file[-3:]
Alan Viveretted4527e62017-05-11 15:03:25 -0400421
Alan Viverettec960cfb2017-12-04 13:09:22 -0500422 make_lib_name = maven_to_make[artifact_info.key][0]
423 make_dir_name = maven_to_make[artifact_info.key][1]
Alan Viveretted4527e62017-05-11 15:03:25 -0400424
Alan Viverette129555e2018-01-30 09:57:57 -0500425 artifact_file = os.path.join(new_dir, artifact_info.file)
426
Dan Willemsen814152e2017-11-06 13:22:11 -0800427 if extract_res:
Dan Willemsen814152e2017-11-06 13:22:11 -0800428 target_dir = os.path.join(working_dir, make_dir_name)
429 if not os.path.exists(target_dir):
430 os.makedirs(target_dir)
431
432 if maven_lib_type == "aar":
Alan Viverettec960cfb2017-12-04 13:09:22 -0500433 process_aar(artifact_file, target_dir)
Alan Viveretted4527e62017-05-11 15:03:25 -0400434
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400435 with zipfile.ZipFile(artifact_file) as zip:
436 manifests_dir = os.path.join(working_dir, "manifests")
437 zip.extract("AndroidManifest.xml", os.path.join(manifests_dir, make_lib_name))
Dan Willemsend677b602017-11-08 22:13:17 -0800438
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500439 print(maven_lib_vers, ":", maven_lib_name, "->", make_lib_name)
Alan Viveretted4527e62017-05-11 15:03:25 -0400440
Alan Viverette95f6d362017-04-06 09:40:50 -0400441
Alan Viverettec960cfb2017-12-04 13:09:22 -0500442def process_aar(artifact_file, target_dir):
Alan Viverette95f6d362017-04-06 09:40:50 -0400443 # Extract AAR file to target_dir.
444 with zipfile.ZipFile(artifact_file) as zip:
445 zip.extractall(target_dir)
446
Dan Willemsen814152e2017-11-06 13:22:11 -0800447 # Remove classes.jar
Alan Viverette95f6d362017-04-06 09:40:50 -0400448 classes_jar = os.path.join(target_dir, "classes.jar")
449 if os.path.exists(classes_jar):
Dan Willemsen814152e2017-11-06 13:22:11 -0800450 os.remove(classes_jar)
Alan Viverette95f6d362017-04-06 09:40:50 -0400451
452 # Remove or preserve empty dirs.
453 for root, dirs, files in os.walk(target_dir):
454 for dir in dirs:
455 dir_path = os.path.join(root, dir)
456 if not os.listdir(dir_path):
457 os.rmdir(dir_path)
458
459 # Remove top-level cruft.
460 for file in blacklist_files:
461 file_path = os.path.join(target_dir, file)
462 if os.path.exists(file_path):
463 os.remove(file_path)
464
Alan Viverettef17c9402017-07-19 12:57:40 -0400465
Alan Viverettecd3de262017-08-14 09:51:30 -0400466def fetch_artifact(target, build_id, artifact_path):
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500467 print('Fetching %s from %s...' % (artifact_path, target))
Alan Viverettecd3de262017-08-14 09:51:30 -0400468 fetch_cmd = [FETCH_ARTIFACT, '--bid', str(build_id), '--target', target, artifact_path]
Alan Viverette45837092017-05-12 14:50:53 -0400469 try:
Alan Viverettecd3de262017-08-14 09:51:30 -0400470 subprocess.check_output(fetch_cmd, stderr=subprocess.STDOUT)
Alan Viverette45837092017-05-12 14:50:53 -0400471 except subprocess.CalledProcessError:
Jeff Gaston13e38412018-02-06 14:45:36 -0500472 print_e('FAIL: Unable to retrieve %s artifact for build ID %s' % (artifact_path, build_id))
Alan Viverettec1c32b62017-12-20 09:40:36 -0500473 print_e('Please make sure you are authenticated for build server access!')
Alan Viverette45837092017-05-12 14:50:53 -0400474 return None
475 return artifact_path
476
477
Alan Viverette129555e2018-01-30 09:57:57 -0500478def extract_artifact(artifact_path):
Alan Viverette45837092017-05-12 14:50:53 -0400479 # Unzip the repo archive into a separate directory.
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400480 repo_dir = os.path.basename(artifact_path)[:-4]
Alan Viverette45837092017-05-12 14:50:53 -0400481 with zipfile.ZipFile(artifact_path) as zipFile:
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400482 zipFile.extractall(repo_dir)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400483 return repo_dir
484
485
Alan Viverette7e897e22018-03-09 15:24:10 -0500486def fetch_and_extract(target, build_id, file, artifact_path=None):
487 if not artifact_path:
488 artifact_path = fetch_artifact(target, build_id, file)
Alan Viverette129555e2018-01-30 09:57:57 -0500489 if not artifact_path:
490 return None
491 return extract_artifact(artifact_path)
492
493
Alan Viverette7e897e22018-03-09 15:24:10 -0500494def update_support(target, build_id, local_file):
495 if build_id:
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400496 repo_file = 'top-of-tree-m2repository-dejetified-%s.zip' % build_id.fs_id
Alan Viverette7e897e22018-03-09 15:24:10 -0500497 repo_dir = fetch_and_extract(target, build_id.url_id, repo_file, None)
498 else:
499 repo_dir = fetch_and_extract(target, None, None, local_file)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400500 if not repo_dir:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500501 print_e('Failed to extract Support Library repository')
Alan Viverettef48d9b42017-08-17 14:45:46 -0400502 return False
Alan Viverette45837092017-05-12 14:50:53 -0400503
504 # Transform the repo archive into a Makefile-compatible format.
Jeff Gaston1cc06092018-03-28 15:51:02 -0400505 return transform_maven_repos([repo_dir], support_dir, extract_res=True, include_static_deps=True)
Alan Viverettec960cfb2017-12-04 13:09:22 -0500506
Alan Viverette7e897e22018-03-09 15:24:10 -0500507
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400508def update_androidx(target, target_toolkit, build_id, local_file):
509 if build_id:
510 repo_file = 'top-of-tree-m2repository-%s.zip' % build_id.fs_id
511 repo_dir = fetch_and_extract(target, build_id.url_id, repo_file, None)
512 else:
513 repo_dir = fetch_and_extract(target, None, None, local_file)
514 if not repo_dir:
515 print_e('Failed to extract AndroidX repository')
516 return False
517
518 if build_id:
519 repo_file2 = 'top-of-tree-m2repository-%s.zip' % build_id.fs_id
520 repo_dir2 = fetch_and_extract(target_toolkit, build_id.url_id, repo_file2, None)
521 else:
522 repo_dir2 = fetch_and_extract(target_toolkit, None, None, local_file)
523 if not repo_dir2:
524 print_e('Failed to extract AndroidX app-toolkit repository')
525 return False
526
527 # Transform the repo archive into a Makefile-compatible format.
528 return transform_maven_repos([repo_dir, repo_dir2], androidx_dir, extract_res=False)
529
530
Jeff Gaston782c3e32018-02-06 14:36:17 -0500531def update_jetifier(target, build_id):
532 repo_file = 'jetifier-standalone.zip'
533 repo_dir = fetch_and_extract(target, build_id.url_id, repo_file)
534 if not repo_dir:
535 print_e('Failed to extract Jetifier')
536 return False
537
538 rm(jetifier_dir)
539 mv(repo_dir, jetifier_dir)
Jeff Gaston6afb1e42018-02-07 18:58:07 -0500540 os.chmod(os.path.join(jetifier_dir, 'jetifier-standalone', 'bin', 'jetifier-standalone'), 0o755)
Jeff Gaston782c3e32018-02-06 14:36:17 -0500541 return True
542
Alan Viverette7e897e22018-03-09 15:24:10 -0500543
Alan Viverettec960cfb2017-12-04 13:09:22 -0500544def update_toolkit(target, build_id):
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400545 repo_dir = fetch_and_extract(target, build_id.url_id, \
546 'top-of-tree-m2repository-dejetified-%s.zip' % build_id.fs_id)
Alan Viverettec960cfb2017-12-04 13:09:22 -0500547 if not repo_dir:
548 print_e('Failed to extract App Toolkit repository')
549 return False
550
551 # Transform the repo archive into a Makefile-compatible format.
Jeff Gaston1cc06092018-03-28 15:51:02 -0400552 return transform_maven_repos([repo_dir], os.path.join(extras_dir, 'app-toolkit'), extract_res=True, include_static_deps=True)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400553
554
555def update_constraint(target, build_id):
Jeff Gaston13e38412018-02-06 14:45:36 -0500556 layout_dir = fetch_and_extract(target, build_id.url_id,
557 'com.android.support.constraint-constraint-layout-%s.zip' % build_id.fs_id)
558 solver_dir = fetch_and_extract(target, build_id.url_id,
559 'com.android.support.constraint-constraint-layout-solver-%s.zip' % build_id.fs_id)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400560 if not layout_dir or not solver_dir:
Alan Viverettec960cfb2017-12-04 13:09:22 -0500561 print_e('Failed to extract Constraint Layout repositories')
Alan Viverettecd3de262017-08-14 09:51:30 -0400562 return False
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400563
564 # Passing False here is an inelegant solution, but it means we can replace
565 # the top-level directory without worrying about other child directories.
Jeff Gastonc302bb92018-03-23 13:53:48 -0400566 return transform_maven_repos([layout_dir, solver_dir],
Alan Viverettec960cfb2017-12-04 13:09:22 -0500567 os.path.join(extras_dir, 'constraint-layout'), extract_res=False)
Alan Viverette45837092017-05-12 14:50:53 -0400568
569
Alan Viverette129555e2018-01-30 09:57:57 -0500570def update_design(file):
571 design_dir = extract_artifact(file)
572 if not design_dir:
573 print_e('Failed to extract Design Library repositories')
574 return False
575
576 # Don't bother extracting resources -- this should only be used with AAPT2.
Jeff Gastonc302bb92018-03-23 13:53:48 -0400577 return transform_maven_repos([design_dir],
Alan Viverette129555e2018-01-30 09:57:57 -0500578 os.path.join(extras_dir, 'material-design'), extract_res=False)
579
580
Alan Viverette45837092017-05-12 14:50:53 -0400581def extract_to(zip_file, paths, filename, parent_path):
Alan Viverettec1c32b62017-12-20 09:40:36 -0500582 zip_path = next(filter(lambda path: filename in path, paths))
Alan Viverette45837092017-05-12 14:50:53 -0400583 src_path = zip_file.extract(zip_path)
584 dst_path = path(parent_path, filename)
585 mv(src_path, dst_path)
586
587
Alan Viverettecd3de262017-08-14 09:51:30 -0400588def update_sdk_repo(target, build_id):
Alan Viverette45837092017-05-12 14:50:53 -0400589 platform = 'darwin' if 'mac' in target else 'linux'
Alan Viverettecd3de262017-08-14 09:51:30 -0400590 artifact_path = fetch_artifact(
Jeff Gaston13e38412018-02-06 14:45:36 -0500591 target, build_id.url_id, 'sdk-repo-%s-platforms-%s.zip' % (platform, build_id.fs_id))
Alan Viverette45837092017-05-12 14:50:53 -0400592 if not artifact_path:
Alan Viverettecd3de262017-08-14 09:51:30 -0400593 return False
Alan Viverette45837092017-05-12 14:50:53 -0400594
595 with zipfile.ZipFile(artifact_path) as zipFile:
596 paths = zipFile.namelist()
597
598 extract_to(zipFile, paths, 'android.jar', current_path)
599 extract_to(zipFile, paths, 'uiautomator.jar', current_path)
600 extract_to(zipFile, paths, 'framework.aidl', current_path)
Paul Duffind891f3c2017-12-06 11:32:56 +0000601 extract_to(zipFile, paths, 'optional/android.test.base.jar', current_path)
Paul Duffin2b1a1462017-07-14 16:21:33 +0100602 extract_to(zipFile, paths, 'optional/android.test.mock.jar', current_path)
603 extract_to(zipFile, paths, 'optional/android.test.runner.jar', current_path)
Alan Viverette45837092017-05-12 14:50:53 -0400604
605 # Unclear if this is actually necessary.
606 extract_to(zipFile, paths, 'framework.aidl', system_path)
Jiyong Parkb773d292018-01-30 23:33:19 +0900607
Colin Cross4f4b9062018-02-14 10:03:19 -0800608 artifact_path = fetch_artifact(target, build_id.fs_id, 'core.current.stubs.jar')
Jiyong Parkb773d292018-01-30 23:33:19 +0900609 if not artifact_path:
610 return False
611
612 mv(artifact_path, path(current_path, 'core.jar'))
Alan Viverettecd3de262017-08-14 09:51:30 -0400613 return True
Alan Viverette45837092017-05-12 14:50:53 -0400614
615
Alan Viverettecd3de262017-08-14 09:51:30 -0400616def update_system(target, build_id):
Jeff Gaston13e38412018-02-06 14:45:36 -0500617 artifact_path = fetch_artifact(target, build_id.url_id, 'android_system.jar')
Alan Viverette45837092017-05-12 14:50:53 -0400618 if not artifact_path:
Alan Viverettecd3de262017-08-14 09:51:30 -0400619 return False
Alan Viverette45837092017-05-12 14:50:53 -0400620
621 mv(artifact_path, path(system_path, 'android.jar'))
Paul Duffin960e1ee2017-12-21 08:50:14 +0000622
Jeff Gaston13e38412018-02-06 14:45:36 -0500623 artifact_path = fetch_artifact(target, build_id.url_id, 'android.test.mock.stubs_system.jar')
Paul Duffin960e1ee2017-12-21 08:50:14 +0000624 if not artifact_path:
625 return False
626
627 mv(artifact_path, path(system_path, 'optional/android.test.mock.jar'))
628
Alan Viverettecd3de262017-08-14 09:51:30 -0400629 return True
630
631
Alan Viverettec1c32b62017-12-20 09:40:36 -0500632def update_buildtools(target, arch, build_id):
Jeff Gaston13e38412018-02-06 14:45:36 -0500633 artifact_path = fetch_and_extract(target, build_id.url_id,
634 "sdk-repo-%s-build-tools-%s.zip" % (arch, build_id.fs_id))
Alan Viverettec1c32b62017-12-20 09:40:36 -0500635 if not artifact_path:
636 return False
637
638 top_level_dir = os.listdir(artifact_path)[0]
639 src_path = os.path.join(artifact_path, top_level_dir)
640 dst_path = path(buildtools_dir, arch)
641 mv(src_path, dst_path)
642
643 # Move all top-level files to /bin and make them executable
644 bin_path = path(dst_path, 'bin')
645 top_level_files = filter(lambda e: os.path.isfile(path(dst_path, e)), os.listdir(dst_path))
646 for file in top_level_files:
647 src_file = path(dst_path, file)
648 dst_file = path(bin_path, file)
649 mv(src_file, dst_file)
650 os.chmod(dst_file, 0o755)
651
652 # Remove renderscript
653 rm(path(dst_path, 'renderscript'))
654
655 return True
656
657
Alan Viverettecd3de262017-08-14 09:51:30 -0400658def append(text, more_text):
659 if text:
660 return "%s, %s" % (text, more_text)
661 return more_text
Alan Viverette45837092017-05-12 14:50:53 -0400662
Alan Viverette95f6d362017-04-06 09:40:50 -0400663
Jeff Gaston13e38412018-02-06 14:45:36 -0500664class buildId(object):
665 def __init__(self, url_id, fs_id):
666 # id when used in build server urls
667 self.url_id = url_id
668 # id when used in build commands
669 self.fs_id = fs_id
670
Jeff Gastonb9b09052018-02-05 14:16:05 -0500671def getBuildId(args):
Jeff Gaston13e38412018-02-06 14:45:36 -0500672 # must be in the format 12345 or P12345
Jeff Gastonb9b09052018-02-05 14:16:05 -0500673 source = args.source
Jeff Gaston13e38412018-02-06 14:45:36 -0500674 number_text = source[:]
675 presubmit = False
676 if number_text.startswith("P"):
677 presubmit = True
678 number_text = number_text[1:]
679 if not number_text.isnumeric():
Alan Viverette7e897e22018-03-09 15:24:10 -0500680 return None
Jeff Gaston13e38412018-02-06 14:45:36 -0500681 url_id = source
682 fs_id = url_id
683 if presubmit:
684 fs_id = "0"
685 args.file = False
686 return buildId(url_id, fs_id)
Jeff Gastonb9b09052018-02-05 14:16:05 -0500687
Colin Cross573e1212018-02-12 14:59:52 -0800688def getFile(args):
689 source = args.source
690 if not source.isnumeric():
691 return args.source
Alan Viverette7e897e22018-03-09 15:24:10 -0500692 return None
Colin Cross573e1212018-02-12 14:59:52 -0800693
Alan Viverette4ec9a172018-02-20 16:19:31 -0500694
695def script_relative(rel_path):
Jeff Gastona68a8d42018-03-23 14:00:13 -0400696 return os.path.join(script_dir, rel_path)
Alan Viverette4ec9a172018-02-20 16:19:31 -0500697
698
Jeff Gastoncc296a82018-03-23 14:33:24 -0400699def uncommittedChangesExist():
700 try:
701 # Make sure we don't overwrite any pending changes.
702 diffCommand = "cd " + git_dir + " && git diff --quiet"
703 subprocess.check_call(diffCommand, shell=True)
704 subprocess.check_call(diffCommand + " --cached", shell=True)
705 return False
706 except subprocess.CalledProcessError:
707 return True
708
709
Jeff Gastona7fba9b2018-03-26 23:48:51 -0400710rm(temp_dir)
Alan Viveretted4527e62017-05-11 15:03:25 -0400711parser = argparse.ArgumentParser(
Alan Viverette45837092017-05-12 14:50:53 -0400712 description=('Update current prebuilts'))
Alan Viveretted4527e62017-05-11 15:03:25 -0400713parser.add_argument(
Alan Viverette129555e2018-01-30 09:57:57 -0500714 'source',
715 help='Build server build ID or local Maven ZIP file')
716parser.add_argument(
717 '-d', '--design', action="store_true",
718 help='If specified, updates only the Design Library')
Alan Viveretted4527e62017-05-11 15:03:25 -0400719parser.add_argument(
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400720 '-c', '--constraint', action="store_true",
721 help='If specified, updates only Constraint Layout')
722parser.add_argument(
Alan Viverette5bfe05b2017-06-06 14:21:29 -0400723 '-s', '--support', action="store_true",
724 help='If specified, updates only the Support Library')
Alan Viverette45837092017-05-12 14:50:53 -0400725parser.add_argument(
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400726 '-x', '--androidx', action="store_true",
727 help='If specified, updates only AndroidX')
728parser.add_argument(
Jeff Gaston782c3e32018-02-06 14:36:17 -0500729 '-j', '--jetifier', action="store_true",
730 help='If specified, updates only Jetifier')
731parser.add_argument(
Alan Viverettec960cfb2017-12-04 13:09:22 -0500732 '-t', '--toolkit', action="store_true",
733 help='If specified, updates only the App Toolkit')
734parser.add_argument(
Alan Viverette5bfe05b2017-06-06 14:21:29 -0400735 '-p', '--platform', action="store_true",
736 help='If specified, updates only the Android Platform')
Alan Viverettec1c32b62017-12-20 09:40:36 -0500737parser.add_argument(
738 '-b', '--buildtools', action="store_true",
739 help='If specified, updates only the Build Tools')
Jeff Gastoncc296a82018-03-23 14:33:24 -0400740parser.add_argument(
741 '--commit-first', action="store_true",
742 help='If specified, then if uncommited changes exist, commit before continuing')
Alan Viveretted4527e62017-05-11 15:03:25 -0400743args = parser.parse_args()
Jeff Gaston56fe2762018-02-06 14:54:37 -0500744args.file = True
Alan Viverette129555e2018-01-30 09:57:57 -0500745if not args.source:
746 parser.error("You must specify a build ID or local Maven ZIP file")
Alan Viveretted4527e62017-05-11 15:03:25 -0400747 sys.exit(1)
Alan Viverette129555e2018-01-30 09:57:57 -0500748if not (args.support or args.platform or args.constraint or args.toolkit or args.buildtools \
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400749 or args.design or args.jetifier or args.androidx):
Alan Viverettec1c32b62017-12-20 09:40:36 -0500750 parser.error("You must specify at least one target to update")
Alan Viverettecd3de262017-08-14 09:51:30 -0400751 sys.exit(1)
Alan Viverettec1c32b62017-12-20 09:40:36 -0500752if (args.support or args.constraint or args.toolkit) and which('pom2mk') is None:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500753 parser.error("Cannot find pom2mk in path; please run lunch to set up build environment")
754 sys.exit(1)
Alan Viveretted4527e62017-05-11 15:03:25 -0400755
Jeff Gastoncc296a82018-03-23 14:33:24 -0400756if uncommittedChangesExist():
757 if args.commit_first:
758 subprocess.check_call("cd " + git_dir + " && git add -u", shell=True)
759 subprocess.check_call("cd " + git_dir + " && git commit -m 'save working state'", shell=True)
760
761if uncommittedChangesExist():
762 print_e('FAIL: There are uncommitted changes here. Please commit or stash before continuing, because update_current.py will run "git reset --hard" if execution fails')
Alan Viveretted4527e62017-05-11 15:03:25 -0400763 sys.exit(1)
764
765try:
Alan Viverettecd3de262017-08-14 09:51:30 -0400766 components = None
767 if args.constraint:
Jeff Gastonb9b09052018-02-05 14:16:05 -0500768 if update_constraint('studio', getBuildId(args)):
Alan Viverettecd3de262017-08-14 09:51:30 -0400769 components = append(components, 'Constraint Layout')
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500770 print_e('Failed to update Constraint Layout, aborting...')
Alan Viverettecd3de262017-08-14 09:51:30 -0400771 else:
772 sys.exit(1)
773 if args.support:
Alan Viverette7e897e22018-03-09 15:24:10 -0500774 if update_support('support_library', getBuildId(args), getFile(args)):
Alan Viverettecd3de262017-08-14 09:51:30 -0400775 components = append(components, 'Support Library')
776 else:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500777 print_e('Failed to update Support Library, aborting...')
Alan Viverettecd3de262017-08-14 09:51:30 -0400778 sys.exit(1)
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400779 if args.androidx:
780 if update_androidx('support_library', 'support_library_app_toolkit', \
781 getBuildId(args), getFile(args)):
782 components = append(components, 'AndroidX')
783 else:
784 print_e('Failed to update AndroidX, aborting...')
785 sys.exit(1)
Jeff Gaston782c3e32018-02-06 14:36:17 -0500786 if args.jetifier:
787 if update_jetifier('support_library', getBuildId(args)):
788 components = append(components, 'Jetifier')
789 else:
790 print_e('Failed to update Jetifier, aborting...')
791 sys.exit(1)
Alan Viverettec960cfb2017-12-04 13:09:22 -0500792 if args.toolkit:
Jeff Gastonb9b09052018-02-05 14:16:05 -0500793 if update_toolkit('support_library_app_toolkit', getBuildId(args)):
Alan Viverettec960cfb2017-12-04 13:09:22 -0500794 components = append(components, 'App Toolkit')
795 else:
796 print_e('Failed to update App Toolkit, aborting...')
797 sys.exit(1)
Alan Viverettecd3de262017-08-14 09:51:30 -0400798 if args.platform:
Jeff Gastonb9b09052018-02-05 14:16:05 -0500799 if update_sdk_repo('sdk_phone_armv7-sdk_mac', getBuildId(args)) \
800 and update_system('sdk_phone_armv7-sdk_mac', getBuildId(args)):
Alan Viverettecd3de262017-08-14 09:51:30 -0400801 components = append(components, 'platform SDK')
802 else:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500803 print_e('Failed to update platform SDK, aborting...')
Alan Viverettecd3de262017-08-14 09:51:30 -0400804 sys.exit(1)
Alan Viverette129555e2018-01-30 09:57:57 -0500805 if args.design:
Colin Cross573e1212018-02-12 14:59:52 -0800806 if update_design(getFile(args)):
Alan Viverette129555e2018-01-30 09:57:57 -0500807 components = append(components, 'Design Library')
808 else:
809 print_e('Failed to update platform SDK, aborting...')
810 sys.exit(1)
Alan Viverettec1c32b62017-12-20 09:40:36 -0500811 if args.buildtools:
Jeff Gastonb9b09052018-02-05 14:16:05 -0500812 if update_buildtools('sdk_phone_armv7-sdk_mac', 'darwin', getBuildId(args)) \
813 and update_buildtools('sdk_phone_x86_64-sdk', 'linux', getBuildId(args)) \
814 and update_buildtools('sdk_phone_armv7-win_sdk', 'windows', getBuildId(args)):
Alan Viverettec1c32b62017-12-20 09:40:36 -0500815 components = append(components, 'build tools')
816 else:
817 print_e('Failed to update build tools, aborting...')
818 sys.exit(1)
Jeff Gastonf12f3ce2018-03-23 16:41:24 -0400819 if rerun_extract_deps:
820 depsfile = 'fix_dependencies.mk'
821 cwd=os.getcwd()
822 with open(depsfile, 'w') as f:
823 print("running " + str(args) + " in " + cwd)
824 subprocess.check_call("./update_current/extract_deps.py current/support/Android.mk current/extras/*/Android.mk", stdout=f, cwd=cwd, shell=True)
825
Alan Viveretted4527e62017-05-11 15:03:25 -0400826
827 # Commit all changes.
Alan Viverette45837092017-05-12 14:50:53 -0400828 subprocess.check_call(['git', 'add', current_path])
829 subprocess.check_call(['git', 'add', system_path])
Alan Viverettec1c32b62017-12-20 09:40:36 -0500830 subprocess.check_call(['git', 'add', buildtools_dir])
Colin Cross573e1212018-02-12 14:59:52 -0800831 if not args.source.isnumeric():
Alan Viverette129555e2018-01-30 09:57:57 -0500832 src_msg = "local Maven ZIP"
833 else:
Jeff Gaston13e38412018-02-06 14:45:36 -0500834 src_msg = "build %s" % (getBuildId(args).url_id)
Alan Viverette129555e2018-01-30 09:57:57 -0500835 msg = "Import %s from %s\n\n%s" % (components, src_msg, flatten(sys.argv))
Alan Viveretted4527e62017-05-11 15:03:25 -0400836 subprocess.check_call(['git', 'commit', '-m', msg])
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500837 print('Remember to test this change before uploading it to Gerrit!')
Alan Viveretted4527e62017-05-11 15:03:25 -0400838
839finally:
840 # Revert all stray files, including the downloaded zip.
841 try:
842 with open(os.devnull, 'w') as bitbucket:
843 subprocess.check_call(['git', 'add', '-Af', '.'], stdout=bitbucket)
844 subprocess.check_call(
845 ['git', 'commit', '-m', 'COMMIT TO REVERT - RESET ME!!!'], stdout=bitbucket)
846 subprocess.check_call(['git', 'reset', '--hard', 'HEAD~1'], stdout=bitbucket)
847 except subprocess.CalledProcessError:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500848 print_e('ERROR: Failed cleaning up, manual cleanup required!!!')