Alan Viverette | f5cb0e6 | 2017-11-17 15:15:23 -0500 | [diff] [blame] | 1 | #!/usr/bin/python3 |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 2 | |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 3 | # 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 Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 6 | import os, sys, getopt, zipfile, re |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 7 | import argparse |
Jiyong Park | 1d1c963 | 2018-05-29 17:45:27 +0900 | [diff] [blame] | 8 | import glob |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 9 | import subprocess |
shepshapard | e4127cf | 2019-09-03 16:08:44 -0700 | [diff] [blame] | 10 | from shutil import copyfile, rmtree, which, move |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 11 | from distutils.version import LooseVersion |
Alan Viverette | f5cb0e6 | 2017-11-17 15:15:23 -0500 | [diff] [blame] | 12 | from functools import reduce |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 13 | |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 14 | current_path = 'current' |
Oussama Ben Abdelbaki | 66db0a4 | 2019-05-08 16:41:15 -0400 | [diff] [blame] | 15 | framework_sdk_target = 'sdk_phone_armv7-win_sdk' |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 16 | support_dir = os.path.join(current_path, 'support') |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 17 | androidx_dir = os.path.join(current_path, 'androidx') |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 18 | extras_dir = os.path.join(current_path, 'extras') |
Alan Viverette | c1c32b6 | 2017-12-20 09:40:36 -0500 | [diff] [blame] | 19 | buildtools_dir = 'tools' |
Jeff Gaston | 553a437 | 2018-03-29 18:34:22 -0400 | [diff] [blame] | 20 | jetifier_dir = os.path.join(buildtools_dir, 'jetifier', 'jetifier-standalone') |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 21 | |
Jeff Gaston | a68a8d4 | 2018-03-23 14:00:13 -0400 | [diff] [blame] | 22 | temp_dir = os.path.join(os.getcwd(), "support_tmp") |
| 23 | os.chdir(os.path.dirname(os.path.dirname(os.path.realpath(sys.argv[0])))) |
| 24 | git_dir = os.getcwd() |
| 25 | |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 26 | # See go/fetch_artifact for details on this script. |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 27 | FETCH_ARTIFACT = '/google/data/ro/projects/android/fetch_artifact' |
| 28 | |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 29 | maven_to_make = { |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 30 | # Support Library |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 31 | '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 Viverette | 7bb86da | 2018-02-21 18:29:02 -0500 | [diff] [blame] | 63 | |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 64 | # Support Library (28.0.0 splits + new modules) |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 65 | '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 Viverette | 19ecd50 | 2018-01-05 13:52:16 -0500 | [diff] [blame] | 89 | |
| 90 | # Multidex |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 91 | '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 Viverette | 19ecd50 | 2018-01-05 13:52:16 -0500 | [diff] [blame] | 93 | |
| 94 | # Constraint Layout |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 95 | '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 Viverette | 19ecd50 | 2018-01-05 13:52:16 -0500 | [diff] [blame] | 97 | |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 98 | # Architecture Components |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 99 | '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 Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 118 | |
| 119 | # AndroidX |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 120 | '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 Gaston | 07a3cf7 | 2018-08-24 14:16:34 -0400 | [diff] [blame] | 123 | '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 Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 125 | '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 Liutikas | abaa49f | 2018-09-18 15:30:20 -0700 | [diff] [blame] | 127 | 'androidx.activity:activity': {'name':'androidx.activity_activity', 'path':'androidx/activity/activity'}, |
Nate Myren | 1fa4716 | 2019-11-12 11:28:06 -0800 | [diff] [blame] | 128 | 'androidx.activity:activity-ktx': {'name':'androidx.activity_activity-ktx', 'path':'androidx/activity/activity-ktx'}, |
Tony Mak | 0f65875 | 2019-07-19 11:11:05 +0100 | [diff] [blame] | 129 | 'androidx.annotation:annotation': {'name':'androidx.annotation_annotation', 'path':'androidx/annotation/annotation', 'host_and_device' : True}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 130 | 'androidx.asynclayoutinflater:asynclayoutinflater': {'name':'androidx.asynclayoutinflater_asynclayoutinflater', 'path':'androidx/asynclayoutinflater/asynclayoutinflater'}, |
| 131 | 'androidx.car:car': {'name':'androidx.car_car', 'path':'androidx/car/car'}, |
Roberto Perez | 804fbb4 | 2018-09-10 17:58:11 -0700 | [diff] [blame] | 132 | 'androidx.car:car-cluster': {'name':'androidx.car_car-cluster', 'path':'androidx/car/car-cluster'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 133 | 'androidx.collection:collection': {'name':'androidx.collection_collection', 'path':'androidx/collection/collection'}, |
Nate Myren | 1fa4716 | 2019-11-12 11:28:06 -0800 | [diff] [blame] | 134 | 'androidx.collection:collection-ktx': {'name':'androidx.collection_collection-ktx', 'path':'androidx/collection/collection-ktx'}, |
Aurimas Liutikas | d912476 | 2018-09-28 15:31:35 -0700 | [diff] [blame] | 135 | 'androidx.concurrent:concurrent-futures': {'name':'androidx.concurrent_concurrent-futures', 'path':'androidx/concurrent/concurrent-futures'}, |
Aurimas Liutikas | 8af28d3 | 2019-06-06 14:04:01 -0700 | [diff] [blame] | 136 | 'androidx.concurrent:concurrent-listenablefuture-callback': {'name':'androidx.concurrent_concurrent-listenablefuture-callback', 'path':'androidx/concurrent/concurrent-listenablefuture-callback'}, |
| 137 | 'androidx.concurrent:concurrent-listenablefuture': {'name':'androidx.concurrent_concurrent-listenablefuture', 'path':'androidx/concurrent/concurrent-listenablefuture'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 138 | 'androidx.core:core': {'name':'androidx.core_core', 'path':'androidx/core/core'}, |
Nate Myren | 1fa4716 | 2019-11-12 11:28:06 -0800 | [diff] [blame] | 139 | 'androidx.core:core-ktx': {'name':'androidx.core_core-ktx', 'path':'androidx/core/core-ktx'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 140 | 'androidx.contentpaging:contentpaging': {'name':'androidx.contentpaging_contentpaging', 'path':'androidx/contentpaging/contentpaging'}, |
| 141 | 'androidx.coordinatorlayout:coordinatorlayout': {'name':'androidx.coordinatorlayout_coordinatorlayout', 'path':'androidx/coordinatorlayout/coordinatorlayout'}, |
| 142 | 'androidx.legacy:legacy-support-core-ui': {'name':'androidx.legacy_legacy-support-core-ui', 'path':'androidx/legacy/legacy-support-core-ui'}, |
| 143 | 'androidx.legacy:legacy-support-core-utils': {'name':'androidx.legacy_legacy-support-core-utils', 'path':'androidx/legacy/legacy-support-core-utils'}, |
| 144 | 'androidx.cursoradapter:cursoradapter': {'name':'androidx.cursoradapter_cursoradapter', 'path':'androidx/cursoradapter/cursoradapter'}, |
| 145 | 'androidx.browser:browser': {'name':'androidx.browser_browser', 'path':'androidx/browser/browser'}, |
| 146 | 'androidx.customview:customview': {'name':'androidx.customview_customview', 'path':'androidx/customview/customview'}, |
| 147 | 'androidx.documentfile:documentfile': {'name':'androidx.documentfile_documentfile', 'path':'androidx/documentfile/documentfile'}, |
| 148 | 'androidx.drawerlayout:drawerlayout': {'name':'androidx.drawerlayout_drawerlayout', 'path':'androidx/drawerlayout/drawerlayout'}, |
| 149 | 'androidx.dynamicanimation:dynamicanimation': {'name':'androidx.dynamicanimation_dynamicanimation', 'path':'androidx/dynamicanimation/dynamicanimation'}, |
| 150 | 'androidx.emoji:emoji': {'name':'androidx.emoji_emoji', 'path':'androidx/emoji/emoji'}, |
| 151 | 'androidx.emoji:emoji-appcompat': {'name':'androidx.emoji_emoji-appcompat', 'path':'androidx/emoji/emoji-appcompat'}, |
| 152 | 'androidx.emoji:emoji-bundled': {'name':'androidx.emoji_emoji-bundled', 'path':'androidx/emoji/emoji-bundled'}, |
| 153 | 'androidx.exifinterface:exifinterface': {'name':'androidx.exifinterface_exifinterface', 'path':'androidx/exifinterface/exifinterface'}, |
| 154 | 'androidx.fragment:fragment': {'name':'androidx.fragment_fragment', 'path':'androidx/fragment/fragment'}, |
Nate Myren | 1fa4716 | 2019-11-12 11:28:06 -0800 | [diff] [blame] | 155 | 'androidx.fragment:fragment-ktx': {'name':'androidx.fragment_fragment-ktx', 'path':'androidx/fragment/fragment-ktx'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 156 | 'androidx.heifwriter:heifwriter': {'name':'androidx.heifwriter_heifwriter', 'path':'androidx/heifwriter/heifwriter'}, |
| 157 | 'androidx.interpolator:interpolator': {'name':'androidx.interpolator_interpolator', 'path':'androidx/interpolator/interpolator'}, |
| 158 | 'androidx.loader:loader': {'name':'androidx.loader_loader', 'path':'androidx/loader/loader'}, |
| 159 | 'androidx.localbroadcastmanager:localbroadcastmanager': {'name':'androidx.localbroadcastmanager_localbroadcastmanager', 'path':'androidx/localbroadcastmanager/localbroadcastmanager'}, |
| 160 | 'androidx.media:media': {'name':'androidx.media_media', 'path':'androidx/media/media'}, |
Oussama Ben Abdelbaki | 09fffcb | 2019-05-13 15:11:37 -0400 | [diff] [blame] | 161 | 'androidx.media2:media2-player': {'name':'androidx.media2_media2-player', 'path':'androidx/media2/media2-player'}, |
| 162 | 'androidx.media2:media2-session': {'name':'androidx.media2_media2-session', 'path':'androidx/media2/media2-session'}, |
| 163 | 'androidx.media2:media2-common': {'name':'androidx.media2_media2-common', 'path':'androidx/media2/media2-common'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 164 | 'androidx.media2:media2-exoplayer': {'name':'androidx.media2_media2-exoplayer', 'path':'androidx/media2/media2-exoplayer'}, |
Gyumin Sim | 1752eca | 2018-12-13 11:34:10 +0900 | [diff] [blame] | 165 | 'androidx.media2:media2-widget': {'name':'androidx.media2_media2-widget', 'path':'androidx/media2/media2-widget'}, |
Nate Myren | 1fa4716 | 2019-11-12 11:28:06 -0800 | [diff] [blame] | 166 | 'androidx.navigation:navigation-common': {'name':'androidx.navigation_navigation-common', 'path':'androidx/navigation/navigation-common'}, |
| 167 | 'androidx.navigation:navigation-common-ktx': {'name':'androidx.navigation_navigation-common-ktx', 'path':'androidx/navigation/navigation-common-ktx'}, |
| 168 | 'androidx.navigation:navigation-fragment': {'name':'androidx.navigation_navigation-fragment', 'path':'androidx/navigation/navigation-fragment'}, |
| 169 | 'androidx.navigation:navigation-fragment-ktx': {'name':'androidx.navigation_navigation-fragment-ktx', 'path':'androidx/navigation/navigation-fragment-ktx'}, |
| 170 | 'androidx.navigation:navigation-runtime': {'name':'androidx.navigation_navigation-runtime', 'path':'androidx/navigation/navigation-runtime'}, |
| 171 | 'androidx.navigation:navigation-runtime-ktx': {'name':'androidx.navigation_navigation-runtime-ktx', 'path':'androidx/navigation/navigation-runtime-ktx'}, |
| 172 | 'androidx.navigation:navigation-ui': {'name':'androidx.navigation_navigation-ui', 'path':'androidx/navigation/navigation-ui'}, |
| 173 | 'androidx.navigation:navigation-ui-ktx': {'name':'androidx.navigation_navigation-ui-ktx', 'path':'androidx/navigation/navigation-ui-ktx'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 174 | 'androidx.percentlayout:percentlayout': {'name':'androidx.percentlayout_percentlayout', 'path':'androidx/percentlayout/percentlayout'}, |
| 175 | 'androidx.print:print': {'name':'androidx.print_print', 'path':'androidx/print/print'}, |
| 176 | 'androidx.recommendation:recommendation': {'name':'androidx.recommendation_recommendation', 'path':'androidx/recommendation/recommendation'}, |
| 177 | 'androidx.recyclerview:recyclerview-selection': {'name':'androidx.recyclerview_recyclerview-selection', 'path':'androidx/recyclerview/recyclerview-selection'}, |
Oussama Ben Abdelbaki | 00f9b39 | 2019-03-18 14:45:12 -0400 | [diff] [blame] | 178 | 'androidx.savedstate:savedstate': {'name':'androidx.savedstate_savedstate', 'path':'androidx/savedstate/savedstate'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 179 | 'androidx.slidingpanelayout:slidingpanelayout': {'name':'androidx.slidingpanelayout_slidingpanelayout', 'path':'androidx/slidingpanelayout/slidingpanelayout'}, |
| 180 | 'androidx.swiperefreshlayout:swiperefreshlayout': {'name':'androidx.swiperefreshlayout_swiperefreshlayout', 'path':'androidx/swiperefreshlayout/swiperefreshlayout'}, |
| 181 | 'androidx.textclassifier:textclassifier': {'name':'androidx.textclassifier_textclassifier', 'path':'androidx/textclassifier/textclassifier'}, |
| 182 | 'androidx.transition:transition': {'name':'androidx.transition_transition', 'path':'androidx/transition/transition'}, |
| 183 | 'androidx.tvprovider:tvprovider': {'name':'androidx.tvprovider_tvprovider', 'path':'androidx/tvprovider/tvprovider'}, |
| 184 | 'androidx.legacy:legacy-support-v13': {'name':'androidx.legacy_legacy-support-v13', 'path':'androidx/legacy/legacy-support-v13'}, |
| 185 | 'androidx.legacy:legacy-preference-v14': {'name':'androidx.legacy_legacy-preference-v14', 'path':'androidx/legacy/legacy-preference-v14'}, |
| 186 | 'androidx.leanback:leanback': {'name':'androidx.leanback_leanback', 'path':'androidx/leanback/leanback'}, |
| 187 | 'androidx.leanback:leanback-preference': {'name':'androidx.leanback_leanback-preference', 'path':'androidx/leanback/leanback-preference'}, |
| 188 | 'androidx.legacy:legacy-support-v4': {'name':'androidx.legacy_legacy-support-v4', 'path':'androidx/legacy/legacy-support-v4'}, |
| 189 | 'androidx.appcompat:appcompat': {'name':'androidx.appcompat_appcompat', 'path':'androidx/appcompat/appcompat'}, |
Oussama Ben Abdelbaki | 61551b8 | 2019-02-12 15:56:27 -0500 | [diff] [blame] | 190 | 'androidx.appcompat:appcompat-resources': {'name':'androidx.appcompat_appcompat-resources', 'path':'androidx/appcompat/appcompat-resources'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 191 | 'androidx.cardview:cardview': {'name':'androidx.cardview_cardview', 'path':'androidx/cardview/cardview'}, |
| 192 | 'androidx.gridlayout:gridlayout': {'name':'androidx.gridlayout_gridlayout', 'path':'androidx/gridlayout/gridlayout'}, |
| 193 | 'androidx.mediarouter:mediarouter': {'name':'androidx.mediarouter_mediarouter', 'path':'androidx/mediarouter/mediarouter'}, |
| 194 | 'androidx.palette:palette': {'name':'androidx.palette_palette', 'path':'androidx/palette/palette'}, |
| 195 | 'androidx.preference:preference': {'name':'androidx.preference_preference', 'path':'androidx/preference/preference'}, |
| 196 | 'androidx.recyclerview:recyclerview': {'name':'androidx.recyclerview_recyclerview', 'path':'androidx/recyclerview/recyclerview'}, |
| 197 | 'androidx.vectordrawable:vectordrawable': {'name':'androidx.vectordrawable_vectordrawable', 'path':'androidx/vectordrawable/vectordrawable'}, |
| 198 | 'androidx.viewpager:viewpager': {'name':'androidx.viewpager_viewpager', 'path':'androidx/viewpager/viewpager'}, |
Fabian Kozynski | e514c12 | 2020-03-04 14:41:08 -0500 | [diff] [blame] | 199 | 'androidx.viewpager2:viewpager2': {'name':'androidx.viewpager2_viewpager2', 'path':'androidx/viewpager2/viewpager2'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 200 | 'androidx.wear:wear': {'name':'androidx.wear_wear', 'path':'androidx/wear/wear'}, |
| 201 | 'androidx.webkit:webkit': {'name':'androidx.webkit_webkit', 'path':'androidx/webkit/webkit'}, |
Kevin Chyn | b6ae85d | 2018-10-02 12:12:20 -0700 | [diff] [blame] | 202 | 'androidx.biometric:biometric': {'name':'androidx.biometric_biometric', 'path':'androidx/biometric/biometric'}, |
Adam He | 7dec9ff | 2020-01-27 14:05:45 -0800 | [diff] [blame] | 203 | 'androidx.autofill:autofill': {'name':'androidx.autofill_autofill', 'path':'androidx/autofill/autofill'}, |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 204 | |
| 205 | # AndroidX for Multidex |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 206 | 'androidx.multidex:multidex': {'name':'androidx-multidex_multidex', 'path':'androidx/multidex/multidex'}, |
| 207 | 'androidx.multidex:multidex-instrumentation': {'name':'androidx-multidex_multidex-instrumentation', 'path':'androidx/multidex/multidex-instrumentation'}, |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 208 | |
| 209 | # AndroidX for Constraint Layout |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 210 | 'androidx.constraintlayout:constraintlayout': {'name':'androidx-constraintlayout_constraintlayout', 'path':'androidx/constraintlayout/constraintlayout'}, |
| 211 | 'androidx.constraintlayout:constraintlayout-solver': {'name':'androidx-constraintlayout_constraintlayout-solver', 'path':'androidx/constraintlayout/constraintlayout-solver'}, |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 212 | |
| 213 | # AndroidX for Architecture Components |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 214 | 'androidx.arch.core:core-common': {'name':'androidx.arch.core_core-common', 'path':'androidx/arch/core/core-common'}, |
| 215 | 'androidx.arch.core:core-runtime': {'name':'androidx.arch.core_core-runtime', 'path':'androidx/arch/core/core-runtime'}, |
| 216 | 'androidx.lifecycle:lifecycle-common': {'name':'androidx.lifecycle_lifecycle-common', 'path':'androidx/lifecycle/lifecycle-common'}, |
| 217 | 'androidx.lifecycle:lifecycle-common-java8': {'name':'androidx.lifecycle_lifecycle-common-java8', 'path':'androidx/lifecycle/lifecycle-common-java8'}, |
| 218 | 'androidx.lifecycle:lifecycle-extensions': {'name':'androidx.lifecycle_lifecycle-extensions', 'path':'androidx/lifecycle/lifecycle-extensions'}, |
| 219 | 'androidx.lifecycle:lifecycle-livedata': {'name':'androidx.lifecycle_lifecycle-livedata', 'path':'androidx/lifecycle/lifecycle-livedata'}, |
Nate Myren | 1fa4716 | 2019-11-12 11:28:06 -0800 | [diff] [blame] | 220 | 'androidx.lifecycle:lifecycle-livedata-ktx': {'name':'androidx.lifecycle_lifecycle-livedata-ktx', 'path':'androidx/lifecycle/lifecycle-livedata-ktx'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 221 | 'androidx.lifecycle:lifecycle-livedata-core': {'name':'androidx.lifecycle_lifecycle-livedata-core', 'path':'androidx/lifecycle/lifecycle-livedata-core'}, |
Nate Myren | 1fa4716 | 2019-11-12 11:28:06 -0800 | [diff] [blame] | 222 | 'androidx.lifecycle:lifecycle-livedata-core-ktx': {'name':'androidx.lifecycle_lifecycle-livedata-core-ktx', 'path':'androidx/lifecycle/lifecycle-livedata-core-ktx'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 223 | 'androidx.lifecycle:lifecycle-process': {'name':'androidx.lifecycle_lifecycle-process', 'path':'androidx/lifecycle/lifecycle-process'}, |
| 224 | 'androidx.lifecycle:lifecycle-runtime': {'name':'androidx.lifecycle_lifecycle-runtime', 'path':'androidx/lifecycle/lifecycle-runtime'}, |
Nate Myren | 1fa4716 | 2019-11-12 11:28:06 -0800 | [diff] [blame] | 225 | 'androidx.lifecycle:lifecycle-runtime-ktx': {'name':'androidx.lifecycle_lifecycle-runtime-ktx', 'path':'androidx/lifecycle/lifecycle-runtime-ktx'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 226 | 'androidx.lifecycle:lifecycle-service': {'name':'androidx.lifecycle_lifecycle-service', 'path':'androidx/lifecycle/lifecycle-service'}, |
| 227 | 'androidx.lifecycle:lifecycle-viewmodel': {'name':'androidx.lifecycle_lifecycle-viewmodel', 'path':'androidx/lifecycle/lifecycle-viewmodel'}, |
Nate Myren | 1fa4716 | 2019-11-12 11:28:06 -0800 | [diff] [blame] | 228 | 'androidx.lifecycle:lifecycle-viewmodel-ktx': {'name':'androidx.lifecycle_lifecycle-viewmodel-ktx', 'path':'androidx/lifecycle/lifecycle-viewmodel-ktx'}, |
Aurimas Liutikas | b5836e2 | 2019-09-06 09:00:45 -0700 | [diff] [blame] | 229 | 'androidx.lifecycle:lifecycle-viewmodel-savedstate': {'name':'androidx.lifecycle_lifecycle-viewmodel-savedstate', 'path':'androidx/lifecycle/lifecycle-viewmodel-savedstate'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 230 | 'androidx.paging:paging-common': {'name':'androidx.paging_paging-common', 'path':'androidx/paging/paging-common'}, |
Aurimas Liutikas | b5836e2 | 2019-09-06 09:00:45 -0700 | [diff] [blame] | 231 | 'androidx.paging:paging-common-ktx': {'name':'androidx.paging_paging-common-ktx', 'path':'androidx/paging/paging-common-ktx'}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 232 | 'androidx.paging:paging-runtime': {'name':'androidx.paging_paging-runtime', 'path':'androidx/paging/paging-runtime'}, |
| 233 | 'androidx.sqlite:sqlite': {'name':'androidx.sqlite_sqlite', 'path':'androidx/sqlite/sqlite'}, |
| 234 | 'androidx.sqlite:sqlite-framework': {'name':'androidx.sqlite_sqlite-framework', 'path':'androidx/sqlite/sqlite-framework'}, |
Tony Mak | 0f65875 | 2019-07-19 11:11:05 +0100 | [diff] [blame] | 235 | 'androidx.room:room-common': {'name':'androidx.room_room-common', 'path':'androidx/room/room-common', 'host_and_device' : True}, |
| 236 | 'androidx.room:room-compiler': {'name':'androidx.room_room-compiler', 'path':'androidx/room/room-compiler', 'host' : True}, |
| 237 | 'androidx.room:room-migration': {'name':'androidx.room_room-migration', 'path':'androidx/room/room-migration', 'host_and_device' : True}, |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 238 | 'androidx.room:room-runtime': {'name':'androidx.room_room-runtime', 'path':'androidx/room/room-runtime'}, |
| 239 | 'androidx.room:room-testing': {'name':'androidx.room_room-testing', 'path':'androidx/room/room-testing'}, |
Allen | ab72f01 | 2018-01-29 18:10:23 -0800 | [diff] [blame] | 240 | |
Alan Viverette | 19ecd50 | 2018-01-05 13:52:16 -0500 | [diff] [blame] | 241 | # Lifecycle |
Alan Viverette | c7e88f1 | 2018-02-13 15:29:50 -0500 | [diff] [blame] | 242 | # Missing dependencies: |
| 243 | # - auto-common |
| 244 | # - javapoet |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 245 | #'android.arch.lifecycle:compiler': {'name':'android-arch-lifecycle-compiler', 'path':'arch-lifecycle/compiler'}, |
Alan Viverette | c7e88f1 | 2018-02-13 15:29:50 -0500 | [diff] [blame] | 246 | # Missing dependencies: |
| 247 | # - reactive-streams |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 248 | #'android.arch.lifecycle:reactivestreams': 'android-arch-lifecycle-reactivestreams','arch-lifecycle/reactivestreams', |
Allen | ab72f01 | 2018-01-29 18:10:23 -0800 | [diff] [blame] | 249 | |
Alan Viverette | 19ecd50 | 2018-01-05 13:52:16 -0500 | [diff] [blame] | 250 | # Room |
Alan Viverette | c7e88f1 | 2018-02-13 15:29:50 -0500 | [diff] [blame] | 251 | # Missing dependencies: |
| 252 | # - auto-common |
| 253 | # - javapoet |
| 254 | # - antlr4 |
| 255 | # - kotlin-metadata |
| 256 | # - commons-codec |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 257 | #'android.arch.persistence.room:compiler': {'name':'android-arch-room-compiler', 'path':'arch-room/compiler'}, |
Alan Viverette | c7e88f1 | 2018-02-13 15:29:50 -0500 | [diff] [blame] | 258 | # Missing dependencies: |
| 259 | # - rxjava |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 260 | #'android.arch.persistence.room:rxjava2': {'name':'android-arch-room-rxjava2', 'path':'arch-room/rxjava2'}, |
Allen | ab72f01 | 2018-01-29 18:10:23 -0800 | [diff] [blame] | 261 | |
Jeff Gaston | 6e7e750 | 2018-04-04 00:22:45 -0400 | [diff] [blame] | 262 | # Third-party dependencies |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 263 | 'com.google.android:flexbox': {'name':'flexbox', 'path':'flexbox'}, |
Jeff Gaston | 6e7e750 | 2018-04-04 00:22:45 -0400 | [diff] [blame] | 264 | |
| 265 | # Support Library Material Design Components |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 266 | 'com.android.support:design': {'name':'android-support-design', 'path':'design'}, |
| 267 | 'com.android.support:design-animation': {'name':'android-support-design-animation', 'path':'design-animation'}, |
| 268 | 'com.android.support:design-bottomnavigation': {'name':'android-support-design-bottomnavigation', 'path':'design-bottomnavigation'}, |
| 269 | 'com.android.support:design-bottomsheet': {'name':'android-support-design-bottomsheet', 'path':'design-bottomsheet'}, |
| 270 | 'com.android.support:design-button': {'name':'android-support-design-button', 'path':'design-button'}, |
| 271 | 'com.android.support:design-canvas': {'name':'android-support-design-canvas', 'path':'design-canvas'}, |
| 272 | 'com.android.support:design-card': {'name':'android-support-design-card', 'path':'design-card'}, |
| 273 | 'com.android.support:design-chip': {'name':'android-support-design-chip', 'path':'design-chip'}, |
| 274 | 'com.android.support:design-circularreveal': {'name':'android-support-design-circularreveal', 'path':'design-circularreveal'}, |
| 275 | 'com.android.support:design-circularreveal-cardview': {'name':'android-support-design-circularreveal-cardview', 'path':'design-circularreveal-cardview'}, |
| 276 | 'com.android.support:design-circularreveal-coordinatorlayout': {'name':'android-support-design-circularreveal-coordinatorlayout', 'path':'design-circularreveal-coordinatorlayout'}, |
| 277 | 'com.android.support:design-color': {'name':'android-support-design-color', 'path':'design-color'}, |
| 278 | 'com.android.support:design-dialog': {'name':'android-support-design-dialog', 'path':'design-dialog'}, |
| 279 | 'com.android.support:design-drawable': {'name':'android-support-design-drawable', 'path':'design-drawable'}, |
| 280 | 'com.android.support:design-expandable': {'name':'android-support-design-expandable', 'path':'design-expandable'}, |
| 281 | 'com.android.support:design-floatingactionbutton': {'name':'android-support-design-floatingactionbutton', 'path':'design-floatingactionbutton'}, |
| 282 | 'com.android.support:design-internal': {'name':'android-support-design-internal', 'path':'design-internal'}, |
| 283 | 'com.android.support:design-math': {'name':'android-support-design-math', 'path':'design-math'}, |
| 284 | 'com.android.support:design-resources': {'name':'android-support-design-resources', 'path':'design-resources'}, |
| 285 | 'com.android.support:design-ripple': {'name':'android-support-design-ripple', 'path':'design-ripple'}, |
| 286 | 'com.android.support:design-snackbar': {'name':'android-support-design-snackbar', 'path':'design-snackbar'}, |
| 287 | 'com.android.support:design-stateful': {'name':'android-support-design-stateful', 'path':'design-stateful'}, |
| 288 | 'com.android.support:design-textfield': {'name':'android-support-design-textfield', 'path':'design-textfield'}, |
| 289 | 'com.android.support:design-theme': {'name':'android-support-design-theme', 'path':'design-theme'}, |
| 290 | 'com.android.support:design-transformation': {'name':'android-support-design-transformation', 'path':'design-transformation'}, |
| 291 | 'com.android.support:design-typography': {'name':'android-support-design-typography', 'path':'design-typography'}, |
| 292 | 'com.android.support:design-widget': {'name':'android-support-design-widget', 'path':'design-widget'}, |
| 293 | 'com.android.support:design-navigation': {'name':'android-support-design-navigation', 'path':'design-navigation'}, |
| 294 | 'com.android.support:design-tabs': {'name':'android-support-design-tabs', 'path':'design-tabs'}, |
| 295 | 'com.android.support:design-bottomappbar': {'name':'android-support-design-bottomappbar', 'path':'design-bottomappbar'}, |
| 296 | 'com.android.support:design-shape': {'name':'android-support-design-shape', 'path':'design-shape'}, |
Alan Viverette | a59082b | 2018-02-22 10:27:46 -0500 | [diff] [blame] | 297 | |
Jeff Gaston | fa7c7e8 | 2018-04-06 13:35:48 -0400 | [diff] [blame] | 298 | # Androidx Material Design Components |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 299 | 'com.google.android.material:material': {'name':'com.google.android.material_material', 'path':'com/google/android/material/material'}, |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | # Always remove these files. |
| 303 | blacklist_files = [ |
| 304 | 'annotations.zip', |
| 305 | 'public.txt', |
| 306 | 'R.txt', |
Alan Viverette | 44ad4e4 | 2017-08-09 17:45:00 -0400 | [diff] [blame] | 307 | 'AndroidManifest.xml', |
Alan Viverette | f48d9b4 | 2017-08-17 14:45:46 -0400 | [diff] [blame] | 308 | os.path.join('libs','noto-emoji-compat-java.jar') |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 309 | ] |
| 310 | |
Alan Viverette | 44ad4e4 | 2017-08-09 17:45:00 -0400 | [diff] [blame] | 311 | artifact_pattern = re.compile(r"^(.+?)-(\d+\.\d+\.\d+(?:-\w+\d+)?(?:-[\d.]+)*)\.(jar|aar)$") |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 312 | |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 313 | |
| 314 | class MavenLibraryInfo: |
Jeff Gaston | c302bb9 | 2018-03-23 13:53:48 -0400 | [diff] [blame] | 315 | def __init__(self, key, group_id, artifact_id, version, dir, repo_dir, file): |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 316 | self.key = key |
| 317 | self.group_id = group_id |
| 318 | self.artifact_id = artifact_id |
| 319 | self.version = version |
Jeff Gaston | c302bb9 | 2018-03-23 13:53:48 -0400 | [diff] [blame] | 320 | self.dir = dir |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 321 | self.repo_dir = repo_dir |
| 322 | self.file = file |
| 323 | |
| 324 | |
Alan Viverette | f5cb0e6 | 2017-11-17 15:15:23 -0500 | [diff] [blame] | 325 | def print_e(*args, **kwargs): |
| 326 | print(*args, file=sys.stderr, **kwargs) |
| 327 | |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 328 | |
| 329 | def touch(fname, times=None): |
| 330 | with open(fname, 'a'): |
| 331 | os.utime(fname, times) |
| 332 | |
| 333 | |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 334 | def path(*path_parts): |
| 335 | return reduce((lambda x, y: os.path.join(x, y)), path_parts) |
| 336 | |
| 337 | |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 338 | def flatten(list): |
| 339 | return reduce((lambda x, y: "%s %s" % (x, y)), list) |
| 340 | |
| 341 | |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 342 | def rm(path): |
| 343 | if os.path.isdir(path): |
| 344 | rmtree(path) |
| 345 | elif os.path.exists(path): |
| 346 | os.remove(path) |
| 347 | |
| 348 | |
| 349 | def mv(src_path, dst_path): |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 350 | if os.path.exists(dst_path): |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 351 | rm(dst_path) |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 352 | if not os.path.exists(os.path.dirname(dst_path)): |
| 353 | os.makedirs(os.path.dirname(dst_path)) |
Jiyong Park | 1d1c963 | 2018-05-29 17:45:27 +0900 | [diff] [blame] | 354 | for f in (glob.glob(src_path)): |
| 355 | if '*' in dst_path: |
| 356 | dst = os.path.join(os.path.dirname(dst_path), os.path.basename(f)) |
| 357 | else: |
| 358 | dst = dst_path |
shepshapard | e4127cf | 2019-09-03 16:08:44 -0700 | [diff] [blame] | 359 | move(f, dst) |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 360 | |
| 361 | |
Jeff Gaston | c302bb9 | 2018-03-23 13:53:48 -0400 | [diff] [blame] | 362 | def detect_artifacts(maven_repo_dirs): |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 363 | maven_lib_info = {} |
| 364 | |
Dan Willemsen | 814152e | 2017-11-06 13:22:11 -0800 | [diff] [blame] | 365 | # Find the latest revision for each artifact, remove others |
Jeff Gaston | c302bb9 | 2018-03-23 13:53:48 -0400 | [diff] [blame] | 366 | for repo_dir in maven_repo_dirs: |
Dan Willemsen | 814152e | 2017-11-06 13:22:11 -0800 | [diff] [blame] | 367 | for root, dirs, files in os.walk(repo_dir): |
| 368 | for file in files: |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 369 | if file[-4:] == ".pom": |
| 370 | # Read the POM (hack hack hack). |
| 371 | group_id = '' |
| 372 | artifact_id = '' |
| 373 | version = '' |
| 374 | file = os.path.join(root, file) |
| 375 | with open(file) as pom_file: |
| 376 | for line in pom_file: |
| 377 | if line[:11] == ' <groupId>': |
| 378 | group_id = line[11:-11] |
| 379 | elif line[:14] == ' <artifactId>': |
| 380 | artifact_id = line[14:-14] |
| 381 | elif line[:11] == ' <version>': |
| 382 | version = line[11:-11] |
| 383 | if group_id == '' or artifact_id == '' or version == '': |
| 384 | print_e('Failed to find Maven artifact data in ' + file) |
| 385 | continue |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 386 | |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 387 | # Locate the artifact. |
| 388 | artifact_file = file[:-4] |
| 389 | if os.path.exists(artifact_file + '.jar'): |
| 390 | artifact_file = artifact_file + '.jar' |
| 391 | elif os.path.exists(artifact_file + '.aar'): |
| 392 | artifact_file = artifact_file + '.aar' |
| 393 | else: |
| 394 | print_e('Failed to find artifact for ' + artifact_file) |
| 395 | continue |
| 396 | |
| 397 | # Make relative to root. |
| 398 | artifact_file = artifact_file[len(root) + 1:] |
| 399 | |
| 400 | # Find the mapping. |
| 401 | group_artifact = group_id + ':' + artifact_id |
Jeff Gaston | 3e622ba | 2018-03-26 23:24:46 -0400 | [diff] [blame] | 402 | if group_artifact in maven_to_make: |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 403 | key = group_artifact |
Jeff Gaston | 3e622ba | 2018-03-26 23:24:46 -0400 | [diff] [blame] | 404 | elif artifact_id in maven_to_make: |
| 405 | key = artifact_id |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 406 | else: |
| 407 | print_e('Failed to find artifact mapping for ' + group_artifact) |
| 408 | continue |
| 409 | |
| 410 | # Store the latest version. |
| 411 | version = LooseVersion(version) |
| 412 | if key not in maven_lib_info \ |
| 413 | or version > maven_lib_info[key].version: |
| 414 | maven_lib_info[key] = MavenLibraryInfo(key, group_id, artifact_id, version, |
| 415 | root, repo_dir, artifact_file) |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 416 | |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 417 | return maven_lib_info |
| 418 | |
| 419 | |
Colin Cross | 59b59db | 2018-04-24 13:58:05 -0700 | [diff] [blame] | 420 | def transform_maven_repos(maven_repo_dirs, transformed_dir, extract_res=True, include_static_deps=True): |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 421 | cwd = os.getcwd() |
| 422 | |
| 423 | # Use a temporary working directory. |
Jeff Gaston | c302bb9 | 2018-03-23 13:53:48 -0400 | [diff] [blame] | 424 | maven_lib_info = detect_artifacts(maven_repo_dirs) |
Jeff Gaston | a68a8d4 | 2018-03-23 14:00:13 -0400 | [diff] [blame] | 425 | working_dir = temp_dir |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 426 | |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 427 | if not maven_lib_info: |
| 428 | print_e('Failed to detect artifacts') |
| 429 | return False |
| 430 | |
Jeff Gaston | c302bb9 | 2018-03-23 13:53:48 -0400 | [diff] [blame] | 431 | # extract some files (for example, AndroidManifest.xml) from any relevant artifacts |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 432 | for info in maven_lib_info.values(): |
Alan Viverette | d8ce722 | 2017-12-11 17:24:43 -0500 | [diff] [blame] | 433 | transform_maven_lib(working_dir, info, extract_res) |
Dan Willemsen | 814152e | 2017-11-06 13:22:11 -0800 | [diff] [blame] | 434 | |
Colin Cross | 74683bc | 2018-04-11 17:36:18 -0700 | [diff] [blame] | 435 | # generate a single Android.bp that specifies to use all of the above artifacts |
| 436 | makefile = os.path.join(working_dir, 'Android.bp') |
Alan Viverette | 4ec9a17 | 2018-02-20 16:19:31 -0500 | [diff] [blame] | 437 | with open(makefile, 'w') as f: |
Colin Cross | 74683bc | 2018-04-11 17:36:18 -0700 | [diff] [blame] | 438 | args = ["pom2bp", "-sdk-version", "current"] |
Jeff Gaston | 1cc0609 | 2018-03-28 15:51:02 -0400 | [diff] [blame] | 439 | if include_static_deps: |
| 440 | args.append("-static-deps") |
Jeff Gaston | 54868ee | 2018-04-25 19:43:35 -0400 | [diff] [blame] | 441 | rewriteNames = sorted([name for name in maven_to_make if ":" in name] + [name for name in maven_to_make if ":" not in name]) |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 442 | args.extend(["-rewrite=^" + name + "$=" + maven_to_make[name]['name'] for name in rewriteNames]) |
Jeff Gaston | 07a3cf7 | 2018-08-24 14:16:34 -0400 | [diff] [blame] | 443 | args.extend(["-rewrite=^com.squareup:javapoet$=javapoet-prebuilt-jar"]) |
Aurimas Liutikas | d912476 | 2018-09-28 15:31:35 -0700 | [diff] [blame] | 444 | args.extend(["-rewrite=^com.google.guava:listenablefuture$=guava-listenablefuture-prebuilt-jar"]) |
Tony Mak | 0f65875 | 2019-07-19 11:11:05 +0100 | [diff] [blame] | 445 | args.extend(["-rewrite=^sqlite-jdbc$=xerial-sqlite-jdbc"]) |
Tony Mak | 0f65875 | 2019-07-19 11:11:05 +0100 | [diff] [blame] | 446 | args.extend(["-rewrite=^gson$=gson-prebuilt-jar"]) |
Sunny Goyal | 6667ddb | 2020-03-03 15:15:54 -0800 | [diff] [blame] | 447 | args.extend(["-rewrite=^com.intellij:annotations$=jetbrains-annotations"]) |
Paul Duffin | 44e033b | 2019-04-16 11:28:13 +0100 | [diff] [blame] | 448 | args.extend(["-extra-static-libs=android-support-car=prebuilt-android.car-stubs"]) |
Sunny Goyal | 6667ddb | 2020-03-03 15:15:54 -0800 | [diff] [blame] | 449 | args.extend(["-extra-static-libs=androidx.room_room-compiler=guava-21.0"]) |
Jeff Gaston | 07a3cf7 | 2018-08-24 14:16:34 -0400 | [diff] [blame] | 450 | args.extend(["-host=" + name for name in maven_to_make if maven_to_make[name].get('host')]) |
Tony Mak | 0f65875 | 2019-07-19 11:11:05 +0100 | [diff] [blame] | 451 | args.extend(["-host-and-device=" + name for name in maven_to_make if maven_to_make[name].get('host_and_device')]) |
Colin Cross | 2106007 | 2018-04-24 13:52:29 -0700 | [diff] [blame] | 452 | # these depend on GSON which is not in AOSP |
Tony Mak | 0f65875 | 2019-07-19 11:11:05 +0100 | [diff] [blame] | 453 | args.extend(["-exclude=android-arch-room-migration", |
Colin Cross | 2106007 | 2018-04-24 13:52:29 -0700 | [diff] [blame] | 454 | "-exclude=android-arch-room-testing"]) |
Jeff Gaston | 7ec1d8f | 2018-03-27 00:25:12 -0400 | [diff] [blame] | 455 | args.extend(["."]) |
Dan Willemsen | 814152e | 2017-11-06 13:22:11 -0800 | [diff] [blame] | 456 | subprocess.check_call(args, stdout=f, cwd=working_dir) |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 457 | |
| 458 | # Replace the old directory. |
Jeff Gaston | c302bb9 | 2018-03-23 13:53:48 -0400 | [diff] [blame] | 459 | output_dir = os.path.join(cwd, transformed_dir) |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 460 | mv(working_dir, output_dir) |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 461 | return True |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 462 | |
Jeff Gaston | c302bb9 | 2018-03-23 13:53:48 -0400 | [diff] [blame] | 463 | # moves <artifact_info> (of type MavenLibraryInfo) into the appropriate part of <working_dir> , and possibly unpacks any necessary included files |
Alan Viverette | d8ce722 | 2017-12-11 17:24:43 -0500 | [diff] [blame] | 464 | def transform_maven_lib(working_dir, artifact_info, extract_res): |
Dan Willemsen | 814152e | 2017-11-06 13:22:11 -0800 | [diff] [blame] | 465 | # Move library into working dir |
Jeff Gaston | 9edf86c | 2018-04-18 13:45:23 -0400 | [diff] [blame] | 466 | new_dir = os.path.normpath(os.path.join(working_dir, os.path.relpath(artifact_info.dir, artifact_info.repo_dir))) |
Jeff Gaston | c302bb9 | 2018-03-23 13:53:48 -0400 | [diff] [blame] | 467 | mv(artifact_info.dir, new_dir) |
Dan Willemsen | 814152e | 2017-11-06 13:22:11 -0800 | [diff] [blame] | 468 | |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 469 | matcher = artifact_pattern.match(artifact_info.file) |
| 470 | maven_lib_name = artifact_info.key |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 471 | maven_lib_vers = matcher.group(2) |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 472 | maven_lib_type = artifact_info.file[-3:] |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 473 | |
Jeff Gaston | a0bce60 | 2018-08-24 14:05:03 -0400 | [diff] [blame] | 474 | make_lib_name = maven_to_make[artifact_info.key]['name'] |
| 475 | make_dir_name = maven_to_make[artifact_info.key]['path'] |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 476 | |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 477 | artifact_file = os.path.join(new_dir, artifact_info.file) |
| 478 | |
Colin Cross | 59b59db | 2018-04-24 13:58:05 -0700 | [diff] [blame] | 479 | 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 Willemsen | 814152e | 2017-11-06 13:22:11 -0800 | [diff] [blame] | 484 | |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 485 | process_aar(artifact_file, target_dir) |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 486 | |
Colin Cross | 59b59db | 2018-04-24 13:58:05 -0700 | [diff] [blame] | 487 | 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 Willemsen | d677b60 | 2017-11-08 22:13:17 -0800 | [diff] [blame] | 490 | |
Alan Viverette | f5cb0e6 | 2017-11-17 15:15:23 -0500 | [diff] [blame] | 491 | print(maven_lib_vers, ":", maven_lib_name, "->", make_lib_name) |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 492 | |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 493 | |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 494 | def process_aar(artifact_file, target_dir): |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 495 | # Extract AAR file to target_dir. |
| 496 | with zipfile.ZipFile(artifact_file) as zip: |
| 497 | zip.extractall(target_dir) |
| 498 | |
Dan Willemsen | 814152e | 2017-11-06 13:22:11 -0800 | [diff] [blame] | 499 | # Remove classes.jar |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 500 | classes_jar = os.path.join(target_dir, "classes.jar") |
| 501 | if os.path.exists(classes_jar): |
Dan Willemsen | 814152e | 2017-11-06 13:22:11 -0800 | [diff] [blame] | 502 | os.remove(classes_jar) |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 503 | |
| 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 Viverette | f17c940 | 2017-07-19 12:57:40 -0400 | [diff] [blame] | 517 | |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 518 | def fetch_artifact(target, build_id, artifact_path): |
Jiyong Park | 1d1c963 | 2018-05-29 17:45:27 +0900 | [diff] [blame] | 519 | 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] |
Jeff Gaston | 97a9b76 | 2018-10-02 15:15:12 -0400 | [diff] [blame] | 525 | print("Running: " + ' '.join(fetch_cmd)) |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 526 | try: |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 527 | subprocess.check_output(fetch_cmd, stderr=subprocess.STDOUT) |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 528 | except subprocess.CalledProcessError: |
Jeff Gaston | 13e3841 | 2018-02-06 14:45:36 -0500 | [diff] [blame] | 529 | print_e('FAIL: Unable to retrieve %s artifact for build ID %s' % (artifact_path, build_id)) |
Alan Viverette | c1c32b6 | 2017-12-20 09:40:36 -0500 | [diff] [blame] | 530 | print_e('Please make sure you are authenticated for build server access!') |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 531 | return None |
| 532 | return artifact_path |
| 533 | |
| 534 | |
Anton Hansson | 1d01a03 | 2018-04-09 10:29:37 +0100 | [diff] [blame] | 535 | def fetch_artifacts(target, build_id, artifact_dict): |
| 536 | for artifact, target_path in artifact_dict.items(): |
| 537 | artifact_path = fetch_artifact(target, build_id.url_id, artifact) |
| 538 | if not artifact_path: |
| 539 | return False |
| 540 | mv(artifact_path, target_path) |
| 541 | return True |
| 542 | |
| 543 | |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 544 | def extract_artifact(artifact_path): |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 545 | # Unzip the repo archive into a separate directory. |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 546 | repo_dir = os.path.basename(artifact_path)[:-4] |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 547 | with zipfile.ZipFile(artifact_path) as zipFile: |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 548 | zipFile.extractall(repo_dir) |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 549 | return repo_dir |
| 550 | |
| 551 | |
Alan Viverette | 7e897e2 | 2018-03-09 15:24:10 -0500 | [diff] [blame] | 552 | def fetch_and_extract(target, build_id, file, artifact_path=None): |
| 553 | if not artifact_path: |
| 554 | artifact_path = fetch_artifact(target, build_id, file) |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 555 | if not artifact_path: |
| 556 | return None |
| 557 | return extract_artifact(artifact_path) |
| 558 | |
| 559 | |
Alan Viverette | 7e897e2 | 2018-03-09 15:24:10 -0500 | [diff] [blame] | 560 | def update_support(target, build_id, local_file): |
| 561 | if build_id: |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 562 | repo_file = 'top-of-tree-m2repository-dejetified-%s.zip' % build_id.fs_id |
Alan Viverette | 7e897e2 | 2018-03-09 15:24:10 -0500 | [diff] [blame] | 563 | repo_dir = fetch_and_extract(target, build_id.url_id, repo_file, None) |
| 564 | else: |
| 565 | repo_dir = fetch_and_extract(target, None, None, local_file) |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 566 | if not repo_dir: |
Alan Viverette | f5cb0e6 | 2017-11-17 15:15:23 -0500 | [diff] [blame] | 567 | print_e('Failed to extract Support Library repository') |
Alan Viverette | f48d9b4 | 2017-08-17 14:45:46 -0400 | [diff] [blame] | 568 | return False |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 569 | |
| 570 | # Transform the repo archive into a Makefile-compatible format. |
Colin Cross | 59b59db | 2018-04-24 13:58:05 -0700 | [diff] [blame] | 571 | return transform_maven_repos([repo_dir], support_dir, extract_res=True) |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 572 | |
Alan Viverette | 7e897e2 | 2018-03-09 15:24:10 -0500 | [diff] [blame] | 573 | |
Jeff Gaston | 08a2ee4 | 2018-05-07 18:08:41 -0400 | [diff] [blame] | 574 | def update_androidx(target, build_id, local_file): |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 575 | if build_id: |
Anthony Chen | acbb487 | 2018-07-02 11:22:48 -0700 | [diff] [blame] | 576 | repo_file = 'top-of-tree-m2repository-all-%s.zip' % build_id.fs_id |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 577 | repo_dir = fetch_and_extract(target, build_id.url_id, repo_file, None) |
| 578 | else: |
| 579 | repo_dir = fetch_and_extract(target, None, None, local_file) |
| 580 | if not repo_dir: |
| 581 | print_e('Failed to extract AndroidX repository') |
| 582 | return False |
| 583 | |
Tony Mak | 0f65875 | 2019-07-19 11:11:05 +0100 | [diff] [blame] | 584 | # Keep JavaPlugins.bp file untounched. |
| 585 | java_plugins_bp_path = os.path.join(androidx_dir, 'JavaPlugins.bp') |
| 586 | tmp_java_plugins_bp_path = os.path.join('/tmp', 'JavaPlugins.bp') |
| 587 | mv(java_plugins_bp_path, tmp_java_plugins_bp_path) |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 588 | |
Tony Mak | 0f65875 | 2019-07-19 11:11:05 +0100 | [diff] [blame] | 589 | # Transform the repo archive into a Makefile-compatible format. |
| 590 | if not transform_maven_repos([repo_dir], androidx_dir, extract_res=False): |
| 591 | return False |
| 592 | |
| 593 | # Import JavaPlugins.bp in Android.bp. |
| 594 | makefile = os.path.join(androidx_dir, 'Android.bp') |
| 595 | with open(makefile, "a+") as f: |
| 596 | f.write('\nbuild = ["JavaPlugins.bp"]\n') |
| 597 | mv(tmp_java_plugins_bp_path, java_plugins_bp_path) |
| 598 | |
| 599 | return True |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 600 | |
Jeff Gaston | 782c3e3 | 2018-02-06 14:36:17 -0500 | [diff] [blame] | 601 | def update_jetifier(target, build_id): |
| 602 | repo_file = 'jetifier-standalone.zip' |
| 603 | repo_dir = fetch_and_extract(target, build_id.url_id, repo_file) |
| 604 | if not repo_dir: |
| 605 | print_e('Failed to extract Jetifier') |
| 606 | return False |
| 607 | |
| 608 | rm(jetifier_dir) |
Jeff Gaston | 553a437 | 2018-03-29 18:34:22 -0400 | [diff] [blame] | 609 | mv(os.path.join(repo_dir, 'jetifier-standalone'), jetifier_dir) |
| 610 | os.chmod(os.path.join(jetifier_dir, 'bin', 'jetifier-standalone'), 0o755) |
Jeff Gaston | 782c3e3 | 2018-02-06 14:36:17 -0500 | [diff] [blame] | 611 | return True |
| 612 | |
Alan Viverette | 7e897e2 | 2018-03-09 15:24:10 -0500 | [diff] [blame] | 613 | |
Jeff Gaston | db739a2 | 2018-06-26 14:12:22 -0400 | [diff] [blame] | 614 | def update_constraint(target, build_id, local_file): |
| 615 | if build_id: |
| 616 | layout_dir = fetch_and_extract(target, build_id.url_id, |
| 617 | 'com.android.support.constraint-constraint-layout-%s.zip' % build_id.fs_id) |
| 618 | solver_dir = fetch_and_extract(target, build_id.url_id, |
| 619 | 'com.android.support.constraint-constraint-layout-solver-%s.zip' % build_id.fs_id) |
| 620 | if not layout_dir or not solver_dir: |
| 621 | print_e('Failed to extract Constraint Layout repositories') |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 622 | return False |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 623 | |
Jeff Gaston | db739a2 | 2018-06-26 14:12:22 -0400 | [diff] [blame] | 624 | dirs = [layout_dir, solver_dir] |
| 625 | else: |
| 626 | repo_dir = extract_artifact(local_file) |
| 627 | if not repo_dir: |
| 628 | print_e('Failed to extract Constraint Layout') |
| 629 | return False |
| 630 | dirs = [repo_dir] |
| 631 | |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 632 | # Passing False here is an inelegant solution, but it means we can replace |
| 633 | # the top-level directory without worrying about other child directories. |
Jeff Gaston | db739a2 | 2018-06-26 14:12:22 -0400 | [diff] [blame] | 634 | return transform_maven_repos(dirs, |
Alan Viverette | c960cfb | 2017-12-04 13:09:22 -0500 | [diff] [blame] | 635 | os.path.join(extras_dir, 'constraint-layout'), extract_res=False) |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 636 | |
Jeff Gaston | 9edf86c | 2018-04-18 13:45:23 -0400 | [diff] [blame] | 637 | def update_constraint_x(local_file): |
| 638 | repo_dir = extract_artifact(local_file) |
| 639 | if not repo_dir: |
| 640 | print_e('Failed to extract Constraint Layout X') |
| 641 | return False |
| 642 | return transform_maven_repos([repo_dir], os.path.join(extras_dir, 'constraint-layout-x'), extract_res=False) |
| 643 | |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 644 | |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 645 | def update_design(file): |
| 646 | design_dir = extract_artifact(file) |
| 647 | if not design_dir: |
| 648 | print_e('Failed to extract Design Library repositories') |
| 649 | return False |
| 650 | |
| 651 | # Don't bother extracting resources -- this should only be used with AAPT2. |
Jeff Gaston | c302bb9 | 2018-03-23 13:53:48 -0400 | [diff] [blame] | 652 | return transform_maven_repos([design_dir], |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 653 | os.path.join(extras_dir, 'material-design'), extract_res=False) |
| 654 | |
| 655 | |
Jeff Gaston | 6e7e750 | 2018-04-04 00:22:45 -0400 | [diff] [blame] | 656 | def update_material(file): |
| 657 | design_dir = extract_artifact(file) |
| 658 | if not design_dir: |
| 659 | print_e('Failed to extract intermediate-AndroidX Design Library repositories') |
| 660 | return False |
| 661 | |
| 662 | # Don't bother extracting resources -- this should only be used with AAPT2. |
| 663 | return transform_maven_repos([design_dir], |
| 664 | os.path.join(extras_dir, 'material-design-x'), extract_res=False) |
| 665 | |
| 666 | |
Anton Hansson | 1d01a03 | 2018-04-09 10:29:37 +0100 | [diff] [blame] | 667 | def update_framework(build_id, sdk_dir): |
Anton Hansson | 83f9217 | 2020-03-26 11:12:03 +0000 | [diff] [blame^] | 668 | api_scope_list = ['public', 'system', 'test', 'module-lib', 'system-server'] |
Sundong Ahn | 66091f2 | 2018-08-29 18:54:28 +0900 | [diff] [blame] | 669 | if sdk_dir == 'current': |
| 670 | api_scope_list.append('core') |
| 671 | |
| 672 | for api_scope in api_scope_list: |
Jiyong Park | 1d1c963 | 2018-05-29 17:45:27 +0900 | [diff] [blame] | 673 | target_dir = path(sdk_dir, api_scope) |
Sundong Ahn | 66091f2 | 2018-08-29 18:54:28 +0900 | [diff] [blame] | 674 | if api_scope == 'core': |
| 675 | artifact_to_path = {'core.current.stubs.jar': path(target_dir, 'android.jar')} |
| 676 | else: |
| 677 | artifact_to_path = {'apistubs/android/' + api_scope + '/*.jar': path(target_dir, '*')} |
Anton Hansson | 1d01a03 | 2018-04-09 10:29:37 +0100 | [diff] [blame] | 678 | |
| 679 | if not fetch_artifacts(framework_sdk_target, build_id, artifact_to_path): |
| 680 | return False |
| 681 | |
Jiyong Park | 1d1c963 | 2018-05-29 17:45:27 +0900 | [diff] [blame] | 682 | if api_scope == 'public': |
Anton Hansson | 1d01a03 | 2018-04-09 10:29:37 +0100 | [diff] [blame] | 683 | # Fetch a few artifacts from the public sdk. |
Sundong Ahn | 66091f2 | 2018-08-29 18:54:28 +0900 | [diff] [blame] | 684 | artifact = 'sdk-repo-linux-platforms-%s.zip' % build_id.fs_id |
Anton Hansson | 1d01a03 | 2018-04-09 10:29:37 +0100 | [diff] [blame] | 685 | artifact_path = fetch_artifact(framework_sdk_target, build_id.url_id, artifact) |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 686 | if not artifact_path: |
| 687 | return False |
Anton Hansson | 1d01a03 | 2018-04-09 10:29:37 +0100 | [diff] [blame] | 688 | |
| 689 | with zipfile.ZipFile(artifact_path) as zipFile: |
| 690 | for filename in ['android.jar', 'framework.aidl', 'uiautomator.jar']: |
Anton Hansson | a26e481 | 2020-03-25 12:54:39 +0000 | [diff] [blame] | 691 | matches = list(filter(lambda path: filename in path, zipFile.namelist())) |
| 692 | if len(matches) != 1: |
| 693 | print_e('Expected 1 file named \'%s\' in zip %s, found %d' % |
| 694 | (filename, zipFile.filename, len(matches))) |
| 695 | return False |
| 696 | zip_path = matches[0] |
| 697 | src_path = zipFile.extract(zip_path) |
| 698 | dst_path = path(target_dir, filename) |
| 699 | mv(src_path, dst_path) |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 700 | |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 701 | return True |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 702 | |
Sundong Ahn | cc34cc3 | 2018-07-11 15:18:47 +0900 | [diff] [blame] | 703 | def update_makefile(build_id): |
| 704 | template = '"%s",\n\ |
| 705 | "current"' |
| 706 | makefile = os.path.join(git_dir, 'Android.bp') |
| 707 | |
| 708 | with open(makefile, 'r+') as f: |
| 709 | contents = f.read().replace('"current"', template % build_id) |
| 710 | f.seek(0) |
| 711 | f.write(contents) |
| 712 | |
| 713 | return True |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 714 | |
Anton Hansson | 1d01a03 | 2018-04-09 10:29:37 +0100 | [diff] [blame] | 715 | def finalize_sdk(build_id, sdk_version): |
| 716 | target_finalize_dir = '%d' % sdk_version |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 717 | |
Sundong Ahn | 66091f2 | 2018-08-29 18:54:28 +0900 | [diff] [blame] | 718 | for api_scope in ['public', 'system', 'test']: |
| 719 | artifact_to_path = {'apistubs/android/' + api_scope + '/api/*.txt': |
| 720 | path(target_finalize_dir, api_scope, 'api', '*')} |
| 721 | |
| 722 | if not fetch_artifacts(framework_sdk_target, build_id, artifact_to_path): |
| 723 | return False |
| 724 | |
| 725 | return update_framework(build_id, target_finalize_dir) \ |
Sundong Ahn | cc34cc3 | 2018-07-11 15:18:47 +0900 | [diff] [blame] | 726 | and update_makefile(target_finalize_dir) |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 727 | |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 728 | |
Anton Hansson | 1d01a03 | 2018-04-09 10:29:37 +0100 | [diff] [blame] | 729 | def update_framework_current(build_id): |
| 730 | return update_framework(build_id, current_path) |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 731 | |
| 732 | |
Alan Viverette | c1c32b6 | 2017-12-20 09:40:36 -0500 | [diff] [blame] | 733 | def update_buildtools(target, arch, build_id): |
Jeff Gaston | 13e3841 | 2018-02-06 14:45:36 -0500 | [diff] [blame] | 734 | artifact_path = fetch_and_extract(target, build_id.url_id, |
| 735 | "sdk-repo-%s-build-tools-%s.zip" % (arch, build_id.fs_id)) |
Alan Viverette | c1c32b6 | 2017-12-20 09:40:36 -0500 | [diff] [blame] | 736 | if not artifact_path: |
| 737 | return False |
| 738 | |
| 739 | top_level_dir = os.listdir(artifact_path)[0] |
| 740 | src_path = os.path.join(artifact_path, top_level_dir) |
| 741 | dst_path = path(buildtools_dir, arch) |
| 742 | mv(src_path, dst_path) |
| 743 | |
| 744 | # Move all top-level files to /bin and make them executable |
| 745 | bin_path = path(dst_path, 'bin') |
| 746 | top_level_files = filter(lambda e: os.path.isfile(path(dst_path, e)), os.listdir(dst_path)) |
| 747 | for file in top_level_files: |
| 748 | src_file = path(dst_path, file) |
| 749 | dst_file = path(bin_path, file) |
| 750 | mv(src_file, dst_file) |
| 751 | os.chmod(dst_file, 0o755) |
| 752 | |
| 753 | # Remove renderscript |
| 754 | rm(path(dst_path, 'renderscript')) |
| 755 | |
| 756 | return True |
| 757 | |
| 758 | |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 759 | def append(text, more_text): |
| 760 | if text: |
| 761 | return "%s, %s" % (text, more_text) |
| 762 | return more_text |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 763 | |
Alan Viverette | 95f6d36 | 2017-04-06 09:40:50 -0400 | [diff] [blame] | 764 | |
Jeff Gaston | 13e3841 | 2018-02-06 14:45:36 -0500 | [diff] [blame] | 765 | class buildId(object): |
| 766 | def __init__(self, url_id, fs_id): |
| 767 | # id when used in build server urls |
| 768 | self.url_id = url_id |
| 769 | # id when used in build commands |
| 770 | self.fs_id = fs_id |
| 771 | |
Jeff Gaston | b9b0905 | 2018-02-05 14:16:05 -0500 | [diff] [blame] | 772 | def getBuildId(args): |
Jeff Gaston | 13e3841 | 2018-02-06 14:45:36 -0500 | [diff] [blame] | 773 | # must be in the format 12345 or P12345 |
Jeff Gaston | b9b0905 | 2018-02-05 14:16:05 -0500 | [diff] [blame] | 774 | source = args.source |
Jeff Gaston | 13e3841 | 2018-02-06 14:45:36 -0500 | [diff] [blame] | 775 | number_text = source[:] |
| 776 | presubmit = False |
| 777 | if number_text.startswith("P"): |
| 778 | presubmit = True |
| 779 | number_text = number_text[1:] |
| 780 | if not number_text.isnumeric(): |
Alan Viverette | 7e897e2 | 2018-03-09 15:24:10 -0500 | [diff] [blame] | 781 | return None |
Jeff Gaston | 13e3841 | 2018-02-06 14:45:36 -0500 | [diff] [blame] | 782 | url_id = source |
| 783 | fs_id = url_id |
| 784 | if presubmit: |
| 785 | fs_id = "0" |
| 786 | args.file = False |
| 787 | return buildId(url_id, fs_id) |
Jeff Gaston | b9b0905 | 2018-02-05 14:16:05 -0500 | [diff] [blame] | 788 | |
Colin Cross | 573e121 | 2018-02-12 14:59:52 -0800 | [diff] [blame] | 789 | def getFile(args): |
| 790 | source = args.source |
| 791 | if not source.isnumeric(): |
| 792 | return args.source |
Alan Viverette | 7e897e2 | 2018-03-09 15:24:10 -0500 | [diff] [blame] | 793 | return None |
Colin Cross | 573e121 | 2018-02-12 14:59:52 -0800 | [diff] [blame] | 794 | |
Alan Viverette | 4ec9a17 | 2018-02-20 16:19:31 -0500 | [diff] [blame] | 795 | |
| 796 | def script_relative(rel_path): |
Jeff Gaston | a68a8d4 | 2018-03-23 14:00:13 -0400 | [diff] [blame] | 797 | return os.path.join(script_dir, rel_path) |
Alan Viverette | 4ec9a17 | 2018-02-20 16:19:31 -0500 | [diff] [blame] | 798 | |
| 799 | |
Jeff Gaston | cc296a8 | 2018-03-23 14:33:24 -0400 | [diff] [blame] | 800 | def uncommittedChangesExist(): |
| 801 | try: |
| 802 | # Make sure we don't overwrite any pending changes. |
| 803 | diffCommand = "cd " + git_dir + " && git diff --quiet" |
| 804 | subprocess.check_call(diffCommand, shell=True) |
| 805 | subprocess.check_call(diffCommand + " --cached", shell=True) |
| 806 | return False |
| 807 | except subprocess.CalledProcessError: |
| 808 | return True |
| 809 | |
| 810 | |
Jeff Gaston | a7fba9b | 2018-03-26 23:48:51 -0400 | [diff] [blame] | 811 | rm(temp_dir) |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 812 | parser = argparse.ArgumentParser( |
Alan Viverette | 4583709 | 2017-05-12 14:50:53 -0400 | [diff] [blame] | 813 | description=('Update current prebuilts')) |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 814 | parser.add_argument( |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 815 | 'source', |
| 816 | help='Build server build ID or local Maven ZIP file') |
| 817 | parser.add_argument( |
| 818 | '-d', '--design', action="store_true", |
| 819 | help='If specified, updates only the Design Library') |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 820 | parser.add_argument( |
Jeff Gaston | 6e7e750 | 2018-04-04 00:22:45 -0400 | [diff] [blame] | 821 | '-m', '--material', action="store_true", |
| 822 | help='If specified, updates only the intermediate-AndroidX Design Library') |
| 823 | parser.add_argument( |
Alan Viverette | 3e57a4a | 2017-08-11 15:49:47 -0400 | [diff] [blame] | 824 | '-c', '--constraint', action="store_true", |
| 825 | help='If specified, updates only Constraint Layout') |
| 826 | parser.add_argument( |
Jeff Gaston | 9edf86c | 2018-04-18 13:45:23 -0400 | [diff] [blame] | 827 | '--constraint_x', action="store_true", |
| 828 | help='If specified, updates Constraint Layout X') |
| 829 | parser.add_argument( |
Jeff Gaston | 782c3e3 | 2018-02-06 14:36:17 -0500 | [diff] [blame] | 830 | '-j', '--jetifier', action="store_true", |
| 831 | help='If specified, updates only Jetifier') |
| 832 | parser.add_argument( |
Alan Viverette | 5bfe05b | 2017-06-06 14:21:29 -0400 | [diff] [blame] | 833 | '-p', '--platform', action="store_true", |
| 834 | help='If specified, updates only the Android Platform') |
Alan Viverette | c1c32b6 | 2017-12-20 09:40:36 -0500 | [diff] [blame] | 835 | parser.add_argument( |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 836 | '-f', '--finalize_sdk', type=int, |
| 837 | help='If specified, imports the source build as the specified finalized SDK version') |
| 838 | parser.add_argument( |
Alan Viverette | c1c32b6 | 2017-12-20 09:40:36 -0500 | [diff] [blame] | 839 | '-b', '--buildtools', action="store_true", |
| 840 | help='If specified, updates only the Build Tools') |
Jeff Gaston | cc296a8 | 2018-03-23 14:33:24 -0400 | [diff] [blame] | 841 | parser.add_argument( |
Jeff Gaston | 41fd5e6 | 2018-04-25 17:02:02 -0400 | [diff] [blame] | 842 | '--stx', action="store_true", |
Jeff Gaston | 08a2ee4 | 2018-05-07 18:08:41 -0400 | [diff] [blame] | 843 | help='If specified, updates Support Library and Androidx (that is, all artifacts built from frameworks/support)') |
Jeff Gaston | 41fd5e6 | 2018-04-25 17:02:02 -0400 | [diff] [blame] | 844 | parser.add_argument( |
Jeff Gaston | cc296a8 | 2018-03-23 14:33:24 -0400 | [diff] [blame] | 845 | '--commit-first', action="store_true", |
| 846 | help='If specified, then if uncommited changes exist, commit before continuing') |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 847 | args = parser.parse_args() |
Jeff Gaston | 41fd5e6 | 2018-04-25 17:02:02 -0400 | [diff] [blame] | 848 | if args.stx: |
Jeff Gaston | 26cdb23 | 2018-07-09 20:21:58 -0400 | [diff] [blame] | 849 | args.androidx = True |
Jeff Gaston | 41fd5e6 | 2018-04-25 17:02:02 -0400 | [diff] [blame] | 850 | else: |
Jeff Gaston | 26cdb23 | 2018-07-09 20:21:58 -0400 | [diff] [blame] | 851 | args.androidx = False |
| 852 | args.support = False |
Jeff Gaston | 56fe276 | 2018-02-06 14:54:37 -0500 | [diff] [blame] | 853 | args.file = True |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 854 | if not args.source: |
| 855 | parser.error("You must specify a build ID or local Maven ZIP file") |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 856 | sys.exit(1) |
Jeff Gaston | 08a2ee4 | 2018-05-07 18:08:41 -0400 | [diff] [blame] | 857 | if not (args.support or args.platform or args.constraint or args.buildtools \ |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 858 | or args.design or args.jetifier or args.androidx or args.material \ |
Jeff Gaston | 9edf86c | 2018-04-18 13:45:23 -0400 | [diff] [blame] | 859 | or args.finalize_sdk or args.constraint_x): |
Alan Viverette | c1c32b6 | 2017-12-20 09:40:36 -0500 | [diff] [blame] | 860 | parser.error("You must specify at least one target to update") |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 861 | sys.exit(1) |
Jeff Gaston | 08a2ee4 | 2018-05-07 18:08:41 -0400 | [diff] [blame] | 862 | if (args.support or args.constraint or args.constraint_x or args.design or args.material or args.androidx) \ |
Colin Cross | 74683bc | 2018-04-11 17:36:18 -0700 | [diff] [blame] | 863 | and which('pom2bp') is None: |
Louis Pullen-Freilich | 61bb70e | 2019-04-09 16:15:32 +0100 | [diff] [blame] | 864 | parser.error("Cannot find pom2bp in path; please run lunch to set up build environment. You may also need to run 'm pom2bp' if it hasn't been built already.") |
Alan Viverette | f5cb0e6 | 2017-11-17 15:15:23 -0500 | [diff] [blame] | 865 | sys.exit(1) |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 866 | |
Jeff Gaston | cc296a8 | 2018-03-23 14:33:24 -0400 | [diff] [blame] | 867 | if uncommittedChangesExist(): |
| 868 | if args.commit_first: |
| 869 | subprocess.check_call("cd " + git_dir + " && git add -u", shell=True) |
| 870 | subprocess.check_call("cd " + git_dir + " && git commit -m 'save working state'", shell=True) |
| 871 | |
| 872 | if uncommittedChangesExist(): |
Anton Hansson | 10861a0 | 2018-04-06 13:57:08 +0100 | [diff] [blame] | 873 | 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 Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 874 | sys.exit(1) |
| 875 | |
| 876 | try: |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 877 | components = None |
| 878 | if args.constraint: |
Jeff Gaston | db739a2 | 2018-06-26 14:12:22 -0400 | [diff] [blame] | 879 | if update_constraint('studio', getBuildId(args), getFile(args)): |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 880 | components = append(components, 'Constraint Layout') |
| 881 | else: |
Jeff Gaston | 9edf86c | 2018-04-18 13:45:23 -0400 | [diff] [blame] | 882 | print_e('Failed to update Constraint Layout, aborting...') |
| 883 | sys.exit(1) |
| 884 | if args.constraint_x: |
| 885 | if update_constraint_x(getFile(args)): |
| 886 | components = append(components, 'Constraint Layout X') |
| 887 | else: |
| 888 | print_e('Failed to update Constraint Layout X, aborting...') |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 889 | sys.exit(1) |
| 890 | if args.support: |
Jeff Gaston | 17ccf8f | 2018-08-29 11:33:19 -0400 | [diff] [blame] | 891 | if update_support('androidx', getBuildId(args), getFile(args)): |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 892 | components = append(components, 'Support Library') |
| 893 | else: |
Alan Viverette | f5cb0e6 | 2017-11-17 15:15:23 -0500 | [diff] [blame] | 894 | print_e('Failed to update Support Library, aborting...') |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 895 | sys.exit(1) |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 896 | if args.androidx: |
Jeff Gaston | 17ccf8f | 2018-08-29 11:33:19 -0400 | [diff] [blame] | 897 | if update_androidx('androidx', \ |
Jeff Gaston | bbd6bfc | 2018-03-27 17:35:49 -0400 | [diff] [blame] | 898 | getBuildId(args), getFile(args)): |
| 899 | components = append(components, 'AndroidX') |
| 900 | else: |
| 901 | print_e('Failed to update AndroidX, aborting...') |
| 902 | sys.exit(1) |
Jeff Gaston | 782c3e3 | 2018-02-06 14:36:17 -0500 | [diff] [blame] | 903 | if args.jetifier: |
Jeff Gaston | 17ccf8f | 2018-08-29 11:33:19 -0400 | [diff] [blame] | 904 | if update_jetifier('androidx', getBuildId(args)): |
Jeff Gaston | 782c3e3 | 2018-02-06 14:36:17 -0500 | [diff] [blame] | 905 | components = append(components, 'Jetifier') |
| 906 | else: |
| 907 | print_e('Failed to update Jetifier, aborting...') |
| 908 | sys.exit(1) |
Anton Hansson | be15e8c | 2018-04-26 17:35:45 +0100 | [diff] [blame] | 909 | if args.platform or args.finalize_sdk: |
Anton Hansson | 87654c4 | 2018-04-26 15:19:42 +0100 | [diff] [blame] | 910 | if update_framework_current(getBuildId(args)): |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 911 | components = append(components, 'platform SDK') |
| 912 | else: |
Alan Viverette | f5cb0e6 | 2017-11-17 15:15:23 -0500 | [diff] [blame] | 913 | print_e('Failed to update platform SDK, aborting...') |
Alan Viverette | cd3de26 | 2017-08-14 09:51:30 -0400 | [diff] [blame] | 914 | sys.exit(1) |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 915 | if args.finalize_sdk: |
Anton Hansson | be15e8c | 2018-04-26 17:35:45 +0100 | [diff] [blame] | 916 | n = args.finalize_sdk |
| 917 | if finalize_sdk(getBuildId(args), n): |
| 918 | # We commit the finalized dir separately from the current sdk update. |
| 919 | msg = "Import final sdk version %d from build %s" % (n, getBuildId(args).url_id) |
| 920 | subprocess.check_call(['git', 'add', '%d' % n]) |
Sundong Ahn | cc34cc3 | 2018-07-11 15:18:47 +0900 | [diff] [blame] | 921 | subprocess.check_call(['git', 'add', 'Android.bp']) |
Anton Hansson | be15e8c | 2018-04-26 17:35:45 +0100 | [diff] [blame] | 922 | subprocess.check_call(['git', 'commit', '-m', msg]) |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 923 | else: |
Anton Hansson | be15e8c | 2018-04-26 17:35:45 +0100 | [diff] [blame] | 924 | print_e('Failed to finalize SDK %d, aborting...' % n) |
Anton Hansson | 9709fd4 | 2018-04-03 16:52:13 +0100 | [diff] [blame] | 925 | sys.exit(1) |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 926 | if args.design: |
Colin Cross | 573e121 | 2018-02-12 14:59:52 -0800 | [diff] [blame] | 927 | if update_design(getFile(args)): |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 928 | components = append(components, 'Design Library') |
| 929 | else: |
Jeff Gaston | 6e7e750 | 2018-04-04 00:22:45 -0400 | [diff] [blame] | 930 | print_e('Failed to update Design Library, aborting...') |
| 931 | sys.exit(1) |
| 932 | if args.material: |
| 933 | if update_material(getFile(args)): |
| 934 | components = append(components, 'intermediate-AndroidX Design Library') |
| 935 | else: |
| 936 | print_e('Failed to update intermediate-AndroidX Design Library, aborting...') |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 937 | sys.exit(1) |
Alan Viverette | c1c32b6 | 2017-12-20 09:40:36 -0500 | [diff] [blame] | 938 | if args.buildtools: |
Jeff Gaston | b9b0905 | 2018-02-05 14:16:05 -0500 | [diff] [blame] | 939 | if update_buildtools('sdk_phone_armv7-sdk_mac', 'darwin', getBuildId(args)) \ |
| 940 | and update_buildtools('sdk_phone_x86_64-sdk', 'linux', getBuildId(args)) \ |
| 941 | and update_buildtools('sdk_phone_armv7-win_sdk', 'windows', getBuildId(args)): |
Alan Viverette | c1c32b6 | 2017-12-20 09:40:36 -0500 | [diff] [blame] | 942 | components = append(components, 'build tools') |
| 943 | else: |
| 944 | print_e('Failed to update build tools, aborting...') |
| 945 | sys.exit(1) |
Jeff Gaston | b70daa9 | 2018-03-29 20:10:22 -0400 | [diff] [blame] | 946 | |
Jeff Gaston | f12f3ce | 2018-03-23 16:41:24 -0400 | [diff] [blame] | 947 | |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 948 | |
Colin Cross | 941d980 | 2018-05-03 21:37:57 -0700 | [diff] [blame] | 949 | subprocess.check_call(['git', 'add', current_path, buildtools_dir]) |
Colin Cross | 573e121 | 2018-02-12 14:59:52 -0800 | [diff] [blame] | 950 | if not args.source.isnumeric(): |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 951 | src_msg = "local Maven ZIP" |
| 952 | else: |
Jeff Gaston | 13e3841 | 2018-02-06 14:45:36 -0500 | [diff] [blame] | 953 | src_msg = "build %s" % (getBuildId(args).url_id) |
Alan Viverette | 129555e | 2018-01-30 09:57:57 -0500 | [diff] [blame] | 954 | msg = "Import %s from %s\n\n%s" % (components, src_msg, flatten(sys.argv)) |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 955 | subprocess.check_call(['git', 'commit', '-m', msg]) |
Anton Hansson | be15e8c | 2018-04-26 17:35:45 +0100 | [diff] [blame] | 956 | if args.finalize_sdk: |
| 957 | print('NOTE: Created two commits:') |
| 958 | subprocess.check_call(['git', 'log', '-2', '--oneline']) |
Alan Viverette | f5cb0e6 | 2017-11-17 15:15:23 -0500 | [diff] [blame] | 959 | print('Remember to test this change before uploading it to Gerrit!') |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 960 | |
| 961 | finally: |
| 962 | # Revert all stray files, including the downloaded zip. |
| 963 | try: |
| 964 | with open(os.devnull, 'w') as bitbucket: |
| 965 | subprocess.check_call(['git', 'add', '-Af', '.'], stdout=bitbucket) |
| 966 | subprocess.check_call( |
Jeff Gaston | 9edf86c | 2018-04-18 13:45:23 -0400 | [diff] [blame] | 967 | ['git', 'commit', '-m', 'COMMIT TO REVERT - RESET ME!!!', '--allow-empty'], stdout=bitbucket) |
Alan Viverette | d4527e6 | 2017-05-11 15:03:25 -0400 | [diff] [blame] | 968 | subprocess.check_call(['git', 'reset', '--hard', 'HEAD~1'], stdout=bitbucket) |
| 969 | except subprocess.CalledProcessError: |
Alan Viverette | f5cb0e6 | 2017-11-17 15:15:23 -0500 | [diff] [blame] | 970 | print_e('ERROR: Failed cleaning up, manual cleanup required!!!') |