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 curIsStyled
= false;
733 bool curIsPseudolocalizable
= false;
734 bool localHasErrors
= false;
736 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
737 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
738 && code
!= ResXMLTree::BAD_DOCUMENT
) {
739 if (code
== ResXMLTree::END_TAG
) {
740 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
747 } else if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
748 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
749 && code
!= ResXMLTree::BAD_DOCUMENT
) {
750 if (code
== ResXMLTree::END_TAG
) {
751 if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
758 } else if (strcmp16(block
.getElementName(&len
), public16
.string()) == 0) {
759 SourcePos
srcPos(in
->getPrintableSource(), block
.getLineNumber());
762 ssize_t typeIdx
= block
.indexOfAttribute(NULL
, "type");
764 srcPos
.error("A 'type' attribute is required for <public>\n");
765 hasErrors
= localHasErrors
= true;
767 type
= String16(block
.getAttributeStringValue(typeIdx
, &len
));
770 ssize_t nameIdx
= block
.indexOfAttribute(NULL
, "name");
772 srcPos
.error("A 'name' attribute is required for <public>\n");
773 hasErrors
= localHasErrors
= true;
775 name
= String16(block
.getAttributeStringValue(nameIdx
, &len
));
778 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "id");
780 const char16_t* identStr
= block
.getAttributeStringValue(identIdx
, &len
);
781 Res_value identValue
;
782 if (!ResTable::stringToInt(identStr
, len
, &identValue
)) {
783 srcPos
.error("Given 'id' attribute is not an integer: %s\n",
784 String8(block
.getAttributeStringValue(identIdx
, &len
)).string());
785 hasErrors
= localHasErrors
= true;
787 ident
= identValue
.data
;
788 nextPublicId
.replaceValueFor(type
, ident
+1);
790 } else if (nextPublicId
.indexOfKey(type
) < 0) {
791 srcPos
.error("No 'id' attribute supplied <public>,"
792 " and no previous id defined in this file.\n");
793 hasErrors
= localHasErrors
= true;
794 } else if (!localHasErrors
) {
795 ident
= nextPublicId
.valueFor(type
);
796 nextPublicId
.replaceValueFor(type
, ident
+1);
799 if (!localHasErrors
) {
800 err
= outTable
->addPublic(srcPos
, myPackage
, type
, name
, ident
);
801 if (err
< NO_ERROR
) {
802 hasErrors
= localHasErrors
= true;
805 if (!localHasErrors
) {
806 sp
<AaptSymbols
> symbols
= assets
->getSymbolsFor(String8("R"));
807 if (symbols
!= NULL
) {
808 symbols
= symbols
->addNestedSymbol(String8(type
), srcPos
);
810 if (symbols
!= NULL
) {
811 symbols
->makeSymbolPublic(String8(name
), srcPos
);
813 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
814 symbols
->appendComment(String8(name
), comment
, srcPos
);
816 srcPos
.error("Unable to create symbols!\n");
817 hasErrors
= localHasErrors
= true;
821 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
822 if (code
== ResXMLTree::END_TAG
) {
823 if (strcmp16(block
.getElementName(&len
), public16
.string()) == 0) {
830 } else if (strcmp16(block
.getElementName(&len
), public_padding16
.string()) == 0) {
831 SourcePos
srcPos(in
->getPrintableSource(), block
.getLineNumber());
834 ssize_t typeIdx
= block
.indexOfAttribute(NULL
, "type");
836 srcPos
.error("A 'type' attribute is required for <public-padding>\n");
837 hasErrors
= localHasErrors
= true;
839 type
= String16(block
.getAttributeStringValue(typeIdx
, &len
));
842 ssize_t nameIdx
= block
.indexOfAttribute(NULL
, "name");
844 srcPos
.error("A 'name' attribute is required for <public-padding>\n");
845 hasErrors
= localHasErrors
= true;
847 name
= String16(block
.getAttributeStringValue(nameIdx
, &len
));
850 ssize_t startIdx
= block
.indexOfAttribute(NULL
, "start");
852 const char16_t* startStr
= block
.getAttributeStringValue(startIdx
, &len
);
853 Res_value startValue
;
854 if (!ResTable::stringToInt(startStr
, len
, &startValue
)) {
855 srcPos
.error("Given 'start' attribute is not an integer: %s\n",
856 String8(block
.getAttributeStringValue(startIdx
, &len
)).string());
857 hasErrors
= localHasErrors
= true;
859 start
= startValue
.data
;
861 } else if (nextPublicId
.indexOfKey(type
) < 0) {
862 srcPos
.error("No 'start' attribute supplied <public-padding>,"
863 " and no previous id defined in this file.\n");
864 hasErrors
= localHasErrors
= true;
865 } else if (!localHasErrors
) {
866 start
= nextPublicId
.valueFor(type
);
870 ssize_t endIdx
= block
.indexOfAttribute(NULL
, "end");
872 const char16_t* endStr
= block
.getAttributeStringValue(endIdx
, &len
);
874 if (!ResTable::stringToInt(endStr
, len
, &endValue
)) {
875 srcPos
.error("Given 'end' attribute is not an integer: %s\n",
876 String8(block
.getAttributeStringValue(endIdx
, &len
)).string());
877 hasErrors
= localHasErrors
= true;
882 srcPos
.error("No 'end' attribute supplied <public-padding>\n");
883 hasErrors
= localHasErrors
= true;
887 nextPublicId
.replaceValueFor(type
, end
+1);
889 srcPos
.error("Padding start '%ul' is after end '%ul'\n",
891 hasErrors
= localHasErrors
= true;
895 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
896 for (uint32_t curIdent
=start
; curIdent
<=end
; curIdent
++) {
897 if (localHasErrors
) {
900 String16
curName(name
);
902 sprintf(buf
, "%d", (int)(end
-curIdent
+1));
903 curName
.append(String16(buf
));
905 err
= outTable
->addEntry(srcPos
, myPackage
, type
, curName
,
906 String16("padding"), NULL
, &curParams
, false,
907 ResTable_map::TYPE_STRING
, overwrite
);
908 if (err
< NO_ERROR
) {
909 hasErrors
= localHasErrors
= true;
912 err
= outTable
->addPublic(srcPos
, myPackage
, type
,
914 if (err
< NO_ERROR
) {
915 hasErrors
= localHasErrors
= true;
918 sp
<AaptSymbols
> symbols
= assets
->getSymbolsFor(String8("R"));
919 if (symbols
!= NULL
) {
920 symbols
= symbols
->addNestedSymbol(String8(type
), srcPos
);
922 if (symbols
!= NULL
) {
923 symbols
->makeSymbolPublic(String8(curName
), srcPos
);
924 symbols
->appendComment(String8(curName
), comment
, srcPos
);
926 srcPos
.error("Unable to create symbols!\n");
927 hasErrors
= localHasErrors
= true;
931 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
932 if (code
== ResXMLTree::END_TAG
) {
933 if (strcmp16(block
.getElementName(&len
), public_padding16
.string()) == 0) {
940 } else if (strcmp16(block
.getElementName(&len
), private_symbols16
.string()) == 0) {
942 ssize_t pkgIdx
= block
.indexOfAttribute(NULL
, "package");
944 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
945 "A 'package' attribute is required for <private-symbols>\n");
946 hasErrors
= localHasErrors
= true;
948 pkg
= String16(block
.getAttributeStringValue(pkgIdx
, &len
));
949 if (!localHasErrors
) {
950 assets
->setSymbolsPrivatePackage(String8(pkg
));
953 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
954 if (code
== ResXMLTree::END_TAG
) {
955 if (strcmp16(block
.getElementName(&len
), private_symbols16
.string()) == 0) {
962 } else if (strcmp16(block
.getElementName(&len
), declare_styleable16
.string()) == 0) {
963 SourcePos
srcPos(in
->getPrintableSource(), block
.getLineNumber());
966 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "name");
968 srcPos
.error("A 'name' attribute is required for <declare-styleable>\n");
969 hasErrors
= localHasErrors
= true;
971 ident
= String16(block
.getAttributeStringValue(identIdx
, &len
));
973 sp
<AaptSymbols
> symbols
= assets
->getSymbolsFor(String8("R"));
974 if (!localHasErrors
) {
975 if (symbols
!= NULL
) {
976 symbols
= symbols
->addNestedSymbol(String8("styleable"), srcPos
);
978 sp
<AaptSymbols
> styleSymbols
= symbols
;
979 if (symbols
!= NULL
) {
980 symbols
= symbols
->addNestedSymbol(String8(ident
), srcPos
);
982 if (symbols
== NULL
) {
983 srcPos
.error("Unable to create symbols!\n");
984 return UNKNOWN_ERROR
;
988 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
989 styleSymbols
->appendComment(String8(ident
), comment
, srcPos
);
994 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
995 if (code
== ResXMLTree::START_TAG
) {
996 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
997 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
998 && code
!= ResXMLTree::BAD_DOCUMENT
) {
999 if (code
== ResXMLTree::END_TAG
) {
1000 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
1006 } else if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
1007 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
1008 && code
!= ResXMLTree::BAD_DOCUMENT
) {
1009 if (code
== ResXMLTree::END_TAG
) {
1010 if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
1016 } else if (strcmp16(block
.getElementName(&len
), attr16
.string()) != 0) {
1017 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1018 "Tag <%s> can not appear inside <declare-styleable>, only <attr>\n",
1019 String8(block
.getElementName(&len
)).string());
1020 return UNKNOWN_ERROR
;
1024 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
1026 err
= compileAttribute(in
, block
, myPackage
, outTable
, &itemIdent
, true);
1027 if (err
!= NO_ERROR
) {
1028 hasErrors
= localHasErrors
= true;
1031 if (symbols
!= NULL
) {
1032 SourcePos
srcPos(String8(in
->getPrintableSource()), block
.getLineNumber());
1033 symbols
->addSymbol(String8(itemIdent
), 0, srcPos
);
1034 symbols
->appendComment(String8(itemIdent
), comment
, srcPos
);
1035 //printf("Attribute %s comment: %s\n", String8(itemIdent).string(),
1036 // String8(comment).string());
1038 } else if (code
== ResXMLTree::END_TAG
) {
1039 if (strcmp16(block
.getElementName(&len
), declare_styleable16
.string()) == 0) {
1043 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1044 "Found tag </%s> where </attr> is expected\n",
1045 String8(block
.getElementName(&len
)).string());
1046 return UNKNOWN_ERROR
;
1051 } else if (strcmp16(block
.getElementName(&len
), attr16
.string()) == 0) {
1052 err
= compileAttribute(in
, block
, myPackage
, outTable
, NULL
);
1053 if (err
!= NO_ERROR
) {
1058 } else if (strcmp16(block
.getElementName(&len
), item16
.string()) == 0) {
1060 ssize_t attri
= block
.indexOfAttribute(NULL
, "type");
1062 curType
= String16(block
.getAttributeStringValue(attri
, &len
));
1063 ssize_t formatIdx
= block
.indexOfAttribute(NULL
, "format");
1064 if (formatIdx
>= 0) {
1065 String16 formatStr
= String16(block
.getAttributeStringValue(
1067 curFormat
= parse_flags(formatStr
.string(), formatStr
.size(),
1069 if (curFormat
== 0) {
1070 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1071 "Tag <item> 'format' attribute value \"%s\" not valid\n",
1072 String8(formatStr
).string());
1073 hasErrors
= localHasErrors
= true;
1077 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1078 "A 'type' attribute is required for <item>\n");
1079 hasErrors
= localHasErrors
= true;
1082 } else if (strcmp16(block
.getElementName(&len
), string16
.string()) == 0) {
1083 // Note the existence and locale of every string we process
1085 curParams
.getLocale(rawLocale
);
1086 String8
locale(rawLocale
);
1088 String16 translatable
;
1090 size_t n
= block
.getAttributeCount();
1091 for (size_t i
= 0; i
< n
; i
++) {
1093 const uint16_t* attr
= block
.getAttributeName(i
, &length
);
1094 if (strcmp16(attr
, name16
.string()) == 0) {
1095 name
.setTo(block
.getAttributeStringValue(i
, &length
));
1096 } else if (strcmp16(attr
, translatable16
.string()) == 0) {
1097 translatable
.setTo(block
.getAttributeStringValue(i
, &length
));
1101 if (name
.size() > 0) {
1102 if (translatable
== false16
) {
1103 // Untranslatable strings must only exist in the default [empty] locale
1104 if (locale
.size() > 0) {
1105 fprintf(stderr
, "aapt: warning: string '%s' in %s marked untranslatable but exists"
1106 " in locale '%s'\n", String8(name
).string(),
1107 bundle
->getResourceSourceDirs()[0],
1109 // hasErrors = localHasErrors = true;
1111 // Intentionally empty block:
1113 // Don't add untranslatable strings to the localization table; that
1114 // way if we later see localizations of them, they'll be flagged as
1115 // having no default translation.
1118 outTable
->addLocalization(name
, locale
);
1124 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_STRING
;
1126 curIsPseudolocalizable
= true;
1127 } else if (strcmp16(block
.getElementName(&len
), drawable16
.string()) == 0) {
1128 curTag
= &drawable16
;
1129 curType
= drawable16
;
1130 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_COLOR
;
1131 } else if (strcmp16(block
.getElementName(&len
), color16
.string()) == 0) {
1134 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_COLOR
;
1135 } else if (strcmp16(block
.getElementName(&len
), bool16
.string()) == 0) {
1138 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_BOOLEAN
;
1139 } else if (strcmp16(block
.getElementName(&len
), integer16
.string()) == 0) {
1140 curTag
= &integer16
;
1141 curType
= integer16
;
1142 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_INTEGER
;
1143 } else if (strcmp16(block
.getElementName(&len
), dimen16
.string()) == 0) {
1146 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_DIMENSION
;
1147 } else if (strcmp16(block
.getElementName(&len
), fraction16
.string()) == 0) {
1148 curTag
= &fraction16
;
1149 curType
= fraction16
;
1150 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_FRACTION
;
1151 } else if (strcmp16(block
.getElementName(&len
), bag16
.string()) == 0) {
1154 ssize_t attri
= block
.indexOfAttribute(NULL
, "type");
1156 curType
= String16(block
.getAttributeStringValue(attri
, &len
));
1158 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1159 "A 'type' attribute is required for <bag>\n");
1160 hasErrors
= localHasErrors
= true;
1162 } else if (strcmp16(block
.getElementName(&len
), style16
.string()) == 0) {
1166 } else if (strcmp16(block
.getElementName(&len
), plurals16
.string()) == 0) {
1167 curTag
= &plurals16
;
1168 curType
= plurals16
;
1170 } else if (strcmp16(block
.getElementName(&len
), array16
.string()) == 0) {
1174 ssize_t formatIdx
= block
.indexOfAttribute(NULL
, "format");
1175 if (formatIdx
>= 0) {
1176 String16 formatStr
= String16(block
.getAttributeStringValue(
1178 curFormat
= parse_flags(formatStr
.string(), formatStr
.size(),
1180 if (curFormat
== 0) {
1181 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1182 "Tag <array> 'format' attribute value \"%s\" not valid\n",
1183 String8(formatStr
).string());
1184 hasErrors
= localHasErrors
= true;
1187 } else if (strcmp16(block
.getElementName(&len
), string_array16
.string()) == 0) {
1188 curTag
= &string_array16
;
1190 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_STRING
;
1192 curIsPseudolocalizable
= true;
1193 } else if (strcmp16(block
.getElementName(&len
), integer_array16
.string()) == 0) {
1194 curTag
= &integer_array16
;
1196 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_INTEGER
;
1199 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1200 "Found tag %s where item is expected\n",
1201 String8(block
.getElementName(&len
)).string());
1202 return UNKNOWN_ERROR
;
1206 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "name");
1207 if (identIdx
>= 0) {
1208 ident
= String16(block
.getAttributeStringValue(identIdx
, &len
));
1210 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1211 "A 'name' attribute is required for <%s>\n",
1212 String8(*curTag
).string());
1213 hasErrors
= localHasErrors
= true;
1216 String16
comment(block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
1219 // Figure out the parent of this bag...
1220 String16 parentIdent
;
1221 ssize_t parentIdentIdx
= block
.indexOfAttribute(NULL
, "parent");
1222 if (parentIdentIdx
>= 0) {
1223 parentIdent
= String16(block
.getAttributeStringValue(parentIdentIdx
, &len
));
1225 ssize_t sep
= ident
.findLast('.');
1227 parentIdent
.setTo(ident
, sep
);
1231 if (!localHasErrors
) {
1232 err
= outTable
->startBag(SourcePos(in
->getPrintableSource(), block
.getLineNumber()),
1233 myPackage
, curType
, ident
, parentIdent
, &curParams
,
1235 if (err
!= NO_ERROR
) {
1236 hasErrors
= localHasErrors
= true;
1240 ssize_t elmIndex
= 0;
1241 char elmIndexStr
[14];
1242 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
1243 && code
!= ResXMLTree::BAD_DOCUMENT
) {
1245 if (code
== ResXMLTree::START_TAG
) {
1246 if (strcmp16(block
.getElementName(&len
), item16
.string()) != 0) {
1247 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1248 "Tag <%s> can not appear inside <%s>, only <item>\n",
1249 String8(block
.getElementName(&len
)).string(),
1250 String8(*curTag
).string());
1251 return UNKNOWN_ERROR
;
1255 if (curType
== array16
) {
1256 sprintf(elmIndexStr
, "^index_%d", (int)elmIndex
++);
1257 itemIdent
= String16(elmIndexStr
);
1258 } else if (curType
== plurals16
) {
1259 ssize_t itemIdentIdx
= block
.indexOfAttribute(NULL
, "quantity");
1260 if (itemIdentIdx
>= 0) {
1261 String16
quantity16(block
.getAttributeStringValue(itemIdentIdx
, &len
));
1262 if (quantity16
== other16
) {
1263 itemIdent
= quantityOther16
;
1265 else if (quantity16
== zero16
) {
1266 itemIdent
= quantityZero16
;
1268 else if (quantity16
== one16
) {
1269 itemIdent
= quantityOne16
;
1271 else if (quantity16
== two16
) {
1272 itemIdent
= quantityTwo16
;
1274 else if (quantity16
== few16
) {
1275 itemIdent
= quantityFew16
;
1277 else if (quantity16
== many16
) {
1278 itemIdent
= quantityMany16
;
1281 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1282 "Illegal 'quantity' attribute is <item> inside <plurals>\n");
1283 hasErrors
= localHasErrors
= true;
1286 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1287 "A 'quantity' attribute is required for <item> inside <plurals>\n");
1288 hasErrors
= localHasErrors
= true;
1291 ssize_t itemIdentIdx
= block
.indexOfAttribute(NULL
, "name");
1292 if (itemIdentIdx
>= 0) {
1293 itemIdent
= String16(block
.getAttributeStringValue(itemIdentIdx
, &len
));
1295 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1296 "A 'name' attribute is required for <item>\n");
1297 hasErrors
= localHasErrors
= true;
1301 ResXMLParser::ResXMLPosition parserPosition
;
1302 block
.getPosition(&parserPosition
);
1304 err
= parseAndAddBag(bundle
, in
, &block
, curParams
, myPackage
, curType
,
1305 ident
, parentIdent
, itemIdent
, curFormat
,
1306 false, overwrite
, outTable
);
1307 if (err
== NO_ERROR
) {
1308 if (curIsPseudolocalizable
&& localeIsDefined(curParams
)
1309 && bundle
->getPseudolocalize()) {
1310 // pseudolocalize here
1312 block
.setPosition(parserPosition
);
1313 err
= parseAndAddBag(bundle
, in
, &block
, pseudoParams
, myPackage
,
1314 curType
, ident
, parentIdent
, itemIdent
, curFormat
, true,
1315 overwrite
, outTable
);
1319 if (err
!= NO_ERROR
) {
1320 hasErrors
= localHasErrors
= true;
1322 } else if (code
== ResXMLTree::END_TAG
) {
1323 if (strcmp16(block
.getElementName(&len
), curTag
->string()) != 0) {
1324 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1325 "Found tag </%s> where </%s> is expected\n",
1326 String8(block
.getElementName(&len
)).string(),
1327 String8(*curTag
).string());
1328 return UNKNOWN_ERROR
;
1334 ResXMLParser::ResXMLPosition parserPosition
;
1335 block
.getPosition(&parserPosition
);
1337 err
= parseAndAddEntry(bundle
, in
, &block
, curParams
, myPackage
, curType
, ident
,
1338 *curTag
, curIsStyled
, curFormat
, false, overwrite
, outTable
);
1340 if (err
< NO_ERROR
) { // Why err < NO_ERROR instead of err != NO_ERROR?
1341 hasErrors
= localHasErrors
= true;
1343 else if (err
== NO_ERROR
) {
1344 if (curIsPseudolocalizable
&& localeIsDefined(curParams
)
1345 && bundle
->getPseudolocalize()) {
1346 // pseudolocalize here
1347 block
.setPosition(parserPosition
);
1348 err
= parseAndAddEntry(bundle
, in
, &block
, pseudoParams
, myPackage
, curType
,
1349 ident
, *curTag
, curIsStyled
, curFormat
, true, overwrite
, outTable
);
1350 if (err
!= NO_ERROR
) {
1351 hasErrors
= localHasErrors
= true;
1358 if (comment
.size() > 0) {
1359 printf("Comment for @%s:%s/%s: %s\n", String8(myPackage
).string(),
1360 String8(curType
).string(), String8(ident
).string(),
1361 String8(comment
).string());
1364 if (!localHasErrors
) {
1365 outTable
->appendComment(myPackage
, curType
, ident
, comment
, false);
1368 else if (code
== ResXMLTree::END_TAG
) {
1369 if (strcmp16(block
.getElementName(&len
), resources16
.string()) != 0) {
1370 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1371 "Unexpected end tag %s\n", String8(block
.getElementName(&len
)).string());
1372 return UNKNOWN_ERROR
;
1375 else if (code
== ResXMLTree::START_NAMESPACE
|| code
== ResXMLTree::END_NAMESPACE
) {
1377 else if (code
== ResXMLTree::TEXT
) {
1378 if (isWhitespace(block
.getText(&len
))) {
1381 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1382 "Found text \"%s\" where item tag is expected\n",
1383 String8(block
.getText(&len
)).string());
1384 return UNKNOWN_ERROR
;
1388 return hasErrors
? UNKNOWN_ERROR
: NO_ERROR
;
1391 ResourceTable::ResourceTable(Bundle
* bundle
, const String16
& assetsPackage
)
1392 : mAssetsPackage(assetsPackage
), mNextPackageId(1), mHaveAppPackage(false),
1393 mIsAppPackage(!bundle
->getExtending()),
1399 status_t
ResourceTable::addIncludedResources(Bundle
* bundle
, const sp
<AaptAssets
>& assets
)
1401 status_t err
= assets
->buildIncludedResources(bundle
);
1402 if (err
!= NO_ERROR
) {
1406 // For future reference to included resources.
1409 const ResTable
& incl
= assets
->getIncludedResources();
1411 // Retrieve all the packages.
1412 const size_t N
= incl
.getBasePackageCount();
1413 for (size_t phase
=0; phase
<2; phase
++) {
1414 for (size_t i
=0; i
<N
; i
++) {
1415 String16
name(incl
.getBasePackageName(i
));
1416 uint32_t id
= incl
.getBasePackageId(i
);
1417 // First time through: only add base packages (id
1418 // is not 0); second time through add the other
1422 // Skip base packages -- already one.
1425 // Assign a dynamic id.
1426 id
= mNextPackageId
;
1428 } else if (id
!= 0) {
1430 if (mHaveAppPackage
) {
1431 fprintf(stderr
, "Included resources have two application packages!\n");
1432 return UNKNOWN_ERROR
;
1434 mHaveAppPackage
= true;
1436 if (mNextPackageId
> id
) {
1437 fprintf(stderr
, "Included base package ID %d already in use!\n", id
);
1438 return UNKNOWN_ERROR
;
1442 NOISY(printf("Including package %s with ID=%d\n",
1443 String8(name
).string(), id
));
1444 sp
<Package
> p
= new Package(name
, id
);
1445 mPackages
.add(name
, p
);
1446 mOrderedPackages
.add(p
);
1448 if (id
>= mNextPackageId
) {
1449 mNextPackageId
= id
+1;
1455 // Every resource table always has one first entry, the bag attributes.
1456 const SourcePos
unknown(String8("????"), 0);
1457 sp
<Type
> attr
= getType(mAssetsPackage
, String16("attr"), unknown
);
1462 status_t
ResourceTable::addPublic(const SourcePos
& sourcePos
,
1463 const String16
& package
,
1464 const String16
& type
,
1465 const String16
& name
,
1466 const uint32_t ident
)
1468 uint32_t rid
= mAssets
->getIncludedResources()
1469 .identifierForName(name
.string(), name
.size(),
1470 type
.string(), type
.size(),
1471 package
.string(), package
.size());
1473 sourcePos
.error("Error declaring public resource %s/%s for included package %s\n",
1474 String8(type
).string(), String8(name
).string(),
1475 String8(package
).string());
1476 return UNKNOWN_ERROR
;
1479 sp
<Type
> t
= getType(package
, type
, sourcePos
);
1481 return UNKNOWN_ERROR
;
1483 return t
->addPublic(sourcePos
, name
, ident
);
1486 status_t
ResourceTable::addEntry(const SourcePos
& sourcePos
,
1487 const String16
& package
,
1488 const String16
& type
,
1489 const String16
& name
,
1490 const String16
& value
,
1491 const Vector
<StringPool::entry_style_span
>* style
,
1492 const ResTable_config
* params
,
1493 const bool doSetIndex
,
1494 const int32_t format
,
1495 const bool overwrite
)
1497 // Check for adding entries in other packages... for now we do
1498 // nothing. We need to do the right thing here to support skinning.
1499 uint32_t rid
= mAssets
->getIncludedResources()
1500 .identifierForName(name
.string(), name
.size(),
1501 type
.string(), type
.size(),
1502 package
.string(), package
.size());
1508 if (name
== String16("left")) {
1509 printf("Adding entry left: file=%s, line=%d, type=%s, value=%s\n",
1510 sourcePos
.file
.string(), sourcePos
.line
, String8(type
).string(),
1511 String8(value
).string());
1515 sp
<Entry
> e
= getEntry(package
, type
, name
, sourcePos
, params
, doSetIndex
);
1517 return UNKNOWN_ERROR
;
1519 status_t err
= e
->setItem(sourcePos
, value
, style
, format
, overwrite
);
1520 if (err
== NO_ERROR
) {
1526 status_t
ResourceTable::startBag(const SourcePos
& sourcePos
,
1527 const String16
& package
,
1528 const String16
& type
,
1529 const String16
& name
,
1530 const String16
& bagParent
,
1531 const ResTable_config
* params
,
1532 bool replace
, bool isId
)
1534 status_t result
= NO_ERROR
;
1536 // Check for adding entries in other packages... for now we do
1537 // nothing. We need to do the right thing here to support skinning.
1538 uint32_t rid
= mAssets
->getIncludedResources()
1539 .identifierForName(name
.string(), name
.size(),
1540 type
.string(), type
.size(),
1541 package
.string(), package
.size());
1547 if (name
== String16("left")) {
1548 printf("Adding bag left: file=%s, line=%d, type=%s\n",
1549 sourcePos
.file
.striing(), sourcePos
.line
, String8(type
).string());
1553 sp
<Entry
> e
= getEntry(package
, type
, name
, sourcePos
, params
);
1555 return UNKNOWN_ERROR
;
1558 // If a parent is explicitly specified, set it.
1559 if (bagParent
.size() > 0) {
1560 String16 curPar
= e
->getParent();
1561 if (curPar
.size() > 0 && curPar
!= bagParent
) {
1562 sourcePos
.error("Conflicting parents specified, was '%s', now '%s'\n",
1563 String8(e
->getParent()).string(),
1564 String8(bagParent
).string());
1565 return UNKNOWN_ERROR
;
1567 e
->setParent(bagParent
);
1570 if ((result
= e
->makeItABag(sourcePos
)) != NO_ERROR
) {
1575 return e
->emptyBag(sourcePos
);
1580 status_t
ResourceTable::addBag(const SourcePos
& sourcePos
,
1581 const String16
& package
,
1582 const String16
& type
,
1583 const String16
& name
,
1584 const String16
& bagParent
,
1585 const String16
& bagKey
,
1586 const String16
& value
,
1587 const Vector
<StringPool::entry_style_span
>* style
,
1588 const ResTable_config
* params
,
1589 bool replace
, bool isId
, const int32_t format
)
1591 // Check for adding entries in other packages... for now we do
1592 // nothing. We need to do the right thing here to support skinning.
1593 uint32_t rid
= mAssets
->getIncludedResources()
1594 .identifierForName(name
.string(), name
.size(),
1595 type
.string(), type
.size(),
1596 package
.string(), package
.size());
1602 if (name
== String16("left")) {
1603 printf("Adding bag left: file=%s, line=%d, type=%s\n",
1604 sourcePos
.file
.striing(), sourcePos
.line
, String8(type
).string());
1608 sp
<Entry
> e
= getEntry(package
, type
, name
, sourcePos
, params
);
1610 return UNKNOWN_ERROR
;
1613 // If a parent is explicitly specified, set it.
1614 if (bagParent
.size() > 0) {
1615 String16 curPar
= e
->getParent();
1616 if (curPar
.size() > 0 && curPar
!= bagParent
) {
1617 sourcePos
.error("Conflicting parents specified, was '%s', now '%s'\n",
1618 String8(e
->getParent()).string(),
1619 String8(bagParent
).string());
1620 return UNKNOWN_ERROR
;
1622 e
->setParent(bagParent
);
1625 const bool first
= e
->getBag().indexOfKey(bagKey
) < 0;
1626 status_t err
= e
->addToBag(sourcePos
, bagKey
, value
, style
, replace
, isId
, format
);
1627 if (err
== NO_ERROR
&& first
) {
1633 bool ResourceTable::hasBagOrEntry(const String16
& package
,
1634 const String16
& type
,
1635 const String16
& name
) const
1637 // First look for this in the included resources...
1638 uint32_t rid
= mAssets
->getIncludedResources()
1639 .identifierForName(name
.string(), name
.size(),
1640 type
.string(), type
.size(),
1641 package
.string(), package
.size());
1646 sp
<Package
> p
= mPackages
.valueFor(package
);
1648 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1650 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1651 if (c
!= NULL
) return true;
1658 bool ResourceTable::hasBagOrEntry(const String16
& ref
,
1659 const String16
* defType
,
1660 const String16
* defPackage
)
1662 String16 package
, type
, name
;
1663 if (!ResTable::expandResourceRef(ref
.string(), ref
.size(), &package
, &type
, &name
,
1664 defType
, defPackage
? defPackage
:&mAssetsPackage
, NULL
)) {
1667 return hasBagOrEntry(package
, type
, name
);
1670 bool ResourceTable::appendComment(const String16
& package
,
1671 const String16
& type
,
1672 const String16
& name
,
1673 const String16
& comment
,
1676 if (comment
.size() <= 0) {
1680 sp
<Package
> p
= mPackages
.valueFor(package
);
1682 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1684 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1686 c
->appendComment(comment
, onlyIfEmpty
);
1694 bool ResourceTable::appendTypeComment(const String16
& package
,
1695 const String16
& type
,
1696 const String16
& name
,
1697 const String16
& comment
)
1699 if (comment
.size() <= 0) {
1703 sp
<Package
> p
= mPackages
.valueFor(package
);
1705 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1707 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1709 c
->appendTypeComment(comment
);
1717 size_t ResourceTable::size() const {
1718 return mPackages
.size();
1721 size_t ResourceTable::numLocalResources() const {
1725 bool ResourceTable::hasResources() const {
1726 return mNumLocal
> 0;
1729 sp
<AaptFile
> ResourceTable::flatten(Bundle
* bundle
)
1731 sp
<AaptFile
> data
= new AaptFile(String8(), AaptGroupEntry(), String8());
1732 status_t err
= flatten(bundle
, data
);
1733 return err
== NO_ERROR
? data
: NULL
;
1736 inline uint32_t ResourceTable::getResId(const sp
<Package
>& p
,
1740 return makeResId(p
->getAssignedId(), t
->getIndex(), nameId
);
1743 uint32_t ResourceTable::getResId(const String16
& package
,
1744 const String16
& type
,
1745 const String16
& name
,
1746 bool onlyPublic
) const
1748 sp
<Package
> p
= mPackages
.valueFor(package
);
1749 if (p
== NULL
) return 0;
1751 // First look for this in the included resources...
1752 uint32_t specFlags
= 0;
1753 uint32_t rid
= mAssets
->getIncludedResources()
1754 .identifierForName(name
.string(), name
.size(),
1755 type
.string(), type
.size(),
1756 package
.string(), package
.size(),
1760 if ((specFlags
& ResTable_typeSpec::SPEC_PUBLIC
) == 0) {
1765 if (Res_INTERNALID(rid
)) {
1768 return Res_MAKEID(p
->getAssignedId()-1,
1773 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1774 if (t
== NULL
) return 0;
1775 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1776 if (c
== NULL
) return 0;
1777 int32_t ei
= c
->getEntryIndex();
1778 if (ei
< 0) return 0;
1779 return getResId(p
, t
, ei
);
1782 uint32_t ResourceTable::getResId(const String16
& ref
,
1783 const String16
* defType
,
1784 const String16
* defPackage
,
1785 const char** outErrorMsg
,
1786 bool onlyPublic
) const
1788 String16 package
, type
, name
;
1789 if (!ResTable::expandResourceRef(
1790 ref
.string(), ref
.size(), &package
, &type
, &name
,
1791 defType
, defPackage
? defPackage
:&mAssetsPackage
,
1793 NOISY(printf("Expanding resource: ref=%s\n",
1794 String8(ref
).string()));
1795 NOISY(printf("Expanding resource: defType=%s\n",
1796 defType
? String8(*defType
).string() : "NULL"));
1797 NOISY(printf("Expanding resource: defPackage=%s\n",
1798 defPackage
? String8(*defPackage
).string() : "NULL"));
1799 NOISY(printf("Expanding resource: ref=%s\n", String8(ref
).string()));
1800 NOISY(printf("Expanded resource: p=%s, t=%s, n=%s, res=0\n",
1801 String8(package
).string(), String8(type
).string(),
1802 String8(name
).string()));
1805 uint32_t res
= getResId(package
, type
, name
, onlyPublic
);
1806 NOISY(printf("Expanded resource: p=%s, t=%s, n=%s, res=%d\n",
1807 String8(package
).string(), String8(type
).string(),
1808 String8(name
).string(), res
));
1811 *outErrorMsg
= "No resource found that matches the given name";
1816 bool ResourceTable::isValidResourceName(const String16
& s
)
1818 const char16_t* p
= s
.string();
1821 if ((*p
>= 'a' && *p
<= 'z')
1822 || (*p
>= 'A' && *p
<= 'Z')
1824 || (!first
&& *p
>= '0' && *p
<= '9')) {
1834 bool ResourceTable::stringToValue(Res_value
* outValue
, StringPool
* pool
,
1835 const String16
& str
,
1836 bool preserveSpaces
, bool coerceType
,
1838 const Vector
<StringPool::entry_style_span
>* style
,
1839 String16
* outStr
, void* accessorCookie
,
1845 if (style
== NULL
|| style
->size() == 0) {
1846 // Text is not styled so it can be any type... let's figure it out.
1847 res
= mAssets
->getIncludedResources()
1848 .stringToValue(outValue
, &finalStr
, str
.string(), str
.size(), preserveSpaces
,
1849 coerceType
, attrID
, NULL
, &mAssetsPackage
, this,
1850 accessorCookie
, attrType
);
1852 // Styled text can only be a string, and while collecting the style
1853 // information we have already processed that string!
1854 outValue
->size
= sizeof(Res_value
);
1856 outValue
->dataType
= outValue
->TYPE_STRING
;
1865 if (outValue
->dataType
== outValue
->TYPE_STRING
) {
1866 // Should do better merging styles.
1868 if (style
!= NULL
&& style
->size() > 0) {
1869 outValue
->data
= pool
->add(finalStr
, *style
);
1871 outValue
->data
= pool
->add(finalStr
, true);
1874 // Caller will fill this in later.
1887 uint32_t ResourceTable::getCustomResource(
1888 const String16
& package
, const String16
& type
, const String16
& name
) const
1890 //printf("getCustomResource: %s %s %s\n", String8(package).string(),
1891 // String8(type).string(), String8(name).string());
1892 sp
<Package
> p
= mPackages
.valueFor(package
);
1893 if (p
== NULL
) return 0;
1894 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1895 if (t
== NULL
) return 0;
1896 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1897 if (c
== NULL
) return 0;
1898 int32_t ei
= c
->getEntryIndex();
1899 if (ei
< 0) return 0;
1900 return getResId(p
, t
, ei
);
1903 uint32_t ResourceTable::getCustomResourceWithCreation(
1904 const String16
& package
, const String16
& type
, const String16
& name
,
1905 const bool createIfNotFound
)
1907 uint32_t resId
= getCustomResource(package
, type
, name
);
1908 if (resId
!= 0 || !createIfNotFound
) {
1911 String16
value("false");
1913 status_t status
= addEntry(mCurrentXmlPos
, package
, type
, name
, value
, NULL
, NULL
, true);
1914 if (status
== NO_ERROR
) {
1915 resId
= getResId(package
, type
, name
);
1921 uint32_t ResourceTable::getRemappedPackage(uint32_t origPackage
) const
1926 bool ResourceTable::getAttributeType(uint32_t attrID
, uint32_t* outType
)
1928 //printf("getAttributeType #%08x\n", attrID);
1930 if (getItemValue(attrID
, ResTable_map::ATTR_TYPE
, &value
)) {
1931 //printf("getAttributeType #%08x (%s): #%08x\n", attrID,
1932 // String8(getEntry(attrID)->getName()).string(), value.data);
1933 *outType
= value
.data
;
1939 bool ResourceTable::getAttributeMin(uint32_t attrID
, uint32_t* outMin
)
1941 //printf("getAttributeMin #%08x\n", attrID);
1943 if (getItemValue(attrID
, ResTable_map::ATTR_MIN
, &value
)) {
1944 *outMin
= value
.data
;
1950 bool ResourceTable::getAttributeMax(uint32_t attrID
, uint32_t* outMax
)
1952 //printf("getAttributeMax #%08x\n", attrID);
1954 if (getItemValue(attrID
, ResTable_map::ATTR_MAX
, &value
)) {
1955 *outMax
= value
.data
;
1961 uint32_t ResourceTable::getAttributeL10N(uint32_t attrID
)
1963 //printf("getAttributeL10N #%08x\n", attrID);
1965 if (getItemValue(attrID
, ResTable_map::ATTR_L10N
, &value
)) {
1968 return ResTable_map::L10N_NOT_REQUIRED
;
1971 bool ResourceTable::getLocalizationSetting()
1973 return mBundle
->getRequireLocalization();
1976 void ResourceTable::reportError(void* accessorCookie
, const char* fmt
, ...)
1978 if (accessorCookie
!= NULL
&& fmt
!= NULL
) {
1979 AccessorCookie
* ac
= (AccessorCookie
*)accessorCookie
;
1984 retval
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
1986 ac
->sourcePos
.error("Error: %s (at '%s' with value '%s').\n",
1987 buf
, ac
->attr
.string(), ac
->value
.string());
1991 bool ResourceTable::getAttributeKeys(
1992 uint32_t attrID
, Vector
<String16
>* outKeys
)
1994 sp
<const Entry
> e
= getEntry(attrID
);
1996 const size_t N
= e
->getBag().size();
1997 for (size_t i
=0; i
<N
; i
++) {
1998 const String16
& key
= e
->getBag().keyAt(i
);
1999 if (key
.size() > 0 && key
.string()[0] != '^') {
2008 bool ResourceTable::getAttributeEnum(
2009 uint32_t attrID
, const char16_t* name
, size_t nameLen
,
2010 Res_value
* outValue
)
2012 //printf("getAttributeEnum #%08x %s\n", attrID, String8(name, nameLen).string());
2013 String16
nameStr(name
, nameLen
);
2014 sp
<const Entry
> e
= getEntry(attrID
);
2016 const size_t N
= e
->getBag().size();
2017 for (size_t i
=0; i
<N
; i
++) {
2018 //printf("Comparing %s to %s\n", String8(name, nameLen).string(),
2019 // String8(e->getBag().keyAt(i)).string());
2020 if (e
->getBag().keyAt(i
) == nameStr
) {
2021 return getItemValue(attrID
, e
->getBag().valueAt(i
).bagKeyId
, outValue
);
2028 bool ResourceTable::getAttributeFlags(
2029 uint32_t attrID
, const char16_t* name
, size_t nameLen
,
2030 Res_value
* outValue
)
2032 outValue
->dataType
= Res_value::TYPE_INT_HEX
;
2035 //printf("getAttributeFlags #%08x %s\n", attrID, String8(name, nameLen).string());
2036 String16
nameStr(name
, nameLen
);
2037 sp
<const Entry
> e
= getEntry(attrID
);
2039 const size_t N
= e
->getBag().size();
2041 const char16_t* end
= name
+ nameLen
;
2042 const char16_t* pos
= name
;
2043 bool failed
= false;
2044 while (pos
< end
&& !failed
) {
2045 const char16_t* start
= pos
;
2047 while (pos
< end
&& *pos
!= '|') {
2051 String16
nameStr(start
, pos
-start
);
2053 for (i
=0; i
<N
; i
++) {
2054 //printf("Comparing \"%s\" to \"%s\"\n", String8(nameStr).string(),
2055 // String8(e->getBag().keyAt(i)).string());
2056 if (e
->getBag().keyAt(i
) == nameStr
) {
2058 bool got
= getItemValue(attrID
, e
->getBag().valueAt(i
).bagKeyId
, &val
);
2062 //printf("Got value: 0x%08x\n", val.data);
2063 outValue
->data
|= val
.data
;
2069 // Didn't find this flag identifier.
2082 status_t
ResourceTable::assignResourceIds()
2084 const size_t N
= mOrderedPackages
.size();
2086 status_t firstError
= NO_ERROR
;
2088 // First generate all bag attributes and assign indices.
2089 for (pi
=0; pi
<N
; pi
++) {
2090 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2091 if (p
== NULL
|| p
->getTypes().size() == 0) {
2096 status_t err
= p
->applyPublicTypeOrder();
2097 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2101 // Generate attributes...
2102 const size_t N
= p
->getOrderedTypes().size();
2104 for (ti
=0; ti
<N
; ti
++) {
2105 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2109 const size_t N
= t
->getOrderedConfigs().size();
2110 for (size_t ci
=0; ci
<N
; ci
++) {
2111 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2115 const size_t N
= c
->getEntries().size();
2116 for (size_t ei
=0; ei
<N
; ei
++) {
2117 sp
<Entry
> e
= c
->getEntries().valueAt(ei
);
2121 status_t err
= e
->generateAttributes(this, p
->getName());
2122 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2129 const SourcePos
unknown(String8("????"), 0);
2130 sp
<Type
> attr
= p
->getType(String16("attr"), unknown
);
2132 // Assign indices...
2133 for (ti
=0; ti
<N
; ti
++) {
2134 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2138 err
= t
->applyPublicEntryOrder();
2139 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2143 const size_t N
= t
->getOrderedConfigs().size();
2146 LOG_ALWAYS_FATAL_IF(ti
== 0 && attr
!= t
,
2147 "First type is not attr!");
2149 for (size_t ei
=0; ei
<N
; ei
++) {
2150 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ei
);
2154 c
->setEntryIndex(ei
);
2158 // Assign resource IDs to keys in bags...
2159 for (ti
=0; ti
<N
; ti
++) {
2160 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2164 const size_t N
= t
->getOrderedConfigs().size();
2165 for (size_t ci
=0; ci
<N
; ci
++) {
2166 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2167 //printf("Ordered config #%d: %p\n", ci, c.get());
2168 const size_t N
= c
->getEntries().size();
2169 for (size_t ei
=0; ei
<N
; ei
++) {
2170 sp
<Entry
> e
= c
->getEntries().valueAt(ei
);
2174 status_t err
= e
->assignResourceIds(this, p
->getName());
2175 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2185 status_t
ResourceTable::addSymbols(const sp
<AaptSymbols
>& outSymbols
) {
2186 const size_t N
= mOrderedPackages
.size();
2189 for (pi
=0; pi
<N
; pi
++) {
2190 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2191 if (p
->getTypes().size() == 0) {
2196 const size_t N
= p
->getOrderedTypes().size();
2199 for (ti
=0; ti
<N
; ti
++) {
2200 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2204 const size_t N
= t
->getOrderedConfigs().size();
2205 sp
<AaptSymbols
> typeSymbols
;
2206 typeSymbols
= outSymbols
->addNestedSymbol(String8(t
->getName()), t
->getPos());
2207 for (size_t ci
=0; ci
<N
; ci
++) {
2208 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2212 uint32_t rid
= getResId(p
, t
, ci
);
2214 return UNKNOWN_ERROR
;
2216 if (Res_GETPACKAGE(rid
) == (size_t)(p
->getAssignedId()-1)) {
2217 typeSymbols
->addSymbol(String8(c
->getName()), rid
, c
->getPos());
2219 String16
comment(c
->getComment());
2220 typeSymbols
->appendComment(String8(c
->getName()), comment
, c
->getPos());
2221 //printf("Type symbol %s comment: %s\n", String8(e->getName()).string(),
2222 // String8(comment).string());
2223 comment
= c
->getTypeComment();
2224 typeSymbols
->appendTypeComment(String8(c
->getName()), comment
);
2227 printf("**** NO MATCH: 0x%08x vs 0x%08x\n",
2228 Res_GETPACKAGE(rid
), p
->getAssignedId());
2239 ResourceTable::addLocalization(const String16
& name
, const String8
& locale
)
2241 mLocalizations
[name
].insert(locale
);
2246 * Flag various sorts of localization problems. '+' indicates checks already implemented;
2247 * '-' indicates checks that will be implemented in the future.
2249 * + A localized string for which no default-locale version exists => warning
2250 * + A string for which no version in an explicitly-requested locale exists => warning
2251 * + A localized translation of an translateable="false" string => warning
2252 * - A localized string not provided in every locale used by the table
2255 ResourceTable::validateLocalizations(void)
2257 status_t err
= NO_ERROR
;
2258 const String8 defaultLocale
;
2260 // For all strings...
2261 for (map
<String16
, set
<String8
> >::iterator nameIter
= mLocalizations
.begin();
2262 nameIter
!= mLocalizations
.end();
2264 const set
<String8
>& configSet
= nameIter
->second
; // naming convenience
2266 // Look for strings with no default localization
2267 if (configSet
.count(defaultLocale
) == 0) {
2268 fprintf(stdout
, "aapt: warning: string '%s' has no default translation in %s; found:",
2269 String8(nameIter
->first
).string(), mBundle
->getResourceSourceDirs()[0]);
2270 for (set
<String8
>::iterator locales
= configSet
.begin();
2271 locales
!= configSet
.end();
2273 fprintf(stdout
, " %s", (*locales
).string());
2275 fprintf(stdout
, "\n");
2276 // !!! TODO: throw an error here in some circumstances
2279 // Check that all requested localizations are present for this string
2280 if (mBundle
->getConfigurations() != NULL
&& mBundle
->getRequireLocalization()) {
2281 const char* allConfigs
= mBundle
->getConfigurations();
2282 const char* start
= allConfigs
;
2287 comma
= strchr(start
, ',');
2288 if (comma
!= NULL
) {
2289 config
.setTo(start
, comma
- start
);
2292 config
.setTo(start
);
2295 // don't bother with the pseudolocale "zz_ZZ"
2296 if (config
!= "zz_ZZ") {
2297 if (configSet
.find(config
) == configSet
.end()) {
2298 // okay, no specific localization found. it's possible that we are
2299 // requiring a specific regional localization [e.g. de_DE] but there is an
2300 // available string in the generic language localization [e.g. de];
2301 // consider that string to have fulfilled the localization requirement.
2302 String8
region(config
.string(), 2);
2303 if (configSet
.find(region
) == configSet
.end()) {
2304 if (configSet
.count(defaultLocale
) == 0) {
2305 fprintf(stdout
, "aapt: error: "
2306 "*** string '%s' has no default or required localization "
2308 String8(nameIter
->first
).string(),
2310 mBundle
->getResourceSourceDirs()[0]);
2311 err
= UNKNOWN_ERROR
;
2316 } while (comma
!= NULL
);
2325 ResourceFilter::parse(const char* arg
)
2331 const char* p
= arg
;
2340 String8
part(p
, q
-p
);
2342 if (part
== "zz_ZZ") {
2343 mContainsPseudo
= true;
2347 if (AaptGroupEntry::parseNamePart(part
, &axis
, &value
)) {
2348 fprintf(stderr
, "Invalid configuration: %s\n", arg
);
2349 fprintf(stderr
, " ");
2350 for (int i
=0; i
<p
-arg
; i
++) {
2351 fprintf(stderr
, " ");
2353 for (int i
=0; i
<q
-p
; i
++) {
2354 fprintf(stderr
, "^");
2356 fprintf(stderr
, "\n");
2360 ssize_t index
= mData
.indexOfKey(axis
);
2362 mData
.add(axis
, SortedVector
<uint32_t>());
2364 SortedVector
<uint32_t>& sv
= mData
.editValueFor(axis
);
2366 // if it's a locale with a region, also match an unmodified locale of the
2368 if (axis
== AXIS_LANGUAGE
) {
2369 if (value
& 0xffff0000) {
2370 sv
.add(value
& 0x0000ffff);
2382 ResourceFilter::match(int axis
, uint32_t value
)
2385 // they didn't specify anything so take everything
2388 ssize_t index
= mData
.indexOfKey(axis
);
2390 // we didn't request anything on this axis so take everything
2393 const SortedVector
<uint32_t>& sv
= mData
.valueAt(index
);
2394 return sv
.indexOf(value
) >= 0;
2398 ResourceFilter::match(const ResTable_config
& config
)
2400 if (config
.locale
) {
2401 uint32_t locale
= (config
.country
[1] << 24) | (config
.country
[0] << 16)
2402 | (config
.language
[1] << 8) | (config
.language
[0]);
2403 if (!match(AXIS_LANGUAGE
, locale
)) {
2407 if (!match(AXIS_ORIENTATION
, config
.orientation
)) {
2410 if (!match(AXIS_DENSITY
, config
.density
)) {
2413 if (!match(AXIS_TOUCHSCREEN
, config
.touchscreen
)) {
2416 if (!match(AXIS_KEYSHIDDEN
, config
.inputFlags
)) {
2419 if (!match(AXIS_KEYBOARD
, config
.keyboard
)) {
2422 if (!match(AXIS_NAVIGATION
, config
.navigation
)) {
2425 if (!match(AXIS_SCREENSIZE
, config
.screenSize
)) {
2428 if (!match(AXIS_VERSION
, config
.version
)) {
2434 status_t
ResourceTable::flatten(Bundle
* bundle
, const sp
<AaptFile
>& dest
)
2436 ResourceFilter filter
;
2437 status_t err
= filter
.parse(bundle
->getConfigurations());
2438 if (err
!= NO_ERROR
) {
2442 const size_t N
= mOrderedPackages
.size();
2445 // Iterate through all data, collecting all values (strings,
2446 // references, etc).
2447 StringPool valueStrings
;
2448 for (pi
=0; pi
<N
; pi
++) {
2449 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2450 if (p
->getTypes().size() == 0) {
2455 StringPool typeStrings
;
2456 StringPool keyStrings
;
2458 const size_t N
= p
->getOrderedTypes().size();
2459 for (size_t ti
=0; ti
<N
; ti
++) {
2460 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2462 typeStrings
.add(String16("<empty>"), false);
2465 typeStrings
.add(t
->getName(), false);
2467 const size_t N
= t
->getOrderedConfigs().size();
2468 for (size_t ci
=0; ci
<N
; ci
++) {
2469 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2473 const size_t N
= c
->getEntries().size();
2474 for (size_t ei
=0; ei
<N
; ei
++) {
2475 ConfigDescription config
= c
->getEntries().keyAt(ei
);
2476 if (!filter
.match(config
)) {
2479 sp
<Entry
> e
= c
->getEntries().valueAt(ei
);
2483 e
->setNameIndex(keyStrings
.add(e
->getName(), true));
2484 status_t err
= e
->prepareFlatten(&valueStrings
, this);
2485 if (err
!= NO_ERROR
) {
2492 p
->setTypeStrings(typeStrings
.createStringBlock());
2493 p
->setKeyStrings(keyStrings
.createStringBlock());
2498 // Now build the array of package chunks.
2499 Vector
<sp
<AaptFile
> > flatPackages
;
2500 for (pi
=0; pi
<N
; pi
++) {
2501 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2502 if (p
->getTypes().size() == 0) {
2507 const size_t N
= p
->getTypeStrings().size();
2509 const size_t baseSize
= sizeof(ResTable_package
);
2511 // Start the package data.
2512 sp
<AaptFile
> data
= new AaptFile(String8(), AaptGroupEntry(), String8());
2513 ResTable_package
* header
= (ResTable_package
*)data
->editData(baseSize
);
2514 if (header
== NULL
) {
2515 fprintf(stderr
, "ERROR: out of memory creating ResTable_package\n");
2518 memset(header
, 0, sizeof(*header
));
2519 header
->header
.type
= htods(RES_TABLE_PACKAGE_TYPE
);
2520 header
->header
.headerSize
= htods(sizeof(*header
));
2521 header
->id
= htodl(p
->getAssignedId());
2522 strcpy16_htod(header
->name
, p
->getName().string());
2524 // Write the string blocks.
2525 const size_t typeStringsStart
= data
->getSize();
2526 sp
<AaptFile
> strFile
= p
->getTypeStringsData();
2527 ssize_t amt
= data
->writeData(strFile
->getData(), strFile
->getSize());
2528 #if PRINT_STRING_METRICS
2529 fprintf(stderr
, "**** type strings: %d\n", amt
);
2535 const size_t keyStringsStart
= data
->getSize();
2536 strFile
= p
->getKeyStringsData();
2537 amt
= data
->writeData(strFile
->getData(), strFile
->getSize());
2538 #if PRINT_STRING_METRICS
2539 fprintf(stderr
, "**** key strings: %d\n", amt
);
2546 // Build the type chunks inside of this package.
2547 for (size_t ti
=0; ti
<N
; ti
++) {
2548 // Retrieve them in the same order as the type string block.
2550 String16
typeName(p
->getTypeStrings().stringAt(ti
, &len
));
2551 sp
<Type
> t
= p
->getTypes().valueFor(typeName
);
2552 LOG_ALWAYS_FATAL_IF(t
== NULL
&& typeName
!= String16("<empty>"),
2553 "Type name %s not found",
2554 String8(typeName
).string());
2556 const size_t N
= t
!= NULL
? t
->getOrderedConfigs().size() : 0;
2558 // First write the typeSpec chunk, containing information about
2559 // each resource entry in this type.
2561 const size_t typeSpecSize
= sizeof(ResTable_typeSpec
) + sizeof(uint32_t)*N
;
2562 const size_t typeSpecStart
= data
->getSize();
2563 ResTable_typeSpec
* tsHeader
= (ResTable_typeSpec
*)
2564 (((uint8_t*)data
->editData(typeSpecStart
+typeSpecSize
)) + typeSpecStart
);
2565 if (tsHeader
== NULL
) {
2566 fprintf(stderr
, "ERROR: out of memory creating ResTable_typeSpec\n");
2569 memset(tsHeader
, 0, sizeof(*tsHeader
));
2570 tsHeader
->header
.type
= htods(RES_TABLE_TYPE_SPEC_TYPE
);
2571 tsHeader
->header
.headerSize
= htods(sizeof(*tsHeader
));
2572 tsHeader
->header
.size
= htodl(typeSpecSize
);
2573 tsHeader
->id
= ti
+1;
2574 tsHeader
->entryCount
= htodl(N
);
2576 uint32_t* typeSpecFlags
= (uint32_t*)
2577 (((uint8_t*)data
->editData())
2578 + typeSpecStart
+ sizeof(ResTable_typeSpec
));
2579 memset(typeSpecFlags
, 0, sizeof(uint32_t)*N
);
2581 for (size_t ei
=0; ei
<N
; ei
++) {
2582 sp
<ConfigList
> cl
= t
->getOrderedConfigs().itemAt(ei
);
2583 if (cl
->getPublic()) {
2584 typeSpecFlags
[ei
] |= htodl(ResTable_typeSpec::SPEC_PUBLIC
);
2586 const size_t CN
= cl
->getEntries().size();
2587 for (size_t ci
=0; ci
<CN
; ci
++) {
2588 if (!filter
.match(cl
->getEntries().keyAt(ci
))) {
2591 for (size_t cj
=ci
+1; cj
<CN
; cj
++) {
2592 if (!filter
.match(cl
->getEntries().keyAt(cj
))) {
2595 typeSpecFlags
[ei
] |= htodl(
2596 cl
->getEntries().keyAt(ci
).diff(cl
->getEntries().keyAt(cj
)));
2602 // We need to write one type chunk for each configuration for
2603 // which we have entries in this type.
2604 const size_t NC
= t
->getUniqueConfigs().size();
2606 const size_t typeSize
= sizeof(ResTable_type
) + sizeof(uint32_t)*N
;
2608 for (size_t ci
=0; ci
<NC
; ci
++) {
2609 ConfigDescription config
= t
->getUniqueConfigs().itemAt(ci
);
2611 NOISY(printf("Writing config %d config: imsi:%d/%d lang:%c%c cnt:%c%c "
2612 "orien:%d touch:%d density:%d key:%d inp:%d nav:%d w:%d h:%d\n",
2614 config
.mcc
, config
.mnc
,
2615 config
.language
[0] ? config
.language
[0] : '-',
2616 config
.language
[1] ? config
.language
[1] : '-',
2617 config
.country
[0] ? config
.country
[0] : '-',
2618 config
.country
[1] ? config
.country
[1] : '-',
2626 config
.screenHeight
));
2628 if (!filter
.match(config
)) {
2632 const size_t typeStart
= data
->getSize();
2634 ResTable_type
* tHeader
= (ResTable_type
*)
2635 (((uint8_t*)data
->editData(typeStart
+typeSize
)) + typeStart
);
2636 if (tHeader
== NULL
) {
2637 fprintf(stderr
, "ERROR: out of memory creating ResTable_type\n");
2641 memset(tHeader
, 0, sizeof(*tHeader
));
2642 tHeader
->header
.type
= htods(RES_TABLE_TYPE_TYPE
);
2643 tHeader
->header
.headerSize
= htods(sizeof(*tHeader
));
2645 tHeader
->entryCount
= htodl(N
);
2646 tHeader
->entriesStart
= htodl(typeSize
);
2647 tHeader
->config
= config
;
2648 NOISY(printf("Writing type %d config: imsi:%d/%d lang:%c%c cnt:%c%c "
2649 "orien:%d touch:%d density:%d key:%d inp:%d nav:%d w:%d h:%d\n",
2651 tHeader
->config
.mcc
, tHeader
->config
.mnc
,
2652 tHeader
->config
.language
[0] ? tHeader
->config
.language
[0] : '-',
2653 tHeader
->config
.language
[1] ? tHeader
->config
.language
[1] : '-',
2654 tHeader
->config
.country
[0] ? tHeader
->config
.country
[0] : '-',
2655 tHeader
->config
.country
[1] ? tHeader
->config
.country
[1] : '-',
2656 tHeader
->config
.orientation
,
2657 tHeader
->config
.touchscreen
,
2658 tHeader
->config
.density
,
2659 tHeader
->config
.keyboard
,
2660 tHeader
->config
.inputFlags
,
2661 tHeader
->config
.navigation
,
2662 tHeader
->config
.screenWidth
,
2663 tHeader
->config
.screenHeight
));
2664 tHeader
->config
.swapHtoD();
2666 // Build the entries inside of this type.
2667 for (size_t ei
=0; ei
<N
; ei
++) {
2668 sp
<ConfigList
> cl
= t
->getOrderedConfigs().itemAt(ei
);
2669 sp
<Entry
> e
= cl
->getEntries().valueFor(config
);
2671 // Set the offset for this entry in its type.
2672 uint32_t* index
= (uint32_t*)
2673 (((uint8_t*)data
->editData())
2674 + typeStart
+ sizeof(ResTable_type
));
2676 index
[ei
] = htodl(data
->getSize()-typeStart
-typeSize
);
2678 // Create the entry.
2679 ssize_t amt
= e
->flatten(bundle
, data
, cl
->getPublic());
2684 index
[ei
] = htodl(ResTable_type::NO_ENTRY
);
2688 // Fill in the rest of the type information.
2689 tHeader
= (ResTable_type
*)
2690 (((uint8_t*)data
->editData()) + typeStart
);
2691 tHeader
->header
.size
= htodl(data
->getSize()-typeStart
);
2695 // Fill in the rest of the package information.
2696 header
= (ResTable_package
*)data
->editData();
2697 header
->header
.size
= htodl(data
->getSize());
2698 header
->typeStrings
= htodl(typeStringsStart
);
2699 header
->lastPublicType
= htodl(p
->getTypeStrings().size());
2700 header
->keyStrings
= htodl(keyStringsStart
);
2701 header
->lastPublicKey
= htodl(p
->getKeyStrings().size());
2703 flatPackages
.add(data
);
2706 // And now write out the final chunks.
2707 const size_t dataStart
= dest
->getSize();
2711 ResTable_header header
;
2712 memset(&header
, 0, sizeof(header
));
2713 header
.header
.type
= htods(RES_TABLE_TYPE
);
2714 header
.header
.headerSize
= htods(sizeof(header
));
2715 header
.packageCount
= htodl(flatPackages
.size());
2716 status_t err
= dest
->writeData(&header
, sizeof(header
));
2717 if (err
!= NO_ERROR
) {
2718 fprintf(stderr
, "ERROR: out of memory creating ResTable_header\n");
2723 ssize_t strStart
= dest
->getSize();
2724 err
= valueStrings
.writeStringBlock(dest
);
2725 if (err
!= NO_ERROR
) {
2729 ssize_t amt
= (dest
->getSize()-strStart
);
2731 #if PRINT_STRING_METRICS
2732 fprintf(stderr
, "**** value strings: %d\n", amt
);
2733 fprintf(stderr
, "**** total strings: %d\n", strAmt
);
2736 for (pi
=0; pi
<flatPackages
.size(); pi
++) {
2737 err
= dest
->writeData(flatPackages
[pi
]->getData(),
2738 flatPackages
[pi
]->getSize());
2739 if (err
!= NO_ERROR
) {
2740 fprintf(stderr
, "ERROR: out of memory creating package chunk for ResTable_header\n");
2745 ResTable_header
* header
= (ResTable_header
*)
2746 (((uint8_t*)dest
->getData()) + dataStart
);
2747 header
->header
.size
= htodl(dest
->getSize() - dataStart
);
2749 NOISY(aout
<< "Resource table:"
2750 << HexDump(dest
->getData(), dest
->getSize()) << endl
);
2752 #if PRINT_STRING_METRICS
2753 fprintf(stderr
, "**** total resource table size: %d / %d%% strings\n",
2754 dest
->getSize(), (strAmt
*100)/dest
->getSize());
2760 void ResourceTable::writePublicDefinitions(const String16
& package
, FILE* fp
)
2763 "<!-- This file contains <public> resource definitions for all\n"
2764 " resources that were generated from the source data. -->\n"
2768 writePublicDefinitions(package
, fp
, true);
2769 writePublicDefinitions(package
, fp
, false);
2776 void ResourceTable::writePublicDefinitions(const String16
& package
, FILE* fp
, bool pub
)
2778 bool didHeader
= false;
2780 sp
<Package
> pkg
= mPackages
.valueFor(package
);
2782 const size_t NT
= pkg
->getOrderedTypes().size();
2783 for (size_t i
=0; i
<NT
; i
++) {
2784 sp
<Type
> t
= pkg
->getOrderedTypes().itemAt(i
);
2789 bool didType
= false;
2791 const size_t NC
= t
->getOrderedConfigs().size();
2792 for (size_t j
=0; j
<NC
; j
++) {
2793 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(j
);
2798 if (c
->getPublic() != pub
) {
2808 fprintf(fp
," <!-- PUBLIC SECTION. These resources have been declared public.\n");
2809 fprintf(fp
," Changes to these definitions will break binary compatibility. -->\n\n");
2811 fprintf(fp
," <!-- PRIVATE SECTION. These resources have not been declared public.\n");
2812 fprintf(fp
," You can make them public my moving these lines into a file in res/values. -->\n\n");
2817 const size_t NE
= c
->getEntries().size();
2818 for (size_t k
=0; k
<NE
; k
++) {
2819 const SourcePos
& pos
= c
->getEntries().valueAt(k
)->getPos();
2820 if (pos
.file
!= "") {
2821 fprintf(fp
," <!-- Declared at %s:%d -->\n",
2822 pos
.file
.string(), pos
.line
);
2826 fprintf(fp
, " <public type=\"%s\" name=\"%s\" id=\"0x%08x\" />\n",
2827 String8(t
->getName()).string(),
2828 String8(c
->getName()).string(),
2829 getResId(pkg
, t
, c
->getEntryIndex()));
2835 ResourceTable::Item::Item(const SourcePos
& _sourcePos
,
2837 const String16
& _value
,
2838 const Vector
<StringPool::entry_style_span
>* _style
,
2840 : sourcePos(_sourcePos
)
2852 status_t
ResourceTable::Entry::makeItABag(const SourcePos
& sourcePos
)
2854 if (mType
== TYPE_BAG
) {
2857 if (mType
== TYPE_UNKNOWN
) {
2861 sourcePos
.error("Resource entry %s is already defined as a single item.\n"
2862 "%s:%d: Originally defined here.\n",
2863 String8(mName
).string(),
2864 mItem
.sourcePos
.file
.string(), mItem
.sourcePos
.line
);
2865 return UNKNOWN_ERROR
;
2868 status_t
ResourceTable::Entry::setItem(const SourcePos
& sourcePos
,
2869 const String16
& value
,
2870 const Vector
<StringPool::entry_style_span
>* style
,
2872 const bool overwrite
)
2874 Item
item(sourcePos
, false, value
, style
);
2876 if (mType
== TYPE_BAG
) {
2877 const Item
& item(mBag
.valueAt(0));
2878 sourcePos
.error("Resource entry %s is already defined as a bag.\n"
2879 "%s:%d: Originally defined here.\n",
2880 String8(mName
).string(),
2881 item
.sourcePos
.file
.string(), item
.sourcePos
.line
);
2882 return UNKNOWN_ERROR
;
2884 if ( (mType
!= TYPE_UNKNOWN
) && (overwrite
== false) ) {
2885 sourcePos
.error("Resource entry %s is already defined.\n"
2886 "%s:%d: Originally defined here.\n",
2887 String8(mName
).string(),
2888 mItem
.sourcePos
.file
.string(), mItem
.sourcePos
.line
);
2889 return UNKNOWN_ERROR
;
2894 mItemFormat
= format
;
2898 status_t
ResourceTable::Entry::addToBag(const SourcePos
& sourcePos
,
2899 const String16
& key
, const String16
& value
,
2900 const Vector
<StringPool::entry_style_span
>* style
,
2901 bool replace
, bool isId
, int32_t format
)
2903 status_t err
= makeItABag(sourcePos
);
2904 if (err
!= NO_ERROR
) {
2908 Item
item(sourcePos
, isId
, value
, style
, format
);
2910 // XXX NOTE: there is an error if you try to have a bag with two keys,
2911 // one an attr and one an id, with the same name. Not something we
2912 // currently ever have to worry about.
2913 ssize_t origKey
= mBag
.indexOfKey(key
);
2916 const Item
& item(mBag
.valueAt(origKey
));
2917 sourcePos
.error("Resource entry %s already has bag item %s.\n"
2918 "%s:%d: Originally defined here.\n",
2919 String8(mName
).string(), String8(key
).string(),
2920 item
.sourcePos
.file
.string(), item
.sourcePos
.line
);
2921 return UNKNOWN_ERROR
;
2923 //printf("Replacing %s with %s\n",
2924 // String8(mBag.valueFor(key).value).string(), String8(value).string());
2925 mBag
.replaceValueFor(key
, item
);
2928 mBag
.add(key
, item
);
2932 status_t
ResourceTable::Entry::emptyBag(const SourcePos
& sourcePos
)
2934 status_t err
= makeItABag(sourcePos
);
2935 if (err
!= NO_ERROR
) {
2943 status_t
ResourceTable::Entry::generateAttributes(ResourceTable
* table
,
2944 const String16
& package
)
2946 const String16
attr16("attr");
2947 const String16
id16("id");
2948 const size_t N
= mBag
.size();
2949 for (size_t i
=0; i
<N
; i
++) {
2950 const String16
& key
= mBag
.keyAt(i
);
2951 const Item
& it
= mBag
.valueAt(i
);
2953 if (!table
->hasBagOrEntry(key
, &id16
, &package
)) {
2954 String16
value("false");
2955 status_t err
= table
->addEntry(SourcePos(String8("<generated>"), 0), package
,
2957 if (err
!= NO_ERROR
) {
2961 } else if (!table
->hasBagOrEntry(key
, &attr16
, &package
)) {
2964 // fprintf(stderr, "ERROR: Bag attribute '%s' has not been defined.\n",
2965 // String8(key).string());
2966 // const Item& item(mBag.valueAt(i));
2967 // fprintf(stderr, "Referenced from file %s line %d\n",
2968 // item.sourcePos.file.string(), item.sourcePos.line);
2969 // return UNKNOWN_ERROR;
2972 sprintf(numberStr
, "%d", ResTable_map::TYPE_ANY
);
2973 status_t err
= table
->addBag(SourcePos("<generated>", 0), package
,
2974 attr16
, key
, String16(""),
2976 String16(numberStr
), NULL
, NULL
);
2977 if (err
!= NO_ERROR
) {
2986 status_t
ResourceTable::Entry::assignResourceIds(ResourceTable
* table
,
2987 const String16
& package
)
2989 bool hasErrors
= false;
2991 if (mType
== TYPE_BAG
) {
2992 const char* errorMsg
;
2993 const String16
style16("style");
2994 const String16
attr16("attr");
2995 const String16
id16("id");
2997 if (mParent
.size() > 0) {
2998 mParentId
= table
->getResId(mParent
, &style16
, NULL
, &errorMsg
);
2999 if (mParentId
== 0) {
3000 mPos
.error("Error retrieving parent for item: %s '%s'.\n",
3001 errorMsg
, String8(mParent
).string());
3005 const size_t N
= mBag
.size();
3006 for (size_t i
=0; i
<N
; i
++) {
3007 const String16
& key
= mBag
.keyAt(i
);
3008 Item
& it
= mBag
.editValueAt(i
);
3009 it
.bagKeyId
= table
->getResId(key
,
3010 it
.isId
? &id16
: &attr16
, NULL
, &errorMsg
);
3011 //printf("Bag key of %s: #%08x\n", String8(key).string(), it.bagKeyId);
3012 if (it
.bagKeyId
== 0) {
3013 it
.sourcePos
.error("Error: %s: %s '%s'.\n", errorMsg
,
3014 String8(it
.isId
? id16
: attr16
).string(),
3015 String8(key
).string());
3020 return hasErrors
? UNKNOWN_ERROR
: NO_ERROR
;
3023 status_t
ResourceTable::Entry::prepareFlatten(StringPool
* strings
, ResourceTable
* table
)
3025 if (mType
== TYPE_ITEM
) {
3027 AccessorCookie
ac(it
.sourcePos
, String8(mName
), String8(it
.value
));
3028 if (!table
->stringToValue(&it
.parsedValue
, strings
,
3029 it
.value
, false, true, 0,
3030 &it
.style
, NULL
, &ac
, mItemFormat
)) {
3031 return UNKNOWN_ERROR
;
3033 } else if (mType
== TYPE_BAG
) {
3034 const size_t N
= mBag
.size();
3035 for (size_t i
=0; i
<N
; i
++) {
3036 const String16
& key
= mBag
.keyAt(i
);
3037 Item
& it
= mBag
.editValueAt(i
);
3038 AccessorCookie
ac(it
.sourcePos
, String8(key
), String8(it
.value
));
3039 if (!table
->stringToValue(&it
.parsedValue
, strings
,
3040 it
.value
, false, true, it
.bagKeyId
,
3041 &it
.style
, NULL
, &ac
, it
.format
)) {
3042 return UNKNOWN_ERROR
;
3046 mPos
.error("Error: entry %s is not a single item or a bag.\n",
3047 String8(mName
).string());
3048 return UNKNOWN_ERROR
;
3053 ssize_t
ResourceTable::Entry::flatten(Bundle
* bundle
, const sp
<AaptFile
>& data
, bool isPublic
)
3056 ResTable_entry header
;
3057 memset(&header
, 0, sizeof(header
));
3058 header
.size
= htods(sizeof(header
));
3059 const type ty
= this != NULL
? mType
: TYPE_ITEM
;
3061 if (ty
== TYPE_BAG
) {
3062 header
.flags
|= htods(header
.FLAG_COMPLEX
);
3065 header
.flags
|= htods(header
.FLAG_PUBLIC
);
3067 header
.key
.index
= htodl(mNameIndex
);
3069 if (ty
!= TYPE_BAG
) {
3070 status_t err
= data
->writeData(&header
, sizeof(header
));
3071 if (err
!= NO_ERROR
) {
3072 fprintf(stderr
, "ERROR: out of memory creating ResTable_entry\n");
3076 const Item
& it
= mItem
;
3078 memset(&par
, 0, sizeof(par
));
3079 par
.size
= htods(it
.parsedValue
.size
);
3080 par
.dataType
= it
.parsedValue
.dataType
;
3081 par
.res0
= it
.parsedValue
.res0
;
3082 par
.data
= htodl(it
.parsedValue
.data
);
3084 printf("Writing item (%s): type=%d, data=0x%x, res0=0x%x\n",
3085 String8(mName
).string(), it
.parsedValue
.dataType
,
3086 it
.parsedValue
.data
, par
.res0
);
3088 err
= data
->writeData(&par
, it
.parsedValue
.size
);
3089 if (err
!= NO_ERROR
) {
3090 fprintf(stderr
, "ERROR: out of memory creating Res_value\n");
3093 amt
+= it
.parsedValue
.size
;
3095 size_t N
= mBag
.size();
3097 // Create correct ordering of items.
3098 KeyedVector
<uint32_t, const Item
*> items
;
3099 for (i
=0; i
<N
; i
++) {
3100 const Item
& it
= mBag
.valueAt(i
);
3101 items
.add(it
.bagKeyId
, &it
);
3105 ResTable_map_entry mapHeader
;
3106 memcpy(&mapHeader
, &header
, sizeof(header
));
3107 mapHeader
.size
= htods(sizeof(mapHeader
));
3108 mapHeader
.parent
.ident
= htodl(mParentId
);
3109 mapHeader
.count
= htodl(N
);
3110 status_t err
= data
->writeData(&mapHeader
, sizeof(mapHeader
));
3111 if (err
!= NO_ERROR
) {
3112 fprintf(stderr
, "ERROR: out of memory creating ResTable_entry\n");
3116 for (i
=0; i
<N
; i
++) {
3117 const Item
& it
= *items
.valueAt(i
);
3119 map
.name
.ident
= htodl(it
.bagKeyId
);
3120 map
.value
.size
= htods(it
.parsedValue
.size
);
3121 map
.value
.dataType
= it
.parsedValue
.dataType
;
3122 map
.value
.res0
= it
.parsedValue
.res0
;
3123 map
.value
.data
= htodl(it
.parsedValue
.data
);
3124 err
= data
->writeData(&map
, sizeof(map
));
3125 if (err
!= NO_ERROR
) {
3126 fprintf(stderr
, "ERROR: out of memory creating Res_value\n");
3135 void ResourceTable::ConfigList::appendComment(const String16
& comment
,
3138 if (comment
.size() <= 0) {
3141 if (onlyIfEmpty
&& mComment
.size() > 0) {
3144 if (mComment
.size() > 0) {
3145 mComment
.append(String16("\n"));
3147 mComment
.append(comment
);
3150 void ResourceTable::ConfigList::appendTypeComment(const String16
& comment
)
3152 if (comment
.size() <= 0) {
3155 if (mTypeComment
.size() > 0) {
3156 mTypeComment
.append(String16("\n"));
3158 mTypeComment
.append(comment
);
3161 status_t
ResourceTable::Type::addPublic(const SourcePos
& sourcePos
,
3162 const String16
& name
,
3163 const uint32_t ident
)
3166 int32_t entryIdx
= Res_GETENTRY(ident
);
3168 sourcePos
.error("Public resource %s/%s has an invalid 0 identifier (0x%08x).\n",
3169 String8(mName
).string(), String8(name
).string(), ident
);
3170 return UNKNOWN_ERROR
;
3174 int32_t typeIdx
= Res_GETTYPE(ident
);
3177 if (mPublicIndex
> 0 && mPublicIndex
!= typeIdx
) {
3178 sourcePos
.error("Public resource %s/%s has conflicting type codes for its"
3179 " public identifiers (0x%x vs 0x%x).\n",
3180 String8(mName
).string(), String8(name
).string(),
3181 mPublicIndex
, typeIdx
);
3182 return UNKNOWN_ERROR
;
3184 mPublicIndex
= typeIdx
;
3187 if (mFirstPublicSourcePos
== NULL
) {
3188 mFirstPublicSourcePos
= new SourcePos(sourcePos
);
3191 if (mPublic
.indexOfKey(name
) < 0) {
3192 mPublic
.add(name
, Public(sourcePos
, String16(), ident
));
3194 Public
& p
= mPublic
.editValueFor(name
);
3195 if (p
.ident
!= ident
) {
3196 sourcePos
.error("Public resource %s/%s has conflicting public identifiers"
3197 " (0x%08x vs 0x%08x).\n"
3198 "%s:%d: Originally defined here.\n",
3199 String8(mName
).string(), String8(name
).string(), p
.ident
, ident
,
3200 p
.sourcePos
.file
.string(), p
.sourcePos
.line
);
3201 return UNKNOWN_ERROR
;
3208 sp
<ResourceTable::Entry
> ResourceTable::Type::getEntry(const String16
& entry
,
3209 const SourcePos
& sourcePos
,
3210 const ResTable_config
* config
,
3214 sp
<ConfigList
> c
= mConfigs
.valueFor(entry
);
3216 c
= new ConfigList(entry
, sourcePos
);
3217 mConfigs
.add(entry
, c
);
3218 pos
= (int)mOrderedConfigs
.size();
3219 mOrderedConfigs
.add(c
);
3221 c
->setEntryIndex(pos
);
3225 ConfigDescription cdesc
;
3226 if (config
) cdesc
= *config
;
3228 sp
<Entry
> e
= c
->getEntries().valueFor(cdesc
);
3230 if (config
!= NULL
) {
3231 NOISY(printf("New entry at %s:%d: imsi:%d/%d lang:%c%c cnt:%c%c "
3232 "orien:%d touch:%d density:%d key:%d inp:%d nav:%d w:%d h:%d\n",
3233 sourcePos
.file
.string(), sourcePos
.line
,
3234 config
->mcc
, config
->mnc
,
3235 config
->language
[0] ? config
->language
[0] : '-',
3236 config
->language
[1] ? config
->language
[1] : '-',
3237 config
->country
[0] ? config
->country
[0] : '-',
3238 config
->country
[1] ? config
->country
[1] : '-',
3239 config
->orientation
,
3240 config
->touchscreen
,
3245 config
->screenWidth
,
3246 config
->screenHeight
));
3248 NOISY(printf("New entry at %s:%d: NULL config\n",
3249 sourcePos
.file
.string(), sourcePos
.line
));
3251 e
= new Entry(entry
, sourcePos
);
3252 c
->addEntry(cdesc
, e
);
3256 for (pos=0; pos<(int)mOrderedConfigs.size(); pos++) {
3257 if (mOrderedConfigs[pos] == c) {
3261 if (pos >= (int)mOrderedConfigs.size()) {
3262 sourcePos.error("Internal error: config not found in mOrderedConfigs when adding entry");
3266 e->setEntryIndex(pos);
3271 mUniqueConfigs
.add(cdesc
);
3276 status_t
ResourceTable::Type::applyPublicEntryOrder()
3278 size_t N
= mOrderedConfigs
.size();
3279 Vector
<sp
<ConfigList
> > origOrder(mOrderedConfigs
);
3280 bool hasError
= false;
3283 for (i
=0; i
<N
; i
++) {
3284 mOrderedConfigs
.replaceAt(NULL
, i
);
3287 const size_t NP
= mPublic
.size();
3288 //printf("Ordering %d configs from %d public defs\n", N, NP);
3290 for (j
=0; j
<NP
; j
++) {
3291 const String16
& name
= mPublic
.keyAt(j
);
3292 const Public
& p
= mPublic
.valueAt(j
);
3293 int32_t idx
= Res_GETENTRY(p
.ident
);
3294 //printf("Looking for entry \"%s\"/\"%s\" (0x%08x) in %d...\n",
3295 // String8(mName).string(), String8(name).string(), p.ident, N);
3297 for (i
=0; i
<N
; i
++) {
3298 sp
<ConfigList
> e
= origOrder
.itemAt(i
);
3299 //printf("#%d: \"%s\"\n", i, String8(e->getName()).string());
3300 if (e
->getName() == name
) {
3301 if (idx
>= (int32_t)mOrderedConfigs
.size()) {
3302 p
.sourcePos
.error("Public entry identifier 0x%x entry index "
3303 "is larger than available symbols (index %d, total symbols %d).\n",
3304 p
.ident
, idx
, mOrderedConfigs
.size());
3306 } else if (mOrderedConfigs
.itemAt(idx
) == NULL
) {
3308 e
->setPublicSourcePos(p
.sourcePos
);
3309 mOrderedConfigs
.replaceAt(e
, idx
);
3310 origOrder
.removeAt(i
);
3315 sp
<ConfigList
> oe
= mOrderedConfigs
.itemAt(idx
);
3317 p
.sourcePos
.error("Multiple entry names declared for public entry"
3318 " identifier 0x%x in type %s (%s vs %s).\n"
3319 "%s:%d: Originally defined here.",
3320 idx
+1, String8(mName
).string(),
3321 String8(oe
->getName()).string(),
3322 String8(name
).string(),
3323 oe
->getPublicSourcePos().file
.string(),
3324 oe
->getPublicSourcePos().line
);
3331 p
.sourcePos
.error("Public symbol %s/%s declared here is not defined.",
3332 String8(mName
).string(), String8(name
).string());
3337 //printf("Copying back in %d non-public configs, have %d\n", N, origOrder.size());
3339 if (N
!= origOrder
.size()) {
3340 printf("Internal error: remaining private symbol count mismatch\n");
3341 N
= origOrder
.size();
3345 for (i
=0; i
<N
; i
++) {
3346 sp
<ConfigList
> e
= origOrder
.itemAt(i
);
3347 // There will always be enough room for the remaining entries.
3348 while (mOrderedConfigs
.itemAt(j
) != NULL
) {
3351 mOrderedConfigs
.replaceAt(e
, j
);
3355 return hasError
? UNKNOWN_ERROR
: NO_ERROR
;
3358 ResourceTable::Package::Package(const String16
& name
, ssize_t includedId
)
3359 : mName(name
), mIncludedId(includedId
),
3360 mTypeStringsMapping(0xffffffff),
3361 mKeyStringsMapping(0xffffffff)
3365 sp
<ResourceTable::Type
> ResourceTable::Package::getType(const String16
& type
,
3366 const SourcePos
& sourcePos
,
3369 sp
<Type
> t
= mTypes
.valueFor(type
);
3371 t
= new Type(type
, sourcePos
);
3372 mTypes
.add(type
, t
);
3373 mOrderedTypes
.add(t
);
3375 // For some reason the type's index is set to one plus the index
3376 // in the mOrderedTypes list, rather than just the index.
3377 t
->setIndex(mOrderedTypes
.size());
3383 status_t
ResourceTable::Package::setTypeStrings(const sp
<AaptFile
>& data
)
3385 mTypeStringsData
= data
;
3386 status_t err
= setStrings(data
, &mTypeStrings
, &mTypeStringsMapping
);
3387 if (err
!= NO_ERROR
) {
3388 fprintf(stderr
, "ERROR: Type string data is corrupt!\n");
3393 status_t
ResourceTable::Package::setKeyStrings(const sp
<AaptFile
>& data
)
3395 mKeyStringsData
= data
;
3396 status_t err
= setStrings(data
, &mKeyStrings
, &mKeyStringsMapping
);
3397 if (err
!= NO_ERROR
) {
3398 fprintf(stderr
, "ERROR: Key string data is corrupt!\n");
3403 status_t
ResourceTable::Package::setStrings(const sp
<AaptFile
>& data
,
3404 ResStringPool
* strings
,
3405 DefaultKeyedVector
<String16
, uint32_t>* mappings
)
3407 if (data
->getData() == NULL
) {
3408 return UNKNOWN_ERROR
;
3411 NOISY(aout
<< "Setting restable string pool: "
3412 << HexDump(data
->getData(), data
->getSize()) << endl
);
3414 status_t err
= strings
->setTo(data
->getData(), data
->getSize());
3415 if (err
== NO_ERROR
) {
3416 const size_t N
= strings
->size();
3417 for (size_t i
=0; i
<N
; i
++) {
3419 mappings
->add(String16(strings
->stringAt(i
, &len
)), i
);
3425 status_t
ResourceTable::Package::applyPublicTypeOrder()
3427 size_t N
= mOrderedTypes
.size();
3428 Vector
<sp
<Type
> > origOrder(mOrderedTypes
);
3431 for (i
=0; i
<N
; i
++) {
3432 mOrderedTypes
.replaceAt(NULL
, i
);
3435 for (i
=0; i
<N
; i
++) {
3436 sp
<Type
> t
= origOrder
.itemAt(i
);
3437 int32_t idx
= t
->getPublicIndex();
3440 while (idx
>= (int32_t)mOrderedTypes
.size()) {
3441 mOrderedTypes
.add();
3443 if (mOrderedTypes
.itemAt(idx
) != NULL
) {
3444 sp
<Type
> ot
= mOrderedTypes
.itemAt(idx
);
3445 t
->getFirstPublicSourcePos().error("Multiple type names declared for public type"
3446 " identifier 0x%x (%s vs %s).\n"
3447 "%s:%d: Originally defined here.",
3448 idx
, String8(ot
->getName()).string(),
3449 String8(t
->getName()).string(),
3450 ot
->getFirstPublicSourcePos().file
.string(),
3451 ot
->getFirstPublicSourcePos().line
);
3452 return UNKNOWN_ERROR
;
3454 mOrderedTypes
.replaceAt(t
, idx
);
3455 origOrder
.removeAt(i
);
3462 for (i
=0; i
<N
; i
++) {
3463 sp
<Type
> t
= origOrder
.itemAt(i
);
3464 // There will always be enough room for the remaining types.
3465 while (mOrderedTypes
.itemAt(j
) != NULL
) {
3468 mOrderedTypes
.replaceAt(t
, j
);
3474 sp
<ResourceTable::Package
> ResourceTable::getPackage(const String16
& package
)
3476 sp
<Package
> p
= mPackages
.valueFor(package
);
3478 if (mIsAppPackage
) {
3479 if (mHaveAppPackage
) {
3480 fprintf(stderr
, "Adding multiple application package resources; only one is allowed.\n"
3481 "Use -x to create extended resources.\n");
3484 mHaveAppPackage
= true;
3485 p
= new Package(package
, 127);
3487 p
= new Package(package
, mNextPackageId
);
3489 //printf("*** NEW PACKAGE: \"%s\" id=%d\n",
3490 // String8(package).string(), p->getAssignedId());
3491 mPackages
.add(package
, p
);
3492 mOrderedPackages
.add(p
);
3498 sp
<ResourceTable::Type
> ResourceTable::getType(const String16
& package
,
3499 const String16
& type
,
3500 const SourcePos
& sourcePos
,
3503 sp
<Package
> p
= getPackage(package
);
3507 return p
->getType(type
, sourcePos
, doSetIndex
);
3510 sp
<ResourceTable::Entry
> ResourceTable::getEntry(const String16
& package
,
3511 const String16
& type
,
3512 const String16
& name
,
3513 const SourcePos
& sourcePos
,
3514 const ResTable_config
* config
,
3517 sp
<Type
> t
= getType(package
, type
, sourcePos
, doSetIndex
);
3521 return t
->getEntry(name
, sourcePos
, config
, doSetIndex
);
3524 sp
<const ResourceTable::Entry
> ResourceTable::getEntry(uint32_t resID
,
3525 const ResTable_config
* config
) const
3527 int pid
= Res_GETPACKAGE(resID
)+1;
3528 const size_t N
= mOrderedPackages
.size();
3531 for (i
=0; i
<N
; i
++) {
3532 sp
<Package
> check
= mOrderedPackages
[i
];
3533 if (check
->getAssignedId() == pid
) {
3540 fprintf(stderr
, "WARNING: Package not found for resource #%08x\n", resID
);
3544 int tid
= Res_GETTYPE(resID
);
3545 if (tid
< 0 || tid
>= (int)p
->getOrderedTypes().size()) {
3546 fprintf(stderr
, "WARNING: Type not found for resource #%08x\n", resID
);
3549 sp
<Type
> t
= p
->getOrderedTypes()[tid
];
3551 int eid
= Res_GETENTRY(resID
);
3552 if (eid
< 0 || eid
>= (int)t
->getOrderedConfigs().size()) {
3553 fprintf(stderr
, "WARNING: Entry not found for resource #%08x\n", resID
);
3557 sp
<ConfigList
> c
= t
->getOrderedConfigs()[eid
];
3559 fprintf(stderr
, "WARNING: Entry not found for resource #%08x\n", resID
);
3563 ConfigDescription cdesc
;
3564 if (config
) cdesc
= *config
;
3565 sp
<Entry
> e
= c
->getEntries().valueFor(cdesc
);
3567 fprintf(stderr
, "WARNING: Entry configuration not found for resource #%08x\n", resID
);
3574 const ResourceTable::Item
* ResourceTable::getItem(uint32_t resID
, uint32_t attrID
) const
3576 sp
<const Entry
> e
= getEntry(resID
);
3581 const size_t N
= e
->getBag().size();
3582 for (size_t i
=0; i
<N
; i
++) {
3583 const Item
& it
= e
->getBag().valueAt(i
);
3584 if (it
.bagKeyId
== 0) {
3585 fprintf(stderr
, "WARNING: ID not yet assigned to '%s' in bag '%s'\n",
3586 String8(e
->getName()).string(),
3587 String8(e
->getBag().keyAt(i
)).string());
3589 if (it
.bagKeyId
== attrID
) {
3597 bool ResourceTable::getItemValue(
3598 uint32_t resID
, uint32_t attrID
, Res_value
* outValue
)
3600 const Item
* item
= getItem(resID
, attrID
);
3604 if (item
->evaluating
) {
3605 sp
<const Entry
> e
= getEntry(resID
);
3606 const size_t N
= e
->getBag().size();
3608 for (i
=0; i
<N
; i
++) {
3609 if (&e
->getBag().valueAt(i
) == item
) {
3613 fprintf(stderr
, "WARNING: Circular reference detected in key '%s' of bag '%s'\n",
3614 String8(e
->getName()).string(),
3615 String8(e
->getBag().keyAt(i
)).string());
3618 item
->evaluating
= true;
3619 res
= stringToValue(outValue
, NULL
, item
->value
, false, false, item
->bagKeyId
);
3622 printf("getItemValue of #%08x[#%08x] (%s): type=#%08x, data=#%08x\n",
3623 resID
, attrID
, String8(getEntry(resID
)->getName()).string(),
3624 outValue
->dataType
, outValue
->data
);
3626 printf("getItemValue of #%08x[#%08x]: failed\n",
3630 item
->evaluating
= false;