| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python | 
|  | 2 | # | 
|  | 3 | # Copyright (C) 2018 The Android Open Source Project | 
|  | 4 | # | 
|  | 5 | # Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 6 | # you may not use this file except in compliance with the License. | 
|  | 7 | # You may obtain a copy of the License at | 
|  | 8 | # | 
|  | 9 | #      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 10 | # | 
|  | 11 | # Unless required by applicable law or agreed to in writing, software | 
|  | 12 | # distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 14 | # See the License for the specific language governing permissions and | 
|  | 15 | # limitations under the License. | 
|  | 16 | # | 
|  | 17 | """A tool for inserting values from the build system into a manifest.""" | 
|  | 18 |  | 
|  | 19 | from __future__ import print_function | 
|  | 20 | import argparse | 
|  | 21 | import sys | 
|  | 22 | from xml.dom import minidom | 
|  | 23 |  | 
|  | 24 |  | 
|  | 25 | android_ns = 'http://schemas.android.com/apk/res/android' | 
|  | 26 |  | 
|  | 27 |  | 
|  | 28 | def get_children_with_tag(parent, tag_name): | 
|  | 29 | children = [] | 
|  | 30 | for child in  parent.childNodes: | 
|  | 31 | if child.nodeType == minidom.Node.ELEMENT_NODE and \ | 
|  | 32 | child.tagName == tag_name: | 
|  | 33 | children.append(child) | 
|  | 34 | return children | 
|  | 35 |  | 
|  | 36 |  | 
| Jiyong Park | c08f46f | 2018-06-18 11:01:00 +0900 | [diff] [blame] | 37 | def find_child_with_attribute(element, tag_name, namespace_uri, | 
|  | 38 | attr_name, value): | 
|  | 39 | for child in get_children_with_tag(element, tag_name): | 
|  | 40 | attr = child.getAttributeNodeNS(namespace_uri, attr_name) | 
|  | 41 | if attr is not None and attr.value == value: | 
|  | 42 | return child | 
|  | 43 | return None | 
|  | 44 |  | 
|  | 45 |  | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 46 | def parse_args(): | 
|  | 47 | """Parse commandline arguments.""" | 
|  | 48 |  | 
|  | 49 | parser = argparse.ArgumentParser() | 
|  | 50 | parser.add_argument('--minSdkVersion', default='', dest='min_sdk_version', | 
|  | 51 | help='specify minSdkVersion used by the build system') | 
| Colin Cross | 1b6a3cf | 2018-07-24 14:51:30 -0700 | [diff] [blame] | 52 | parser.add_argument('--library', dest='library', action='store_true', | 
|  | 53 | help='manifest is for a static library') | 
| Jiyong Park | c08f46f | 2018-06-18 11:01:00 +0900 | [diff] [blame] | 54 | parser.add_argument('--uses-library', dest='uses_libraries', action='append', | 
|  | 55 | help='specify additional <uses-library> tag to add') | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 56 | parser.add_argument('input', help='input AndroidManifest.xml file') | 
| Jiyong Park | c08f46f | 2018-06-18 11:01:00 +0900 | [diff] [blame] | 57 | parser.add_argument('output', help='output AndroidManifest.xml file') | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 58 | return parser.parse_args() | 
|  | 59 |  | 
|  | 60 |  | 
|  | 61 | def parse_manifest(doc): | 
|  | 62 | """Get the manifest element.""" | 
|  | 63 |  | 
|  | 64 | manifest = doc.documentElement | 
|  | 65 | if manifest.tagName != 'manifest': | 
|  | 66 | raise RuntimeError('expected manifest tag at root') | 
|  | 67 | return manifest | 
|  | 68 |  | 
|  | 69 |  | 
|  | 70 | def ensure_manifest_android_ns(doc): | 
|  | 71 | """Make sure the manifest tag defines the android namespace.""" | 
|  | 72 |  | 
|  | 73 | manifest = parse_manifest(doc) | 
|  | 74 |  | 
|  | 75 | ns = manifest.getAttributeNodeNS(minidom.XMLNS_NAMESPACE, 'android') | 
|  | 76 | if ns is None: | 
|  | 77 | attr = doc.createAttributeNS(minidom.XMLNS_NAMESPACE, 'xmlns:android') | 
|  | 78 | attr.value = android_ns | 
|  | 79 | manifest.setAttributeNode(attr) | 
|  | 80 | elif ns.value != android_ns: | 
|  | 81 | raise RuntimeError('manifest tag has incorrect android namespace ' + | 
|  | 82 | ns.value) | 
|  | 83 |  | 
|  | 84 |  | 
|  | 85 | def as_int(s): | 
|  | 86 | try: | 
|  | 87 | i = int(s) | 
|  | 88 | except ValueError: | 
|  | 89 | return s, False | 
|  | 90 | return i, True | 
|  | 91 |  | 
|  | 92 |  | 
|  | 93 | def compare_version_gt(a, b): | 
|  | 94 | """Compare two SDK versions. | 
|  | 95 |  | 
|  | 96 | Compares a and b, treating codenames like 'Q' as higher | 
|  | 97 | than numerical versions like '28'. | 
|  | 98 |  | 
|  | 99 | Returns True if a > b | 
|  | 100 |  | 
|  | 101 | Args: | 
|  | 102 | a: value to compare | 
|  | 103 | b: value to compare | 
|  | 104 | Returns: | 
|  | 105 | True if a is a higher version than b | 
|  | 106 | """ | 
|  | 107 |  | 
|  | 108 | a, a_is_int = as_int(a.upper()) | 
|  | 109 | b, b_is_int = as_int(b.upper()) | 
|  | 110 |  | 
|  | 111 | if a_is_int == b_is_int: | 
|  | 112 | # Both are codenames or both are versions, compare directly | 
|  | 113 | return a > b | 
|  | 114 | else: | 
|  | 115 | # One is a codename, the other is not.  Return true if | 
|  | 116 | # b is an integer version | 
|  | 117 | return b_is_int | 
|  | 118 |  | 
|  | 119 |  | 
| Jiyong Park | c08f46f | 2018-06-18 11:01:00 +0900 | [diff] [blame] | 120 | def get_indent(element, default_level): | 
|  | 121 | indent = '' | 
|  | 122 | if element is not None and element.nodeType == minidom.Node.TEXT_NODE: | 
|  | 123 | text = element.nodeValue | 
|  | 124 | indent = text[:len(text)-len(text.lstrip())] | 
|  | 125 | if not indent or indent == '\n': | 
|  | 126 | # 1 indent = 4 space | 
|  | 127 | indent = '\n' + (' ' * default_level * 4) | 
|  | 128 | return indent | 
|  | 129 |  | 
|  | 130 |  | 
| Colin Cross | 1b6a3cf | 2018-07-24 14:51:30 -0700 | [diff] [blame] | 131 | def raise_min_sdk_version(doc, requested, library): | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 132 | """Ensure the manifest contains a <uses-sdk> tag with a minSdkVersion. | 
|  | 133 |  | 
|  | 134 | Args: | 
|  | 135 | doc: The XML document.  May be modified by this function. | 
|  | 136 | requested: The requested minSdkVersion attribute. | 
|  | 137 | Raises: | 
|  | 138 | RuntimeError: invalid manifest | 
|  | 139 | """ | 
|  | 140 |  | 
|  | 141 | manifest = parse_manifest(doc) | 
|  | 142 |  | 
|  | 143 | # Get or insert the uses-sdk element | 
|  | 144 | uses_sdk = get_children_with_tag(manifest, 'uses-sdk') | 
|  | 145 | if len(uses_sdk) > 1: | 
|  | 146 | raise RuntimeError('found multiple uses-sdk elements') | 
|  | 147 | elif len(uses_sdk) == 1: | 
|  | 148 | element = uses_sdk[0] | 
|  | 149 | else: | 
|  | 150 | element = doc.createElement('uses-sdk') | 
| Jiyong Park | c08f46f | 2018-06-18 11:01:00 +0900 | [diff] [blame] | 151 | indent = get_indent(manifest.firstChild, 1) | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 152 | manifest.insertBefore(element, manifest.firstChild) | 
|  | 153 |  | 
|  | 154 | # Insert an indent before uses-sdk to line it up with the indentation of the | 
|  | 155 | # other children of the <manifest> tag. | 
|  | 156 | manifest.insertBefore(doc.createTextNode(indent), manifest.firstChild) | 
|  | 157 |  | 
| Colin Cross | 1b6a3cf | 2018-07-24 14:51:30 -0700 | [diff] [blame] | 158 | # Get or insert the minSdkVersion attribute.  If it is already present, make | 
|  | 159 | # sure it as least the requested value. | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 160 | min_attr = element.getAttributeNodeNS(android_ns, 'minSdkVersion') | 
|  | 161 | if min_attr is None: | 
|  | 162 | min_attr = doc.createAttributeNS(android_ns, 'android:minSdkVersion') | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 163 | min_attr.value = requested | 
| Colin Cross | 1b6a3cf | 2018-07-24 14:51:30 -0700 | [diff] [blame] | 164 | element.setAttributeNode(min_attr) | 
|  | 165 | else: | 
|  | 166 | if compare_version_gt(requested, min_attr.value): | 
|  | 167 | min_attr.value = requested | 
|  | 168 |  | 
|  | 169 | # Insert the targetSdkVersion attribute if it is missing.  If it is already | 
|  | 170 | # present leave it as is. | 
|  | 171 | target_attr = element.getAttributeNodeNS(android_ns, 'targetSdkVersion') | 
|  | 172 | if target_attr is None: | 
|  | 173 | target_attr = doc.createAttributeNS(android_ns, 'android:targetSdkVersion') | 
|  | 174 | if library: | 
|  | 175 | target_attr.value = '1' | 
|  | 176 | else: | 
|  | 177 | target_attr.value = requested | 
|  | 178 | element.setAttributeNode(target_attr) | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 179 |  | 
|  | 180 |  | 
| Jiyong Park | c08f46f | 2018-06-18 11:01:00 +0900 | [diff] [blame] | 181 | def add_uses_libraries(doc, new_uses_libraries): | 
|  | 182 | """Add additional <uses-library> tags with android:required=true. | 
|  | 183 |  | 
|  | 184 | Args: | 
|  | 185 | doc: The XML document. May be modified by this function. | 
|  | 186 | new_uses_libraries: The names of libraries to be added by this function. | 
|  | 187 | Raises: | 
|  | 188 | RuntimeError: Invalid manifest | 
|  | 189 | """ | 
|  | 190 |  | 
|  | 191 | manifest = parse_manifest(doc) | 
|  | 192 | elems = get_children_with_tag(manifest, 'application') | 
|  | 193 | application = elems[0] if len(elems) == 1 else None | 
|  | 194 | if len(elems) > 1: | 
|  | 195 | raise RuntimeError('found multiple <application> tags') | 
|  | 196 | elif not elems: | 
|  | 197 | application = doc.createElement('application') | 
|  | 198 | indent = get_indent(manifest.firstChild, 1) | 
|  | 199 | first = manifest.firstChild | 
|  | 200 | manifest.insertBefore(doc.createTextNode(indent), first) | 
|  | 201 | manifest.insertBefore(application, first) | 
|  | 202 |  | 
|  | 203 | indent = get_indent(application.firstChild, 2) | 
|  | 204 |  | 
|  | 205 | last = application.lastChild | 
|  | 206 | if last is not None and last.nodeType != minidom.Node.TEXT_NODE: | 
|  | 207 | last = None | 
|  | 208 |  | 
|  | 209 | for name in new_uses_libraries: | 
|  | 210 | if find_child_with_attribute(application, 'uses-library', android_ns, | 
|  | 211 | 'name', name) is not None: | 
|  | 212 | # If the uses-library tag of the same 'name' attribute value exists, | 
|  | 213 | # respect it. | 
|  | 214 | continue | 
|  | 215 |  | 
|  | 216 | ul = doc.createElement('uses-library') | 
|  | 217 | ul.setAttributeNS(android_ns, 'android:name', name) | 
|  | 218 | ul.setAttributeNS(android_ns, 'android:required', 'true') | 
|  | 219 |  | 
|  | 220 | application.insertBefore(doc.createTextNode(indent), last) | 
|  | 221 | application.insertBefore(ul, last) | 
|  | 222 |  | 
|  | 223 | # align the closing tag with the opening tag if it's not | 
|  | 224 | # indented | 
|  | 225 | if application.lastChild.nodeType != minidom.Node.TEXT_NODE: | 
|  | 226 | indent = get_indent(application.previousSibling, 1) | 
|  | 227 | application.appendChild(doc.createTextNode(indent)) | 
|  | 228 |  | 
|  | 229 |  | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 230 | def write_xml(f, doc): | 
|  | 231 | f.write('<?xml version="1.0" encoding="utf-8"?>\n') | 
|  | 232 | for node in doc.childNodes: | 
|  | 233 | f.write(node.toxml(encoding='utf-8') + '\n') | 
|  | 234 |  | 
|  | 235 |  | 
|  | 236 | def main(): | 
|  | 237 | """Program entry point.""" | 
|  | 238 | try: | 
|  | 239 | args = parse_args() | 
|  | 240 |  | 
|  | 241 | doc = minidom.parse(args.input) | 
|  | 242 |  | 
|  | 243 | ensure_manifest_android_ns(doc) | 
|  | 244 |  | 
|  | 245 | if args.min_sdk_version: | 
| Colin Cross | 1b6a3cf | 2018-07-24 14:51:30 -0700 | [diff] [blame] | 246 | raise_min_sdk_version(doc, args.min_sdk_version, args.library) | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 247 |  | 
| Jiyong Park | c08f46f | 2018-06-18 11:01:00 +0900 | [diff] [blame] | 248 | if args.uses_libraries: | 
|  | 249 | add_uses_libraries(doc, args.uses_libraries) | 
|  | 250 |  | 
| Colin Cross | 8bb10e8 | 2018-06-07 16:46:02 -0700 | [diff] [blame] | 251 | with open(args.output, 'wb') as f: | 
|  | 252 | write_xml(f, doc) | 
|  | 253 |  | 
|  | 254 | # pylint: disable=broad-except | 
|  | 255 | except Exception as err: | 
|  | 256 | print('error: ' + str(err), file=sys.stderr) | 
|  | 257 | sys.exit(-1) | 
|  | 258 |  | 
|  | 259 | if __name__ == '__main__': | 
|  | 260 | main() |