2 // Copyright 2006 The Android Open Source Project
4 // Build resource files from raw assets.
7 #include "ResourceTable.h"
11 #include <utils/ByteOrder.h>
12 #include <utils/ResourceTypes.h>
17 status_t
compileXmlFile(const sp
<AaptAssets
>& assets
,
18 const sp
<AaptFile
>& target
,
22 sp
<XMLNode
> root
= XMLNode::parse(target
);
27 return compileXmlFile(assets
, root
, target
, table
, options
);
30 status_t
compileXmlFile(const sp
<AaptAssets
>& assets
,
31 const sp
<XMLNode
>& root
,
32 const sp
<AaptFile
>& target
,
36 if ((options
&XML_COMPILE_STRIP_WHITESPACE
) != 0) {
37 root
->removeWhitespace(true, NULL
);
38 } else if ((options
&XML_COMPILE_COMPACT_WHITESPACE
) != 0) {
39 root
->removeWhitespace(false, NULL
);
42 bool hasErrors
= false;
44 if ((options
&XML_COMPILE_ASSIGN_ATTRIBUTE_IDS
) != 0) {
45 status_t err
= root
->assignResourceIds(assets
, table
);
46 if (err
!= NO_ERROR
) {
51 status_t err
= root
->parseValues(assets
, table
);
52 if (err
!= NO_ERROR
) {
60 NOISY(printf("Input XML Resource:\n"));
62 err
= root
->flatten(target
,
63 (options
&XML_COMPILE_STRIP_COMMENTS
) != 0,
64 (options
&XML_COMPILE_STRIP_RAW_VALUES
) != 0);
65 if (err
!= NO_ERROR
) {
69 NOISY(printf("Output XML Resource:\n"));
70 NOISY(ResXMLTree tree
;
71 tree
.setTo(target
->getData(), target
->getSize());
72 printXMLBlock(&tree
));
74 target
->setCompressionMethod(ZipEntry::kCompressDeflated
);
87 const char* description
;
90 static const char16_t referenceArray
[] =
91 { 'r', 'e', 'f', 'e', 'r', 'e', 'n', 'c', 'e' };
92 static const char16_t stringArray
[] =
93 { 's', 't', 'r', 'i', 'n', 'g' };
94 static const char16_t integerArray
[] =
95 { 'i', 'n', 't', 'e', 'g', 'e', 'r' };
96 static const char16_t booleanArray
[] =
97 { 'b', 'o', 'o', 'l', 'e', 'a', 'n' };
98 static const char16_t colorArray
[] =
99 { 'c', 'o', 'l', 'o', 'r' };
100 static const char16_t floatArray
[] =
101 { 'f', 'l', 'o', 'a', 't' };
102 static const char16_t dimensionArray
[] =
103 { 'd', 'i', 'm', 'e', 'n', 's', 'i', 'o', 'n' };
104 static const char16_t fractionArray
[] =
105 { 'f', 'r', 'a', 'c', 't', 'i', 'o', 'n' };
106 static const char16_t enumArray
[] =
107 { 'e', 'n', 'u', 'm' };
108 static const char16_t flagsArray
[] =
109 { 'f', 'l', 'a', 'g', 's' };
111 static const flag_entry gFormatFlags
[] = {
112 { referenceArray
, sizeof(referenceArray
)/2, ResTable_map::TYPE_REFERENCE
,
113 "a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\n"
114 "or to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\"."},
115 { stringArray
, sizeof(stringArray
)/2, ResTable_map::TYPE_STRING
,
116 "a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character." },
117 { integerArray
, sizeof(integerArray
)/2, ResTable_map::TYPE_INTEGER
,
118 "an integer value, such as \"<code>100</code>\"." },
119 { booleanArray
, sizeof(booleanArray
)/2, ResTable_map::TYPE_BOOLEAN
,
120 "a boolean value, either \"<code>true</code>\" or \"<code>false</code>\"." },
121 { colorArray
, sizeof(colorArray
)/2, ResTable_map::TYPE_COLOR
,
122 "a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n"
123 "\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\"." },
124 { floatArray
, sizeof(floatArray
)/2, ResTable_map::TYPE_FLOAT
,
125 "a floating point value, such as \"<code>1.2</code>\"."},
126 { dimensionArray
, sizeof(dimensionArray
)/2, ResTable_map::TYPE_DIMENSION
,
127 "a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\n"
128 "Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\n"
129 "in (inches), mm (millimeters)." },
130 { fractionArray
, sizeof(fractionArray
)/2, ResTable_map::TYPE_FRACTION
,
131 "a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\n"
132 "The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\n"
133 "some parent container." },
134 { enumArray
, sizeof(enumArray
)/2, ResTable_map::TYPE_ENUM
, NULL
},
135 { flagsArray
, sizeof(flagsArray
)/2, ResTable_map::TYPE_FLAGS
, NULL
},
139 static const char16_t suggestedArray
[] = { 's', 'u', 'g', 'g', 'e', 's', 't', 'e', 'd' };
141 static const flag_entry l10nRequiredFlags
[] = {
142 { suggestedArray
, sizeof(suggestedArray
)/2, ResTable_map::L10N_SUGGESTED
, NULL
},
146 static const char16_t nulStr
[] = { 0 };
148 static uint32_t parse_flags(const char16_t* str
, size_t len
,
149 const flag_entry
* flags
, bool* outError
= NULL
)
151 while (len
> 0 && isspace(*str
)) {
155 while (len
> 0 && isspace(str
[len
-1])) {
159 const char16_t* const end
= str
+ len
;
163 const char16_t* div
= str
;
164 while (div
< end
&& *div
!= '|') {
168 const flag_entry
* cur
= flags
;
170 if (strzcmp16(cur
->name
, cur
->nameLen
, str
, div
-str
) == 0) {
178 if (outError
) *outError
= true;
182 str
= div
< end
? div
+1 : div
;
185 if (outError
) *outError
= false;
189 static String16
mayOrMust(int type
, int flags
)
191 if ((type
&(~flags
)) == 0) {
192 return String16("<p>Must");
195 return String16("<p>May");
198 static void appendTypeInfo(ResourceTable
* outTable
, const String16
& pkg
,
199 const String16
& typeName
, const String16
& ident
, int type
,
200 const flag_entry
* flags
)
202 bool hadType
= false;
203 while (flags
->name
) {
204 if ((type
&flags
->value
) != 0 && flags
->description
!= NULL
) {
205 String16
fullMsg(mayOrMust(type
, flags
->value
));
206 fullMsg
.append(String16(" be "));
207 fullMsg
.append(String16(flags
->description
));
208 outTable
->appendTypeComment(pkg
, typeName
, ident
, fullMsg
);
213 if (hadType
&& (type
&ResTable_map::TYPE_REFERENCE
) == 0) {
214 outTable
->appendTypeComment(pkg
, typeName
, ident
,
215 String16("<p>This may also be a reference to a resource (in the form\n"
216 "\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\n"
217 "theme attribute (in the form\n"
218 "\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\n"
219 "containing a value of this type."));
223 struct PendingAttribute
225 const String16 myPackage
;
226 const SourcePos sourcePos
;
227 const bool appendComment
;
234 PendingAttribute(String16 _package
, const sp
<AaptFile
>& in
,
235 ResXMLTree
& block
, bool _appendComment
)
236 : myPackage(_package
)
237 , sourcePos(in
->getPrintableSource(), block
.getLineNumber())
238 , appendComment(_appendComment
)
239 , type(ResTable_map::TYPE_ANY
)
245 status_t
createIfNeeded(ResourceTable
* outTable
)
247 if (added
|| hasErrors
) {
252 String16
attr16("attr");
254 if (outTable
->hasBagOrEntry(myPackage
, attr16
, ident
)) {
255 sourcePos
.error("Attribute \"%s\" has already been defined\n",
256 String8(ident
).string());
258 return UNKNOWN_ERROR
;
262 sprintf(numberStr
, "%d", type
);
263 status_t err
= outTable
->addBag(sourcePos
, myPackage
,
264 attr16
, ident
, String16(""),
266 String16(numberStr
), NULL
, NULL
);
267 if (err
!= NO_ERROR
) {
271 outTable
->appendComment(myPackage
, attr16
, ident
, comment
, appendComment
);
272 //printf("Attribute %s comment: %s\n", String8(ident).string(),
273 // String8(comment).string());
278 static status_t
compileAttribute(const sp
<AaptFile
>& in
,
280 const String16
& myPackage
,
281 ResourceTable
* outTable
,
282 String16
* outIdent
= NULL
,
283 bool inStyleable
= false)
285 PendingAttribute
attr(myPackage
, in
, block
, inStyleable
);
287 const String16
attr16("attr");
288 const String16
id16("id");
290 // Attribute type constants.
291 const String16
enum16("enum");
292 const String16
flag16("flag");
294 ResXMLTree::event_code_t code
;
298 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "name");
300 attr
.ident
= String16(block
.getAttributeStringValue(identIdx
, &len
));
302 *outIdent
= attr
.ident
;
305 attr
.sourcePos
.error("A 'name' attribute is required for <attr>\n");
306 attr
.hasErrors
= true;
309 attr
.comment
= String16(
310 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
312 ssize_t typeIdx
= block
.indexOfAttribute(NULL
, "format");
314 String16 typeStr
= String16(block
.getAttributeStringValue(typeIdx
, &len
));
315 attr
.type
= parse_flags(typeStr
.string(), typeStr
.size(), gFormatFlags
);
316 if (attr
.type
== 0) {
317 attr
.sourcePos
.error("Tag <attr> 'format' attribute value \"%s\" not valid\n",
318 String8(typeStr
).string());
319 attr
.hasErrors
= true;
321 attr
.createIfNeeded(outTable
);
322 } else if (!inStyleable
) {
323 // Attribute definitions outside of styleables always define the
324 // attribute as a generic value.
325 attr
.createIfNeeded(outTable
);
328 //printf("Attribute %s: type=0x%08x\n", String8(attr.ident).string(), attr.type);
330 ssize_t minIdx
= block
.indexOfAttribute(NULL
, "min");
332 String16 val
= String16(block
.getAttributeStringValue(minIdx
, &len
));
333 if (!ResTable::stringToInt(val
.string(), val
.size(), NULL
)) {
334 attr
.sourcePos
.error("Tag <attr> 'min' attribute must be a number, not \"%s\"\n",
335 String8(val
).string());
336 attr
.hasErrors
= true;
338 attr
.createIfNeeded(outTable
);
339 if (!attr
.hasErrors
) {
340 err
= outTable
->addBag(attr
.sourcePos
, myPackage
, attr16
, attr
.ident
,
341 String16(""), String16("^min"), String16(val
), NULL
, NULL
);
342 if (err
!= NO_ERROR
) {
343 attr
.hasErrors
= true;
348 ssize_t maxIdx
= block
.indexOfAttribute(NULL
, "max");
350 String16 val
= String16(block
.getAttributeStringValue(maxIdx
, &len
));
351 if (!ResTable::stringToInt(val
.string(), val
.size(), NULL
)) {
352 attr
.sourcePos
.error("Tag <attr> 'max' attribute must be a number, not \"%s\"\n",
353 String8(val
).string());
354 attr
.hasErrors
= true;
356 attr
.createIfNeeded(outTable
);
357 if (!attr
.hasErrors
) {
358 err
= outTable
->addBag(attr
.sourcePos
, myPackage
, attr16
, attr
.ident
,
359 String16(""), String16("^max"), String16(val
), NULL
, NULL
);
360 attr
.hasErrors
= true;
364 if ((minIdx
>= 0 || maxIdx
>= 0) && (attr
.type
&ResTable_map::TYPE_INTEGER
) == 0) {
365 attr
.sourcePos
.error("Tag <attr> must have format=integer attribute if using max or min\n");
366 attr
.hasErrors
= true;
369 ssize_t l10nIdx
= block
.indexOfAttribute(NULL
, "localization");
371 const uint16_t* str
= block
.getAttributeStringValue(l10nIdx
, &len
);
373 uint32_t l10n_required
= parse_flags(str
, len
, l10nRequiredFlags
, &error
);
375 attr
.sourcePos
.error("Tag <attr> 'localization' attribute value \"%s\" not valid\n",
376 String8(str
).string());
377 attr
.hasErrors
= true;
379 attr
.createIfNeeded(outTable
);
380 if (!attr
.hasErrors
) {
382 sprintf(buf
, "%d", l10n_required
);
383 err
= outTable
->addBag(attr
.sourcePos
, myPackage
, attr16
, attr
.ident
,
384 String16(""), String16("^l10n"), String16(buf
), NULL
, NULL
);
385 if (err
!= NO_ERROR
) {
386 attr
.hasErrors
= true;
391 String16 enumOrFlagsComment
;
393 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
394 if (code
== ResXMLTree::START_TAG
) {
395 uint32_t localType
= 0;
396 if (strcmp16(block
.getElementName(&len
), enum16
.string()) == 0) {
397 localType
= ResTable_map::TYPE_ENUM
;
398 } else if (strcmp16(block
.getElementName(&len
), flag16
.string()) == 0) {
399 localType
= ResTable_map::TYPE_FLAGS
;
401 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
402 .error("Tag <%s> can not appear inside <attr>, only <enum> or <flag>\n",
403 String8(block
.getElementName(&len
)).string());
404 return UNKNOWN_ERROR
;
407 attr
.createIfNeeded(outTable
);
409 if (attr
.type
== ResTable_map::TYPE_ANY
) {
410 // No type was explicitly stated, so supplying enum tags
411 // implicitly creates an enum or flag.
415 if ((attr
.type
&(ResTable_map::TYPE_ENUM
|ResTable_map::TYPE_FLAGS
)) == 0) {
416 // Wasn't originally specified as an enum, so update its type.
417 attr
.type
|= localType
;
418 if (!attr
.hasErrors
) {
420 sprintf(numberStr
, "%d", attr
.type
);
421 err
= outTable
->addBag(SourcePos(in
->getPrintableSource(), block
.getLineNumber()),
422 myPackage
, attr16
, attr
.ident
, String16(""),
423 String16("^type"), String16(numberStr
), NULL
, NULL
, true);
424 if (err
!= NO_ERROR
) {
425 attr
.hasErrors
= true;
428 } else if ((uint32_t)(attr
.type
&(ResTable_map::TYPE_ENUM
|ResTable_map::TYPE_FLAGS
)) != localType
) {
429 if (localType
== ResTable_map::TYPE_ENUM
) {
430 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
431 .error("<enum> attribute can not be used inside a flags format\n");
432 attr
.hasErrors
= true;
434 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
435 .error("<flag> attribute can not be used inside a enum format\n");
436 attr
.hasErrors
= true;
441 ssize_t itemIdentIdx
= block
.indexOfAttribute(NULL
, "name");
442 if (itemIdentIdx
>= 0) {
443 itemIdent
= String16(block
.getAttributeStringValue(itemIdentIdx
, &len
));
445 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
446 .error("A 'name' attribute is required for <enum> or <flag>\n");
447 attr
.hasErrors
= true;
451 ssize_t valueIdx
= block
.indexOfAttribute(NULL
, "value");
453 value
= String16(block
.getAttributeStringValue(valueIdx
, &len
));
455 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
456 .error("A 'value' attribute is required for <enum> or <flag>\n");
457 attr
.hasErrors
= true;
459 if (!attr
.hasErrors
&& !ResTable::stringToInt(value
.string(), value
.size(), NULL
)) {
460 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
461 .error("Tag <enum> or <flag> 'value' attribute must be a number,"
463 String8(value
).string());
464 attr
.hasErrors
= true;
467 // Make sure an id is defined for this enum/flag identifier...
468 if (!attr
.hasErrors
&& !outTable
->hasBagOrEntry(itemIdent
, &id16
, &myPackage
)) {
469 err
= outTable
->startBag(SourcePos(in
->getPrintableSource(), block
.getLineNumber()),
470 myPackage
, id16
, itemIdent
, String16(), NULL
);
471 if (err
!= NO_ERROR
) {
472 attr
.hasErrors
= true;
476 if (!attr
.hasErrors
) {
477 if (enumOrFlagsComment
.size() == 0) {
478 enumOrFlagsComment
.append(mayOrMust(attr
.type
,
479 ResTable_map::TYPE_ENUM
|ResTable_map::TYPE_FLAGS
));
480 enumOrFlagsComment
.append((attr
.type
&ResTable_map::TYPE_ENUM
)
481 ? String16(" be one of the following constant values.")
482 : String16(" be one or more (separated by '|') of the following constant values."));
483 enumOrFlagsComment
.append(String16("</p>\n<table border=\"2\" width=\"85%\" align=\"center\" frame=\"hsides\" rules=\"all\" cellpadding=\"5\">\n"
484 "<colgroup align=\"left\" />\n"
485 "<colgroup align=\"left\" />\n"
486 "<colgroup align=\"left\" />\n"
487 "<tr><th>Constant<th>Value<th>Description</tr>"));
490 enumOrFlagsComment
.append(String16("\n<tr><th><code>"));
491 enumOrFlagsComment
.append(itemIdent
);
492 enumOrFlagsComment
.append(String16("</code><td>"));
493 enumOrFlagsComment
.append(value
);
494 enumOrFlagsComment
.append(String16("<td>"));
495 if (block
.getComment(&len
)) {
496 enumOrFlagsComment
.append(String16(block
.getComment(&len
)));
498 enumOrFlagsComment
.append(String16("</tr>"));
500 err
= outTable
->addBag(SourcePos(in
->getPrintableSource(), block
.getLineNumber()),
502 attr16
, attr
.ident
, String16(""),
503 itemIdent
, value
, NULL
, NULL
, false, true);
504 if (err
!= NO_ERROR
) {
505 attr
.hasErrors
= true;
508 } else if (code
== ResXMLTree::END_TAG
) {
509 if (strcmp16(block
.getElementName(&len
), attr16
.string()) == 0) {
512 if ((attr
.type
&ResTable_map::TYPE_ENUM
) != 0) {
513 if (strcmp16(block
.getElementName(&len
), enum16
.string()) != 0) {
514 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
515 .error("Found tag </%s> where </enum> is expected\n",
516 String8(block
.getElementName(&len
)).string());
517 return UNKNOWN_ERROR
;
520 if (strcmp16(block
.getElementName(&len
), flag16
.string()) != 0) {
521 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
522 .error("Found tag </%s> where </flag> is expected\n",
523 String8(block
.getElementName(&len
)).string());
524 return UNKNOWN_ERROR
;
530 if (!attr
.hasErrors
&& attr
.added
) {
531 appendTypeInfo(outTable
, myPackage
, attr16
, attr
.ident
, attr
.type
, gFormatFlags
);
534 if (!attr
.hasErrors
&& enumOrFlagsComment
.size() > 0) {
535 enumOrFlagsComment
.append(String16("\n</table>"));
536 outTable
->appendTypeComment(myPackage
, attr16
, attr
.ident
, enumOrFlagsComment
);
543 bool localeIsDefined(const ResTable_config
& config
)
545 return config
.locale
== 0;
548 status_t
parseAndAddBag(Bundle
* bundle
,
549 const sp
<AaptFile
>& in
,
551 const ResTable_config
& config
,
552 const String16
& myPackage
,
553 const String16
& curType
,
554 const String16
& ident
,
555 const String16
& parentIdent
,
556 const String16
& itemIdent
,
559 const bool overwrite
,
560 ResourceTable
* outTable
)
563 const String16
item16("item");
566 Vector
<StringPool::entry_style_span
> spans
;
567 err
= parseStyledString(bundle
, in
->getPrintableSource().string(),
568 block
, item16
, &str
, &spans
,
570 if (err
!= NO_ERROR
) {
574 NOISY(printf("Adding resource bag entry l=%c%c c=%c%c orien=%d d=%d "
575 " pid=%s, bag=%s, id=%s: %s\n",
576 config
.language
[0], config
.language
[1],
577 config
.country
[0], config
.country
[1],
578 config
.orientation
, config
.density
,
579 String8(parentIdent
).string(),
580 String8(ident
).string(),
581 String8(itemIdent
).string(),
582 String8(str
).string()));
584 err
= outTable
->addBag(SourcePos(in
->getPrintableSource(), block
->getLineNumber()),
585 myPackage
, curType
, ident
, parentIdent
, itemIdent
, str
,
586 &spans
, &config
, overwrite
, false, curFormat
);
591 status_t
parseAndAddEntry(Bundle
* bundle
,
592 const sp
<AaptFile
>& in
,
594 const ResTable_config
& config
,
595 const String16
& myPackage
,
596 const String16
& curType
,
597 const String16
& ident
,
598 const String16
& curTag
,
602 const bool overwrite
,
603 ResourceTable
* outTable
)
608 Vector
<StringPool::entry_style_span
> spans
;
609 err
= parseStyledString(bundle
, in
->getPrintableSource().string(), block
,
610 curTag
, &str
, curIsStyled
? &spans
: NULL
,
613 if (err
< NO_ERROR
) {
617 NOISY(printf("Adding resource entry l=%c%c c=%c%c orien=%d d=%d id=%s: %s\n",
618 config
.language
[0], config
.language
[1],
619 config
.country
[0], config
.country
[1],
620 config
.orientation
, config
.density
,
621 String8(ident
).string(), String8(str
).string()));
623 err
= outTable
->addEntry(SourcePos(in
->getPrintableSource(), block
->getLineNumber()),
624 myPackage
, curType
, ident
, str
, &spans
, &config
,
625 false, curFormat
, overwrite
);
630 status_t
compileResourceFile(Bundle
* bundle
,
631 const sp
<AaptAssets
>& assets
,
632 const sp
<AaptFile
>& in
,
633 const ResTable_config
& defParams
,
634 const bool overwrite
,
635 ResourceTable
* outTable
)
638 status_t err
= parseXMLResource(in
, &block
, false, true);
639 if (err
!= NO_ERROR
) {
644 const String16
resources16("resources");
646 // Identifier declaration tags.
647 const String16
declare_styleable16("declare-styleable");
648 const String16
attr16("attr");
650 // Data creation organizational tags.
651 const String16
string16("string");
652 const String16
drawable16("drawable");
653 const String16
color16("color");
654 const String16
bool16("bool");
655 const String16
integer16("integer");
656 const String16
dimen16("dimen");
657 const String16
fraction16("fraction");
658 const String16
style16("style");
659 const String16
plurals16("plurals");
660 const String16
array16("array");
661 const String16
string_array16("string-array");
662 const String16
integer_array16("integer-array");
663 const String16
public16("public");
664 const String16
public_padding16("public-padding");
665 const String16
private_symbols16("private-symbols");
666 const String16
skip16("skip");
667 const String16
eat_comment16("eat-comment");
669 // Data creation tags.
670 const String16
bag16("bag");
671 const String16
item16("item");
673 // Attribute type constants.
674 const String16
enum16("enum");
677 const String16
other16("other");
678 const String16
quantityOther16("^other");
679 const String16
zero16("zero");
680 const String16
quantityZero16("^zero");
681 const String16
one16("one");
682 const String16
quantityOne16("^one");
683 const String16
two16("two");
684 const String16
quantityTwo16("^two");
685 const String16
few16("few");
686 const String16
quantityFew16("^few");
687 const String16
many16("many");
688 const String16
quantityMany16("^many");
690 // useful attribute names and special values
691 const String16
name16("name");
692 const String16
translatable16("translatable");
693 const String16
false16("false");
695 const String16
myPackage(assets
->getPackage());
697 bool hasErrors
= false;
699 DefaultKeyedVector
<String16
, uint32_t> nextPublicId(0);
701 ResXMLTree::event_code_t code
;
704 } while (code
== ResXMLTree::START_NAMESPACE
);
707 if (code
!= ResXMLTree::START_TAG
) {
708 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
709 "No start tag found\n");
710 return UNKNOWN_ERROR
;
712 if (strcmp16(block
.getElementName(&len
), resources16
.string()) != 0) {
713 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
714 "Invalid start tag %s\n", String8(block
.getElementName(&len
)).string());
715 return UNKNOWN_ERROR
;
718 ResTable_config
curParams(defParams
);
720 ResTable_config
pseudoParams(curParams
);
721 pseudoParams
.language
[0] = 'z';
722 pseudoParams
.language
[1] = 'z';
723 pseudoParams
.country
[0] = 'Z';
724 pseudoParams
.country
[1] = 'Z';
726 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
727 if (code
== ResXMLTree::START_TAG
) {
728 const String16
* curTag
= NULL
;
730 int32_t curFormat
= ResTable_map::TYPE_ANY
;
731 bool curIsBag
= false;
732 bool curIsBagReplaceOnOverwrite
= false;
733 bool curIsStyled
= false;
734 bool curIsPseudolocalizable
= false;
735 bool localHasErrors
= false;
737 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
738 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
739 && code
!= ResXMLTree::BAD_DOCUMENT
) {
740 if (code
== ResXMLTree::END_TAG
) {
741 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
748 } else if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
749 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
750 && code
!= ResXMLTree::BAD_DOCUMENT
) {
751 if (code
== ResXMLTree::END_TAG
) {
752 if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
759 } else if (strcmp16(block
.getElementName(&len
), public16
.string()) == 0) {
760 SourcePos
srcPos(in
->getPrintableSource(), block
.getLineNumber());
763 ssize_t typeIdx
= block
.indexOfAttribute(NULL
, "type");
765 srcPos
.error("A 'type' attribute is required for <public>\n");
766 hasErrors
= localHasErrors
= true;
768 type
= String16(block
.getAttributeStringValue(typeIdx
, &len
));
771 ssize_t nameIdx
= block
.indexOfAttribute(NULL
, "name");
773 srcPos
.error("A 'name' attribute is required for <public>\n");
774 hasErrors
= localHasErrors
= true;
776 name
= String16(block
.getAttributeStringValue(nameIdx
, &len
));
779 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "id");
781 const char16_t* identStr
= block
.getAttributeStringValue(identIdx
, &len
);
782 Res_value identValue
;
783 if (!ResTable::stringToInt(identStr
, len
, &identValue
)) {
784 srcPos
.error("Given 'id' attribute is not an integer: %s\n",
785 String8(block
.getAttributeStringValue(identIdx
, &len
)).string());
786 hasErrors
= localHasErrors
= true;
788 ident
= identValue
.data
;
789 nextPublicId
.replaceValueFor(type
, ident
+1);
791 } else if (nextPublicId
.indexOfKey(type
) < 0) {
792 srcPos
.error("No 'id' attribute supplied <public>,"
793 " and no previous id defined in this file.\n");
794 hasErrors
= localHasErrors
= true;
795 } else if (!localHasErrors
) {
796 ident
= nextPublicId
.valueFor(type
);
797 nextPublicId
.replaceValueFor(type
, ident
+1);
800 if (!localHasErrors
) {
801 err
= outTable
->addPublic(srcPos
, myPackage
, type
, name
, ident
);
802 if (err
< NO_ERROR
) {
803 hasErrors
= localHasErrors
= true;
806 if (!localHasErrors
) {
807 sp
<AaptSymbols
> symbols
= assets
->getSymbolsFor(String8("R"));
808 if (symbols
!= NULL
) {
809 symbols
= symbols
->addNestedSymbol(String8(type
), srcPos
);
811 if (symbols
!= NULL
) {
812 symbols
->makeSymbolPublic(String8(name
), srcPos
);
814 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
815 symbols
->appendComment(String8(name
), comment
, srcPos
);
817 srcPos
.error("Unable to create symbols!\n");
818 hasErrors
= localHasErrors
= true;
822 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
823 if (code
== ResXMLTree::END_TAG
) {
824 if (strcmp16(block
.getElementName(&len
), public16
.string()) == 0) {
831 } else if (strcmp16(block
.getElementName(&len
), public_padding16
.string()) == 0) {
832 SourcePos
srcPos(in
->getPrintableSource(), block
.getLineNumber());
835 ssize_t typeIdx
= block
.indexOfAttribute(NULL
, "type");
837 srcPos
.error("A 'type' attribute is required for <public-padding>\n");
838 hasErrors
= localHasErrors
= true;
840 type
= String16(block
.getAttributeStringValue(typeIdx
, &len
));
843 ssize_t nameIdx
= block
.indexOfAttribute(NULL
, "name");
845 srcPos
.error("A 'name' attribute is required for <public-padding>\n");
846 hasErrors
= localHasErrors
= true;
848 name
= String16(block
.getAttributeStringValue(nameIdx
, &len
));
851 ssize_t startIdx
= block
.indexOfAttribute(NULL
, "start");
853 const char16_t* startStr
= block
.getAttributeStringValue(startIdx
, &len
);
854 Res_value startValue
;
855 if (!ResTable::stringToInt(startStr
, len
, &startValue
)) {
856 srcPos
.error("Given 'start' attribute is not an integer: %s\n",
857 String8(block
.getAttributeStringValue(startIdx
, &len
)).string());
858 hasErrors
= localHasErrors
= true;
860 start
= startValue
.data
;
862 } else if (nextPublicId
.indexOfKey(type
) < 0) {
863 srcPos
.error("No 'start' attribute supplied <public-padding>,"
864 " and no previous id defined in this file.\n");
865 hasErrors
= localHasErrors
= true;
866 } else if (!localHasErrors
) {
867 start
= nextPublicId
.valueFor(type
);
871 ssize_t endIdx
= block
.indexOfAttribute(NULL
, "end");
873 const char16_t* endStr
= block
.getAttributeStringValue(endIdx
, &len
);
875 if (!ResTable::stringToInt(endStr
, len
, &endValue
)) {
876 srcPos
.error("Given 'end' attribute is not an integer: %s\n",
877 String8(block
.getAttributeStringValue(endIdx
, &len
)).string());
878 hasErrors
= localHasErrors
= true;
883 srcPos
.error("No 'end' attribute supplied <public-padding>\n");
884 hasErrors
= localHasErrors
= true;
888 nextPublicId
.replaceValueFor(type
, end
+1);
890 srcPos
.error("Padding start '%ul' is after end '%ul'\n",
892 hasErrors
= localHasErrors
= true;
896 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
897 for (uint32_t curIdent
=start
; curIdent
<=end
; curIdent
++) {
898 if (localHasErrors
) {
901 String16
curName(name
);
903 sprintf(buf
, "%d", (int)(end
-curIdent
+1));
904 curName
.append(String16(buf
));
906 err
= outTable
->addEntry(srcPos
, myPackage
, type
, curName
,
907 String16("padding"), NULL
, &curParams
, false,
908 ResTable_map::TYPE_STRING
, overwrite
);
909 if (err
< NO_ERROR
) {
910 hasErrors
= localHasErrors
= true;
913 err
= outTable
->addPublic(srcPos
, myPackage
, type
,
915 if (err
< NO_ERROR
) {
916 hasErrors
= localHasErrors
= true;
919 sp
<AaptSymbols
> symbols
= assets
->getSymbolsFor(String8("R"));
920 if (symbols
!= NULL
) {
921 symbols
= symbols
->addNestedSymbol(String8(type
), srcPos
);
923 if (symbols
!= NULL
) {
924 symbols
->makeSymbolPublic(String8(curName
), srcPos
);
925 symbols
->appendComment(String8(curName
), comment
, srcPos
);
927 srcPos
.error("Unable to create symbols!\n");
928 hasErrors
= localHasErrors
= true;
932 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
933 if (code
== ResXMLTree::END_TAG
) {
934 if (strcmp16(block
.getElementName(&len
), public_padding16
.string()) == 0) {
941 } else if (strcmp16(block
.getElementName(&len
), private_symbols16
.string()) == 0) {
943 ssize_t pkgIdx
= block
.indexOfAttribute(NULL
, "package");
945 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
946 "A 'package' attribute is required for <private-symbols>\n");
947 hasErrors
= localHasErrors
= true;
949 pkg
= String16(block
.getAttributeStringValue(pkgIdx
, &len
));
950 if (!localHasErrors
) {
951 assets
->setSymbolsPrivatePackage(String8(pkg
));
954 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
955 if (code
== ResXMLTree::END_TAG
) {
956 if (strcmp16(block
.getElementName(&len
), private_symbols16
.string()) == 0) {
963 } else if (strcmp16(block
.getElementName(&len
), declare_styleable16
.string()) == 0) {
964 SourcePos
srcPos(in
->getPrintableSource(), block
.getLineNumber());
967 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "name");
969 srcPos
.error("A 'name' attribute is required for <declare-styleable>\n");
970 hasErrors
= localHasErrors
= true;
972 ident
= String16(block
.getAttributeStringValue(identIdx
, &len
));
974 sp
<AaptSymbols
> symbols
= assets
->getSymbolsFor(String8("R"));
975 if (!localHasErrors
) {
976 if (symbols
!= NULL
) {
977 symbols
= symbols
->addNestedSymbol(String8("styleable"), srcPos
);
979 sp
<AaptSymbols
> styleSymbols
= symbols
;
980 if (symbols
!= NULL
) {
981 symbols
= symbols
->addNestedSymbol(String8(ident
), srcPos
);
983 if (symbols
== NULL
) {
984 srcPos
.error("Unable to create symbols!\n");
985 return UNKNOWN_ERROR
;
989 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
990 styleSymbols
->appendComment(String8(ident
), comment
, srcPos
);
995 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
996 if (code
== ResXMLTree::START_TAG
) {
997 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
998 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
999 && code
!= ResXMLTree::BAD_DOCUMENT
) {
1000 if (code
== ResXMLTree::END_TAG
) {
1001 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
1007 } else if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
1008 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
1009 && code
!= ResXMLTree::BAD_DOCUMENT
) {
1010 if (code
== ResXMLTree::END_TAG
) {
1011 if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
1017 } else if (strcmp16(block
.getElementName(&len
), attr16
.string()) != 0) {
1018 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1019 "Tag <%s> can not appear inside <declare-styleable>, only <attr>\n",
1020 String8(block
.getElementName(&len
)).string());
1021 return UNKNOWN_ERROR
;
1025 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
1027 err
= compileAttribute(in
, block
, myPackage
, outTable
, &itemIdent
, true);
1028 if (err
!= NO_ERROR
) {
1029 hasErrors
= localHasErrors
= true;
1032 if (symbols
!= NULL
) {
1033 SourcePos
srcPos(String8(in
->getPrintableSource()), block
.getLineNumber());
1034 symbols
->addSymbol(String8(itemIdent
), 0, srcPos
);
1035 symbols
->appendComment(String8(itemIdent
), comment
, srcPos
);
1036 //printf("Attribute %s comment: %s\n", String8(itemIdent).string(),
1037 // String8(comment).string());
1039 } else if (code
== ResXMLTree::END_TAG
) {
1040 if (strcmp16(block
.getElementName(&len
), declare_styleable16
.string()) == 0) {
1044 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1045 "Found tag </%s> where </attr> is expected\n",
1046 String8(block
.getElementName(&len
)).string());
1047 return UNKNOWN_ERROR
;
1052 } else if (strcmp16(block
.getElementName(&len
), attr16
.string()) == 0) {
1053 err
= compileAttribute(in
, block
, myPackage
, outTable
, NULL
);
1054 if (err
!= NO_ERROR
) {
1059 } else if (strcmp16(block
.getElementName(&len
), item16
.string()) == 0) {
1061 ssize_t attri
= block
.indexOfAttribute(NULL
, "type");
1063 curType
= String16(block
.getAttributeStringValue(attri
, &len
));
1064 ssize_t formatIdx
= block
.indexOfAttribute(NULL
, "format");
1065 if (formatIdx
>= 0) {
1066 String16 formatStr
= String16(block
.getAttributeStringValue(
1068 curFormat
= parse_flags(formatStr
.string(), formatStr
.size(),
1070 if (curFormat
== 0) {
1071 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1072 "Tag <item> 'format' attribute value \"%s\" not valid\n",
1073 String8(formatStr
).string());
1074 hasErrors
= localHasErrors
= true;
1078 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1079 "A 'type' attribute is required for <item>\n");
1080 hasErrors
= localHasErrors
= true;
1083 } else if (strcmp16(block
.getElementName(&len
), string16
.string()) == 0) {
1084 // Note the existence and locale of every string we process
1086 curParams
.getLocale(rawLocale
);
1087 String8
locale(rawLocale
);
1089 String16 translatable
;
1091 size_t n
= block
.getAttributeCount();
1092 for (size_t i
= 0; i
< n
; i
++) {
1094 const uint16_t* attr
= block
.getAttributeName(i
, &length
);
1095 if (strcmp16(attr
, name16
.string()) == 0) {
1096 name
.setTo(block
.getAttributeStringValue(i
, &length
));
1097 } else if (strcmp16(attr
, translatable16
.string()) == 0) {
1098 translatable
.setTo(block
.getAttributeStringValue(i
, &length
));
1102 if (name
.size() > 0) {
1103 if (translatable
== false16
) {
1104 // Untranslatable strings must only exist in the default [empty] locale
1105 if (locale
.size() > 0) {
1106 fprintf(stderr
, "aapt: warning: string '%s' in %s marked untranslatable but exists"
1107 " in locale '%s'\n", String8(name
).string(),
1108 bundle
->getResourceSourceDirs()[0],
1110 // hasErrors = localHasErrors = true;
1112 // Intentionally empty block:
1114 // Don't add untranslatable strings to the localization table; that
1115 // way if we later see localizations of them, they'll be flagged as
1116 // having no default translation.
1119 outTable
->addLocalization(name
, locale
);
1125 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_STRING
;
1127 curIsPseudolocalizable
= true;
1128 } else if (strcmp16(block
.getElementName(&len
), drawable16
.string()) == 0) {
1129 curTag
= &drawable16
;
1130 curType
= drawable16
;
1131 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_COLOR
;
1132 } else if (strcmp16(block
.getElementName(&len
), color16
.string()) == 0) {
1135 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_COLOR
;
1136 } else if (strcmp16(block
.getElementName(&len
), bool16
.string()) == 0) {
1139 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_BOOLEAN
;
1140 } else if (strcmp16(block
.getElementName(&len
), integer16
.string()) == 0) {
1141 curTag
= &integer16
;
1142 curType
= integer16
;
1143 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_INTEGER
;
1144 } else if (strcmp16(block
.getElementName(&len
), dimen16
.string()) == 0) {
1147 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_DIMENSION
;
1148 } else if (strcmp16(block
.getElementName(&len
), fraction16
.string()) == 0) {
1149 curTag
= &fraction16
;
1150 curType
= fraction16
;
1151 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_FRACTION
;
1152 } else if (strcmp16(block
.getElementName(&len
), bag16
.string()) == 0) {
1155 ssize_t attri
= block
.indexOfAttribute(NULL
, "type");
1157 curType
= String16(block
.getAttributeStringValue(attri
, &len
));
1159 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1160 "A 'type' attribute is required for <bag>\n");
1161 hasErrors
= localHasErrors
= true;
1163 } else if (strcmp16(block
.getElementName(&len
), style16
.string()) == 0) {
1167 } else if (strcmp16(block
.getElementName(&len
), plurals16
.string()) == 0) {
1168 curTag
= &plurals16
;
1169 curType
= plurals16
;
1171 } else if (strcmp16(block
.getElementName(&len
), array16
.string()) == 0) {
1175 curIsBagReplaceOnOverwrite
= true;
1176 ssize_t formatIdx
= block
.indexOfAttribute(NULL
, "format");
1177 if (formatIdx
>= 0) {
1178 String16 formatStr
= String16(block
.getAttributeStringValue(
1180 curFormat
= parse_flags(formatStr
.string(), formatStr
.size(),
1182 if (curFormat
== 0) {
1183 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1184 "Tag <array> 'format' attribute value \"%s\" not valid\n",
1185 String8(formatStr
).string());
1186 hasErrors
= localHasErrors
= true;
1189 } else if (strcmp16(block
.getElementName(&len
), string_array16
.string()) == 0) {
1190 curTag
= &string_array16
;
1192 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_STRING
;
1194 curIsBagReplaceOnOverwrite
= true;
1195 curIsPseudolocalizable
= true;
1196 } else if (strcmp16(block
.getElementName(&len
), integer_array16
.string()) == 0) {
1197 curTag
= &integer_array16
;
1199 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_INTEGER
;
1201 curIsBagReplaceOnOverwrite
= true;
1203 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1204 "Found tag %s where item is expected\n",
1205 String8(block
.getElementName(&len
)).string());
1206 return UNKNOWN_ERROR
;
1210 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "name");
1211 if (identIdx
>= 0) {
1212 ident
= String16(block
.getAttributeStringValue(identIdx
, &len
));
1214 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1215 "A 'name' attribute is required for <%s>\n",
1216 String8(*curTag
).string());
1217 hasErrors
= localHasErrors
= true;
1220 String16
comment(block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
1223 // Figure out the parent of this bag...
1224 String16 parentIdent
;
1225 ssize_t parentIdentIdx
= block
.indexOfAttribute(NULL
, "parent");
1226 if (parentIdentIdx
>= 0) {
1227 parentIdent
= String16(block
.getAttributeStringValue(parentIdentIdx
, &len
));
1229 ssize_t sep
= ident
.findLast('.');
1231 parentIdent
.setTo(ident
, sep
);
1235 if (!localHasErrors
) {
1236 err
= outTable
->startBag(SourcePos(in
->getPrintableSource(),
1237 block
.getLineNumber()), myPackage
, curType
, ident
,
1238 parentIdent
, &curParams
,
1239 overwrite
, curIsBagReplaceOnOverwrite
);
1240 if (err
!= NO_ERROR
) {
1241 hasErrors
= localHasErrors
= true;
1245 ssize_t elmIndex
= 0;
1246 char elmIndexStr
[14];
1247 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
1248 && code
!= ResXMLTree::BAD_DOCUMENT
) {
1250 if (code
== ResXMLTree::START_TAG
) {
1251 if (strcmp16(block
.getElementName(&len
), item16
.string()) != 0) {
1252 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1253 "Tag <%s> can not appear inside <%s>, only <item>\n",
1254 String8(block
.getElementName(&len
)).string(),
1255 String8(*curTag
).string());
1256 return UNKNOWN_ERROR
;
1260 if (curType
== array16
) {
1261 sprintf(elmIndexStr
, "^index_%d", (int)elmIndex
++);
1262 itemIdent
= String16(elmIndexStr
);
1263 } else if (curType
== plurals16
) {
1264 ssize_t itemIdentIdx
= block
.indexOfAttribute(NULL
, "quantity");
1265 if (itemIdentIdx
>= 0) {
1266 String16
quantity16(block
.getAttributeStringValue(itemIdentIdx
, &len
));
1267 if (quantity16
== other16
) {
1268 itemIdent
= quantityOther16
;
1270 else if (quantity16
== zero16
) {
1271 itemIdent
= quantityZero16
;
1273 else if (quantity16
== one16
) {
1274 itemIdent
= quantityOne16
;
1276 else if (quantity16
== two16
) {
1277 itemIdent
= quantityTwo16
;
1279 else if (quantity16
== few16
) {
1280 itemIdent
= quantityFew16
;
1282 else if (quantity16
== many16
) {
1283 itemIdent
= quantityMany16
;
1286 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1287 "Illegal 'quantity' attribute is <item> inside <plurals>\n");
1288 hasErrors
= localHasErrors
= true;
1291 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1292 "A 'quantity' attribute is required for <item> inside <plurals>\n");
1293 hasErrors
= localHasErrors
= true;
1296 ssize_t itemIdentIdx
= block
.indexOfAttribute(NULL
, "name");
1297 if (itemIdentIdx
>= 0) {
1298 itemIdent
= String16(block
.getAttributeStringValue(itemIdentIdx
, &len
));
1300 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1301 "A 'name' attribute is required for <item>\n");
1302 hasErrors
= localHasErrors
= true;
1306 ResXMLParser::ResXMLPosition parserPosition
;
1307 block
.getPosition(&parserPosition
);
1309 err
= parseAndAddBag(bundle
, in
, &block
, curParams
, myPackage
, curType
,
1310 ident
, parentIdent
, itemIdent
, curFormat
,
1311 false, overwrite
, outTable
);
1312 if (err
== NO_ERROR
) {
1313 if (curIsPseudolocalizable
&& localeIsDefined(curParams
)
1314 && bundle
->getPseudolocalize()) {
1315 // pseudolocalize here
1317 block
.setPosition(parserPosition
);
1318 err
= parseAndAddBag(bundle
, in
, &block
, pseudoParams
, myPackage
,
1319 curType
, ident
, parentIdent
, itemIdent
, curFormat
, true,
1320 overwrite
, outTable
);
1324 if (err
!= NO_ERROR
) {
1325 hasErrors
= localHasErrors
= true;
1327 } else if (code
== ResXMLTree::END_TAG
) {
1328 if (strcmp16(block
.getElementName(&len
), curTag
->string()) != 0) {
1329 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1330 "Found tag </%s> where </%s> is expected\n",
1331 String8(block
.getElementName(&len
)).string(),
1332 String8(*curTag
).string());
1333 return UNKNOWN_ERROR
;
1339 ResXMLParser::ResXMLPosition parserPosition
;
1340 block
.getPosition(&parserPosition
);
1342 err
= parseAndAddEntry(bundle
, in
, &block
, curParams
, myPackage
, curType
, ident
,
1343 *curTag
, curIsStyled
, curFormat
, false, overwrite
, outTable
);
1345 if (err
< NO_ERROR
) { // Why err < NO_ERROR instead of err != NO_ERROR?
1346 hasErrors
= localHasErrors
= true;
1348 else if (err
== NO_ERROR
) {
1349 if (curIsPseudolocalizable
&& localeIsDefined(curParams
)
1350 && bundle
->getPseudolocalize()) {
1351 // pseudolocalize here
1352 block
.setPosition(parserPosition
);
1353 err
= parseAndAddEntry(bundle
, in
, &block
, pseudoParams
, myPackage
, curType
,
1354 ident
, *curTag
, curIsStyled
, curFormat
, true, overwrite
, outTable
);
1355 if (err
!= NO_ERROR
) {
1356 hasErrors
= localHasErrors
= true;
1363 if (comment
.size() > 0) {
1364 printf("Comment for @%s:%s/%s: %s\n", String8(myPackage
).string(),
1365 String8(curType
).string(), String8(ident
).string(),
1366 String8(comment
).string());
1369 if (!localHasErrors
) {
1370 outTable
->appendComment(myPackage
, curType
, ident
, comment
, false);
1373 else if (code
== ResXMLTree::END_TAG
) {
1374 if (strcmp16(block
.getElementName(&len
), resources16
.string()) != 0) {
1375 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1376 "Unexpected end tag %s\n", String8(block
.getElementName(&len
)).string());
1377 return UNKNOWN_ERROR
;
1380 else if (code
== ResXMLTree::START_NAMESPACE
|| code
== ResXMLTree::END_NAMESPACE
) {
1382 else if (code
== ResXMLTree::TEXT
) {
1383 if (isWhitespace(block
.getText(&len
))) {
1386 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1387 "Found text \"%s\" where item tag is expected\n",
1388 String8(block
.getText(&len
)).string());
1389 return UNKNOWN_ERROR
;
1393 return hasErrors
? UNKNOWN_ERROR
: NO_ERROR
;
1396 ResourceTable::ResourceTable(Bundle
* bundle
, const String16
& assetsPackage
)
1397 : mAssetsPackage(assetsPackage
), mNextPackageId(1), mHaveAppPackage(false),
1398 mIsAppPackage(!bundle
->getExtending()),
1404 status_t
ResourceTable::addIncludedResources(Bundle
* bundle
, const sp
<AaptAssets
>& assets
)
1406 status_t err
= assets
->buildIncludedResources(bundle
);
1407 if (err
!= NO_ERROR
) {
1411 // For future reference to included resources.
1414 const ResTable
& incl
= assets
->getIncludedResources();
1416 // Retrieve all the packages.
1417 const size_t N
= incl
.getBasePackageCount();
1418 for (size_t phase
=0; phase
<2; phase
++) {
1419 for (size_t i
=0; i
<N
; i
++) {
1420 String16
name(incl
.getBasePackageName(i
));
1421 uint32_t id
= incl
.getBasePackageId(i
);
1422 // First time through: only add base packages (id
1423 // is not 0); second time through add the other
1427 // Skip base packages -- already one.
1430 // Assign a dynamic id.
1431 id
= mNextPackageId
;
1433 } else if (id
!= 0) {
1435 if (mHaveAppPackage
) {
1436 fprintf(stderr
, "Included resources have two application packages!\n");
1437 return UNKNOWN_ERROR
;
1439 mHaveAppPackage
= true;
1441 if (mNextPackageId
> id
) {
1442 fprintf(stderr
, "Included base package ID %d already in use!\n", id
);
1443 return UNKNOWN_ERROR
;
1447 NOISY(printf("Including package %s with ID=%d\n",
1448 String8(name
).string(), id
));
1449 sp
<Package
> p
= new Package(name
, id
);
1450 mPackages
.add(name
, p
);
1451 mOrderedPackages
.add(p
);
1453 if (id
>= mNextPackageId
) {
1454 mNextPackageId
= id
+1;
1460 // Every resource table always has one first entry, the bag attributes.
1461 const SourcePos
unknown(String8("????"), 0);
1462 sp
<Type
> attr
= getType(mAssetsPackage
, String16("attr"), unknown
);
1467 status_t
ResourceTable::addPublic(const SourcePos
& sourcePos
,
1468 const String16
& package
,
1469 const String16
& type
,
1470 const String16
& name
,
1471 const uint32_t ident
)
1473 uint32_t rid
= mAssets
->getIncludedResources()
1474 .identifierForName(name
.string(), name
.size(),
1475 type
.string(), type
.size(),
1476 package
.string(), package
.size());
1478 sourcePos
.error("Error declaring public resource %s/%s for included package %s\n",
1479 String8(type
).string(), String8(name
).string(),
1480 String8(package
).string());
1481 return UNKNOWN_ERROR
;
1484 sp
<Type
> t
= getType(package
, type
, sourcePos
);
1486 return UNKNOWN_ERROR
;
1488 return t
->addPublic(sourcePos
, name
, ident
);
1491 status_t
ResourceTable::addEntry(const SourcePos
& sourcePos
,
1492 const String16
& package
,
1493 const String16
& type
,
1494 const String16
& name
,
1495 const String16
& value
,
1496 const Vector
<StringPool::entry_style_span
>* style
,
1497 const ResTable_config
* params
,
1498 const bool doSetIndex
,
1499 const int32_t format
,
1500 const bool overwrite
)
1502 // Check for adding entries in other packages... for now we do
1503 // nothing. We need to do the right thing here to support skinning.
1504 uint32_t rid
= mAssets
->getIncludedResources()
1505 .identifierForName(name
.string(), name
.size(),
1506 type
.string(), type
.size(),
1507 package
.string(), package
.size());
1513 if (name
== String16("left")) {
1514 printf("Adding entry left: file=%s, line=%d, type=%s, value=%s\n",
1515 sourcePos
.file
.string(), sourcePos
.line
, String8(type
).string(),
1516 String8(value
).string());
1520 sp
<Entry
> e
= getEntry(package
, type
, name
, sourcePos
, overwrite
,
1521 params
, doSetIndex
);
1523 return UNKNOWN_ERROR
;
1525 status_t err
= e
->setItem(sourcePos
, value
, style
, format
, overwrite
);
1526 if (err
== NO_ERROR
) {
1532 status_t
ResourceTable::startBag(const SourcePos
& sourcePos
,
1533 const String16
& package
,
1534 const String16
& type
,
1535 const String16
& name
,
1536 const String16
& bagParent
,
1537 const ResTable_config
* params
,
1539 bool replace
, bool isId
)
1541 status_t result
= NO_ERROR
;
1543 // Check for adding entries in other packages... for now we do
1544 // nothing. We need to do the right thing here to support skinning.
1545 uint32_t rid
= mAssets
->getIncludedResources()
1546 .identifierForName(name
.string(), name
.size(),
1547 type
.string(), type
.size(),
1548 package
.string(), package
.size());
1554 if (name
== String16("left")) {
1555 printf("Adding bag left: file=%s, line=%d, type=%s\n",
1556 sourcePos
.file
.striing(), sourcePos
.line
, String8(type
).string());
1559 if (overlay
&& !hasBagOrEntry(package
, type
, name
)) {
1560 sourcePos
.error("Can't add new bags in an overlay. See '%s'\n",
1561 String8(name
).string());
1562 return UNKNOWN_ERROR
;
1564 sp
<Entry
> e
= getEntry(package
, type
, name
, sourcePos
, overlay
, params
);
1566 return UNKNOWN_ERROR
;
1569 // If a parent is explicitly specified, set it.
1570 if (bagParent
.size() > 0) {
1571 String16 curPar
= e
->getParent();
1572 if (curPar
.size() > 0 && curPar
!= bagParent
) {
1573 sourcePos
.error("Conflicting parents specified, was '%s', now '%s'\n",
1574 String8(e
->getParent()).string(),
1575 String8(bagParent
).string());
1576 return UNKNOWN_ERROR
;
1578 e
->setParent(bagParent
);
1581 if ((result
= e
->makeItABag(sourcePos
)) != NO_ERROR
) {
1585 if (overlay
&& replace
) {
1586 return e
->emptyBag(sourcePos
);
1591 status_t
ResourceTable::addBag(const SourcePos
& sourcePos
,
1592 const String16
& package
,
1593 const String16
& type
,
1594 const String16
& name
,
1595 const String16
& bagParent
,
1596 const String16
& bagKey
,
1597 const String16
& value
,
1598 const Vector
<StringPool::entry_style_span
>* style
,
1599 const ResTable_config
* params
,
1600 bool replace
, bool isId
, const int32_t format
)
1602 // Check for adding entries in other packages... for now we do
1603 // nothing. We need to do the right thing here to support skinning.
1604 uint32_t rid
= mAssets
->getIncludedResources()
1605 .identifierForName(name
.string(), name
.size(),
1606 type
.string(), type
.size(),
1607 package
.string(), package
.size());
1613 if (name
== String16("left")) {
1614 printf("Adding bag left: file=%s, line=%d, type=%s\n",
1615 sourcePos
.file
.striing(), sourcePos
.line
, String8(type
).string());
1618 sp
<Entry
> e
= getEntry(package
, type
, name
, sourcePos
, replace
, params
);
1620 return UNKNOWN_ERROR
;
1623 // If a parent is explicitly specified, set it.
1624 if (bagParent
.size() > 0) {
1625 String16 curPar
= e
->getParent();
1626 if (curPar
.size() > 0 && curPar
!= bagParent
) {
1627 sourcePos
.error("Conflicting parents specified, was '%s', now '%s'\n",
1628 String8(e
->getParent()).string(),
1629 String8(bagParent
).string());
1630 return UNKNOWN_ERROR
;
1632 e
->setParent(bagParent
);
1635 const bool first
= e
->getBag().indexOfKey(bagKey
) < 0;
1636 status_t err
= e
->addToBag(sourcePos
, bagKey
, value
, style
, replace
, isId
, format
);
1637 if (err
== NO_ERROR
&& first
) {
1643 bool ResourceTable::hasBagOrEntry(const String16
& package
,
1644 const String16
& type
,
1645 const String16
& name
) const
1647 // First look for this in the included resources...
1648 uint32_t rid
= mAssets
->getIncludedResources()
1649 .identifierForName(name
.string(), name
.size(),
1650 type
.string(), type
.size(),
1651 package
.string(), package
.size());
1656 sp
<Package
> p
= mPackages
.valueFor(package
);
1658 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1660 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1661 if (c
!= NULL
) return true;
1668 bool ResourceTable::hasBagOrEntry(const String16
& ref
,
1669 const String16
* defType
,
1670 const String16
* defPackage
)
1672 String16 package
, type
, name
;
1673 if (!ResTable::expandResourceRef(ref
.string(), ref
.size(), &package
, &type
, &name
,
1674 defType
, defPackage
? defPackage
:&mAssetsPackage
, NULL
)) {
1677 return hasBagOrEntry(package
, type
, name
);
1680 bool ResourceTable::appendComment(const String16
& package
,
1681 const String16
& type
,
1682 const String16
& name
,
1683 const String16
& comment
,
1686 if (comment
.size() <= 0) {
1690 sp
<Package
> p
= mPackages
.valueFor(package
);
1692 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1694 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1696 c
->appendComment(comment
, onlyIfEmpty
);
1704 bool ResourceTable::appendTypeComment(const String16
& package
,
1705 const String16
& type
,
1706 const String16
& name
,
1707 const String16
& comment
)
1709 if (comment
.size() <= 0) {
1713 sp
<Package
> p
= mPackages
.valueFor(package
);
1715 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1717 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1719 c
->appendTypeComment(comment
);
1727 size_t ResourceTable::size() const {
1728 return mPackages
.size();
1731 size_t ResourceTable::numLocalResources() const {
1735 bool ResourceTable::hasResources() const {
1736 return mNumLocal
> 0;
1739 sp
<AaptFile
> ResourceTable::flatten(Bundle
* bundle
)
1741 sp
<AaptFile
> data
= new AaptFile(String8(), AaptGroupEntry(), String8());
1742 status_t err
= flatten(bundle
, data
);
1743 return err
== NO_ERROR
? data
: NULL
;
1746 inline uint32_t ResourceTable::getResId(const sp
<Package
>& p
,
1750 return makeResId(p
->getAssignedId(), t
->getIndex(), nameId
);
1753 uint32_t ResourceTable::getResId(const String16
& package
,
1754 const String16
& type
,
1755 const String16
& name
,
1756 bool onlyPublic
) const
1758 sp
<Package
> p
= mPackages
.valueFor(package
);
1759 if (p
== NULL
) return 0;
1761 // First look for this in the included resources...
1762 uint32_t specFlags
= 0;
1763 uint32_t rid
= mAssets
->getIncludedResources()
1764 .identifierForName(name
.string(), name
.size(),
1765 type
.string(), type
.size(),
1766 package
.string(), package
.size(),
1770 if ((specFlags
& ResTable_typeSpec::SPEC_PUBLIC
) == 0) {
1775 if (Res_INTERNALID(rid
)) {
1778 return Res_MAKEID(p
->getAssignedId()-1,
1783 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1784 if (t
== NULL
) return 0;
1785 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1786 if (c
== NULL
) return 0;
1787 int32_t ei
= c
->getEntryIndex();
1788 if (ei
< 0) return 0;
1789 return getResId(p
, t
, ei
);
1792 uint32_t ResourceTable::getResId(const String16
& ref
,
1793 const String16
* defType
,
1794 const String16
* defPackage
,
1795 const char** outErrorMsg
,
1796 bool onlyPublic
) const
1798 String16 package
, type
, name
;
1799 if (!ResTable::expandResourceRef(
1800 ref
.string(), ref
.size(), &package
, &type
, &name
,
1801 defType
, defPackage
? defPackage
:&mAssetsPackage
,
1803 NOISY(printf("Expanding resource: ref=%s\n",
1804 String8(ref
).string()));
1805 NOISY(printf("Expanding resource: defType=%s\n",
1806 defType
? String8(*defType
).string() : "NULL"));
1807 NOISY(printf("Expanding resource: defPackage=%s\n",
1808 defPackage
? String8(*defPackage
).string() : "NULL"));
1809 NOISY(printf("Expanding resource: ref=%s\n", String8(ref
).string()));
1810 NOISY(printf("Expanded resource: p=%s, t=%s, n=%s, res=0\n",
1811 String8(package
).string(), String8(type
).string(),
1812 String8(name
).string()));
1815 uint32_t res
= getResId(package
, type
, name
, onlyPublic
);
1816 NOISY(printf("Expanded resource: p=%s, t=%s, n=%s, res=%d\n",
1817 String8(package
).string(), String8(type
).string(),
1818 String8(name
).string(), res
));
1821 *outErrorMsg
= "No resource found that matches the given name";
1826 bool ResourceTable::isValidResourceName(const String16
& s
)
1828 const char16_t* p
= s
.string();
1831 if ((*p
>= 'a' && *p
<= 'z')
1832 || (*p
>= 'A' && *p
<= 'Z')
1834 || (!first
&& *p
>= '0' && *p
<= '9')) {
1844 bool ResourceTable::stringToValue(Res_value
* outValue
, StringPool
* pool
,
1845 const String16
& str
,
1846 bool preserveSpaces
, bool coerceType
,
1848 const Vector
<StringPool::entry_style_span
>* style
,
1849 String16
* outStr
, void* accessorCookie
,
1855 if (style
== NULL
|| style
->size() == 0) {
1856 // Text is not styled so it can be any type... let's figure it out.
1857 res
= mAssets
->getIncludedResources()
1858 .stringToValue(outValue
, &finalStr
, str
.string(), str
.size(), preserveSpaces
,
1859 coerceType
, attrID
, NULL
, &mAssetsPackage
, this,
1860 accessorCookie
, attrType
);
1862 // Styled text can only be a string, and while collecting the style
1863 // information we have already processed that string!
1864 outValue
->size
= sizeof(Res_value
);
1866 outValue
->dataType
= outValue
->TYPE_STRING
;
1875 if (outValue
->dataType
== outValue
->TYPE_STRING
) {
1876 // Should do better merging styles.
1878 if (style
!= NULL
&& style
->size() > 0) {
1879 outValue
->data
= pool
->add(finalStr
, *style
);
1881 outValue
->data
= pool
->add(finalStr
, true);
1884 // Caller will fill this in later.
1897 uint32_t ResourceTable::getCustomResource(
1898 const String16
& package
, const String16
& type
, const String16
& name
) const
1900 //printf("getCustomResource: %s %s %s\n", String8(package).string(),
1901 // String8(type).string(), String8(name).string());
1902 sp
<Package
> p
= mPackages
.valueFor(package
);
1903 if (p
== NULL
) return 0;
1904 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1905 if (t
== NULL
) return 0;
1906 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1907 if (c
== NULL
) return 0;
1908 int32_t ei
= c
->getEntryIndex();
1909 if (ei
< 0) return 0;
1910 return getResId(p
, t
, ei
);
1913 uint32_t ResourceTable::getCustomResourceWithCreation(
1914 const String16
& package
, const String16
& type
, const String16
& name
,
1915 const bool createIfNotFound
)
1917 uint32_t resId
= getCustomResource(package
, type
, name
);
1918 if (resId
!= 0 || !createIfNotFound
) {
1921 String16
value("false");
1923 status_t status
= addEntry(mCurrentXmlPos
, package
, type
, name
, value
, NULL
, NULL
, true);
1924 if (status
== NO_ERROR
) {
1925 resId
= getResId(package
, type
, name
);
1931 uint32_t ResourceTable::getRemappedPackage(uint32_t origPackage
) const
1936 bool ResourceTable::getAttributeType(uint32_t attrID
, uint32_t* outType
)
1938 //printf("getAttributeType #%08x\n", attrID);
1940 if (getItemValue(attrID
, ResTable_map::ATTR_TYPE
, &value
)) {
1941 //printf("getAttributeType #%08x (%s): #%08x\n", attrID,
1942 // String8(getEntry(attrID)->getName()).string(), value.data);
1943 *outType
= value
.data
;
1949 bool ResourceTable::getAttributeMin(uint32_t attrID
, uint32_t* outMin
)
1951 //printf("getAttributeMin #%08x\n", attrID);
1953 if (getItemValue(attrID
, ResTable_map::ATTR_MIN
, &value
)) {
1954 *outMin
= value
.data
;
1960 bool ResourceTable::getAttributeMax(uint32_t attrID
, uint32_t* outMax
)
1962 //printf("getAttributeMax #%08x\n", attrID);
1964 if (getItemValue(attrID
, ResTable_map::ATTR_MAX
, &value
)) {
1965 *outMax
= value
.data
;
1971 uint32_t ResourceTable::getAttributeL10N(uint32_t attrID
)
1973 //printf("getAttributeL10N #%08x\n", attrID);
1975 if (getItemValue(attrID
, ResTable_map::ATTR_L10N
, &value
)) {
1978 return ResTable_map::L10N_NOT_REQUIRED
;
1981 bool ResourceTable::getLocalizationSetting()
1983 return mBundle
->getRequireLocalization();
1986 void ResourceTable::reportError(void* accessorCookie
, const char* fmt
, ...)
1988 if (accessorCookie
!= NULL
&& fmt
!= NULL
) {
1989 AccessorCookie
* ac
= (AccessorCookie
*)accessorCookie
;
1994 retval
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
1996 ac
->sourcePos
.error("Error: %s (at '%s' with value '%s').\n",
1997 buf
, ac
->attr
.string(), ac
->value
.string());
2001 bool ResourceTable::getAttributeKeys(
2002 uint32_t attrID
, Vector
<String16
>* outKeys
)
2004 sp
<const Entry
> e
= getEntry(attrID
);
2006 const size_t N
= e
->getBag().size();
2007 for (size_t i
=0; i
<N
; i
++) {
2008 const String16
& key
= e
->getBag().keyAt(i
);
2009 if (key
.size() > 0 && key
.string()[0] != '^') {
2018 bool ResourceTable::getAttributeEnum(
2019 uint32_t attrID
, const char16_t* name
, size_t nameLen
,
2020 Res_value
* outValue
)
2022 //printf("getAttributeEnum #%08x %s\n", attrID, String8(name, nameLen).string());
2023 String16
nameStr(name
, nameLen
);
2024 sp
<const Entry
> e
= getEntry(attrID
);
2026 const size_t N
= e
->getBag().size();
2027 for (size_t i
=0; i
<N
; i
++) {
2028 //printf("Comparing %s to %s\n", String8(name, nameLen).string(),
2029 // String8(e->getBag().keyAt(i)).string());
2030 if (e
->getBag().keyAt(i
) == nameStr
) {
2031 return getItemValue(attrID
, e
->getBag().valueAt(i
).bagKeyId
, outValue
);
2038 bool ResourceTable::getAttributeFlags(
2039 uint32_t attrID
, const char16_t* name
, size_t nameLen
,
2040 Res_value
* outValue
)
2042 outValue
->dataType
= Res_value::TYPE_INT_HEX
;
2045 //printf("getAttributeFlags #%08x %s\n", attrID, String8(name, nameLen).string());
2046 String16
nameStr(name
, nameLen
);
2047 sp
<const Entry
> e
= getEntry(attrID
);
2049 const size_t N
= e
->getBag().size();
2051 const char16_t* end
= name
+ nameLen
;
2052 const char16_t* pos
= name
;
2053 bool failed
= false;
2054 while (pos
< end
&& !failed
) {
2055 const char16_t* start
= pos
;
2057 while (pos
< end
&& *pos
!= '|') {
2061 String16
nameStr(start
, pos
-start
);
2063 for (i
=0; i
<N
; i
++) {
2064 //printf("Comparing \"%s\" to \"%s\"\n", String8(nameStr).string(),
2065 // String8(e->getBag().keyAt(i)).string());
2066 if (e
->getBag().keyAt(i
) == nameStr
) {
2068 bool got
= getItemValue(attrID
, e
->getBag().valueAt(i
).bagKeyId
, &val
);
2072 //printf("Got value: 0x%08x\n", val.data);
2073 outValue
->data
|= val
.data
;
2079 // Didn't find this flag identifier.
2092 status_t
ResourceTable::assignResourceIds()
2094 const size_t N
= mOrderedPackages
.size();
2096 status_t firstError
= NO_ERROR
;
2098 // First generate all bag attributes and assign indices.
2099 for (pi
=0; pi
<N
; pi
++) {
2100 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2101 if (p
== NULL
|| p
->getTypes().size() == 0) {
2106 status_t err
= p
->applyPublicTypeOrder();
2107 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2111 // Generate attributes...
2112 const size_t N
= p
->getOrderedTypes().size();
2114 for (ti
=0; ti
<N
; ti
++) {
2115 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2119 const size_t N
= t
->getOrderedConfigs().size();
2120 for (size_t ci
=0; ci
<N
; ci
++) {
2121 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2125 const size_t N
= c
->getEntries().size();
2126 for (size_t ei
=0; ei
<N
; ei
++) {
2127 sp
<Entry
> e
= c
->getEntries().valueAt(ei
);
2131 status_t err
= e
->generateAttributes(this, p
->getName());
2132 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2139 const SourcePos
unknown(String8("????"), 0);
2140 sp
<Type
> attr
= p
->getType(String16("attr"), unknown
);
2142 // Assign indices...
2143 for (ti
=0; ti
<N
; ti
++) {
2144 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2148 err
= t
->applyPublicEntryOrder();
2149 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2153 const size_t N
= t
->getOrderedConfigs().size();
2156 LOG_ALWAYS_FATAL_IF(ti
== 0 && attr
!= t
,
2157 "First type is not attr!");
2159 for (size_t ei
=0; ei
<N
; ei
++) {
2160 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ei
);
2164 c
->setEntryIndex(ei
);
2168 // Assign resource IDs to keys in bags...
2169 for (ti
=0; ti
<N
; ti
++) {
2170 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2174 const size_t N
= t
->getOrderedConfigs().size();
2175 for (size_t ci
=0; ci
<N
; ci
++) {
2176 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2177 //printf("Ordered config #%d: %p\n", ci, c.get());
2178 const size_t N
= c
->getEntries().size();
2179 for (size_t ei
=0; ei
<N
; ei
++) {
2180 sp
<Entry
> e
= c
->getEntries().valueAt(ei
);
2184 status_t err
= e
->assignResourceIds(this, p
->getName());
2185 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2195 status_t
ResourceTable::addSymbols(const sp
<AaptSymbols
>& outSymbols
) {
2196 const size_t N
= mOrderedPackages
.size();
2199 for (pi
=0; pi
<N
; pi
++) {
2200 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2201 if (p
->getTypes().size() == 0) {
2206 const size_t N
= p
->getOrderedTypes().size();
2209 for (ti
=0; ti
<N
; ti
++) {
2210 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2214 const size_t N
= t
->getOrderedConfigs().size();
2215 sp
<AaptSymbols
> typeSymbols
;
2216 typeSymbols
= outSymbols
->addNestedSymbol(String8(t
->getName()), t
->getPos());
2217 for (size_t ci
=0; ci
<N
; ci
++) {
2218 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2222 uint32_t rid
= getResId(p
, t
, ci
);
2224 return UNKNOWN_ERROR
;
2226 if (Res_GETPACKAGE(rid
) == (size_t)(p
->getAssignedId()-1)) {
2227 typeSymbols
->addSymbol(String8(c
->getName()), rid
, c
->getPos());
2229 String16
comment(c
->getComment());
2230 typeSymbols
->appendComment(String8(c
->getName()), comment
, c
->getPos());
2231 //printf("Type symbol %s comment: %s\n", String8(e->getName()).string(),
2232 // String8(comment).string());
2233 comment
= c
->getTypeComment();
2234 typeSymbols
->appendTypeComment(String8(c
->getName()), comment
);
2237 printf("**** NO MATCH: 0x%08x vs 0x%08x\n",
2238 Res_GETPACKAGE(rid
), p
->getAssignedId());
2249 ResourceTable::addLocalization(const String16
& name
, const String8
& locale
)
2251 mLocalizations
[name
].insert(locale
);
2256 * Flag various sorts of localization problems. '+' indicates checks already implemented;
2257 * '-' indicates checks that will be implemented in the future.
2259 * + A localized string for which no default-locale version exists => warning
2260 * + A string for which no version in an explicitly-requested locale exists => warning
2261 * + A localized translation of an translateable="false" string => warning
2262 * - A localized string not provided in every locale used by the table
2265 ResourceTable::validateLocalizations(void)
2267 status_t err
= NO_ERROR
;
2268 const String8 defaultLocale
;
2270 // For all strings...
2271 for (map
<String16
, set
<String8
> >::iterator nameIter
= mLocalizations
.begin();
2272 nameIter
!= mLocalizations
.end();
2274 const set
<String8
>& configSet
= nameIter
->second
; // naming convenience
2276 // Look for strings with no default localization
2277 if (configSet
.count(defaultLocale
) == 0) {
2278 fprintf(stdout
, "aapt: warning: string '%s' has no default translation in %s; found:",
2279 String8(nameIter
->first
).string(), mBundle
->getResourceSourceDirs()[0]);
2280 for (set
<String8
>::iterator locales
= configSet
.begin();
2281 locales
!= configSet
.end();
2283 fprintf(stdout
, " %s", (*locales
).string());
2285 fprintf(stdout
, "\n");
2286 // !!! TODO: throw an error here in some circumstances
2289 // Check that all requested localizations are present for this string
2290 if (mBundle
->getConfigurations() != NULL
&& mBundle
->getRequireLocalization()) {
2291 const char* allConfigs
= mBundle
->getConfigurations();
2292 const char* start
= allConfigs
;
2297 comma
= strchr(start
, ',');
2298 if (comma
!= NULL
) {
2299 config
.setTo(start
, comma
- start
);
2302 config
.setTo(start
);
2305 // don't bother with the pseudolocale "zz_ZZ"
2306 if (config
!= "zz_ZZ") {
2307 if (configSet
.find(config
) == configSet
.end()) {
2308 // okay, no specific localization found. it's possible that we are
2309 // requiring a specific regional localization [e.g. de_DE] but there is an
2310 // available string in the generic language localization [e.g. de];
2311 // consider that string to have fulfilled the localization requirement.
2312 String8
region(config
.string(), 2);
2313 if (configSet
.find(region
) == configSet
.end()) {
2314 if (configSet
.count(defaultLocale
) == 0) {
2315 fprintf(stdout
, "aapt: error: "
2316 "*** string '%s' has no default or required localization "
2318 String8(nameIter
->first
).string(),
2320 mBundle
->getResourceSourceDirs()[0]);
2321 err
= UNKNOWN_ERROR
;
2326 } while (comma
!= NULL
);
2335 ResourceFilter::parse(const char* arg
)
2341 const char* p
= arg
;
2350 String8
part(p
, q
-p
);
2352 if (part
== "zz_ZZ") {
2353 mContainsPseudo
= true;
2357 if (AaptGroupEntry::parseNamePart(part
, &axis
, &value
)) {
2358 fprintf(stderr
, "Invalid configuration: %s\n", arg
);
2359 fprintf(stderr
, " ");
2360 for (int i
=0; i
<p
-arg
; i
++) {
2361 fprintf(stderr
, " ");
2363 for (int i
=0; i
<q
-p
; i
++) {
2364 fprintf(stderr
, "^");
2366 fprintf(stderr
, "\n");
2370 ssize_t index
= mData
.indexOfKey(axis
);
2372 mData
.add(axis
, SortedVector
<uint32_t>());
2374 SortedVector
<uint32_t>& sv
= mData
.editValueFor(axis
);
2376 // if it's a locale with a region, also match an unmodified locale of the
2378 if (axis
== AXIS_LANGUAGE
) {
2379 if (value
& 0xffff0000) {
2380 sv
.add(value
& 0x0000ffff);
2392 ResourceFilter::match(int axis
, uint32_t value
)
2395 // they didn't specify anything so take everything
2398 ssize_t index
= mData
.indexOfKey(axis
);
2400 // we didn't request anything on this axis so take everything
2403 const SortedVector
<uint32_t>& sv
= mData
.valueAt(index
);
2404 return sv
.indexOf(value
) >= 0;
2408 ResourceFilter::match(const ResTable_config
& config
)
2410 if (config
.locale
) {
2411 uint32_t locale
= (config
.country
[1] << 24) | (config
.country
[0] << 16)
2412 | (config
.language
[1] << 8) | (config
.language
[0]);
2413 if (!match(AXIS_LANGUAGE
, locale
)) {
2417 if (!match(AXIS_ORIENTATION
, config
.orientation
)) {
2420 if (!match(AXIS_DENSITY
, config
.density
)) {
2423 if (!match(AXIS_TOUCHSCREEN
, config
.touchscreen
)) {
2426 if (!match(AXIS_KEYSHIDDEN
, config
.inputFlags
)) {
2429 if (!match(AXIS_KEYBOARD
, config
.keyboard
)) {
2432 if (!match(AXIS_NAVIGATION
, config
.navigation
)) {
2435 if (!match(AXIS_SCREENSIZE
, config
.screenSize
)) {
2438 if (!match(AXIS_VERSION
, config
.version
)) {
2444 status_t
ResourceTable::flatten(Bundle
* bundle
, const sp
<AaptFile
>& dest
)
2446 ResourceFilter filter
;
2447 status_t err
= filter
.parse(bundle
->getConfigurations());
2448 if (err
!= NO_ERROR
) {
2452 const size_t N
= mOrderedPackages
.size();
2455 // Iterate through all data, collecting all values (strings,
2456 // references, etc).
2457 StringPool valueStrings
;
2458 for (pi
=0; pi
<N
; pi
++) {
2459 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2460 if (p
->getTypes().size() == 0) {
2465 StringPool typeStrings
;
2466 StringPool keyStrings
;
2468 const size_t N
= p
->getOrderedTypes().size();
2469 for (size_t ti
=0; ti
<N
; ti
++) {
2470 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2472 typeStrings
.add(String16("<empty>"), false);
2475 typeStrings
.add(t
->getName(), false);
2477 const size_t N
= t
->getOrderedConfigs().size();
2478 for (size_t ci
=0; ci
<N
; ci
++) {
2479 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2483 const size_t N
= c
->getEntries().size();
2484 for (size_t ei
=0; ei
<N
; ei
++) {
2485 ConfigDescription config
= c
->getEntries().keyAt(ei
);
2486 if (!filter
.match(config
)) {
2489 sp
<Entry
> e
= c
->getEntries().valueAt(ei
);
2493 e
->setNameIndex(keyStrings
.add(e
->getName(), true));
2494 status_t err
= e
->prepareFlatten(&valueStrings
, this);
2495 if (err
!= NO_ERROR
) {
2502 p
->setTypeStrings(typeStrings
.createStringBlock());
2503 p
->setKeyStrings(keyStrings
.createStringBlock());
2508 // Now build the array of package chunks.
2509 Vector
<sp
<AaptFile
> > flatPackages
;
2510 for (pi
=0; pi
<N
; pi
++) {
2511 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2512 if (p
->getTypes().size() == 0) {
2517 const size_t N
= p
->getTypeStrings().size();
2519 const size_t baseSize
= sizeof(ResTable_package
);
2521 // Start the package data.
2522 sp
<AaptFile
> data
= new AaptFile(String8(), AaptGroupEntry(), String8());
2523 ResTable_package
* header
= (ResTable_package
*)data
->editData(baseSize
);
2524 if (header
== NULL
) {
2525 fprintf(stderr
, "ERROR: out of memory creating ResTable_package\n");
2528 memset(header
, 0, sizeof(*header
));
2529 header
->header
.type
= htods(RES_TABLE_PACKAGE_TYPE
);
2530 header
->header
.headerSize
= htods(sizeof(*header
));
2531 header
->id
= htodl(p
->getAssignedId());
2532 strcpy16_htod(header
->name
, p
->getName().string());
2534 // Write the string blocks.
2535 const size_t typeStringsStart
= data
->getSize();
2536 sp
<AaptFile
> strFile
= p
->getTypeStringsData();
2537 ssize_t amt
= data
->writeData(strFile
->getData(), strFile
->getSize());
2538 #if PRINT_STRING_METRICS
2539 fprintf(stderr
, "**** type strings: %d\n", amt
);
2545 const size_t keyStringsStart
= data
->getSize();
2546 strFile
= p
->getKeyStringsData();
2547 amt
= data
->writeData(strFile
->getData(), strFile
->getSize());
2548 #if PRINT_STRING_METRICS
2549 fprintf(stderr
, "**** key strings: %d\n", amt
);
2556 // Build the type chunks inside of this package.
2557 for (size_t ti
=0; ti
<N
; ti
++) {
2558 // Retrieve them in the same order as the type string block.
2560 String16
typeName(p
->getTypeStrings().stringAt(ti
, &len
));
2561 sp
<Type
> t
= p
->getTypes().valueFor(typeName
);
2562 LOG_ALWAYS_FATAL_IF(t
== NULL
&& typeName
!= String16("<empty>"),
2563 "Type name %s not found",
2564 String8(typeName
).string());
2566 const size_t N
= t
!= NULL
? t
->getOrderedConfigs().size() : 0;
2568 // First write the typeSpec chunk, containing information about
2569 // each resource entry in this type.
2571 const size_t typeSpecSize
= sizeof(ResTable_typeSpec
) + sizeof(uint32_t)*N
;
2572 const size_t typeSpecStart
= data
->getSize();
2573 ResTable_typeSpec
* tsHeader
= (ResTable_typeSpec
*)
2574 (((uint8_t*)data
->editData(typeSpecStart
+typeSpecSize
)) + typeSpecStart
);
2575 if (tsHeader
== NULL
) {
2576 fprintf(stderr
, "ERROR: out of memory creating ResTable_typeSpec\n");
2579 memset(tsHeader
, 0, sizeof(*tsHeader
));
2580 tsHeader
->header
.type
= htods(RES_TABLE_TYPE_SPEC_TYPE
);
2581 tsHeader
->header
.headerSize
= htods(sizeof(*tsHeader
));
2582 tsHeader
->header
.size
= htodl(typeSpecSize
);
2583 tsHeader
->id
= ti
+1;
2584 tsHeader
->entryCount
= htodl(N
);
2586 uint32_t* typeSpecFlags
= (uint32_t*)
2587 (((uint8_t*)data
->editData())
2588 + typeSpecStart
+ sizeof(ResTable_typeSpec
));
2589 memset(typeSpecFlags
, 0, sizeof(uint32_t)*N
);
2591 for (size_t ei
=0; ei
<N
; ei
++) {
2592 sp
<ConfigList
> cl
= t
->getOrderedConfigs().itemAt(ei
);
2593 if (cl
->getPublic()) {
2594 typeSpecFlags
[ei
] |= htodl(ResTable_typeSpec::SPEC_PUBLIC
);
2596 const size_t CN
= cl
->getEntries().size();
2597 for (size_t ci
=0; ci
<CN
; ci
++) {
2598 if (!filter
.match(cl
->getEntries().keyAt(ci
))) {
2601 for (size_t cj
=ci
+1; cj
<CN
; cj
++) {
2602 if (!filter
.match(cl
->getEntries().keyAt(cj
))) {
2605 typeSpecFlags
[ei
] |= htodl(
2606 cl
->getEntries().keyAt(ci
).diff(cl
->getEntries().keyAt(cj
)));
2612 // We need to write one type chunk for each configuration for
2613 // which we have entries in this type.
2614 const size_t NC
= t
->getUniqueConfigs().size();
2616 const size_t typeSize
= sizeof(ResTable_type
) + sizeof(uint32_t)*N
;
2618 for (size_t ci
=0; ci
<NC
; ci
++) {
2619 ConfigDescription config
= t
->getUniqueConfigs().itemAt(ci
);
2621 NOISY(printf("Writing config %d config: imsi:%d/%d lang:%c%c cnt:%c%c "
2622 "orien:%d touch:%d density:%d key:%d inp:%d nav:%d w:%d h:%d\n",
2624 config
.mcc
, config
.mnc
,
2625 config
.language
[0] ? config
.language
[0] : '-',
2626 config
.language
[1] ? config
.language
[1] : '-',
2627 config
.country
[0] ? config
.country
[0] : '-',
2628 config
.country
[1] ? config
.country
[1] : '-',
2636 config
.screenHeight
));
2638 if (!filter
.match(config
)) {
2642 const size_t typeStart
= data
->getSize();
2644 ResTable_type
* tHeader
= (ResTable_type
*)
2645 (((uint8_t*)data
->editData(typeStart
+typeSize
)) + typeStart
);
2646 if (tHeader
== NULL
) {
2647 fprintf(stderr
, "ERROR: out of memory creating ResTable_type\n");
2651 memset(tHeader
, 0, sizeof(*tHeader
));
2652 tHeader
->header
.type
= htods(RES_TABLE_TYPE_TYPE
);
2653 tHeader
->header
.headerSize
= htods(sizeof(*tHeader
));
2655 tHeader
->entryCount
= htodl(N
);
2656 tHeader
->entriesStart
= htodl(typeSize
);
2657 tHeader
->config
= config
;
2658 NOISY(printf("Writing type %d config: imsi:%d/%d lang:%c%c cnt:%c%c "
2659 "orien:%d touch:%d density:%d key:%d inp:%d nav:%d w:%d h:%d\n",
2661 tHeader
->config
.mcc
, tHeader
->config
.mnc
,
2662 tHeader
->config
.language
[0] ? tHeader
->config
.language
[0] : '-',
2663 tHeader
->config
.language
[1] ? tHeader
->config
.language
[1] : '-',
2664 tHeader
->config
.country
[0] ? tHeader
->config
.country
[0] : '-',
2665 tHeader
->config
.country
[1] ? tHeader
->config
.country
[1] : '-',
2666 tHeader
->config
.orientation
,
2667 tHeader
->config
.touchscreen
,
2668 tHeader
->config
.density
,
2669 tHeader
->config
.keyboard
,
2670 tHeader
->config
.inputFlags
,
2671 tHeader
->config
.navigation
,
2672 tHeader
->config
.screenWidth
,
2673 tHeader
->config
.screenHeight
));
2674 tHeader
->config
.swapHtoD();
2676 // Build the entries inside of this type.
2677 for (size_t ei
=0; ei
<N
; ei
++) {
2678 sp
<ConfigList
> cl
= t
->getOrderedConfigs().itemAt(ei
);
2679 sp
<Entry
> e
= cl
->getEntries().valueFor(config
);
2681 // Set the offset for this entry in its type.
2682 uint32_t* index
= (uint32_t*)
2683 (((uint8_t*)data
->editData())
2684 + typeStart
+ sizeof(ResTable_type
));
2686 index
[ei
] = htodl(data
->getSize()-typeStart
-typeSize
);
2688 // Create the entry.
2689 ssize_t amt
= e
->flatten(bundle
, data
, cl
->getPublic());
2694 index
[ei
] = htodl(ResTable_type::NO_ENTRY
);
2698 // Fill in the rest of the type information.
2699 tHeader
= (ResTable_type
*)
2700 (((uint8_t*)data
->editData()) + typeStart
);
2701 tHeader
->header
.size
= htodl(data
->getSize()-typeStart
);
2705 // Fill in the rest of the package information.
2706 header
= (ResTable_package
*)data
->editData();
2707 header
->header
.size
= htodl(data
->getSize());
2708 header
->typeStrings
= htodl(typeStringsStart
);
2709 header
->lastPublicType
= htodl(p
->getTypeStrings().size());
2710 header
->keyStrings
= htodl(keyStringsStart
);
2711 header
->lastPublicKey
= htodl(p
->getKeyStrings().size());
2713 flatPackages
.add(data
);
2716 // And now write out the final chunks.
2717 const size_t dataStart
= dest
->getSize();
2721 ResTable_header header
;
2722 memset(&header
, 0, sizeof(header
));
2723 header
.header
.type
= htods(RES_TABLE_TYPE
);
2724 header
.header
.headerSize
= htods(sizeof(header
));
2725 header
.packageCount
= htodl(flatPackages
.size());
2726 status_t err
= dest
->writeData(&header
, sizeof(header
));
2727 if (err
!= NO_ERROR
) {
2728 fprintf(stderr
, "ERROR: out of memory creating ResTable_header\n");
2733 ssize_t strStart
= dest
->getSize();
2734 err
= valueStrings
.writeStringBlock(dest
);
2735 if (err
!= NO_ERROR
) {
2739 ssize_t amt
= (dest
->getSize()-strStart
);
2741 #if PRINT_STRING_METRICS
2742 fprintf(stderr
, "**** value strings: %d\n", amt
);
2743 fprintf(stderr
, "**** total strings: %d\n", strAmt
);
2746 for (pi
=0; pi
<flatPackages
.size(); pi
++) {
2747 err
= dest
->writeData(flatPackages
[pi
]->getData(),
2748 flatPackages
[pi
]->getSize());
2749 if (err
!= NO_ERROR
) {
2750 fprintf(stderr
, "ERROR: out of memory creating package chunk for ResTable_header\n");
2755 ResTable_header
* header
= (ResTable_header
*)
2756 (((uint8_t*)dest
->getData()) + dataStart
);
2757 header
->header
.size
= htodl(dest
->getSize() - dataStart
);
2759 NOISY(aout
<< "Resource table:"
2760 << HexDump(dest
->getData(), dest
->getSize()) << endl
);
2762 #if PRINT_STRING_METRICS
2763 fprintf(stderr
, "**** total resource table size: %d / %d%% strings\n",
2764 dest
->getSize(), (strAmt
*100)/dest
->getSize());
2770 void ResourceTable::writePublicDefinitions(const String16
& package
, FILE* fp
)
2773 "<!-- This file contains <public> resource definitions for all\n"
2774 " resources that were generated from the source data. -->\n"
2778 writePublicDefinitions(package
, fp
, true);
2779 writePublicDefinitions(package
, fp
, false);
2786 void ResourceTable::writePublicDefinitions(const String16
& package
, FILE* fp
, bool pub
)
2788 bool didHeader
= false;
2790 sp
<Package
> pkg
= mPackages
.valueFor(package
);
2792 const size_t NT
= pkg
->getOrderedTypes().size();
2793 for (size_t i
=0; i
<NT
; i
++) {
2794 sp
<Type
> t
= pkg
->getOrderedTypes().itemAt(i
);
2799 bool didType
= false;
2801 const size_t NC
= t
->getOrderedConfigs().size();
2802 for (size_t j
=0; j
<NC
; j
++) {
2803 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(j
);
2808 if (c
->getPublic() != pub
) {
2818 fprintf(fp
," <!-- PUBLIC SECTION. These resources have been declared public.\n");
2819 fprintf(fp
," Changes to these definitions will break binary compatibility. -->\n\n");
2821 fprintf(fp
," <!-- PRIVATE SECTION. These resources have not been declared public.\n");
2822 fprintf(fp
," You can make them public my moving these lines into a file in res/values. -->\n\n");
2827 const size_t NE
= c
->getEntries().size();
2828 for (size_t k
=0; k
<NE
; k
++) {
2829 const SourcePos
& pos
= c
->getEntries().valueAt(k
)->getPos();
2830 if (pos
.file
!= "") {
2831 fprintf(fp
," <!-- Declared at %s:%d -->\n",
2832 pos
.file
.string(), pos
.line
);
2836 fprintf(fp
, " <public type=\"%s\" name=\"%s\" id=\"0x%08x\" />\n",
2837 String8(t
->getName()).string(),
2838 String8(c
->getName()).string(),
2839 getResId(pkg
, t
, c
->getEntryIndex()));
2845 ResourceTable::Item::Item(const SourcePos
& _sourcePos
,
2847 const String16
& _value
,
2848 const Vector
<StringPool::entry_style_span
>* _style
,
2850 : sourcePos(_sourcePos
)
2862 status_t
ResourceTable::Entry::makeItABag(const SourcePos
& sourcePos
)
2864 if (mType
== TYPE_BAG
) {
2867 if (mType
== TYPE_UNKNOWN
) {
2871 sourcePos
.error("Resource entry %s is already defined as a single item.\n"
2872 "%s:%d: Originally defined here.\n",
2873 String8(mName
).string(),
2874 mItem
.sourcePos
.file
.string(), mItem
.sourcePos
.line
);
2875 return UNKNOWN_ERROR
;
2878 status_t
ResourceTable::Entry::setItem(const SourcePos
& sourcePos
,
2879 const String16
& value
,
2880 const Vector
<StringPool::entry_style_span
>* style
,
2882 const bool overwrite
)
2884 Item
item(sourcePos
, false, value
, style
);
2886 if (mType
== TYPE_BAG
) {
2887 const Item
& item(mBag
.valueAt(0));
2888 sourcePos
.error("Resource entry %s is already defined as a bag.\n"
2889 "%s:%d: Originally defined here.\n",
2890 String8(mName
).string(),
2891 item
.sourcePos
.file
.string(), item
.sourcePos
.line
);
2892 return UNKNOWN_ERROR
;
2894 if ( (mType
!= TYPE_UNKNOWN
) && (overwrite
== false) ) {
2895 sourcePos
.error("Resource entry %s is already defined.\n"
2896 "%s:%d: Originally defined here.\n",
2897 String8(mName
).string(),
2898 mItem
.sourcePos
.file
.string(), mItem
.sourcePos
.line
);
2899 return UNKNOWN_ERROR
;
2904 mItemFormat
= format
;
2908 status_t
ResourceTable::Entry::addToBag(const SourcePos
& sourcePos
,
2909 const String16
& key
, const String16
& value
,
2910 const Vector
<StringPool::entry_style_span
>* style
,
2911 bool replace
, bool isId
, int32_t format
)
2913 status_t err
= makeItABag(sourcePos
);
2914 if (err
!= NO_ERROR
) {
2918 Item
item(sourcePos
, isId
, value
, style
, format
);
2920 // XXX NOTE: there is an error if you try to have a bag with two keys,
2921 // one an attr and one an id, with the same name. Not something we
2922 // currently ever have to worry about.
2923 ssize_t origKey
= mBag
.indexOfKey(key
);
2926 const Item
& item(mBag
.valueAt(origKey
));
2927 sourcePos
.error("Resource entry %s already has bag item %s.\n"
2928 "%s:%d: Originally defined here.\n",
2929 String8(mName
).string(), String8(key
).string(),
2930 item
.sourcePos
.file
.string(), item
.sourcePos
.line
);
2931 return UNKNOWN_ERROR
;
2933 //printf("Replacing %s with %s\n",
2934 // String8(mBag.valueFor(key).value).string(), String8(value).string());
2935 mBag
.replaceValueFor(key
, item
);
2938 mBag
.add(key
, item
);
2942 status_t
ResourceTable::Entry::emptyBag(const SourcePos
& sourcePos
)
2944 status_t err
= makeItABag(sourcePos
);
2945 if (err
!= NO_ERROR
) {
2953 status_t
ResourceTable::Entry::generateAttributes(ResourceTable
* table
,
2954 const String16
& package
)
2956 const String16
attr16("attr");
2957 const String16
id16("id");
2958 const size_t N
= mBag
.size();
2959 for (size_t i
=0; i
<N
; i
++) {
2960 const String16
& key
= mBag
.keyAt(i
);
2961 const Item
& it
= mBag
.valueAt(i
);
2963 if (!table
->hasBagOrEntry(key
, &id16
, &package
)) {
2964 String16
value("false");
2965 status_t err
= table
->addEntry(SourcePos(String8("<generated>"), 0), package
,
2967 if (err
!= NO_ERROR
) {
2971 } else if (!table
->hasBagOrEntry(key
, &attr16
, &package
)) {
2974 // fprintf(stderr, "ERROR: Bag attribute '%s' has not been defined.\n",
2975 // String8(key).string());
2976 // const Item& item(mBag.valueAt(i));
2977 // fprintf(stderr, "Referenced from file %s line %d\n",
2978 // item.sourcePos.file.string(), item.sourcePos.line);
2979 // return UNKNOWN_ERROR;
2982 sprintf(numberStr
, "%d", ResTable_map::TYPE_ANY
);
2983 status_t err
= table
->addBag(SourcePos("<generated>", 0), package
,
2984 attr16
, key
, String16(""),
2986 String16(numberStr
), NULL
, NULL
);
2987 if (err
!= NO_ERROR
) {
2996 status_t
ResourceTable::Entry::assignResourceIds(ResourceTable
* table
,
2997 const String16
& package
)
2999 bool hasErrors
= false;
3001 if (mType
== TYPE_BAG
) {
3002 const char* errorMsg
;
3003 const String16
style16("style");
3004 const String16
attr16("attr");
3005 const String16
id16("id");
3007 if (mParent
.size() > 0) {
3008 mParentId
= table
->getResId(mParent
, &style16
, NULL
, &errorMsg
);
3009 if (mParentId
== 0) {
3010 mPos
.error("Error retrieving parent for item: %s '%s'.\n",
3011 errorMsg
, String8(mParent
).string());
3015 const size_t N
= mBag
.size();
3016 for (size_t i
=0; i
<N
; i
++) {
3017 const String16
& key
= mBag
.keyAt(i
);
3018 Item
& it
= mBag
.editValueAt(i
);
3019 it
.bagKeyId
= table
->getResId(key
,
3020 it
.isId
? &id16
: &attr16
, NULL
, &errorMsg
);
3021 //printf("Bag key of %s: #%08x\n", String8(key).string(), it.bagKeyId);
3022 if (it
.bagKeyId
== 0) {
3023 it
.sourcePos
.error("Error: %s: %s '%s'.\n", errorMsg
,
3024 String8(it
.isId
? id16
: attr16
).string(),
3025 String8(key
).string());
3030 return hasErrors
? UNKNOWN_ERROR
: NO_ERROR
;
3033 status_t
ResourceTable::Entry::prepareFlatten(StringPool
* strings
, ResourceTable
* table
)
3035 if (mType
== TYPE_ITEM
) {
3037 AccessorCookie
ac(it
.sourcePos
, String8(mName
), String8(it
.value
));
3038 if (!table
->stringToValue(&it
.parsedValue
, strings
,
3039 it
.value
, false, true, 0,
3040 &it
.style
, NULL
, &ac
, mItemFormat
)) {
3041 return UNKNOWN_ERROR
;
3043 } else if (mType
== TYPE_BAG
) {
3044 const size_t N
= mBag
.size();
3045 for (size_t i
=0; i
<N
; i
++) {
3046 const String16
& key
= mBag
.keyAt(i
);
3047 Item
& it
= mBag
.editValueAt(i
);
3048 AccessorCookie
ac(it
.sourcePos
, String8(key
), String8(it
.value
));
3049 if (!table
->stringToValue(&it
.parsedValue
, strings
,
3050 it
.value
, false, true, it
.bagKeyId
,
3051 &it
.style
, NULL
, &ac
, it
.format
)) {
3052 return UNKNOWN_ERROR
;
3056 mPos
.error("Error: entry %s is not a single item or a bag.\n",
3057 String8(mName
).string());
3058 return UNKNOWN_ERROR
;
3063 ssize_t
ResourceTable::Entry::flatten(Bundle
* bundle
, const sp
<AaptFile
>& data
, bool isPublic
)
3066 ResTable_entry header
;
3067 memset(&header
, 0, sizeof(header
));
3068 header
.size
= htods(sizeof(header
));
3069 const type ty
= this != NULL
? mType
: TYPE_ITEM
;
3071 if (ty
== TYPE_BAG
) {
3072 header
.flags
|= htods(header
.FLAG_COMPLEX
);
3075 header
.flags
|= htods(header
.FLAG_PUBLIC
);
3077 header
.key
.index
= htodl(mNameIndex
);
3079 if (ty
!= TYPE_BAG
) {
3080 status_t err
= data
->writeData(&header
, sizeof(header
));
3081 if (err
!= NO_ERROR
) {
3082 fprintf(stderr
, "ERROR: out of memory creating ResTable_entry\n");
3086 const Item
& it
= mItem
;
3088 memset(&par
, 0, sizeof(par
));
3089 par
.size
= htods(it
.parsedValue
.size
);
3090 par
.dataType
= it
.parsedValue
.dataType
;
3091 par
.res0
= it
.parsedValue
.res0
;
3092 par
.data
= htodl(it
.parsedValue
.data
);
3094 printf("Writing item (%s): type=%d, data=0x%x, res0=0x%x\n",
3095 String8(mName
).string(), it
.parsedValue
.dataType
,
3096 it
.parsedValue
.data
, par
.res0
);
3098 err
= data
->writeData(&par
, it
.parsedValue
.size
);
3099 if (err
!= NO_ERROR
) {
3100 fprintf(stderr
, "ERROR: out of memory creating Res_value\n");
3103 amt
+= it
.parsedValue
.size
;
3105 size_t N
= mBag
.size();
3107 // Create correct ordering of items.
3108 KeyedVector
<uint32_t, const Item
*> items
;
3109 for (i
=0; i
<N
; i
++) {
3110 const Item
& it
= mBag
.valueAt(i
);
3111 items
.add(it
.bagKeyId
, &it
);
3115 ResTable_map_entry mapHeader
;
3116 memcpy(&mapHeader
, &header
, sizeof(header
));
3117 mapHeader
.size
= htods(sizeof(mapHeader
));
3118 mapHeader
.parent
.ident
= htodl(mParentId
);
3119 mapHeader
.count
= htodl(N
);
3120 status_t err
= data
->writeData(&mapHeader
, sizeof(mapHeader
));
3121 if (err
!= NO_ERROR
) {
3122 fprintf(stderr
, "ERROR: out of memory creating ResTable_entry\n");
3126 for (i
=0; i
<N
; i
++) {
3127 const Item
& it
= *items
.valueAt(i
);
3129 map
.name
.ident
= htodl(it
.bagKeyId
);
3130 map
.value
.size
= htods(it
.parsedValue
.size
);
3131 map
.value
.dataType
= it
.parsedValue
.dataType
;
3132 map
.value
.res0
= it
.parsedValue
.res0
;
3133 map
.value
.data
= htodl(it
.parsedValue
.data
);
3134 err
= data
->writeData(&map
, sizeof(map
));
3135 if (err
!= NO_ERROR
) {
3136 fprintf(stderr
, "ERROR: out of memory creating Res_value\n");
3145 void ResourceTable::ConfigList::appendComment(const String16
& comment
,
3148 if (comment
.size() <= 0) {
3151 if (onlyIfEmpty
&& mComment
.size() > 0) {
3154 if (mComment
.size() > 0) {
3155 mComment
.append(String16("\n"));
3157 mComment
.append(comment
);
3160 void ResourceTable::ConfigList::appendTypeComment(const String16
& comment
)
3162 if (comment
.size() <= 0) {
3165 if (mTypeComment
.size() > 0) {
3166 mTypeComment
.append(String16("\n"));
3168 mTypeComment
.append(comment
);
3171 status_t
ResourceTable::Type::addPublic(const SourcePos
& sourcePos
,
3172 const String16
& name
,
3173 const uint32_t ident
)
3176 int32_t entryIdx
= Res_GETENTRY(ident
);
3178 sourcePos
.error("Public resource %s/%s has an invalid 0 identifier (0x%08x).\n",
3179 String8(mName
).string(), String8(name
).string(), ident
);
3180 return UNKNOWN_ERROR
;
3184 int32_t typeIdx
= Res_GETTYPE(ident
);
3187 if (mPublicIndex
> 0 && mPublicIndex
!= typeIdx
) {
3188 sourcePos
.error("Public resource %s/%s has conflicting type codes for its"
3189 " public identifiers (0x%x vs 0x%x).\n",
3190 String8(mName
).string(), String8(name
).string(),
3191 mPublicIndex
, typeIdx
);
3192 return UNKNOWN_ERROR
;
3194 mPublicIndex
= typeIdx
;
3197 if (mFirstPublicSourcePos
== NULL
) {
3198 mFirstPublicSourcePos
= new SourcePos(sourcePos
);
3201 if (mPublic
.indexOfKey(name
) < 0) {
3202 mPublic
.add(name
, Public(sourcePos
, String16(), ident
));
3204 Public
& p
= mPublic
.editValueFor(name
);
3205 if (p
.ident
!= ident
) {
3206 sourcePos
.error("Public resource %s/%s has conflicting public identifiers"
3207 " (0x%08x vs 0x%08x).\n"
3208 "%s:%d: Originally defined here.\n",
3209 String8(mName
).string(), String8(name
).string(), p
.ident
, ident
,
3210 p
.sourcePos
.file
.string(), p
.sourcePos
.line
);
3211 return UNKNOWN_ERROR
;
3218 sp
<ResourceTable::Entry
> ResourceTable::Type::getEntry(const String16
& entry
,
3219 const SourcePos
& sourcePos
,
3220 const ResTable_config
* config
,
3225 sp
<ConfigList
> c
= mConfigs
.valueFor(entry
);
3227 if (overlay
== true) {
3228 sourcePos
.error("Resource %s appears in overlay but not"
3229 " in the base package.\n", String8(entry
).string());
3232 c
= new ConfigList(entry
, sourcePos
);
3233 mConfigs
.add(entry
, c
);
3234 pos
= (int)mOrderedConfigs
.size();
3235 mOrderedConfigs
.add(c
);
3237 c
->setEntryIndex(pos
);
3241 ConfigDescription cdesc
;
3242 if (config
) cdesc
= *config
;
3244 sp
<Entry
> e
= c
->getEntries().valueFor(cdesc
);
3246 if (config
!= NULL
) {
3247 NOISY(printf("New entry at %s:%d: imsi:%d/%d lang:%c%c cnt:%c%c "
3248 "orien:%d touch:%d density:%d key:%d inp:%d nav:%d w:%d h:%d\n",
3249 sourcePos
.file
.string(), sourcePos
.line
,
3250 config
->mcc
, config
->mnc
,
3251 config
->language
[0] ? config
->language
[0] : '-',
3252 config
->language
[1] ? config
->language
[1] : '-',
3253 config
->country
[0] ? config
->country
[0] : '-',
3254 config
->country
[1] ? config
->country
[1] : '-',
3255 config
->orientation
,
3256 config
->touchscreen
,
3261 config
->screenWidth
,
3262 config
->screenHeight
));
3264 NOISY(printf("New entry at %s:%d: NULL config\n",
3265 sourcePos
.file
.string(), sourcePos
.line
));
3267 e
= new Entry(entry
, sourcePos
);
3268 c
->addEntry(cdesc
, e
);
3272 for (pos=0; pos<(int)mOrderedConfigs.size(); pos++) {
3273 if (mOrderedConfigs[pos] == c) {
3277 if (pos >= (int)mOrderedConfigs.size()) {
3278 sourcePos.error("Internal error: config not found in mOrderedConfigs when adding entry");
3282 e->setEntryIndex(pos);
3287 mUniqueConfigs
.add(cdesc
);
3292 status_t
ResourceTable::Type::applyPublicEntryOrder()
3294 size_t N
= mOrderedConfigs
.size();
3295 Vector
<sp
<ConfigList
> > origOrder(mOrderedConfigs
);
3296 bool hasError
= false;
3299 for (i
=0; i
<N
; i
++) {
3300 mOrderedConfigs
.replaceAt(NULL
, i
);
3303 const size_t NP
= mPublic
.size();
3304 //printf("Ordering %d configs from %d public defs\n", N, NP);
3306 for (j
=0; j
<NP
; j
++) {
3307 const String16
& name
= mPublic
.keyAt(j
);
3308 const Public
& p
= mPublic
.valueAt(j
);
3309 int32_t idx
= Res_GETENTRY(p
.ident
);
3310 //printf("Looking for entry \"%s\"/\"%s\" (0x%08x) in %d...\n",
3311 // String8(mName).string(), String8(name).string(), p.ident, N);
3313 for (i
=0; i
<N
; i
++) {
3314 sp
<ConfigList
> e
= origOrder
.itemAt(i
);
3315 //printf("#%d: \"%s\"\n", i, String8(e->getName()).string());
3316 if (e
->getName() == name
) {
3317 if (idx
>= (int32_t)mOrderedConfigs
.size()) {
3318 p
.sourcePos
.error("Public entry identifier 0x%x entry index "
3319 "is larger than available symbols (index %d, total symbols %d).\n",
3320 p
.ident
, idx
, mOrderedConfigs
.size());
3322 } else if (mOrderedConfigs
.itemAt(idx
) == NULL
) {
3324 e
->setPublicSourcePos(p
.sourcePos
);
3325 mOrderedConfigs
.replaceAt(e
, idx
);
3326 origOrder
.removeAt(i
);
3331 sp
<ConfigList
> oe
= mOrderedConfigs
.itemAt(idx
);
3333 p
.sourcePos
.error("Multiple entry names declared for public entry"
3334 " identifier 0x%x in type %s (%s vs %s).\n"
3335 "%s:%d: Originally defined here.",
3336 idx
+1, String8(mName
).string(),
3337 String8(oe
->getName()).string(),
3338 String8(name
).string(),
3339 oe
->getPublicSourcePos().file
.string(),
3340 oe
->getPublicSourcePos().line
);
3347 p
.sourcePos
.error("Public symbol %s/%s declared here is not defined.",
3348 String8(mName
).string(), String8(name
).string());
3353 //printf("Copying back in %d non-public configs, have %d\n", N, origOrder.size());
3355 if (N
!= origOrder
.size()) {
3356 printf("Internal error: remaining private symbol count mismatch\n");
3357 N
= origOrder
.size();
3361 for (i
=0; i
<N
; i
++) {
3362 sp
<ConfigList
> e
= origOrder
.itemAt(i
);
3363 // There will always be enough room for the remaining entries.
3364 while (mOrderedConfigs
.itemAt(j
) != NULL
) {
3367 mOrderedConfigs
.replaceAt(e
, j
);
3371 return hasError
? UNKNOWN_ERROR
: NO_ERROR
;
3374 ResourceTable::Package::Package(const String16
& name
, ssize_t includedId
)
3375 : mName(name
), mIncludedId(includedId
),
3376 mTypeStringsMapping(0xffffffff),
3377 mKeyStringsMapping(0xffffffff)
3381 sp
<ResourceTable::Type
> ResourceTable::Package::getType(const String16
& type
,
3382 const SourcePos
& sourcePos
,
3385 sp
<Type
> t
= mTypes
.valueFor(type
);
3387 t
= new Type(type
, sourcePos
);
3388 mTypes
.add(type
, t
);
3389 mOrderedTypes
.add(t
);
3391 // For some reason the type's index is set to one plus the index
3392 // in the mOrderedTypes list, rather than just the index.
3393 t
->setIndex(mOrderedTypes
.size());
3399 status_t
ResourceTable::Package::setTypeStrings(const sp
<AaptFile
>& data
)
3401 mTypeStringsData
= data
;
3402 status_t err
= setStrings(data
, &mTypeStrings
, &mTypeStringsMapping
);
3403 if (err
!= NO_ERROR
) {
3404 fprintf(stderr
, "ERROR: Type string data is corrupt!\n");
3409 status_t
ResourceTable::Package::setKeyStrings(const sp
<AaptFile
>& data
)
3411 mKeyStringsData
= data
;
3412 status_t err
= setStrings(data
, &mKeyStrings
, &mKeyStringsMapping
);
3413 if (err
!= NO_ERROR
) {
3414 fprintf(stderr
, "ERROR: Key string data is corrupt!\n");
3419 status_t
ResourceTable::Package::setStrings(const sp
<AaptFile
>& data
,
3420 ResStringPool
* strings
,
3421 DefaultKeyedVector
<String16
, uint32_t>* mappings
)
3423 if (data
->getData() == NULL
) {
3424 return UNKNOWN_ERROR
;
3427 NOISY(aout
<< "Setting restable string pool: "
3428 << HexDump(data
->getData(), data
->getSize()) << endl
);
3430 status_t err
= strings
->setTo(data
->getData(), data
->getSize());
3431 if (err
== NO_ERROR
) {
3432 const size_t N
= strings
->size();
3433 for (size_t i
=0; i
<N
; i
++) {
3435 mappings
->add(String16(strings
->stringAt(i
, &len
)), i
);
3441 status_t
ResourceTable::Package::applyPublicTypeOrder()
3443 size_t N
= mOrderedTypes
.size();
3444 Vector
<sp
<Type
> > origOrder(mOrderedTypes
);
3447 for (i
=0; i
<N
; i
++) {
3448 mOrderedTypes
.replaceAt(NULL
, i
);
3451 for (i
=0; i
<N
; i
++) {
3452 sp
<Type
> t
= origOrder
.itemAt(i
);
3453 int32_t idx
= t
->getPublicIndex();
3456 while (idx
>= (int32_t)mOrderedTypes
.size()) {
3457 mOrderedTypes
.add();
3459 if (mOrderedTypes
.itemAt(idx
) != NULL
) {
3460 sp
<Type
> ot
= mOrderedTypes
.itemAt(idx
);
3461 t
->getFirstPublicSourcePos().error("Multiple type names declared for public type"
3462 " identifier 0x%x (%s vs %s).\n"
3463 "%s:%d: Originally defined here.",
3464 idx
, String8(ot
->getName()).string(),
3465 String8(t
->getName()).string(),
3466 ot
->getFirstPublicSourcePos().file
.string(),
3467 ot
->getFirstPublicSourcePos().line
);
3468 return UNKNOWN_ERROR
;
3470 mOrderedTypes
.replaceAt(t
, idx
);
3471 origOrder
.removeAt(i
);
3478 for (i
=0; i
<N
; i
++) {
3479 sp
<Type
> t
= origOrder
.itemAt(i
);
3480 // There will always be enough room for the remaining types.
3481 while (mOrderedTypes
.itemAt(j
) != NULL
) {
3484 mOrderedTypes
.replaceAt(t
, j
);
3490 sp
<ResourceTable::Package
> ResourceTable::getPackage(const String16
& package
)
3492 sp
<Package
> p
= mPackages
.valueFor(package
);
3494 if (mIsAppPackage
) {
3495 if (mHaveAppPackage
) {
3496 fprintf(stderr
, "Adding multiple application package resources; only one is allowed.\n"
3497 "Use -x to create extended resources.\n");
3500 mHaveAppPackage
= true;
3501 p
= new Package(package
, 127);
3503 p
= new Package(package
, mNextPackageId
);
3505 //printf("*** NEW PACKAGE: \"%s\" id=%d\n",
3506 // String8(package).string(), p->getAssignedId());
3507 mPackages
.add(package
, p
);
3508 mOrderedPackages
.add(p
);
3514 sp
<ResourceTable::Type
> ResourceTable::getType(const String16
& package
,
3515 const String16
& type
,
3516 const SourcePos
& sourcePos
,
3519 sp
<Package
> p
= getPackage(package
);
3523 return p
->getType(type
, sourcePos
, doSetIndex
);
3526 sp
<ResourceTable::Entry
> ResourceTable::getEntry(const String16
& package
,
3527 const String16
& type
,
3528 const String16
& name
,
3529 const SourcePos
& sourcePos
,
3531 const ResTable_config
* config
,
3534 sp
<Type
> t
= getType(package
, type
, sourcePos
, doSetIndex
);
3538 return t
->getEntry(name
, sourcePos
, config
, doSetIndex
, overlay
);
3541 sp
<const ResourceTable::Entry
> ResourceTable::getEntry(uint32_t resID
,
3542 const ResTable_config
* config
) const
3544 int pid
= Res_GETPACKAGE(resID
)+1;
3545 const size_t N
= mOrderedPackages
.size();
3548 for (i
=0; i
<N
; i
++) {
3549 sp
<Package
> check
= mOrderedPackages
[i
];
3550 if (check
->getAssignedId() == pid
) {
3557 fprintf(stderr
, "WARNING: Package not found for resource #%08x\n", resID
);
3561 int tid
= Res_GETTYPE(resID
);
3562 if (tid
< 0 || tid
>= (int)p
->getOrderedTypes().size()) {
3563 fprintf(stderr
, "WARNING: Type not found for resource #%08x\n", resID
);
3566 sp
<Type
> t
= p
->getOrderedTypes()[tid
];
3568 int eid
= Res_GETENTRY(resID
);
3569 if (eid
< 0 || eid
>= (int)t
->getOrderedConfigs().size()) {
3570 fprintf(stderr
, "WARNING: Entry not found for resource #%08x\n", resID
);
3574 sp
<ConfigList
> c
= t
->getOrderedConfigs()[eid
];
3576 fprintf(stderr
, "WARNING: Entry not found for resource #%08x\n", resID
);
3580 ConfigDescription cdesc
;
3581 if (config
) cdesc
= *config
;
3582 sp
<Entry
> e
= c
->getEntries().valueFor(cdesc
);
3584 fprintf(stderr
, "WARNING: Entry configuration not found for resource #%08x\n", resID
);
3591 const ResourceTable::Item
* ResourceTable::getItem(uint32_t resID
, uint32_t attrID
) const
3593 sp
<const Entry
> e
= getEntry(resID
);
3598 const size_t N
= e
->getBag().size();
3599 for (size_t i
=0; i
<N
; i
++) {
3600 const Item
& it
= e
->getBag().valueAt(i
);
3601 if (it
.bagKeyId
== 0) {
3602 fprintf(stderr
, "WARNING: ID not yet assigned to '%s' in bag '%s'\n",
3603 String8(e
->getName()).string(),
3604 String8(e
->getBag().keyAt(i
)).string());
3606 if (it
.bagKeyId
== attrID
) {
3614 bool ResourceTable::getItemValue(
3615 uint32_t resID
, uint32_t attrID
, Res_value
* outValue
)
3617 const Item
* item
= getItem(resID
, attrID
);
3621 if (item
->evaluating
) {
3622 sp
<const Entry
> e
= getEntry(resID
);
3623 const size_t N
= e
->getBag().size();
3625 for (i
=0; i
<N
; i
++) {
3626 if (&e
->getBag().valueAt(i
) == item
) {
3630 fprintf(stderr
, "WARNING: Circular reference detected in key '%s' of bag '%s'\n",
3631 String8(e
->getName()).string(),
3632 String8(e
->getBag().keyAt(i
)).string());
3635 item
->evaluating
= true;
3636 res
= stringToValue(outValue
, NULL
, item
->value
, false, false, item
->bagKeyId
);
3639 printf("getItemValue of #%08x[#%08x] (%s): type=#%08x, data=#%08x\n",
3640 resID
, attrID
, String8(getEntry(resID
)->getName()).string(),
3641 outValue
->dataType
, outValue
->data
);
3643 printf("getItemValue of #%08x[#%08x]: failed\n",
3647 item
->evaluating
= false;