blob: 28e152dd0b697ba45069123924200e6cfbbe2990 [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
Alan Viverettef5cb0e62017-11-17 15:15:23 -050010from shutil import copyfile, rmtree, which
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'
Sundong Ahn66091f22018-08-29 18:54:28 +090015framework_sdk_target = 'sdk_phone_armv7-sdk'
Alan Viverette3e57a4a2017-08-11 15:49:47 -040016support_dir = os.path.join(current_path, 'support')
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040017androidx_dir = os.path.join(current_path, 'androidx')
Alan Viverette3e57a4a2017-08-11 15:49:47 -040018extras_dir = os.path.join(current_path, 'extras')
Alan Viverettec1c32b62017-12-20 09:40:36 -050019buildtools_dir = 'tools'
Jeff Gaston553a4372018-03-29 18:34:22 -040020jetifier_dir = os.path.join(buildtools_dir, 'jetifier', 'jetifier-standalone')
Alan Viverette95f6d362017-04-06 09:40:50 -040021
Jeff Gastona68a8d42018-03-23 14:00:13 -040022temp_dir = os.path.join(os.getcwd(), "support_tmp")
23os.chdir(os.path.dirname(os.path.dirname(os.path.realpath(sys.argv[0]))))
24git_dir = os.getcwd()
25
Alan Viverettecd3de262017-08-14 09:51:30 -040026# See go/fetch_artifact for details on this script.
Alan Viveretted4527e62017-05-11 15:03:25 -040027FETCH_ARTIFACT = '/google/data/ro/projects/android/fetch_artifact'
28
Alan Viverette95f6d362017-04-06 09:40:50 -040029maven_to_make = {
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040030 # Support Library
Jeff Gastona0bce602018-08-24 14:05:03 -040031 'com.android.support:animated-vector-drawable': {'name':'android-support-animatedvectordrawable', 'path':'graphics/drawable'},
32 'com.android.support:appcompat-v7': {'name':'android-support-v7-appcompat', 'path':'v7/appcompat'},
33 'com.android.support:cardview-v7': {'name':'android-support-v7-cardview', 'path':'v7/cardview'},
34 'com.android.support:collections': {'name':'android-support-collections', 'path':'collections'},
35 'com.android.support:customtabs': {'name':'android-support-customtabs', 'path':'customtabs'},
36 'com.android.support:exifinterface': {'name':'android-support-exifinterface', 'path':'exifinterface'},
37 'com.android.support:gridlayout-v7': {'name':'android-support-v7-gridlayout', 'path':'v7/gridlayout'},
38 'com.android.support:leanback-v17': {'name':'android-support-v17-leanback', 'path':'v17/leanback'},
39 'com.android.support:mediarouter-v7': {'name':'android-support-v7-mediarouter', 'path':'v7/mediarouter'},
40 'com.android.support:palette-v7': {'name':'android-support-v7-palette', 'path':'v7/palette'},
41 'com.android.support:percent': {'name':'android-support-percent', 'path':'percent'},
42 'com.android.support:preference-leanback-v17': {'name':'android-support-v17-preference-leanback', 'path':'v17/preference-leanback'},
43 'com.android.support:preference-v14': {'name':'android-support-v14-preference', 'path':'v14/preference'},
44 'com.android.support:preference-v7': {'name':'android-support-v7-preference', 'path':'v7/preference'},
45 'com.android.support:recommendation': {'name':'android-support-recommendation', 'path':'recommendation'},
46 'com.android.support:recyclerview-v7': {'name':'android-support-v7-recyclerview', 'path':'v7/recyclerview'},
47 'com.android.support:support-annotations': {'name':'android-support-annotations', 'path':'annotations'},
48 'com.android.support:support-compat': {'name':'android-support-compat', 'path':'compat'},
49 'com.android.support:support-core-ui': {'name':'android-support-core-ui', 'path':'core-ui'},
50 'com.android.support:support-core-utils': {'name':'android-support-core-utils', 'path':'core-utils'},
51 'com.android.support:support-dynamic-animation': {'name':'android-support-dynamic-animation', 'path':'dynamic-animation'},
52 'com.android.support:support-emoji-appcompat': {'name':'android-support-emoji-appcompat', 'path':'emoji-appcompat'},
53 'com.android.support:support-emoji-bundled': {'name':'android-support-emoji-bundled', 'path':'emoji-bundled'},
54 'com.android.support:support-emoji': {'name':'android-support-emoji', 'path':'emoji'},
55 'com.android.support:support-fragment': {'name':'android-support-fragment', 'path':'fragment'},
56 'com.android.support:support-media-compat': {'name':'android-support-media-compat', 'path':'media-compat'},
57 'com.android.support:support-tv-provider': {'name':'android-support-tv-provider', 'path':'tv-provider'},
58 'com.android.support:support-v13': {'name':'android-support-v13', 'path':'v13'},
59 'com.android.support:support-v4': {'name':'android-support-v4', 'path':'v4'},
60 'com.android.support:support-vector-drawable': {'name':'android-support-vectordrawable', 'path':'graphics/drawable'},
61 'com.android.support:transition': {'name':'android-support-transition', 'path':'transition'},
62 'com.android.support:wear': {'name':'android-support-wear', 'path':'wear'},
Alan Viverette7bb86da2018-02-21 18:29:02 -050063
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040064 # Support Library (28.0.0 splits + new modules)
Jeff Gastona0bce602018-08-24 14:05:03 -040065 'com.android.support:heifwriter': {'name':'android-support-heifwriter', 'path':'heifwriter'},
66 'com.android.support:webkit': {'name':'android-support-webkit', 'path':'webkit'},
67 'com.android.support:customview': {'name':'android-support-customview', 'path':'customview'},
68 'com.android.support:textclassifier': {'name':'android-support-textclassifier', 'path':'textclassifier'},
69 'com.android.support:swiperefreshlayout': {'name':'android-support-swiperefreshlayout', 'path':'swiperefreshlayout'},
70 'com.android.support:viewpager': {'name':'android-support-viewpager', 'path':'viewpager'},
71 'com.android.support:coordinatorlayout': {'name':'android-support-coordinatorlayout', 'path':'coordinatorlayout'},
72 'com.android.support:asynclayoutinflater': {'name':'android-support-asynclayoutinflater', 'path':'asynclayoutinflater'},
73 'com.android.support:support-content': {'name':'android-support-support-content', 'path':'support-content'},
74 'com.android.support:documentfile': {'name':'android-support-documentfile', 'path':'documentfile'},
75 'com.android.support:drawerlayout': {'name':'android-support-drawerlayout', 'path':'drawerlayout'},
76 'com.android.support:localbroadcastmanager': {'name':'android-support-localbroadcastmanager', 'path':'localbroadcastmanager'},
77 'com.android.support:print': {'name':'android-support-print', 'path':'print'},
78 'com.android.support:slidingpanelayout': {'name':'android-support-slidingpanelayout', 'path':'slidingpanelayout'},
79 'com.android.support:interpolator': {'name':'android-support-interpolator', 'path':'interpolator'},
80 'com.android.support:cursoradapter': {'name':'android-support-cursoradapter', 'path':'cursoradapter'},
81 'com.android.support:loader': {'name':'android-support-loader', 'path':'loader'},
82 'com.android.support:contentpaging': {'name':'android-support-contentpaging', 'path':'contentpaging'},
83 'com.android.support:recyclerview-selection': {'name':'android-support-recyclerview-selection', 'path':'recyclerview-selection'},
84 'com.android.support:car': {'name':'android-support-car', 'path':'car'},
85 'com.android.support:slices-core': {'name':'android-slices-core', 'path':'slices-core'},
86 'com.android.support:slices-view': {'name':'android-slices-view', 'path':'slices-view'},
87 'com.android.support:slices-builders': {'name':'android-slices-builders', 'path':'slices-builders'},
88 'com.android.support:versionedparcelable': {'name':'android-versionedparcelable', 'path':'versionedparcelable'},
Alan Viverette19ecd502018-01-05 13:52:16 -050089
90 # Multidex
Jeff Gastona0bce602018-08-24 14:05:03 -040091 'com.android.support:multidex': {'name':'android-support-multidex', 'path':'multidex/library'},
92 'com.android.support:multidex-instrumentation': {'name':'android-support-multidex-instrumentation', 'path':'multidex/instrumentation'},
Alan Viverette19ecd502018-01-05 13:52:16 -050093
94 # Constraint Layout
Jeff Gastona0bce602018-08-24 14:05:03 -040095 'com.android.support.constraint:constraint-layout': {'name':'android-support-constraint-layout', 'path':'constraint-layout'},
96 'com.android.support.constraint:constraint-layout-solver': {'name':'android-support-constraint-layout-solver', 'path':'constraint-layout-solver'},
Alan Viverette19ecd502018-01-05 13:52:16 -050097
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -040098 # Architecture Components
Jeff Gastona0bce602018-08-24 14:05:03 -040099 'android.arch.core:runtime': {'name':'android-arch-core-runtime', 'path':'arch-core/runtime'},
100 'android.arch.core:common': {'name':'android-arch-core-common', 'path':'arch-core/common'},
101 'android.arch.lifecycle:common': {'name':'android-arch-lifecycle-common', 'path':'arch-lifecycle/common'},
102 'android.arch.lifecycle:common-java8': {'name':'android-arch-lifecycle-common-java8', 'path':'arch-lifecycle/common-java8'},
103 'android.arch.lifecycle:extensions': {'name':'android-arch-lifecycle-extensions', 'path':'arch-lifecycle/extensions'},
104 'android.arch.lifecycle:livedata': {'name':'android-arch-lifecycle-livedata', 'path':'arch-lifecycle/livedata'},
105 'android.arch.lifecycle:livedata-core': {'name':'android-arch-lifecycle-livedata-core', 'path':'arch-lifecycle/livedata-core'},
106 'android.arch.lifecycle:process': {'name':'android-arch-lifecycle-process', 'path':'arch-lifecycle/process'},
107 'android.arch.lifecycle:runtime': {'name':'android-arch-lifecycle-runtime', 'path':'arch-lifecycle/runtime'},
108 'android.arch.lifecycle:service': {'name':'android-arch-lifecycle-service', 'path':'arch-lifecycle/service'},
109 'android.arch.lifecycle:viewmodel': {'name':'android-arch-lifecycle-viewmodel', 'path':'arch-lifecycle/viewmodel'},
110 'android.arch.paging:common': {'name':'android-arch-paging-common', 'path':'arch-paging/common'},
111 'android.arch.paging:runtime': {'name':'android-arch-paging-runtime', 'path':'arch-paging/runtime'},
112 'android.arch.persistence:db': {'name':'android-arch-persistence-db', 'path':'arch-persistence/db'},
113 'android.arch.persistence:db-framework': {'name':'android-arch-persistence-db-framework', 'path':'arch-persistence/db-framework'},
114 'android.arch.persistence.room:common': {'name':'android-arch-room-common', 'path':'arch-room/common'},
115 'android.arch.persistence.room:migration': {'name':'android-arch-room-migration', 'path':'arch-room/migration'},
116 'android.arch.persistence.room:runtime': {'name':'android-arch-room-runtime', 'path':'arch-room/runtime'},
117 'android.arch.persistence.room:testing': {'name':'android-arch-room-testing', 'path':'arch-room/testing'},
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400118
119 # AndroidX
Jeff Gastona0bce602018-08-24 14:05:03 -0400120 'androidx.slice:slice-builders': {'name':'androidx.slice_slice-builders', 'path':'androidx/slice/slice-builders'},
121 'androidx.slice:slice-core': {'name':'androidx.slice_slice-core', 'path':'androidx/slice/slice-core'},
122 'androidx.slice:slice-view': {'name':'androidx.slice_slice-view', 'path':'androidx/slice/slice-view'},
Jeff Gaston07a3cf72018-08-24 14:16:34 -0400123 'androidx.remotecallback:remotecallback': {'name':'androidx.remotecallback_remotecallback', 'path':'androidx/remotecallback/remotecallback'},
124 'androidx.remotecallback:remotecallback-processor': {'name':'androidx.remotecallback_remotecallback-processor', 'path':'androidx/remotecallback/remotecallback-processor', 'host':True},
Jeff Gastona0bce602018-08-24 14:05:03 -0400125 'androidx.versionedparcelable:versionedparcelable': {'name':'androidx.versionedparcelable_versionedparcelable', 'path':'androidx/versionedparcelable'},
126 'androidx.vectordrawable:vectordrawable-animated': {'name':'androidx.vectordrawable_vectordrawable-animated', 'path':'androidx/vectordrawable/vectordrawable-animated'},
Aurimas Liutikasabaa49f2018-09-18 15:30:20 -0700127 'androidx.activity:activity': {'name':'androidx.activity_activity', 'path':'androidx/activity/activity'},
Jeff Gastona0bce602018-08-24 14:05:03 -0400128 'androidx.annotation:annotation': {'name':'androidx.annotation_annotation', 'path':'androidx/annotation/annotation'},
129 'androidx.asynclayoutinflater:asynclayoutinflater': {'name':'androidx.asynclayoutinflater_asynclayoutinflater', 'path':'androidx/asynclayoutinflater/asynclayoutinflater'},
130 'androidx.car:car': {'name':'androidx.car_car', 'path':'androidx/car/car'},
Roberto Perez804fbb42018-09-10 17:58:11 -0700131 'androidx.car:car-cluster': {'name':'androidx.car_car-cluster', 'path':'androidx/car/car-cluster'},
Jeff Gastona0bce602018-08-24 14:05:03 -0400132 'androidx.collection:collection': {'name':'androidx.collection_collection', 'path':'androidx/collection/collection'},
Aurimas Liutikasabaa49f2018-09-18 15:30:20 -0700133 'androidx.concurrent:futures': {'name':'androidx.concurrent_futures', 'path':'androidx/concurrent/futures'},
Jeff Gastona0bce602018-08-24 14:05:03 -0400134 'androidx.core:core': {'name':'androidx.core_core', 'path':'androidx/core/core'},
135 'androidx.contentpaging:contentpaging': {'name':'androidx.contentpaging_contentpaging', 'path':'androidx/contentpaging/contentpaging'},
136 'androidx.coordinatorlayout:coordinatorlayout': {'name':'androidx.coordinatorlayout_coordinatorlayout', 'path':'androidx/coordinatorlayout/coordinatorlayout'},
137 'androidx.legacy:legacy-support-core-ui': {'name':'androidx.legacy_legacy-support-core-ui', 'path':'androidx/legacy/legacy-support-core-ui'},
138 'androidx.legacy:legacy-support-core-utils': {'name':'androidx.legacy_legacy-support-core-utils', 'path':'androidx/legacy/legacy-support-core-utils'},
139 'androidx.cursoradapter:cursoradapter': {'name':'androidx.cursoradapter_cursoradapter', 'path':'androidx/cursoradapter/cursoradapter'},
140 'androidx.browser:browser': {'name':'androidx.browser_browser', 'path':'androidx/browser/browser'},
141 'androidx.customview:customview': {'name':'androidx.customview_customview', 'path':'androidx/customview/customview'},
142 'androidx.documentfile:documentfile': {'name':'androidx.documentfile_documentfile', 'path':'androidx/documentfile/documentfile'},
143 'androidx.drawerlayout:drawerlayout': {'name':'androidx.drawerlayout_drawerlayout', 'path':'androidx/drawerlayout/drawerlayout'},
144 'androidx.dynamicanimation:dynamicanimation': {'name':'androidx.dynamicanimation_dynamicanimation', 'path':'androidx/dynamicanimation/dynamicanimation'},
145 'androidx.emoji:emoji': {'name':'androidx.emoji_emoji', 'path':'androidx/emoji/emoji'},
146 'androidx.emoji:emoji-appcompat': {'name':'androidx.emoji_emoji-appcompat', 'path':'androidx/emoji/emoji-appcompat'},
147 'androidx.emoji:emoji-bundled': {'name':'androidx.emoji_emoji-bundled', 'path':'androidx/emoji/emoji-bundled'},
148 'androidx.exifinterface:exifinterface': {'name':'androidx.exifinterface_exifinterface', 'path':'androidx/exifinterface/exifinterface'},
149 'androidx.fragment:fragment': {'name':'androidx.fragment_fragment', 'path':'androidx/fragment/fragment'},
150 'androidx.heifwriter:heifwriter': {'name':'androidx.heifwriter_heifwriter', 'path':'androidx/heifwriter/heifwriter'},
151 'androidx.interpolator:interpolator': {'name':'androidx.interpolator_interpolator', 'path':'androidx/interpolator/interpolator'},
152 'androidx.loader:loader': {'name':'androidx.loader_loader', 'path':'androidx/loader/loader'},
153 'androidx.localbroadcastmanager:localbroadcastmanager': {'name':'androidx.localbroadcastmanager_localbroadcastmanager', 'path':'androidx/localbroadcastmanager/localbroadcastmanager'},
154 'androidx.media:media': {'name':'androidx.media_media', 'path':'androidx/media/media'},
155 'androidx.media2:media2': {'name':'androidx.media2_media2', 'path':'androidx/media2/media2'},
156 'androidx.media2:media2-exoplayer': {'name':'androidx.media2_media2-exoplayer', 'path':'androidx/media2/media2-exoplayer'},
157 'androidx.percentlayout:percentlayout': {'name':'androidx.percentlayout_percentlayout', 'path':'androidx/percentlayout/percentlayout'},
158 'androidx.print:print': {'name':'androidx.print_print', 'path':'androidx/print/print'},
159 'androidx.recommendation:recommendation': {'name':'androidx.recommendation_recommendation', 'path':'androidx/recommendation/recommendation'},
160 'androidx.recyclerview:recyclerview-selection': {'name':'androidx.recyclerview_recyclerview-selection', 'path':'androidx/recyclerview/recyclerview-selection'},
161 'androidx.slidingpanelayout:slidingpanelayout': {'name':'androidx.slidingpanelayout_slidingpanelayout', 'path':'androidx/slidingpanelayout/slidingpanelayout'},
162 'androidx.swiperefreshlayout:swiperefreshlayout': {'name':'androidx.swiperefreshlayout_swiperefreshlayout', 'path':'androidx/swiperefreshlayout/swiperefreshlayout'},
163 'androidx.textclassifier:textclassifier': {'name':'androidx.textclassifier_textclassifier', 'path':'androidx/textclassifier/textclassifier'},
164 'androidx.transition:transition': {'name':'androidx.transition_transition', 'path':'androidx/transition/transition'},
165 'androidx.tvprovider:tvprovider': {'name':'androidx.tvprovider_tvprovider', 'path':'androidx/tvprovider/tvprovider'},
166 'androidx.legacy:legacy-support-v13': {'name':'androidx.legacy_legacy-support-v13', 'path':'androidx/legacy/legacy-support-v13'},
167 'androidx.legacy:legacy-preference-v14': {'name':'androidx.legacy_legacy-preference-v14', 'path':'androidx/legacy/legacy-preference-v14'},
168 'androidx.leanback:leanback': {'name':'androidx.leanback_leanback', 'path':'androidx/leanback/leanback'},
169 'androidx.leanback:leanback-preference': {'name':'androidx.leanback_leanback-preference', 'path':'androidx/leanback/leanback-preference'},
170 'androidx.legacy:legacy-support-v4': {'name':'androidx.legacy_legacy-support-v4', 'path':'androidx/legacy/legacy-support-v4'},
171 'androidx.appcompat:appcompat': {'name':'androidx.appcompat_appcompat', 'path':'androidx/appcompat/appcompat'},
172 'androidx.cardview:cardview': {'name':'androidx.cardview_cardview', 'path':'androidx/cardview/cardview'},
173 'androidx.gridlayout:gridlayout': {'name':'androidx.gridlayout_gridlayout', 'path':'androidx/gridlayout/gridlayout'},
174 'androidx.mediarouter:mediarouter': {'name':'androidx.mediarouter_mediarouter', 'path':'androidx/mediarouter/mediarouter'},
175 'androidx.palette:palette': {'name':'androidx.palette_palette', 'path':'androidx/palette/palette'},
176 'androidx.preference:preference': {'name':'androidx.preference_preference', 'path':'androidx/preference/preference'},
177 'androidx.recyclerview:recyclerview': {'name':'androidx.recyclerview_recyclerview', 'path':'androidx/recyclerview/recyclerview'},
178 'androidx.vectordrawable:vectordrawable': {'name':'androidx.vectordrawable_vectordrawable', 'path':'androidx/vectordrawable/vectordrawable'},
179 'androidx.viewpager:viewpager': {'name':'androidx.viewpager_viewpager', 'path':'androidx/viewpager/viewpager'},
180 'androidx.wear:wear': {'name':'androidx.wear_wear', 'path':'androidx/wear/wear'},
181 'androidx.webkit:webkit': {'name':'androidx.webkit_webkit', 'path':'androidx/webkit/webkit'},
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400182
183 # AndroidX for Multidex
Jeff Gastona0bce602018-08-24 14:05:03 -0400184 'androidx.multidex:multidex': {'name':'androidx-multidex_multidex', 'path':'androidx/multidex/multidex'},
185 'androidx.multidex:multidex-instrumentation': {'name':'androidx-multidex_multidex-instrumentation', 'path':'androidx/multidex/multidex-instrumentation'},
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400186
187 # AndroidX for Constraint Layout
Jeff Gastona0bce602018-08-24 14:05:03 -0400188 'androidx.constraintlayout:constraintlayout': {'name':'androidx-constraintlayout_constraintlayout', 'path':'androidx/constraintlayout/constraintlayout'},
189 'androidx.constraintlayout:constraintlayout-solver': {'name':'androidx-constraintlayout_constraintlayout-solver', 'path':'androidx/constraintlayout/constraintlayout-solver'},
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400190
191 # AndroidX for Architecture Components
Jeff Gastona0bce602018-08-24 14:05:03 -0400192 'androidx.arch.core:core-common': {'name':'androidx.arch.core_core-common', 'path':'androidx/arch/core/core-common'},
193 'androidx.arch.core:core-runtime': {'name':'androidx.arch.core_core-runtime', 'path':'androidx/arch/core/core-runtime'},
194 'androidx.lifecycle:lifecycle-common': {'name':'androidx.lifecycle_lifecycle-common', 'path':'androidx/lifecycle/lifecycle-common'},
195 'androidx.lifecycle:lifecycle-common-java8': {'name':'androidx.lifecycle_lifecycle-common-java8', 'path':'androidx/lifecycle/lifecycle-common-java8'},
196 'androidx.lifecycle:lifecycle-extensions': {'name':'androidx.lifecycle_lifecycle-extensions', 'path':'androidx/lifecycle/lifecycle-extensions'},
197 'androidx.lifecycle:lifecycle-livedata': {'name':'androidx.lifecycle_lifecycle-livedata', 'path':'androidx/lifecycle/lifecycle-livedata'},
198 'androidx.lifecycle:lifecycle-livedata-core': {'name':'androidx.lifecycle_lifecycle-livedata-core', 'path':'androidx/lifecycle/lifecycle-livedata-core'},
199 'androidx.lifecycle:lifecycle-process': {'name':'androidx.lifecycle_lifecycle-process', 'path':'androidx/lifecycle/lifecycle-process'},
200 'androidx.lifecycle:lifecycle-runtime': {'name':'androidx.lifecycle_lifecycle-runtime', 'path':'androidx/lifecycle/lifecycle-runtime'},
201 'androidx.lifecycle:lifecycle-service': {'name':'androidx.lifecycle_lifecycle-service', 'path':'androidx/lifecycle/lifecycle-service'},
202 'androidx.lifecycle:lifecycle-viewmodel': {'name':'androidx.lifecycle_lifecycle-viewmodel', 'path':'androidx/lifecycle/lifecycle-viewmodel'},
203 'androidx.paging:paging-common': {'name':'androidx.paging_paging-common', 'path':'androidx/paging/paging-common'},
204 'androidx.paging:paging-runtime': {'name':'androidx.paging_paging-runtime', 'path':'androidx/paging/paging-runtime'},
205 'androidx.sqlite:sqlite': {'name':'androidx.sqlite_sqlite', 'path':'androidx/sqlite/sqlite'},
206 'androidx.sqlite:sqlite-framework': {'name':'androidx.sqlite_sqlite-framework', 'path':'androidx/sqlite/sqlite-framework'},
207 'androidx.room:room-common': {'name':'androidx.room_room-common', 'path':'androidx/room/room-common'},
208 'androidx.room:room-migration': {'name':'androidx.room_room-migration', 'path':'androidx/room/room-migration'},
209 'androidx.room:room-runtime': {'name':'androidx.room_room-runtime', 'path':'androidx/room/room-runtime'},
210 'androidx.room:room-testing': {'name':'androidx.room_room-testing', 'path':'androidx/room/room-testing'},
Allenab72f012018-01-29 18:10:23 -0800211
Alan Viverette19ecd502018-01-05 13:52:16 -0500212 # Lifecycle
Alan Viverettec7e88f12018-02-13 15:29:50 -0500213 # Missing dependencies:
214 # - auto-common
215 # - javapoet
Jeff Gastona0bce602018-08-24 14:05:03 -0400216 #'android.arch.lifecycle:compiler': {'name':'android-arch-lifecycle-compiler', 'path':'arch-lifecycle/compiler'},
Alan Viverettec7e88f12018-02-13 15:29:50 -0500217 # Missing dependencies:
218 # - reactive-streams
Jeff Gastona0bce602018-08-24 14:05:03 -0400219 #'android.arch.lifecycle:reactivestreams': 'android-arch-lifecycle-reactivestreams','arch-lifecycle/reactivestreams',
Allenab72f012018-01-29 18:10:23 -0800220
Alan Viverette19ecd502018-01-05 13:52:16 -0500221 # Room
Alan Viverettec7e88f12018-02-13 15:29:50 -0500222 # Missing dependencies:
223 # - auto-common
224 # - javapoet
225 # - antlr4
226 # - kotlin-metadata
227 # - commons-codec
Jeff Gastona0bce602018-08-24 14:05:03 -0400228 #'android.arch.persistence.room:compiler': {'name':'android-arch-room-compiler', 'path':'arch-room/compiler'},
Alan Viverettec7e88f12018-02-13 15:29:50 -0500229 # Missing dependencies:
230 # - rxjava
Jeff Gastona0bce602018-08-24 14:05:03 -0400231 #'android.arch.persistence.room:rxjava2': {'name':'android-arch-room-rxjava2', 'path':'arch-room/rxjava2'},
Allenab72f012018-01-29 18:10:23 -0800232
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400233 # Third-party dependencies
Jeff Gastona0bce602018-08-24 14:05:03 -0400234 'com.google.android:flexbox': {'name':'flexbox', 'path':'flexbox'},
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400235
236 # Support Library Material Design Components
Jeff Gastona0bce602018-08-24 14:05:03 -0400237 'com.android.support:design': {'name':'android-support-design', 'path':'design'},
238 'com.android.support:design-animation': {'name':'android-support-design-animation', 'path':'design-animation'},
239 'com.android.support:design-bottomnavigation': {'name':'android-support-design-bottomnavigation', 'path':'design-bottomnavigation'},
240 'com.android.support:design-bottomsheet': {'name':'android-support-design-bottomsheet', 'path':'design-bottomsheet'},
241 'com.android.support:design-button': {'name':'android-support-design-button', 'path':'design-button'},
242 'com.android.support:design-canvas': {'name':'android-support-design-canvas', 'path':'design-canvas'},
243 'com.android.support:design-card': {'name':'android-support-design-card', 'path':'design-card'},
244 'com.android.support:design-chip': {'name':'android-support-design-chip', 'path':'design-chip'},
245 'com.android.support:design-circularreveal': {'name':'android-support-design-circularreveal', 'path':'design-circularreveal'},
246 'com.android.support:design-circularreveal-cardview': {'name':'android-support-design-circularreveal-cardview', 'path':'design-circularreveal-cardview'},
247 'com.android.support:design-circularreveal-coordinatorlayout': {'name':'android-support-design-circularreveal-coordinatorlayout', 'path':'design-circularreveal-coordinatorlayout'},
248 'com.android.support:design-color': {'name':'android-support-design-color', 'path':'design-color'},
249 'com.android.support:design-dialog': {'name':'android-support-design-dialog', 'path':'design-dialog'},
250 'com.android.support:design-drawable': {'name':'android-support-design-drawable', 'path':'design-drawable'},
251 'com.android.support:design-expandable': {'name':'android-support-design-expandable', 'path':'design-expandable'},
252 'com.android.support:design-floatingactionbutton': {'name':'android-support-design-floatingactionbutton', 'path':'design-floatingactionbutton'},
253 'com.android.support:design-internal': {'name':'android-support-design-internal', 'path':'design-internal'},
254 'com.android.support:design-math': {'name':'android-support-design-math', 'path':'design-math'},
255 'com.android.support:design-resources': {'name':'android-support-design-resources', 'path':'design-resources'},
256 'com.android.support:design-ripple': {'name':'android-support-design-ripple', 'path':'design-ripple'},
257 'com.android.support:design-snackbar': {'name':'android-support-design-snackbar', 'path':'design-snackbar'},
258 'com.android.support:design-stateful': {'name':'android-support-design-stateful', 'path':'design-stateful'},
259 'com.android.support:design-textfield': {'name':'android-support-design-textfield', 'path':'design-textfield'},
260 'com.android.support:design-theme': {'name':'android-support-design-theme', 'path':'design-theme'},
261 'com.android.support:design-transformation': {'name':'android-support-design-transformation', 'path':'design-transformation'},
262 'com.android.support:design-typography': {'name':'android-support-design-typography', 'path':'design-typography'},
263 'com.android.support:design-widget': {'name':'android-support-design-widget', 'path':'design-widget'},
264 'com.android.support:design-navigation': {'name':'android-support-design-navigation', 'path':'design-navigation'},
265 'com.android.support:design-tabs': {'name':'android-support-design-tabs', 'path':'design-tabs'},
266 'com.android.support:design-bottomappbar': {'name':'android-support-design-bottomappbar', 'path':'design-bottomappbar'},
267 'com.android.support:design-shape': {'name':'android-support-design-shape', 'path':'design-shape'},
Alan Viverettea59082b2018-02-22 10:27:46 -0500268
Jeff Gastonfa7c7e82018-04-06 13:35:48 -0400269 # Androidx Material Design Components
Jeff Gastona0bce602018-08-24 14:05:03 -0400270 'com.google.android.material:material': {'name':'com.google.android.material_material', 'path':'com/google/android/material/material'},
Jeff Gastonfa7c7e82018-04-06 13:35:48 -0400271
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400272 # Intermediate-AndroidX Material Design Components
Jeff Gastona0bce602018-08-24 14:05:03 -0400273 'com.android.temp.support:design': {'name':'androidx.design_design', 'path':'com/android/temp/support/design/design'},
274 'com.android.temp.support:design-animation': {'name':'androidx.design_design-animation', 'path':'com/android/temp/support/design/design-animation'},
275 'com.android.temp.support:design-bottomnavigation': {'name':'androidx.design_design-bottomnavigation', 'path':'com/android/temp/support/design/design-bottomnavigation'},
276 'com.android.temp.support:design-bottomsheet': {'name':'androidx.design_design-bottomsheet', 'path':'com/android/temp/support/design/design-bottomsheet'},
277 'com.android.temp.support:design-button': {'name':'androidx.design_design-button', 'path':'com/android/temp/support/design/design-button'},
278 'com.android.temp.support:design-canvas': {'name':'androidx.design_design-canvas', 'path':'com/android/temp/support/design/design-canvas'},
279 'com.android.temp.support:design-card': {'name':'androidx.design_design-card', 'path':'com/android/temp/support/design/design-card'},
280 'com.android.temp.support:design-chip': {'name':'androidx.design_design-chip', 'path':'com/android/temp/support/design/design-chip'},
281 'com.android.temp.support:design-circularreveal': {'name':'androidx.design_design-circularreveal', 'path':'com/android/temp/support/design/design-circularreveal'},
282 'com.android.temp.support:design-circularreveal-cardview': {'name':'androidx.design_design-circularreveal-cardview', 'path':'com/android/temp/support/design/design-circularreveal-cardview'},
283 'com.android.temp.support:design-circularreveal-coordinatorlayout': {'name':'androidx.design_design-circularreveal-coordinatorlayout', 'path':'com/android/temp/support/design/design-circularreveal-coordinatorlayout'},
284 'com.android.temp.support:design-color': {'name':'androidx.design_design-color', 'path':'com/android/temp/support/design/design-color'},
285 'com.android.temp.support:design-dialog': {'name':'androidx.design_design-dialog', 'path':'com/android/temp/support/design/design-dialog'},
286 'com.android.temp.support:design-drawable': {'name':'androidx.design_design-drawable', 'path':'com/android/temp/support/design/design-drawable'},
287 'com.android.temp.support:design-expandable': {'name':'androidx.design_design-expandable', 'path':'com/android/temp/support/design/design-expandable'},
288 'com.android.temp.support:design-floatingactionbutton': {'name':'androidx.design_design-floatingactionbutton', 'path':'com/android/temp/support/design/design-floatingactionbutton'},
289 'com.android.temp.support:design-internal': {'name':'androidx.design_design-internal', 'path':'com/android/temp/support/design/design-internal'},
290 'com.android.temp.support:design-math': {'name':'androidx.design_design-math', 'path':'com/android/temp/support/design/design-math'},
291 'com.android.temp.support:design-resources': {'name':'androidx.design_design-resources', 'path':'com/android/temp/support/design/design-resources'},
292 'com.android.temp.support:design-ripple': {'name':'androidx.design_design-ripple', 'path':'com/android/temp/support/design/design-ripple'},
293 'com.android.temp.support:design-snackbar': {'name':'androidx.design_design-snackbar', 'path':'com/android/temp/support/design/design-snackbar'},
294 'com.android.temp.support:design-stateful': {'name':'androidx.design_design-stateful', 'path':'com/android/temp/support/design/design-stateful'},
295 'com.android.temp.support:design-textfield': {'name':'androidx.design_design-textfield', 'path':'com/android/temp/support/design/design-textfield'},
296 'com.android.temp.support:design-theme': {'name':'androidx.design_design-theme', 'path':'com/android/temp/support/design/design-theme'},
297 'com.android.temp.support:design-transformation': {'name':'androidx.design_design-transformation', 'path':'com/android/temp/support/design/design-transformation'},
298 'com.android.temp.support:design-typography': {'name':'androidx.design_design-typography', 'path':'com/android/temp/support/design/design-typography'},
299 'com.android.temp.support:design-widget': {'name':'androidx.design_design-widget', 'path':'com/android/temp/support/design/design-widget'},
300 'com.android.temp.support:design-navigation': {'name':'androidx.design_design-navigation', 'path':'com/android/temp/support/design/design-navigation'},
301 'com.android.temp.support:design-tabs': {'name':'androidx.design_design-tabs', 'path':'com/android/temp/support/design/design-tabs'},
302 'com.android.temp.support:design-bottomappbar': {'name':'androidx.design_design-bottomappbar', 'path':'com/android/temp/support/design/design-bottomappbar'},
303 'com.android.temp.support:design-shape': {'name':'androidx.design_design-shape', 'path':'com/android/temp/support/design/design-shape'},
Alan Viverette95f6d362017-04-06 09:40:50 -0400304}
305
306# Always remove these files.
307blacklist_files = [
308 'annotations.zip',
309 'public.txt',
310 'R.txt',
Alan Viverette44ad4e42017-08-09 17:45:00 -0400311 'AndroidManifest.xml',
Alan Viverettef48d9b42017-08-17 14:45:46 -0400312 os.path.join('libs','noto-emoji-compat-java.jar')
Alan Viverette95f6d362017-04-06 09:40:50 -0400313]
314
Alan Viverette44ad4e42017-08-09 17:45:00 -0400315artifact_pattern = re.compile(r"^(.+?)-(\d+\.\d+\.\d+(?:-\w+\d+)?(?:-[\d.]+)*)\.(jar|aar)$")
Alan Viverette95f6d362017-04-06 09:40:50 -0400316
Alan Viverettec960cfb2017-12-04 13:09:22 -0500317
318class MavenLibraryInfo:
Jeff Gastonc302bb92018-03-23 13:53:48 -0400319 def __init__(self, key, group_id, artifact_id, version, dir, repo_dir, file):
Alan Viverettec960cfb2017-12-04 13:09:22 -0500320 self.key = key
321 self.group_id = group_id
322 self.artifact_id = artifact_id
323 self.version = version
Jeff Gastonc302bb92018-03-23 13:53:48 -0400324 self.dir = dir
Alan Viverettec960cfb2017-12-04 13:09:22 -0500325 self.repo_dir = repo_dir
326 self.file = file
327
328
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500329def print_e(*args, **kwargs):
330 print(*args, file=sys.stderr, **kwargs)
331
Alan Viverette95f6d362017-04-06 09:40:50 -0400332
333def touch(fname, times=None):
334 with open(fname, 'a'):
335 os.utime(fname, times)
336
337
Alan Viverette45837092017-05-12 14:50:53 -0400338def path(*path_parts):
339 return reduce((lambda x, y: os.path.join(x, y)), path_parts)
340
341
Alan Viverettecd3de262017-08-14 09:51:30 -0400342def flatten(list):
343 return reduce((lambda x, y: "%s %s" % (x, y)), list)
344
345
Alan Viverette45837092017-05-12 14:50:53 -0400346def rm(path):
347 if os.path.isdir(path):
348 rmtree(path)
349 elif os.path.exists(path):
350 os.remove(path)
351
352
353def mv(src_path, dst_path):
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400354 if os.path.exists(dst_path):
Alan Viverettecd3de262017-08-14 09:51:30 -0400355 rm(dst_path)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400356 if not os.path.exists(os.path.dirname(dst_path)):
357 os.makedirs(os.path.dirname(dst_path))
Jiyong Park1d1c9632018-05-29 17:45:27 +0900358 for f in (glob.glob(src_path)):
359 if '*' in dst_path:
360 dst = os.path.join(os.path.dirname(dst_path), os.path.basename(f))
361 else:
362 dst = dst_path
363 os.rename(f, dst)
Alan Viverette45837092017-05-12 14:50:53 -0400364
365
Jeff Gastonc302bb92018-03-23 13:53:48 -0400366def detect_artifacts(maven_repo_dirs):
Alan Viveretted4527e62017-05-11 15:03:25 -0400367 maven_lib_info = {}
368
Dan Willemsen814152e2017-11-06 13:22:11 -0800369 # Find the latest revision for each artifact, remove others
Jeff Gastonc302bb92018-03-23 13:53:48 -0400370 for repo_dir in maven_repo_dirs:
Dan Willemsen814152e2017-11-06 13:22:11 -0800371 for root, dirs, files in os.walk(repo_dir):
372 for file in files:
Alan Viverettec960cfb2017-12-04 13:09:22 -0500373 if file[-4:] == ".pom":
374 # Read the POM (hack hack hack).
375 group_id = ''
376 artifact_id = ''
377 version = ''
378 file = os.path.join(root, file)
379 with open(file) as pom_file:
380 for line in pom_file:
381 if line[:11] == ' <groupId>':
382 group_id = line[11:-11]
383 elif line[:14] == ' <artifactId>':
384 artifact_id = line[14:-14]
385 elif line[:11] == ' <version>':
386 version = line[11:-11]
387 if group_id == '' or artifact_id == '' or version == '':
388 print_e('Failed to find Maven artifact data in ' + file)
389 continue
Alan Viverette95f6d362017-04-06 09:40:50 -0400390
Alan Viverettec960cfb2017-12-04 13:09:22 -0500391 # Locate the artifact.
392 artifact_file = file[:-4]
393 if os.path.exists(artifact_file + '.jar'):
394 artifact_file = artifact_file + '.jar'
395 elif os.path.exists(artifact_file + '.aar'):
396 artifact_file = artifact_file + '.aar'
397 else:
398 print_e('Failed to find artifact for ' + artifact_file)
399 continue
400
401 # Make relative to root.
402 artifact_file = artifact_file[len(root) + 1:]
403
404 # Find the mapping.
405 group_artifact = group_id + ':' + artifact_id
Jeff Gaston3e622ba2018-03-26 23:24:46 -0400406 if group_artifact in maven_to_make:
Alan Viverettec960cfb2017-12-04 13:09:22 -0500407 key = group_artifact
Jeff Gaston3e622ba2018-03-26 23:24:46 -0400408 elif artifact_id in maven_to_make:
409 key = artifact_id
Alan Viverettec960cfb2017-12-04 13:09:22 -0500410 else:
411 print_e('Failed to find artifact mapping for ' + group_artifact)
412 continue
413
414 # Store the latest version.
415 version = LooseVersion(version)
416 if key not in maven_lib_info \
417 or version > maven_lib_info[key].version:
418 maven_lib_info[key] = MavenLibraryInfo(key, group_id, artifact_id, version,
419 root, repo_dir, artifact_file)
Alan Viverette95f6d362017-04-06 09:40:50 -0400420
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400421 return maven_lib_info
422
423
Colin Cross59b59db2018-04-24 13:58:05 -0700424def transform_maven_repos(maven_repo_dirs, transformed_dir, extract_res=True, include_static_deps=True):
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400425 cwd = os.getcwd()
426
427 # Use a temporary working directory.
Jeff Gastonc302bb92018-03-23 13:53:48 -0400428 maven_lib_info = detect_artifacts(maven_repo_dirs)
Jeff Gastona68a8d42018-03-23 14:00:13 -0400429 working_dir = temp_dir
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400430
Alan Viverettec960cfb2017-12-04 13:09:22 -0500431 if not maven_lib_info:
432 print_e('Failed to detect artifacts')
433 return False
434
Jeff Gastonc302bb92018-03-23 13:53:48 -0400435 # extract some files (for example, AndroidManifest.xml) from any relevant artifacts
Alan Viveretted4527e62017-05-11 15:03:25 -0400436 for info in maven_lib_info.values():
Alan Viveretted8ce7222017-12-11 17:24:43 -0500437 transform_maven_lib(working_dir, info, extract_res)
Dan Willemsen814152e2017-11-06 13:22:11 -0800438
Colin Cross74683bc2018-04-11 17:36:18 -0700439 # generate a single Android.bp that specifies to use all of the above artifacts
440 makefile = os.path.join(working_dir, 'Android.bp')
Alan Viverette4ec9a172018-02-20 16:19:31 -0500441 with open(makefile, 'w') as f:
Colin Cross74683bc2018-04-11 17:36:18 -0700442 args = ["pom2bp", "-sdk-version", "current"]
Jeff Gaston1cc06092018-03-28 15:51:02 -0400443 if include_static_deps:
444 args.append("-static-deps")
Jeff Gaston54868ee2018-04-25 19:43:35 -0400445 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 -0400446 args.extend(["-rewrite=^" + name + "$=" + maven_to_make[name]['name'] for name in rewriteNames])
Jeff Gaston07a3cf72018-08-24 14:16:34 -0400447 args.extend(["-rewrite=^com.squareup:javapoet$=javapoet-prebuilt-jar"])
Jeff Gaston9bb25db2018-04-23 14:26:28 -0400448 args.extend(["-extra-deps=android-support-car=prebuilt-android.car-stubs"])
Jeff Gaston07a3cf72018-08-24 14:16:34 -0400449 args.extend(["-host=" + name for name in maven_to_make if maven_to_make[name].get('host')])
Colin Cross21060072018-04-24 13:52:29 -0700450 # these depend on GSON which is not in AOSP
451 args.extend(["-exclude=androidx.room_room-migration",
452 "-exclude=androidx.room_room-testing",
453 "-exclude=android-arch-room-migration",
454 "-exclude=android-arch-room-testing"])
Jeff Gaston7ec1d8f2018-03-27 00:25:12 -0400455 args.extend(["."])
Dan Willemsen814152e2017-11-06 13:22:11 -0800456 subprocess.check_call(args, stdout=f, cwd=working_dir)
Alan Viverette95f6d362017-04-06 09:40:50 -0400457
458 # Replace the old directory.
Jeff Gastonc302bb92018-03-23 13:53:48 -0400459 output_dir = os.path.join(cwd, transformed_dir)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400460 mv(working_dir, output_dir)
Alan Viverettec960cfb2017-12-04 13:09:22 -0500461 return True
Alan Viverette95f6d362017-04-06 09:40:50 -0400462
Jeff Gastonc302bb92018-03-23 13:53:48 -0400463# 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 -0500464def transform_maven_lib(working_dir, artifact_info, extract_res):
Dan Willemsen814152e2017-11-06 13:22:11 -0800465 # Move library into working dir
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400466 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 -0400467 mv(artifact_info.dir, new_dir)
Dan Willemsen814152e2017-11-06 13:22:11 -0800468
Alan Viverettec960cfb2017-12-04 13:09:22 -0500469 matcher = artifact_pattern.match(artifact_info.file)
470 maven_lib_name = artifact_info.key
Alan Viveretted4527e62017-05-11 15:03:25 -0400471 maven_lib_vers = matcher.group(2)
Alan Viverettec960cfb2017-12-04 13:09:22 -0500472 maven_lib_type = artifact_info.file[-3:]
Alan Viveretted4527e62017-05-11 15:03:25 -0400473
Jeff Gastona0bce602018-08-24 14:05:03 -0400474 make_lib_name = maven_to_make[artifact_info.key]['name']
475 make_dir_name = maven_to_make[artifact_info.key]['path']
Alan Viveretted4527e62017-05-11 15:03:25 -0400476
Alan Viverette129555e2018-01-30 09:57:57 -0500477 artifact_file = os.path.join(new_dir, artifact_info.file)
478
Colin Cross59b59db2018-04-24 13:58:05 -0700479 if maven_lib_type == "aar":
480 if extract_res:
481 target_dir = os.path.join(working_dir, make_dir_name)
482 if not os.path.exists(target_dir):
483 os.makedirs(target_dir)
Dan Willemsen814152e2017-11-06 13:22:11 -0800484
Alan Viverettec960cfb2017-12-04 13:09:22 -0500485 process_aar(artifact_file, target_dir)
Alan Viveretted4527e62017-05-11 15:03:25 -0400486
Colin Cross59b59db2018-04-24 13:58:05 -0700487 with zipfile.ZipFile(artifact_file) as zip:
488 manifests_dir = os.path.join(working_dir, "manifests")
489 zip.extract("AndroidManifest.xml", os.path.join(manifests_dir, make_lib_name))
Dan Willemsend677b602017-11-08 22:13:17 -0800490
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500491 print(maven_lib_vers, ":", maven_lib_name, "->", make_lib_name)
Alan Viveretted4527e62017-05-11 15:03:25 -0400492
Alan Viverette95f6d362017-04-06 09:40:50 -0400493
Alan Viverettec960cfb2017-12-04 13:09:22 -0500494def process_aar(artifact_file, target_dir):
Alan Viverette95f6d362017-04-06 09:40:50 -0400495 # Extract AAR file to target_dir.
496 with zipfile.ZipFile(artifact_file) as zip:
497 zip.extractall(target_dir)
498
Dan Willemsen814152e2017-11-06 13:22:11 -0800499 # Remove classes.jar
Alan Viverette95f6d362017-04-06 09:40:50 -0400500 classes_jar = os.path.join(target_dir, "classes.jar")
501 if os.path.exists(classes_jar):
Dan Willemsen814152e2017-11-06 13:22:11 -0800502 os.remove(classes_jar)
Alan Viverette95f6d362017-04-06 09:40:50 -0400503
504 # Remove or preserve empty dirs.
505 for root, dirs, files in os.walk(target_dir):
506 for dir in dirs:
507 dir_path = os.path.join(root, dir)
508 if not os.listdir(dir_path):
509 os.rmdir(dir_path)
510
511 # Remove top-level cruft.
512 for file in blacklist_files:
513 file_path = os.path.join(target_dir, file)
514 if os.path.exists(file_path):
515 os.remove(file_path)
516
Alan Viverettef17c9402017-07-19 12:57:40 -0400517
Alan Viverettecd3de262017-08-14 09:51:30 -0400518def fetch_artifact(target, build_id, artifact_path):
Jiyong Park1d1c9632018-05-29 17:45:27 +0900519 download_to = os.path.join('.', os.path.dirname(artifact_path))
520 print('Fetching %s from %s ...' % (artifact_path, target))
521 if not os.path.exists(download_to):
522 os.makedirs(download_to)
523 fetch_cmd = [FETCH_ARTIFACT, '--bid', str(build_id), '--target', target, artifact_path,
524 download_to]
Alan Viverette45837092017-05-12 14:50:53 -0400525 try:
Alan Viverettecd3de262017-08-14 09:51:30 -0400526 subprocess.check_output(fetch_cmd, stderr=subprocess.STDOUT)
Alan Viverette45837092017-05-12 14:50:53 -0400527 except subprocess.CalledProcessError:
Jeff Gaston13e38412018-02-06 14:45:36 -0500528 print_e('FAIL: Unable to retrieve %s artifact for build ID %s' % (artifact_path, build_id))
Alan Viverettec1c32b62017-12-20 09:40:36 -0500529 print_e('Please make sure you are authenticated for build server access!')
Alan Viverette45837092017-05-12 14:50:53 -0400530 return None
531 return artifact_path
532
533
Anton Hansson1d01a032018-04-09 10:29:37 +0100534def fetch_artifacts(target, build_id, artifact_dict):
535 for artifact, target_path in artifact_dict.items():
536 artifact_path = fetch_artifact(target, build_id.url_id, artifact)
537 if not artifact_path:
538 return False
539 mv(artifact_path, target_path)
540 return True
541
542
Alan Viverette129555e2018-01-30 09:57:57 -0500543def extract_artifact(artifact_path):
Alan Viverette45837092017-05-12 14:50:53 -0400544 # Unzip the repo archive into a separate directory.
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400545 repo_dir = os.path.basename(artifact_path)[:-4]
Alan Viverette45837092017-05-12 14:50:53 -0400546 with zipfile.ZipFile(artifact_path) as zipFile:
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400547 zipFile.extractall(repo_dir)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400548 return repo_dir
549
550
Alan Viverette7e897e22018-03-09 15:24:10 -0500551def fetch_and_extract(target, build_id, file, artifact_path=None):
552 if not artifact_path:
553 artifact_path = fetch_artifact(target, build_id, file)
Alan Viverette129555e2018-01-30 09:57:57 -0500554 if not artifact_path:
555 return None
556 return extract_artifact(artifact_path)
557
558
Alan Viverette7e897e22018-03-09 15:24:10 -0500559def update_support(target, build_id, local_file):
560 if build_id:
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400561 repo_file = 'top-of-tree-m2repository-dejetified-%s.zip' % build_id.fs_id
Alan Viverette7e897e22018-03-09 15:24:10 -0500562 repo_dir = fetch_and_extract(target, build_id.url_id, repo_file, None)
563 else:
564 repo_dir = fetch_and_extract(target, None, None, local_file)
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400565 if not repo_dir:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500566 print_e('Failed to extract Support Library repository')
Alan Viverettef48d9b42017-08-17 14:45:46 -0400567 return False
Alan Viverette45837092017-05-12 14:50:53 -0400568
569 # Transform the repo archive into a Makefile-compatible format.
Colin Cross59b59db2018-04-24 13:58:05 -0700570 return transform_maven_repos([repo_dir], support_dir, extract_res=True)
Alan Viverettec960cfb2017-12-04 13:09:22 -0500571
Alan Viverette7e897e22018-03-09 15:24:10 -0500572
Jeff Gaston08a2ee42018-05-07 18:08:41 -0400573def update_androidx(target, build_id, local_file):
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400574 if build_id:
Anthony Chenacbb4872018-07-02 11:22:48 -0700575 repo_file = 'top-of-tree-m2repository-all-%s.zip' % build_id.fs_id
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400576 repo_dir = fetch_and_extract(target, build_id.url_id, repo_file, None)
577 else:
578 repo_dir = fetch_and_extract(target, None, None, local_file)
579 if not repo_dir:
580 print_e('Failed to extract AndroidX repository')
581 return False
582
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400583 # Transform the repo archive into a Makefile-compatible format.
Jeff Gaston08a2ee42018-05-07 18:08:41 -0400584 return transform_maven_repos([repo_dir], androidx_dir, extract_res=False)
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400585
586
Jeff Gaston782c3e32018-02-06 14:36:17 -0500587def update_jetifier(target, build_id):
588 repo_file = 'jetifier-standalone.zip'
589 repo_dir = fetch_and_extract(target, build_id.url_id, repo_file)
590 if not repo_dir:
591 print_e('Failed to extract Jetifier')
592 return False
593
594 rm(jetifier_dir)
Jeff Gaston553a4372018-03-29 18:34:22 -0400595 mv(os.path.join(repo_dir, 'jetifier-standalone'), jetifier_dir)
596 os.chmod(os.path.join(jetifier_dir, 'bin', 'jetifier-standalone'), 0o755)
Jeff Gaston782c3e32018-02-06 14:36:17 -0500597 return True
598
Alan Viverette7e897e22018-03-09 15:24:10 -0500599
Jeff Gastondb739a22018-06-26 14:12:22 -0400600def update_constraint(target, build_id, local_file):
601 if build_id:
602 layout_dir = fetch_and_extract(target, build_id.url_id,
603 'com.android.support.constraint-constraint-layout-%s.zip' % build_id.fs_id)
604 solver_dir = fetch_and_extract(target, build_id.url_id,
605 'com.android.support.constraint-constraint-layout-solver-%s.zip' % build_id.fs_id)
606 if not layout_dir or not solver_dir:
607 print_e('Failed to extract Constraint Layout repositories')
Alan Viverettecd3de262017-08-14 09:51:30 -0400608 return False
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400609
Jeff Gastondb739a22018-06-26 14:12:22 -0400610 dirs = [layout_dir, solver_dir]
611 else:
612 repo_dir = extract_artifact(local_file)
613 if not repo_dir:
614 print_e('Failed to extract Constraint Layout')
615 return False
616 dirs = [repo_dir]
617
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400618 # Passing False here is an inelegant solution, but it means we can replace
619 # the top-level directory without worrying about other child directories.
Jeff Gastondb739a22018-06-26 14:12:22 -0400620 return transform_maven_repos(dirs,
Alan Viverettec960cfb2017-12-04 13:09:22 -0500621 os.path.join(extras_dir, 'constraint-layout'), extract_res=False)
Alan Viverette45837092017-05-12 14:50:53 -0400622
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400623def update_constraint_x(local_file):
624 repo_dir = extract_artifact(local_file)
625 if not repo_dir:
626 print_e('Failed to extract Constraint Layout X')
627 return False
628 return transform_maven_repos([repo_dir], os.path.join(extras_dir, 'constraint-layout-x'), extract_res=False)
629
Alan Viverette45837092017-05-12 14:50:53 -0400630
Alan Viverette129555e2018-01-30 09:57:57 -0500631def update_design(file):
632 design_dir = extract_artifact(file)
633 if not design_dir:
634 print_e('Failed to extract Design Library repositories')
635 return False
636
637 # Don't bother extracting resources -- this should only be used with AAPT2.
Jeff Gastonc302bb92018-03-23 13:53:48 -0400638 return transform_maven_repos([design_dir],
Alan Viverette129555e2018-01-30 09:57:57 -0500639 os.path.join(extras_dir, 'material-design'), extract_res=False)
640
641
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400642def update_material(file):
643 design_dir = extract_artifact(file)
644 if not design_dir:
645 print_e('Failed to extract intermediate-AndroidX Design Library repositories')
646 return False
647
648 # Don't bother extracting resources -- this should only be used with AAPT2.
649 return transform_maven_repos([design_dir],
650 os.path.join(extras_dir, 'material-design-x'), extract_res=False)
651
652
Anton Hansson1d01a032018-04-09 10:29:37 +0100653def extract_to(zip_file, filename, parent_path):
654 zip_path = next(filter(lambda path: filename in path, zip_file.namelist()))
Alan Viverette45837092017-05-12 14:50:53 -0400655 src_path = zip_file.extract(zip_path)
656 dst_path = path(parent_path, filename)
657 mv(src_path, dst_path)
658
Anton Hansson1d01a032018-04-09 10:29:37 +0100659def update_framework(build_id, sdk_dir):
Sundong Ahn66091f22018-08-29 18:54:28 +0900660 api_scope_list = ['public', 'system', 'test']
661 if sdk_dir == 'current':
662 api_scope_list.append('core')
663
664 for api_scope in api_scope_list:
Jiyong Park1d1c9632018-05-29 17:45:27 +0900665 target_dir = path(sdk_dir, api_scope)
Sundong Ahn66091f22018-08-29 18:54:28 +0900666 if api_scope == 'core':
667 artifact_to_path = {'core.current.stubs.jar': path(target_dir, 'android.jar')}
668 else:
669 artifact_to_path = {'apistubs/android/' + api_scope + '/*.jar': path(target_dir, '*')}
Anton Hansson1d01a032018-04-09 10:29:37 +0100670
671 if not fetch_artifacts(framework_sdk_target, build_id, artifact_to_path):
672 return False
673
Jiyong Park1d1c9632018-05-29 17:45:27 +0900674 if api_scope == 'public':
Anton Hansson1d01a032018-04-09 10:29:37 +0100675 # Fetch a few artifacts from the public sdk.
Sundong Ahn66091f22018-08-29 18:54:28 +0900676 artifact = 'sdk-repo-linux-platforms-%s.zip' % build_id.fs_id
Anton Hansson1d01a032018-04-09 10:29:37 +0100677 artifact_path = fetch_artifact(framework_sdk_target, build_id.url_id, artifact)
Anton Hansson9709fd42018-04-03 16:52:13 +0100678 if not artifact_path:
679 return False
Anton Hansson1d01a032018-04-09 10:29:37 +0100680
681 with zipfile.ZipFile(artifact_path) as zipFile:
682 for filename in ['android.jar', 'framework.aidl', 'uiautomator.jar']:
683 extract_to(zipFile, filename, target_dir)
Anton Hansson9709fd42018-04-03 16:52:13 +0100684
Alan Viverettecd3de262017-08-14 09:51:30 -0400685 return True
Alan Viverette45837092017-05-12 14:50:53 -0400686
Sundong Ahncc34cc32018-07-11 15:18:47 +0900687def update_makefile(build_id):
688 template = '"%s",\n\
689 "current"'
690 makefile = os.path.join(git_dir, 'Android.bp')
691
692 with open(makefile, 'r+') as f:
693 contents = f.read().replace('"current"', template % build_id)
694 f.seek(0)
695 f.write(contents)
696
697 return True
Alan Viverette45837092017-05-12 14:50:53 -0400698
Anton Hansson1d01a032018-04-09 10:29:37 +0100699def finalize_sdk(build_id, sdk_version):
700 target_finalize_dir = '%d' % sdk_version
Anton Hansson9709fd42018-04-03 16:52:13 +0100701
Sundong Ahn66091f22018-08-29 18:54:28 +0900702 for api_scope in ['public', 'system', 'test']:
703 artifact_to_path = {'apistubs/android/' + api_scope + '/api/*.txt':
704 path(target_finalize_dir, api_scope, 'api', '*')}
705
706 if not fetch_artifacts(framework_sdk_target, build_id, artifact_to_path):
707 return False
708
709 return update_framework(build_id, target_finalize_dir) \
Sundong Ahncc34cc32018-07-11 15:18:47 +0900710 and update_makefile(target_finalize_dir)
Anton Hansson9709fd42018-04-03 16:52:13 +0100711
Anton Hansson9709fd42018-04-03 16:52:13 +0100712
Anton Hansson1d01a032018-04-09 10:29:37 +0100713def update_framework_current(build_id):
714 return update_framework(build_id, current_path)
Anton Hansson9709fd42018-04-03 16:52:13 +0100715
716
Alan Viverettec1c32b62017-12-20 09:40:36 -0500717def update_buildtools(target, arch, build_id):
Jeff Gaston13e38412018-02-06 14:45:36 -0500718 artifact_path = fetch_and_extract(target, build_id.url_id,
719 "sdk-repo-%s-build-tools-%s.zip" % (arch, build_id.fs_id))
Alan Viverettec1c32b62017-12-20 09:40:36 -0500720 if not artifact_path:
721 return False
722
723 top_level_dir = os.listdir(artifact_path)[0]
724 src_path = os.path.join(artifact_path, top_level_dir)
725 dst_path = path(buildtools_dir, arch)
726 mv(src_path, dst_path)
727
728 # Move all top-level files to /bin and make them executable
729 bin_path = path(dst_path, 'bin')
730 top_level_files = filter(lambda e: os.path.isfile(path(dst_path, e)), os.listdir(dst_path))
731 for file in top_level_files:
732 src_file = path(dst_path, file)
733 dst_file = path(bin_path, file)
734 mv(src_file, dst_file)
735 os.chmod(dst_file, 0o755)
736
737 # Remove renderscript
738 rm(path(dst_path, 'renderscript'))
739
740 return True
741
742
Alan Viverettecd3de262017-08-14 09:51:30 -0400743def append(text, more_text):
744 if text:
745 return "%s, %s" % (text, more_text)
746 return more_text
Alan Viverette45837092017-05-12 14:50:53 -0400747
Alan Viverette95f6d362017-04-06 09:40:50 -0400748
Jeff Gaston13e38412018-02-06 14:45:36 -0500749class buildId(object):
750 def __init__(self, url_id, fs_id):
751 # id when used in build server urls
752 self.url_id = url_id
753 # id when used in build commands
754 self.fs_id = fs_id
755
Jeff Gastonb9b09052018-02-05 14:16:05 -0500756def getBuildId(args):
Jeff Gaston13e38412018-02-06 14:45:36 -0500757 # must be in the format 12345 or P12345
Jeff Gastonb9b09052018-02-05 14:16:05 -0500758 source = args.source
Jeff Gaston13e38412018-02-06 14:45:36 -0500759 number_text = source[:]
760 presubmit = False
761 if number_text.startswith("P"):
762 presubmit = True
763 number_text = number_text[1:]
764 if not number_text.isnumeric():
Alan Viverette7e897e22018-03-09 15:24:10 -0500765 return None
Jeff Gaston13e38412018-02-06 14:45:36 -0500766 url_id = source
767 fs_id = url_id
768 if presubmit:
769 fs_id = "0"
770 args.file = False
771 return buildId(url_id, fs_id)
Jeff Gastonb9b09052018-02-05 14:16:05 -0500772
Colin Cross573e1212018-02-12 14:59:52 -0800773def getFile(args):
774 source = args.source
775 if not source.isnumeric():
776 return args.source
Alan Viverette7e897e22018-03-09 15:24:10 -0500777 return None
Colin Cross573e1212018-02-12 14:59:52 -0800778
Alan Viverette4ec9a172018-02-20 16:19:31 -0500779
780def script_relative(rel_path):
Jeff Gastona68a8d42018-03-23 14:00:13 -0400781 return os.path.join(script_dir, rel_path)
Alan Viverette4ec9a172018-02-20 16:19:31 -0500782
783
Jeff Gastoncc296a82018-03-23 14:33:24 -0400784def uncommittedChangesExist():
785 try:
786 # Make sure we don't overwrite any pending changes.
787 diffCommand = "cd " + git_dir + " && git diff --quiet"
788 subprocess.check_call(diffCommand, shell=True)
789 subprocess.check_call(diffCommand + " --cached", shell=True)
790 return False
791 except subprocess.CalledProcessError:
792 return True
793
794
Jeff Gastona7fba9b2018-03-26 23:48:51 -0400795rm(temp_dir)
Alan Viveretted4527e62017-05-11 15:03:25 -0400796parser = argparse.ArgumentParser(
Alan Viverette45837092017-05-12 14:50:53 -0400797 description=('Update current prebuilts'))
Alan Viveretted4527e62017-05-11 15:03:25 -0400798parser.add_argument(
Alan Viverette129555e2018-01-30 09:57:57 -0500799 'source',
800 help='Build server build ID or local Maven ZIP file')
801parser.add_argument(
802 '-d', '--design', action="store_true",
803 help='If specified, updates only the Design Library')
Alan Viveretted4527e62017-05-11 15:03:25 -0400804parser.add_argument(
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400805 '-m', '--material', action="store_true",
806 help='If specified, updates only the intermediate-AndroidX Design Library')
807parser.add_argument(
Alan Viverette3e57a4a2017-08-11 15:49:47 -0400808 '-c', '--constraint', action="store_true",
809 help='If specified, updates only Constraint Layout')
810parser.add_argument(
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400811 '--constraint_x', action="store_true",
812 help='If specified, updates Constraint Layout X')
813parser.add_argument(
Jeff Gaston782c3e32018-02-06 14:36:17 -0500814 '-j', '--jetifier', action="store_true",
815 help='If specified, updates only Jetifier')
816parser.add_argument(
Alan Viverette5bfe05b2017-06-06 14:21:29 -0400817 '-p', '--platform', action="store_true",
818 help='If specified, updates only the Android Platform')
Alan Viverettec1c32b62017-12-20 09:40:36 -0500819parser.add_argument(
Anton Hansson9709fd42018-04-03 16:52:13 +0100820 '-f', '--finalize_sdk', type=int,
821 help='If specified, imports the source build as the specified finalized SDK version')
822parser.add_argument(
Alan Viverettec1c32b62017-12-20 09:40:36 -0500823 '-b', '--buildtools', action="store_true",
824 help='If specified, updates only the Build Tools')
Jeff Gastoncc296a82018-03-23 14:33:24 -0400825parser.add_argument(
Jeff Gaston41fd5e62018-04-25 17:02:02 -0400826 '--stx', action="store_true",
Jeff Gaston08a2ee42018-05-07 18:08:41 -0400827 help='If specified, updates Support Library and Androidx (that is, all artifacts built from frameworks/support)')
Jeff Gaston41fd5e62018-04-25 17:02:02 -0400828parser.add_argument(
Jeff Gastoncc296a82018-03-23 14:33:24 -0400829 '--commit-first', action="store_true",
830 help='If specified, then if uncommited changes exist, commit before continuing')
Alan Viveretted4527e62017-05-11 15:03:25 -0400831args = parser.parse_args()
Jeff Gaston41fd5e62018-04-25 17:02:02 -0400832if args.stx:
Jeff Gaston26cdb232018-07-09 20:21:58 -0400833 args.androidx = True
Jeff Gaston41fd5e62018-04-25 17:02:02 -0400834else:
Jeff Gaston26cdb232018-07-09 20:21:58 -0400835 args.androidx = False
836args.support = False
Jeff Gaston56fe2762018-02-06 14:54:37 -0500837args.file = True
Alan Viverette129555e2018-01-30 09:57:57 -0500838if not args.source:
839 parser.error("You must specify a build ID or local Maven ZIP file")
Alan Viveretted4527e62017-05-11 15:03:25 -0400840 sys.exit(1)
Jeff Gaston08a2ee42018-05-07 18:08:41 -0400841if not (args.support or args.platform or args.constraint or args.buildtools \
Anton Hansson9709fd42018-04-03 16:52:13 +0100842 or args.design or args.jetifier or args.androidx or args.material \
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400843 or args.finalize_sdk or args.constraint_x):
Alan Viverettec1c32b62017-12-20 09:40:36 -0500844 parser.error("You must specify at least one target to update")
Alan Viverettecd3de262017-08-14 09:51:30 -0400845 sys.exit(1)
Jeff Gaston08a2ee42018-05-07 18:08:41 -0400846if (args.support or args.constraint or args.constraint_x or args.design or args.material or args.androidx) \
Colin Cross74683bc2018-04-11 17:36:18 -0700847 and which('pom2bp') is None:
848 parser.error("Cannot find pom2bp in path; please run lunch to set up build environment")
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500849 sys.exit(1)
Alan Viveretted4527e62017-05-11 15:03:25 -0400850
Jeff Gastoncc296a82018-03-23 14:33:24 -0400851if uncommittedChangesExist():
852 if args.commit_first:
853 subprocess.check_call("cd " + git_dir + " && git add -u", shell=True)
854 subprocess.check_call("cd " + git_dir + " && git commit -m 'save working state'", shell=True)
855
856if uncommittedChangesExist():
Anton Hansson10861a02018-04-06 13:57:08 +0100857 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 -0400858 sys.exit(1)
859
860try:
Alan Viverettecd3de262017-08-14 09:51:30 -0400861 components = None
862 if args.constraint:
Jeff Gastondb739a22018-06-26 14:12:22 -0400863 if update_constraint('studio', getBuildId(args), getFile(args)):
Alan Viverettecd3de262017-08-14 09:51:30 -0400864 components = append(components, 'Constraint Layout')
865 else:
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400866 print_e('Failed to update Constraint Layout, aborting...')
867 sys.exit(1)
868 if args.constraint_x:
869 if update_constraint_x(getFile(args)):
870 components = append(components, 'Constraint Layout X')
871 else:
872 print_e('Failed to update Constraint Layout X, aborting...')
Alan Viverettecd3de262017-08-14 09:51:30 -0400873 sys.exit(1)
874 if args.support:
Jeff Gaston17ccf8f2018-08-29 11:33:19 -0400875 if update_support('androidx', getBuildId(args), getFile(args)):
Alan Viverettecd3de262017-08-14 09:51:30 -0400876 components = append(components, 'Support Library')
877 else:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500878 print_e('Failed to update Support Library, aborting...')
Alan Viverettecd3de262017-08-14 09:51:30 -0400879 sys.exit(1)
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400880 if args.androidx:
Jeff Gaston17ccf8f2018-08-29 11:33:19 -0400881 if update_androidx('androidx', \
Jeff Gastonbbd6bfc2018-03-27 17:35:49 -0400882 getBuildId(args), getFile(args)):
883 components = append(components, 'AndroidX')
884 else:
885 print_e('Failed to update AndroidX, aborting...')
886 sys.exit(1)
Jeff Gaston782c3e32018-02-06 14:36:17 -0500887 if args.jetifier:
Jeff Gaston17ccf8f2018-08-29 11:33:19 -0400888 if update_jetifier('androidx', getBuildId(args)):
Jeff Gaston782c3e32018-02-06 14:36:17 -0500889 components = append(components, 'Jetifier')
890 else:
891 print_e('Failed to update Jetifier, aborting...')
892 sys.exit(1)
Anton Hanssonbe15e8c2018-04-26 17:35:45 +0100893 if args.platform or args.finalize_sdk:
Anton Hansson87654c42018-04-26 15:19:42 +0100894 if update_framework_current(getBuildId(args)):
Alan Viverettecd3de262017-08-14 09:51:30 -0400895 components = append(components, 'platform SDK')
896 else:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500897 print_e('Failed to update platform SDK, aborting...')
Alan Viverettecd3de262017-08-14 09:51:30 -0400898 sys.exit(1)
Anton Hansson9709fd42018-04-03 16:52:13 +0100899 if args.finalize_sdk:
Anton Hanssonbe15e8c2018-04-26 17:35:45 +0100900 n = args.finalize_sdk
901 if finalize_sdk(getBuildId(args), n):
902 # We commit the finalized dir separately from the current sdk update.
903 msg = "Import final sdk version %d from build %s" % (n, getBuildId(args).url_id)
904 subprocess.check_call(['git', 'add', '%d' % n])
Sundong Ahncc34cc32018-07-11 15:18:47 +0900905 subprocess.check_call(['git', 'add', 'Android.bp'])
Anton Hanssonbe15e8c2018-04-26 17:35:45 +0100906 subprocess.check_call(['git', 'commit', '-m', msg])
Anton Hansson9709fd42018-04-03 16:52:13 +0100907 else:
Anton Hanssonbe15e8c2018-04-26 17:35:45 +0100908 print_e('Failed to finalize SDK %d, aborting...' % n)
Anton Hansson9709fd42018-04-03 16:52:13 +0100909 sys.exit(1)
Alan Viverette129555e2018-01-30 09:57:57 -0500910 if args.design:
Colin Cross573e1212018-02-12 14:59:52 -0800911 if update_design(getFile(args)):
Alan Viverette129555e2018-01-30 09:57:57 -0500912 components = append(components, 'Design Library')
913 else:
Jeff Gaston6e7e7502018-04-04 00:22:45 -0400914 print_e('Failed to update Design Library, aborting...')
915 sys.exit(1)
916 if args.material:
917 if update_material(getFile(args)):
918 components = append(components, 'intermediate-AndroidX Design Library')
919 else:
920 print_e('Failed to update intermediate-AndroidX Design Library, aborting...')
Alan Viverette129555e2018-01-30 09:57:57 -0500921 sys.exit(1)
Alan Viverettec1c32b62017-12-20 09:40:36 -0500922 if args.buildtools:
Jeff Gastonb9b09052018-02-05 14:16:05 -0500923 if update_buildtools('sdk_phone_armv7-sdk_mac', 'darwin', getBuildId(args)) \
924 and update_buildtools('sdk_phone_x86_64-sdk', 'linux', getBuildId(args)) \
925 and update_buildtools('sdk_phone_armv7-win_sdk', 'windows', getBuildId(args)):
Alan Viverettec1c32b62017-12-20 09:40:36 -0500926 components = append(components, 'build tools')
927 else:
928 print_e('Failed to update build tools, aborting...')
929 sys.exit(1)
Jeff Gastonb70daa92018-03-29 20:10:22 -0400930
Jeff Gastonf12f3ce2018-03-23 16:41:24 -0400931
Alan Viveretted4527e62017-05-11 15:03:25 -0400932
Colin Cross941d9802018-05-03 21:37:57 -0700933 subprocess.check_call(['git', 'add', current_path, buildtools_dir])
Colin Cross573e1212018-02-12 14:59:52 -0800934 if not args.source.isnumeric():
Alan Viverette129555e2018-01-30 09:57:57 -0500935 src_msg = "local Maven ZIP"
936 else:
Jeff Gaston13e38412018-02-06 14:45:36 -0500937 src_msg = "build %s" % (getBuildId(args).url_id)
Alan Viverette129555e2018-01-30 09:57:57 -0500938 msg = "Import %s from %s\n\n%s" % (components, src_msg, flatten(sys.argv))
Alan Viveretted4527e62017-05-11 15:03:25 -0400939 subprocess.check_call(['git', 'commit', '-m', msg])
Anton Hanssonbe15e8c2018-04-26 17:35:45 +0100940 if args.finalize_sdk:
941 print('NOTE: Created two commits:')
942 subprocess.check_call(['git', 'log', '-2', '--oneline'])
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500943 print('Remember to test this change before uploading it to Gerrit!')
Alan Viveretted4527e62017-05-11 15:03:25 -0400944
945finally:
946 # Revert all stray files, including the downloaded zip.
947 try:
948 with open(os.devnull, 'w') as bitbucket:
949 subprocess.check_call(['git', 'add', '-Af', '.'], stdout=bitbucket)
950 subprocess.check_call(
Jeff Gaston9edf86c2018-04-18 13:45:23 -0400951 ['git', 'commit', '-m', 'COMMIT TO REVERT - RESET ME!!!', '--allow-empty'], stdout=bitbucket)
Alan Viveretted4527e62017-05-11 15:03:25 -0400952 subprocess.check_call(['git', 'reset', '--hard', 'HEAD~1'], stdout=bitbucket)
953 except subprocess.CalledProcessError:
Alan Viverettef5cb0e62017-11-17 15:15:23 -0500954 print_e('ERROR: Failed cleaning up, manual cleanup required!!!')