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