OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright 2013 The Chromium Authors. All rights reserved. | 3 # Copyright 2013 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 """Installs an APK. | 7 """Installs an APK. |
8 | 8 |
9 """ | 9 """ |
10 | 10 |
11 import optparse | 11 import optparse |
12 import os | 12 import os |
13 import re | 13 import re |
14 import sys | 14 import sys |
15 | 15 |
16 from util import build_device | 16 from util import build_device |
17 from util import build_utils | 17 from util import build_utils |
18 from util import md5_check | 18 from util import md5_check |
19 | 19 |
20 BUILD_ANDROID_DIR = os.path.join(os.path.dirname(__file__), '..') | 20 BUILD_ANDROID_DIR = os.path.join(os.path.dirname(__file__), '..') |
21 sys.path.append(BUILD_ANDROID_DIR) | 21 sys.path.append(BUILD_ANDROID_DIR) |
22 | 22 |
23 from pylib import constants | 23 from pylib import constants |
24 from pylib.utils import apk_helper | 24 from pylib.utils import apk_helper |
25 | 25 |
| 26 _DPI_TO_DENSITY = { |
| 27 120: 'ldpi', |
| 28 160: 'mdpi', |
| 29 240: 'hdpi', |
| 30 320: 'xhdpi', |
| 31 480: 'xxhdpi', |
| 32 } |
| 33 |
| 34 |
| 35 def RetrieveDeviceConfig(device): |
| 36 """Probes the given device for its split-select config. |
| 37 |
| 38 For example: en-rUS-xhdpi:armeabi-v7a |
| 39 Run "split-select --help" for more info about the format. |
| 40 """ |
| 41 language = device.GetProp('persist.sys.language') |
| 42 country = device.GetProp('persist.sys.country') |
| 43 density_dpi = int(device.GetProp('ro.sf.lcd_density')) |
| 44 density = _DPI_TO_DENSITY.get(density_dpi, 'tvdpi') |
| 45 abi = device.product_cpu_abi |
| 46 return '%s-r%s-%s:%s' % (language, country, density, abi) |
| 47 |
| 48 |
26 def GetNewMetadata(device, apk_package): | 49 def GetNewMetadata(device, apk_package): |
27 """Gets the metadata on the device for the apk_package apk.""" | 50 """Gets the metadata on the device for the apk_package apk.""" |
28 output = device.RunShellCommand('ls -l /data/app/') | 51 output = device.RunShellCommand('ls -l /data/app/') |
29 # Matches lines like: | 52 # Matches lines like: |
30 # -rw-r--r-- system system 7376582 2013-04-19 16:34 \ | 53 # -rw-r--r-- system system 7376582 2013-04-19 16:34 \ |
31 # org.chromium.chrome.shell.apk | 54 # org.chromium.chrome.shell.apk |
32 # -rw-r--r-- system system 7376582 2013-04-19 16:34 \ | 55 # -rw-r--r-- system system 7376582 2013-04-19 16:34 \ |
33 # org.chromium.chrome.shell-1.apk | 56 # org.chromium.chrome.shell-1.apk |
34 apk_matcher = lambda s: re.match('.*%s(-[0-9]*)?(.apk)?$' % apk_package, s) | 57 apk_matcher = lambda s: re.match('.*%s(-[0-9]*)?(.apk)?$' % apk_package, s) |
35 matches = filter(apk_matcher, output) | 58 matches = filter(apk_matcher, output) |
(...skipping 19 matching lines...) Expand all Loading... |
55 | 78 |
56 | 79 |
57 def main(): | 80 def main(): |
58 parser = optparse.OptionParser() | 81 parser = optparse.OptionParser() |
59 parser.add_option('--apk-path', | 82 parser.add_option('--apk-path', |
60 help='Path to .apk to install.') | 83 help='Path to .apk to install.') |
61 parser.add_option('--split-apk-path', | 84 parser.add_option('--split-apk-path', |
62 help='Path to .apk splits (can specify multiple times, causes ' | 85 help='Path to .apk splits (can specify multiple times, causes ' |
63 '--install-multiple to be used.', | 86 '--install-multiple to be used.', |
64 action='append') | 87 action='append') |
| 88 parser.add_option('--android-sdk-tools', |
| 89 help='Path to the Android SDK build tools folder. ' + |
| 90 'Required when using --split-apk-path.') |
65 parser.add_option('--install-record', | 91 parser.add_option('--install-record', |
66 help='Path to install record (touched only when APK is installed).') | 92 help='Path to install record (touched only when APK is installed).') |
67 parser.add_option('--build-device-configuration', | 93 parser.add_option('--build-device-configuration', |
68 help='Path to build device configuration.') | 94 help='Path to build device configuration.') |
69 parser.add_option('--stamp', | 95 parser.add_option('--stamp', |
70 help='Path to touch on success.') | 96 help='Path to touch on success.') |
71 parser.add_option('--configuration-name', | 97 parser.add_option('--configuration-name', |
72 help='The build CONFIGURATION_NAME') | 98 help='The build CONFIGURATION_NAME') |
73 options, _ = parser.parse_args() | 99 options, _ = parser.parse_args() |
74 | 100 |
75 device = build_device.GetBuildDeviceFromPath( | 101 device = build_device.GetBuildDeviceFromPath( |
76 options.build_device_configuration) | 102 options.build_device_configuration) |
77 if not device: | 103 if not device: |
78 return | 104 return |
79 | 105 |
80 constants.SetBuildType(options.configuration_name) | 106 constants.SetBuildType(options.configuration_name) |
81 | 107 |
82 serial_number = device.GetSerialNumber() | 108 serial_number = device.GetSerialNumber() |
83 apk_package = apk_helper.GetPackageName(options.apk_path) | 109 apk_package = apk_helper.GetPackageName(options.apk_path) |
84 | 110 |
85 metadata_path = '%s.%s.device.time.stamp' % (options.apk_path, serial_number) | 111 metadata_path = '%s.%s.device.time.stamp' % (options.apk_path, serial_number) |
86 | 112 |
87 # If the APK on the device does not match the one that was last installed by | 113 # If the APK on the device does not match the one that was last installed by |
88 # the build, then the APK has to be installed (regardless of the md5 record). | 114 # the build, then the APK has to be installed (regardless of the md5 record). |
89 force_install = HasInstallMetadataChanged(device, apk_package, metadata_path) | 115 force_install = HasInstallMetadataChanged(device, apk_package, metadata_path) |
90 | 116 |
| 117 def SelectSplits(target_config, base_apk, split_apks, android_sdk_tools): |
| 118 cmd = [os.path.join(android_sdk_tools, 'split-select'), |
| 119 '--target', target_config, |
| 120 '--base', base_apk, |
| 121 ] |
| 122 for split in split_apks: |
| 123 cmd.extend(('--split', split)) |
| 124 |
| 125 # split-select outputs one path per line and a blank line at the end. |
| 126 output = build_utils.CheckOutput(cmd) |
| 127 return [x for x in output.split('\n') if x] |
| 128 |
91 def Install(): | 129 def Install(): |
92 # TODO: Filter splits using split-select. | 130 if options.split_apk_path: |
93 active_splits = options.split_apk_path | 131 requiredSdkVersion = constants.ANDROID_SDK_VERSION_CODES.LOLLIPOP |
94 if active_splits: | 132 actualSdkVersion = device.device.build_version_sdk |
95 device.adb.InstallMultiple( | 133 if actualSdkVersion < requiredSdkVersion: |
96 [options.apk_path] + active_splits, | 134 raise Exception(('--split-apk-path requires sdk version %s. Device has ' |
97 reinstall=True) | 135 'version %s') % (requiredSdkVersion, actualSdkVersion)) |
| 136 device_config = RetrieveDeviceConfig(device.device) |
| 137 active_splits = SelectSplits( |
| 138 device_config, |
| 139 options.apk_path, |
| 140 options.split_apk_path, |
| 141 options.android_sdk_tools) |
| 142 |
| 143 all_apks = [options.apk_path] + active_splits |
| 144 device.device.adb.InstallMultiple(all_apks, reinstall=True) |
98 else: | 145 else: |
99 device.Install(options.apk_path, reinstall=True) | 146 device.Install(options.apk_path, reinstall=True) |
100 | 147 |
101 RecordInstallMetadata(device, apk_package, metadata_path) | 148 RecordInstallMetadata(device, apk_package, metadata_path) |
102 build_utils.Touch(options.install_record) | 149 build_utils.Touch(options.install_record) |
103 | 150 |
104 | 151 |
105 record_path = '%s.%s.md5.stamp' % (options.apk_path, serial_number) | 152 record_path = '%s.%s.md5.stamp' % (options.apk_path, serial_number) |
106 md5_check.CallAndRecordIfStale( | 153 md5_check.CallAndRecordIfStale( |
107 Install, | 154 Install, |
108 record_path=record_path, | 155 record_path=record_path, |
109 input_paths=[options.apk_path], | 156 input_paths=[options.apk_path], |
110 force=force_install) | 157 force=force_install) |
111 | 158 |
112 if options.stamp: | 159 if options.stamp: |
113 build_utils.Touch(options.stamp) | 160 build_utils.Touch(options.stamp) |
114 | 161 |
115 | 162 |
116 if __name__ == '__main__': | 163 if __name__ == '__main__': |
117 sys.exit(main()) | 164 sys.exit(main()) |
OLD | NEW |