blob: 25f96cda2daaa23edcf5c77038343bbd005df4d4 [file] [log] [blame]
Colin Cross8bb10e82018-06-07 16:46:02 -07001#!/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
19from __future__ import print_function
20import argparse
21import sys
22from xml.dom import minidom
23
24
25android_ns = 'http://schemas.android.com/apk/res/android'
26
27
28def 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 Parkc08f46f2018-06-18 11:01:00 +090037def 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 Cross8bb10e82018-06-07 16:46:02 -070046def 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 Cross1b6a3cf2018-07-24 14:51:30 -070052 parser.add_argument('--library', dest='library', action='store_true',
53 help='manifest is for a static library')
Jiyong Parkc08f46f2018-06-18 11:01:00 +090054 parser.add_argument('--uses-library', dest='uses_libraries', action='append',
55 help='specify additional <uses-library> tag to add')
Colin Cross8bb10e82018-06-07 16:46:02 -070056 parser.add_argument('input', help='input AndroidManifest.xml file')
Jiyong Parkc08f46f2018-06-18 11:01:00 +090057 parser.add_argument('output', help='output AndroidManifest.xml file')
Colin Cross8bb10e82018-06-07 16:46:02 -070058 return parser.parse_args()
59
60
61def 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
70def 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
85def as_int(s):
86 try:
87 i = int(s)
88 except ValueError:
89 return s, False
90 return i, True
91
92
93def 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 Parkc08f46f2018-06-18 11:01:00 +0900120def 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 Cross1b6a3cf2018-07-24 14:51:30 -0700131def raise_min_sdk_version(doc, requested, library):
Colin Cross8bb10e82018-06-07 16:46:02 -0700132 """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 Parkc08f46f2018-06-18 11:01:00 +0900151 indent = get_indent(manifest.firstChild, 1)
Colin Cross8bb10e82018-06-07 16:46:02 -0700152 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 Cross1b6a3cf2018-07-24 14:51:30 -0700158 # Get or insert the minSdkVersion attribute. If it is already present, make
159 # sure it as least the requested value.
Colin Cross8bb10e82018-06-07 16:46:02 -0700160 min_attr = element.getAttributeNodeNS(android_ns, 'minSdkVersion')
161 if min_attr is None:
162 min_attr = doc.createAttributeNS(android_ns, 'android:minSdkVersion')
Colin Cross8bb10e82018-06-07 16:46:02 -0700163 min_attr.value = requested
Colin Cross1b6a3cf2018-07-24 14:51:30 -0700164 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 Cross8bb10e82018-06-07 16:46:02 -0700179
180
Jiyong Parkc08f46f2018-06-18 11:01:00 +0900181def 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 Cross8bb10e82018-06-07 16:46:02 -0700230def 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
236def 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 Cross1b6a3cf2018-07-24 14:51:30 -0700246 raise_min_sdk_version(doc, args.min_sdk_version, args.library)
Colin Cross8bb10e82018-06-07 16:46:02 -0700247
Jiyong Parkc08f46f2018-06-18 11:01:00 +0900248 if args.uses_libraries:
249 add_uses_libraries(doc, args.uses_libraries)
250
Colin Cross8bb10e82018-06-07 16:46:02 -0700251 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
259if __name__ == '__main__':
260 main()