blob: 174b7f6b7c8cdde354084381dd5e1e9f4e41562b [file] [log] [blame]
Adam Lesinski59e04c62016-02-04 15:59:23 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Adam Lesinski5bd44232017-09-07 09:39:07 -070017syntax = "proto3";
18
Adam Lesinskib58c3ef2017-09-12 17:39:52 -070019import "frameworks/base/tools/aapt2/Configuration.proto";
20
Adam Lesinski5bd44232017-09-07 09:39:07 -070021package aapt.pb;
Adam Lesinski59e04c62016-02-04 15:59:23 -080022
Adam Lesinski4ffea042017-08-10 15:37:28 -070023option java_package = "com.android.aapt";
Adam Lesinski59e04c62016-02-04 15:59:23 -080024option optimize_for = LITE_RUNTIME;
25
Adam Lesinski0c808952017-07-10 05:40:39 -070026// A string pool that wraps the binary form of the C++ class android::ResStringPool.
Adam Lesinski59e04c62016-02-04 15:59:23 -080027message StringPool {
Adam Lesinski5bd44232017-09-07 09:39:07 -070028 bytes data = 1;
Adam Lesinski59e04c62016-02-04 15:59:23 -080029}
30
Adam Lesinski4ffea042017-08-10 15:37:28 -070031// The position of a declared entity within a file.
32message SourcePosition {
Adam Lesinski5bd44232017-09-07 09:39:07 -070033 uint32 line_number = 1;
34 uint32 column_number = 2;
Adam Lesinski4ffea042017-08-10 15:37:28 -070035}
36
Adam Lesinski0c808952017-07-10 05:40:39 -070037// Developer friendly source file information for an entity in the resource table.
Adam Lesinski59e04c62016-02-04 15:59:23 -080038message Source {
Adam Lesinski0c808952017-07-10 05:40:39 -070039 // The index of the string path within the source string pool of a ResourceTable.
Adam Lesinski5bd44232017-09-07 09:39:07 -070040 uint32 path_idx = 1;
41 SourcePosition position = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -070042}
43
44// Top level message representing a resource table.
45message ResourceTable {
Adam Lesinski0c808952017-07-10 05:40:39 -070046 // The string pool containing source paths referenced throughout the resource table. This does
47 // not end up in the final binary ARSC file.
Adam Lesinski5bd44232017-09-07 09:39:07 -070048 StringPool source_pool = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -070049
50 // Resource definitions corresponding to an Android package.
Adam Lesinski4ffea042017-08-10 15:37:28 -070051 repeated Package package = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -070052}
53
Adam Lesinski5bd44232017-09-07 09:39:07 -070054// A package ID in the range [0x00, 0xff].
55message PackageId {
56 uint32 id = 1;
57}
58
Adam Lesinski0c808952017-07-10 05:40:39 -070059// Defines resources for an Android package.
60message Package {
61 // The package ID of this package, in the range [0x00, 0xff].
Adam Lesinski5bd44232017-09-07 09:39:07 -070062 // - ID 0x00 is reserved for shared libraries, or when the ID is assigned at run-time.
63 // - ID 0x01 is reserved for the 'android' package (framework).
64 // - ID range [0x02, 0x7f) is reserved for auto-assignment to shared libraries at run-time.
65 // - ID 0x7f is reserved for the application package.
66 // - IDs > 0x7f are reserved for the application as well and are treated as feature splits.
67 // This may not be set if no ID was assigned.
68 PackageId package_id = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -070069
70 // The Java compatible Android package name of the app.
Adam Lesinski5bd44232017-09-07 09:39:07 -070071 string package_name = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -070072
73 // The series of types defined by the package.
Adam Lesinski4ffea042017-08-10 15:37:28 -070074 repeated Type type = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -070075}
76
Adam Lesinski5bd44232017-09-07 09:39:07 -070077// A type ID in the range [0x01, 0xff].
78message TypeId {
79 uint32 id = 1;
80}
81
Adam Lesinski0c808952017-07-10 05:40:39 -070082// A set of resources grouped under a common type. Such types include string, layout, xml, dimen,
83// attr, etc. This maps to the second part of a resource identifier in Java (R.type.entry).
84message Type {
Adam Lesinski5bd44232017-09-07 09:39:07 -070085 // The ID of the type. This may not be set if no ID was assigned.
86 TypeId type_id = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -070087
88 // The name of the type. This corresponds to the 'type' part of a full resource name of the form
89 // package:type/entry. The set of legal type names is listed in Resource.cpp.
Adam Lesinski5bd44232017-09-07 09:39:07 -070090 string name = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -070091
92 // The entries defined for this type.
Adam Lesinski4ffea042017-08-10 15:37:28 -070093 repeated Entry entry = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -070094}
95
96// The status of a symbol/entry. This contains information like visibility (public/private),
97// comments, and whether the entry can be overridden.
98message SymbolStatus {
99 // The visibility of the resource outside of its package.
100 enum Visibility {
101 // No visibility was explicitly specified. This is typically treated as private.
102 // The distinction is important when two separate R.java files are generated: a public and
103 // private one. An unknown visibility, in this case, would cause the resource to be omitted
104 // from either R.java.
Adam Lesinski4ffea042017-08-10 15:37:28 -0700105 UNKNOWN = 0;
Adam Lesinski0c808952017-07-10 05:40:39 -0700106
107 // A resource was explicitly marked as private. This means the resource can not be accessed
108 // outside of its package unless the @*package:type/entry notation is used (the asterisk being
109 // the private accessor). If two R.java files are generated (private + public), the resource
110 // will only be emitted to the private R.java file.
Adam Lesinski4ffea042017-08-10 15:37:28 -0700111 PRIVATE = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700112
113 // A resource was explicitly marked as public. This means the resource can be accessed
114 // from any package, and is emitted into all R.java files, public and private.
Adam Lesinski4ffea042017-08-10 15:37:28 -0700115 PUBLIC = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700116 }
117
Adam Lesinski5bd44232017-09-07 09:39:07 -0700118 Visibility visibility = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700119
120 // The path at which this entry's visibility was defined (eg. public.xml).
Adam Lesinski5bd44232017-09-07 09:39:07 -0700121 Source source = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700122
123 // The comment associated with the <public> tag.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700124 string comment = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -0700125
126 // Whether the symbol can be merged into another resource table without there being an existing
127 // definition to override. Used for overlays and set to true when <add-resource> is specified.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700128 bool allow_new = 4;
129}
130
131// An entry ID in the range [0x0000, 0xffff].
132message EntryId {
133 uint32 id = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700134}
135
136// An entry declaration. An entry has a full resource ID that is the combination of package ID,
137// type ID, and its own entry ID. An entry on its own has no value, but values are defined for
138// various configurations/variants.
139message Entry {
140 // The ID of this entry. Together with the package ID and type ID, this forms a full resource ID
141 // of the form 0xPPTTEEEE, where PP is the package ID, TT is the type ID, and EEEE is the entry
142 // ID.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700143 // This may not be set if no ID was assigned.
144 EntryId entry_id = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700145
146 // The name of this entry. This corresponds to the 'entry' part of a full resource name of the
147 // form package:type/entry.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700148 string name = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700149
150 // The symbol status of this entry, which includes visibility information.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700151 SymbolStatus symbol_status = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -0700152
153 // The set of values defined for this entry, each corresponding to a different
154 // configuration/variant.
Adam Lesinski4ffea042017-08-10 15:37:28 -0700155 repeated ConfigValue config_value = 4;
Adam Lesinski0c808952017-07-10 05:40:39 -0700156}
157
158// A Configuration/Value pair.
159message ConfigValue {
Adam Lesinskib58c3ef2017-09-12 17:39:52 -0700160 Configuration config = 1;
Adam Lesinski5bd44232017-09-07 09:39:07 -0700161 Value value = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700162}
163
164// The generic meta-data for every value in a resource table.
165message Value {
166 // Where the value was defined.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700167 Source source = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700168
169 // Any comment associated with the value.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700170 string comment = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700171
172 // Whether the value can be overridden.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700173 bool weak = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -0700174
Adam Lesinski5bd44232017-09-07 09:39:07 -0700175 // The value is either an Item or a CompoundValue.
176 oneof value {
177 Item item = 4;
178 CompoundValue compound_value = 5;
179 }
Adam Lesinski0c808952017-07-10 05:40:39 -0700180}
181
182// An Item is an abstract type. It represents a value that can appear inline in many places, such
183// as XML attribute values or on the right hand side of style attribute definitions. The concrete
184// type is one of the types below. Only one can be set.
185message Item {
Adam Lesinski5bd44232017-09-07 09:39:07 -0700186 oneof value {
187 Reference ref = 1;
188 String str = 2;
189 RawString raw_str = 3;
190 StyledString styled_str = 4;
191 FileReference file = 5;
192 Id id = 6;
193 Primitive prim = 7;
194 }
Adam Lesinski0c808952017-07-10 05:40:39 -0700195}
196
197// A CompoundValue is an abstract type. It represents a value that is a made of other values.
198// These can only usually appear as top-level resources. The concrete type is one of the types
199// below. Only one can be set.
200message CompoundValue {
Adam Lesinski5bd44232017-09-07 09:39:07 -0700201 oneof value {
202 Attribute attr = 1;
203 Style style = 2;
204 Styleable styleable = 3;
205 Array array = 4;
206 Plural plural = 5;
207 }
Adam Lesinski0c808952017-07-10 05:40:39 -0700208}
209
210// A value that is a reference to another resource. This reference can be by name or resource ID.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800211message Reference {
Adam Lesinski0c808952017-07-10 05:40:39 -0700212 enum Type {
213 // A plain reference (@package:type/entry).
Adam Lesinski4ffea042017-08-10 15:37:28 -0700214 REFERENCE = 0;
Adam Lesinski0c808952017-07-10 05:40:39 -0700215
216 // A reference to a theme attribute (?package:type/entry).
Adam Lesinski4ffea042017-08-10 15:37:28 -0700217 ATTRIBUTE = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700218 }
219
Adam Lesinski5bd44232017-09-07 09:39:07 -0700220 Type type = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700221
Adam Lesinski5bd44232017-09-07 09:39:07 -0700222 // The resource ID (0xPPTTEEEE) of the resource being referred. This is optional.
223 uint32 id = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700224
Adam Lesinski5bd44232017-09-07 09:39:07 -0700225 // The name of the resource being referred. This is optional if the resource ID is set.
226 string name = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -0700227
228 // Whether this reference is referencing a private resource (@*package:type/entry).
Adam Lesinski5bd44232017-09-07 09:39:07 -0700229 bool private = 4;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800230}
231
Adam Lesinski0c808952017-07-10 05:40:39 -0700232// A value that represents an ID. This is just a placeholder, as ID values are used to occupy a
233// resource ID (0xPPTTEEEE) as a unique identifier. Their value is unimportant.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800234message Id {
235}
236
Adam Lesinski0c808952017-07-10 05:40:39 -0700237// A value that is a string.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800238message String {
Adam Lesinski5bd44232017-09-07 09:39:07 -0700239 string value = 1;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800240}
241
Adam Lesinski0c808952017-07-10 05:40:39 -0700242// A value that is a raw string, which is unescaped/uninterpreted. This is typically used to
243// represent the value of a style attribute before the attribute is compiled and the set of
244// allowed values is known.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800245message RawString {
Adam Lesinski5bd44232017-09-07 09:39:07 -0700246 string value = 1;
Adam Lesinski08535002017-08-04 16:15:17 -0700247}
248
249// A string with styling information, like html tags that specify boldness, italics, etc.
250message StyledString {
251 // The raw text of the string.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700252 string value = 1;
Adam Lesinski08535002017-08-04 16:15:17 -0700253
254 // A Span marks a region of the string text that is styled.
255 message Span {
256 // The name of the tag, and its attributes, encoded as follows:
257 // tag_name;attr1=value1;attr2=value2;[...]
Adam Lesinski5bd44232017-09-07 09:39:07 -0700258 string tag = 1;
Adam Lesinski08535002017-08-04 16:15:17 -0700259
260 // The first character position this span applies to, in UTF-16 offset.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700261 uint32 first_char = 2;
Adam Lesinski08535002017-08-04 16:15:17 -0700262
263 // The last character position this span applies to, in UTF-16 offset.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700264 uint32 last_char = 3;
Adam Lesinski08535002017-08-04 16:15:17 -0700265 }
266
267 repeated Span span = 2;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800268}
269
Adam Lesinski0c808952017-07-10 05:40:39 -0700270// A value that is a reference to an external entity, like an XML file or a PNG.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800271message FileReference {
Adam Lesinski08535002017-08-04 16:15:17 -0700272 // Path to a file within the APK (typically res/type-config/entry.ext).
Adam Lesinski5bd44232017-09-07 09:39:07 -0700273 string path = 1;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800274}
275
Adam Lesinski0c808952017-07-10 05:40:39 -0700276// A value that represents a primitive data type (float, int, boolean, etc.).
277// Corresponds to the fields (type/data) of the C struct android::Res_value.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800278message Primitive {
Adam Lesinski5bd44232017-09-07 09:39:07 -0700279 uint32 type = 1;
280 uint32 data = 2;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800281}
282
Adam Lesinski0c808952017-07-10 05:40:39 -0700283// A value that represents an XML attribute and what values it accepts.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800284message Attribute {
Adam Lesinski0c808952017-07-10 05:40:39 -0700285 // A Symbol used to represent an enum or a flag.
286 message Symbol {
287 // Where the enum/flag item was defined.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700288 Source source = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700289
290 // Any comments associated with the enum or flag.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700291 string comment = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700292
293 // The name of the enum/flag as a reference. Enums/flag items are generated as ID resource
294 // values.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700295 Reference name = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -0700296
297 // The value of the enum/flag.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700298 uint32 value = 4;
Adam Lesinski0c808952017-07-10 05:40:39 -0700299 }
300
Adam Lesinski4ffea042017-08-10 15:37:28 -0700301 // Bitmask of formats allowed for an attribute.
302 enum FormatFlags {
Adam Lesinski5bd44232017-09-07 09:39:07 -0700303 NONE = 0x0; // Proto3 requires a default of 0.
Adam Lesinski4ffea042017-08-10 15:37:28 -0700304 ANY = 0x0000ffff; // Allows any type except ENUM and FLAGS.
305 REFERENCE = 0x01; // Allows Reference values.
306 STRING = 0x02; // Allows String/StyledString values.
307 INTEGER = 0x04; // Allows any integer BinaryPrimitive values.
308 BOOLEAN = 0x08; // Allows any boolean BinaryPrimitive values.
309 COLOR = 0x010; // Allows any color BinaryPrimitive values.
310 FLOAT = 0x020; // Allows any float BinaryPrimitive values.
311 DIMENSION = 0x040; // Allows any dimension BinaryPrimitive values.
312 FRACTION = 0x080; // Allows any fraction BinaryPrimitive values.
313 ENUM = 0x00010000; // Allows enums that are defined in the Attribute's symbols.
314 // ENUM and FLAGS cannot BOTH be set.
315 FLAGS = 0x00020000; // Allows flags that are defined in the Attribute's symbols.
316 // ENUM and FLAGS cannot BOTH be set.
317 }
318
319 // A bitmask of types that this XML attribute accepts. Corresponds to the flags in the
320 // enum FormatFlags.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700321 uint32 format_flags = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700322
323 // The smallest integer allowed for this XML attribute. Only makes sense if the format includes
Adam Lesinski4ffea042017-08-10 15:37:28 -0700324 // FormatFlags::INTEGER.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700325 int32 min_int = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700326
327 // The largest integer allowed for this XML attribute. Only makes sense if the format includes
Adam Lesinski4ffea042017-08-10 15:37:28 -0700328 // FormatFlags::INTEGER.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700329 int32 max_int = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -0700330
331 // The set of enums/flags defined in this attribute. Only makes sense if the format includes
Adam Lesinski4ffea042017-08-10 15:37:28 -0700332 // either FormatFlags::ENUM or FormatFlags::FLAGS. Having both is an error.
333 repeated Symbol symbol = 4;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800334}
335
Adam Lesinski0c808952017-07-10 05:40:39 -0700336// A value that represents a style.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800337message Style {
Adam Lesinski0c808952017-07-10 05:40:39 -0700338 // An XML attribute/value pair defined in the style.
339 message Entry {
340 // Where the entry was defined.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700341 Source source = 1;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800342
Adam Lesinski0c808952017-07-10 05:40:39 -0700343 // Any comments associated with the entry.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700344 string comment = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700345
346 // A reference to the XML attribute.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700347 Reference key = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -0700348
349 // The Item defined for this XML attribute.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700350 Item item = 4;
Adam Lesinski0c808952017-07-10 05:40:39 -0700351 }
352
353 // The optinal style from which this style inherits attributes.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700354 Reference parent = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700355
356 // The source file information of the parent inheritance declaration.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700357 Source parent_source = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700358
359 // The set of XML attribute/value pairs for this style.
Adam Lesinski4ffea042017-08-10 15:37:28 -0700360 repeated Entry entry = 3;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800361}
362
Adam Lesinski0c808952017-07-10 05:40:39 -0700363// A value that represents a <declare-styleable> XML resource. These are not real resources and
364// only end up as Java fields in the generated R.java. They do not end up in the binary ARSC file.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800365message Styleable {
Adam Lesinski0c808952017-07-10 05:40:39 -0700366 // An attribute defined for this styleable.
367 message Entry {
368 // Where the attribute was defined within the <declare-styleable> block.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700369 Source source = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700370
371 // Any comments associated with the declaration.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700372 string comment = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700373
374 // The reference to the attribute.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700375 Reference attr = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -0700376 }
377
378 // The set of attribute declarations.
Adam Lesinski4ffea042017-08-10 15:37:28 -0700379 repeated Entry entry = 1;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800380}
381
Adam Lesinski0c808952017-07-10 05:40:39 -0700382// A value that represents an array of resource values.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800383message Array {
Adam Lesinski0c808952017-07-10 05:40:39 -0700384 // A single element of the array.
Adam Lesinski4ffea042017-08-10 15:37:28 -0700385 message Element {
Adam Lesinski0c808952017-07-10 05:40:39 -0700386 // Where the element was defined.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700387 Source source = 1;
Adam Lesinski0c808952017-07-10 05:40:39 -0700388
389 // Any comments associated with the element.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700390 string comment = 2;
Adam Lesinski0c808952017-07-10 05:40:39 -0700391
392 // The value assigned to this element.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700393 Item item = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -0700394 }
395
396 // The list of array elements.
Adam Lesinski4ffea042017-08-10 15:37:28 -0700397 repeated Element element = 1;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800398}
399
Adam Lesinski0c808952017-07-10 05:40:39 -0700400// A value that represents a string and its many variations based on plurality.
Adam Lesinski59e04c62016-02-04 15:59:23 -0800401message Plural {
Adam Lesinski0c808952017-07-10 05:40:39 -0700402 // The arity of the plural.
403 enum Arity {
Adam Lesinski4ffea042017-08-10 15:37:28 -0700404 ZERO = 0;
405 ONE = 1;
406 TWO = 2;
407 FEW = 3;
408 MANY = 4;
409 OTHER = 5;
Adam Lesinski0c808952017-07-10 05:40:39 -0700410 }
Adam Lesinski59e04c62016-02-04 15:59:23 -0800411
Adam Lesinski0c808952017-07-10 05:40:39 -0700412 // The plural value for a given arity.
413 message Entry {
414 // Where the plural was defined.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700415 Source source = 1;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800416
Adam Lesinski0c808952017-07-10 05:40:39 -0700417 // Any comments associated with the plural.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700418 string comment = 2;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800419
Adam Lesinski0c808952017-07-10 05:40:39 -0700420 // The arity of the plural.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700421 Arity arity = 3;
Adam Lesinski0c808952017-07-10 05:40:39 -0700422
423 // The value assigned to this plural.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700424 Item item = 4;
Adam Lesinski0c808952017-07-10 05:40:39 -0700425 }
426
427 // The set of arity/plural mappings.
Adam Lesinski4ffea042017-08-10 15:37:28 -0700428 repeated Entry entry = 1;
429}
430
431// Defines an abstract XmlNode that must be either an XmlElement, or
432// a text node represented by a string.
433message XmlNode {
Adam Lesinski5bd44232017-09-07 09:39:07 -0700434 oneof node {
435 XmlElement element = 1;
436 string text = 2;
437 }
Adam Lesinski4ffea042017-08-10 15:37:28 -0700438
439 // Source line and column info.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700440 SourcePosition source = 3;
Adam Lesinski4ffea042017-08-10 15:37:28 -0700441}
442
443// An <element> in an XML document.
444message XmlElement {
445 // Namespaces defined on this element.
446 repeated XmlNamespace namespace_declaration = 1;
447
448 // The namespace URI of this element.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700449 string namespace_uri = 2;
Adam Lesinski4ffea042017-08-10 15:37:28 -0700450
451 // The name of this element.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700452 string name = 3;
Adam Lesinski4ffea042017-08-10 15:37:28 -0700453
454 // The attributes of this element.
455 repeated XmlAttribute attribute = 4;
456
457 // The children of this element.
458 repeated XmlNode child = 5;
459}
460
461// A namespace declaration on an XmlElement (xmlns:android="http://...").
462message XmlNamespace {
Adam Lesinski5bd44232017-09-07 09:39:07 -0700463 string prefix = 1;
464 string uri = 2;
Adam Lesinski4ffea042017-08-10 15:37:28 -0700465
466 // Source line and column info.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700467 SourcePosition source = 3;
Adam Lesinski4ffea042017-08-10 15:37:28 -0700468}
469
470// An attribute defined on an XmlElement (android:text="...").
471message XmlAttribute {
Adam Lesinski5bd44232017-09-07 09:39:07 -0700472 string namespace_uri = 1;
473 string name = 2;
474 string value = 3;
Adam Lesinski4ffea042017-08-10 15:37:28 -0700475
476 // Source line and column info.
Adam Lesinski5bd44232017-09-07 09:39:07 -0700477 SourcePosition source = 4;
Adam Lesinski4ffea042017-08-10 15:37:28 -0700478
Adam Lesinski5bd44232017-09-07 09:39:07 -0700479 // The optional resource ID (0xPPTTEEEE) of the attribute.
480 uint32 resource_id = 5;
Adam Lesinski4ffea042017-08-10 15:37:28 -0700481
Adam Lesinski5bd44232017-09-07 09:39:07 -0700482 // The optional interpreted/compiled version of the `value` string.
483 Item compiled_item = 6;
Adam Lesinski59e04c62016-02-04 15:59:23 -0800484}