2 // Copyright 2006 The Android Open Source Project
4 // Build resource files from raw assets.
7 #include "ResourceTable.h"
10 #include "ResourceFilter.h"
12 #include <utils/ByteOrder.h>
13 #include <utils/ResourceTypes.h>
18 status_t
compileXmlFile(const sp
<AaptAssets
>& assets
,
19 const sp
<AaptFile
>& target
,
23 sp
<XMLNode
> root
= XMLNode::parse(target
);
28 return compileXmlFile(assets
, root
, target
, table
, options
);
31 status_t
compileXmlFile(const sp
<AaptAssets
>& assets
,
32 const sp
<AaptFile
>& target
,
33 const sp
<AaptFile
>& outTarget
,
37 sp
<XMLNode
> root
= XMLNode::parse(target
);
42 return compileXmlFile(assets
, root
, outTarget
, table
, options
);
45 status_t
compileXmlFile(const sp
<AaptAssets
>& assets
,
46 const sp
<XMLNode
>& root
,
47 const sp
<AaptFile
>& target
,
51 if ((options
&XML_COMPILE_STRIP_WHITESPACE
) != 0) {
52 root
->removeWhitespace(true, NULL
);
53 } else if ((options
&XML_COMPILE_COMPACT_WHITESPACE
) != 0) {
54 root
->removeWhitespace(false, NULL
);
57 if ((options
&XML_COMPILE_UTF8
) != 0) {
61 bool hasErrors
= false;
63 if ((options
&XML_COMPILE_ASSIGN_ATTRIBUTE_IDS
) != 0) {
64 status_t err
= root
->assignResourceIds(assets
, table
);
65 if (err
!= NO_ERROR
) {
70 status_t err
= root
->parseValues(assets
, table
);
71 if (err
!= NO_ERROR
) {
79 NOISY(printf("Input XML Resource:\n"));
81 err
= root
->flatten(target
,
82 (options
&XML_COMPILE_STRIP_COMMENTS
) != 0,
83 (options
&XML_COMPILE_STRIP_RAW_VALUES
) != 0);
84 if (err
!= NO_ERROR
) {
88 NOISY(printf("Output XML Resource:\n"));
89 NOISY(ResXMLTree tree
;
90 tree
.setTo(target
->getData(), target
->getSize());
91 printXMLBlock(&tree
));
93 target
->setCompressionMethod(ZipEntry::kCompressDeflated
);
103 const char16_t* name
;
106 const char* description
;
109 static const char16_t referenceArray
[] =
110 { 'r', 'e', 'f', 'e', 'r', 'e', 'n', 'c', 'e' };
111 static const char16_t stringArray
[] =
112 { 's', 't', 'r', 'i', 'n', 'g' };
113 static const char16_t integerArray
[] =
114 { 'i', 'n', 't', 'e', 'g', 'e', 'r' };
115 static const char16_t booleanArray
[] =
116 { 'b', 'o', 'o', 'l', 'e', 'a', 'n' };
117 static const char16_t colorArray
[] =
118 { 'c', 'o', 'l', 'o', 'r' };
119 static const char16_t floatArray
[] =
120 { 'f', 'l', 'o', 'a', 't' };
121 static const char16_t dimensionArray
[] =
122 { 'd', 'i', 'm', 'e', 'n', 's', 'i', 'o', 'n' };
123 static const char16_t fractionArray
[] =
124 { 'f', 'r', 'a', 'c', 't', 'i', 'o', 'n' };
125 static const char16_t enumArray
[] =
126 { 'e', 'n', 'u', 'm' };
127 static const char16_t flagsArray
[] =
128 { 'f', 'l', 'a', 'g', 's' };
130 static const flag_entry gFormatFlags
[] = {
131 { referenceArray
, sizeof(referenceArray
)/2, ResTable_map::TYPE_REFERENCE
,
132 "a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\n"
133 "or to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\"."},
134 { stringArray
, sizeof(stringArray
)/2, ResTable_map::TYPE_STRING
,
135 "a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character." },
136 { integerArray
, sizeof(integerArray
)/2, ResTable_map::TYPE_INTEGER
,
137 "an integer value, such as \"<code>100</code>\"." },
138 { booleanArray
, sizeof(booleanArray
)/2, ResTable_map::TYPE_BOOLEAN
,
139 "a boolean value, either \"<code>true</code>\" or \"<code>false</code>\"." },
140 { colorArray
, sizeof(colorArray
)/2, ResTable_map::TYPE_COLOR
,
141 "a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n"
142 "\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\"." },
143 { floatArray
, sizeof(floatArray
)/2, ResTable_map::TYPE_FLOAT
,
144 "a floating point value, such as \"<code>1.2</code>\"."},
145 { dimensionArray
, sizeof(dimensionArray
)/2, ResTable_map::TYPE_DIMENSION
,
146 "a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\n"
147 "Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\n"
148 "in (inches), mm (millimeters)." },
149 { fractionArray
, sizeof(fractionArray
)/2, ResTable_map::TYPE_FRACTION
,
150 "a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\n"
151 "The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\n"
152 "some parent container." },
153 { enumArray
, sizeof(enumArray
)/2, ResTable_map::TYPE_ENUM
, NULL
},
154 { flagsArray
, sizeof(flagsArray
)/2, ResTable_map::TYPE_FLAGS
, NULL
},
158 static const char16_t suggestedArray
[] = { 's', 'u', 'g', 'g', 'e', 's', 't', 'e', 'd' };
160 static const flag_entry l10nRequiredFlags
[] = {
161 { suggestedArray
, sizeof(suggestedArray
)/2, ResTable_map::L10N_SUGGESTED
, NULL
},
165 static const char16_t nulStr
[] = { 0 };
167 static uint32_t parse_flags(const char16_t* str
, size_t len
,
168 const flag_entry
* flags
, bool* outError
= NULL
)
170 while (len
> 0 && isspace(*str
)) {
174 while (len
> 0 && isspace(str
[len
-1])) {
178 const char16_t* const end
= str
+ len
;
182 const char16_t* div
= str
;
183 while (div
< end
&& *div
!= '|') {
187 const flag_entry
* cur
= flags
;
189 if (strzcmp16(cur
->name
, cur
->nameLen
, str
, div
-str
) == 0) {
197 if (outError
) *outError
= true;
201 str
= div
< end
? div
+1 : div
;
204 if (outError
) *outError
= false;
208 static String16
mayOrMust(int type
, int flags
)
210 if ((type
&(~flags
)) == 0) {
211 return String16("<p>Must");
214 return String16("<p>May");
217 static void appendTypeInfo(ResourceTable
* outTable
, const String16
& pkg
,
218 const String16
& typeName
, const String16
& ident
, int type
,
219 const flag_entry
* flags
)
221 bool hadType
= false;
222 while (flags
->name
) {
223 if ((type
&flags
->value
) != 0 && flags
->description
!= NULL
) {
224 String16
fullMsg(mayOrMust(type
, flags
->value
));
225 fullMsg
.append(String16(" be "));
226 fullMsg
.append(String16(flags
->description
));
227 outTable
->appendTypeComment(pkg
, typeName
, ident
, fullMsg
);
232 if (hadType
&& (type
&ResTable_map::TYPE_REFERENCE
) == 0) {
233 outTable
->appendTypeComment(pkg
, typeName
, ident
,
234 String16("<p>This may also be a reference to a resource (in the form\n"
235 "\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\n"
236 "theme attribute (in the form\n"
237 "\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\n"
238 "containing a value of this type."));
242 struct PendingAttribute
244 const String16 myPackage
;
245 const SourcePos sourcePos
;
246 const bool appendComment
;
253 PendingAttribute(String16 _package
, const sp
<AaptFile
>& in
,
254 ResXMLTree
& block
, bool _appendComment
)
255 : myPackage(_package
)
256 , sourcePos(in
->getPrintableSource(), block
.getLineNumber())
257 , appendComment(_appendComment
)
258 , type(ResTable_map::TYPE_ANY
)
264 status_t
createIfNeeded(ResourceTable
* outTable
)
266 if (added
|| hasErrors
) {
271 String16
attr16("attr");
273 if (outTable
->hasBagOrEntry(myPackage
, attr16
, ident
)) {
274 sourcePos
.error("Attribute \"%s\" has already been defined\n",
275 String8(ident
).string());
277 return UNKNOWN_ERROR
;
281 sprintf(numberStr
, "%d", type
);
282 status_t err
= outTable
->addBag(sourcePos
, myPackage
,
283 attr16
, ident
, String16(""),
285 String16(numberStr
), NULL
, NULL
);
286 if (err
!= NO_ERROR
) {
290 outTable
->appendComment(myPackage
, attr16
, ident
, comment
, appendComment
);
291 //printf("Attribute %s comment: %s\n", String8(ident).string(),
292 // String8(comment).string());
297 static status_t
compileAttribute(const sp
<AaptFile
>& in
,
299 const String16
& myPackage
,
300 ResourceTable
* outTable
,
301 String16
* outIdent
= NULL
,
302 bool inStyleable
= false)
304 PendingAttribute
attr(myPackage
, in
, block
, inStyleable
);
306 const String16
attr16("attr");
307 const String16
id16("id");
309 // Attribute type constants.
310 const String16
enum16("enum");
311 const String16
flag16("flag");
313 ResXMLTree::event_code_t code
;
317 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "name");
319 attr
.ident
= String16(block
.getAttributeStringValue(identIdx
, &len
));
321 *outIdent
= attr
.ident
;
324 attr
.sourcePos
.error("A 'name' attribute is required for <attr>\n");
325 attr
.hasErrors
= true;
328 attr
.comment
= String16(
329 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
331 ssize_t typeIdx
= block
.indexOfAttribute(NULL
, "format");
333 String16 typeStr
= String16(block
.getAttributeStringValue(typeIdx
, &len
));
334 attr
.type
= parse_flags(typeStr
.string(), typeStr
.size(), gFormatFlags
);
335 if (attr
.type
== 0) {
336 attr
.sourcePos
.error("Tag <attr> 'format' attribute value \"%s\" not valid\n",
337 String8(typeStr
).string());
338 attr
.hasErrors
= true;
340 attr
.createIfNeeded(outTable
);
341 } else if (!inStyleable
) {
342 // Attribute definitions outside of styleables always define the
343 // attribute as a generic value.
344 attr
.createIfNeeded(outTable
);
347 //printf("Attribute %s: type=0x%08x\n", String8(attr.ident).string(), attr.type);
349 ssize_t minIdx
= block
.indexOfAttribute(NULL
, "min");
351 String16 val
= String16(block
.getAttributeStringValue(minIdx
, &len
));
352 if (!ResTable::stringToInt(val
.string(), val
.size(), NULL
)) {
353 attr
.sourcePos
.error("Tag <attr> 'min' attribute must be a number, not \"%s\"\n",
354 String8(val
).string());
355 attr
.hasErrors
= true;
357 attr
.createIfNeeded(outTable
);
358 if (!attr
.hasErrors
) {
359 err
= outTable
->addBag(attr
.sourcePos
, myPackage
, attr16
, attr
.ident
,
360 String16(""), String16("^min"), String16(val
), NULL
, NULL
);
361 if (err
!= NO_ERROR
) {
362 attr
.hasErrors
= true;
367 ssize_t maxIdx
= block
.indexOfAttribute(NULL
, "max");
369 String16 val
= String16(block
.getAttributeStringValue(maxIdx
, &len
));
370 if (!ResTable::stringToInt(val
.string(), val
.size(), NULL
)) {
371 attr
.sourcePos
.error("Tag <attr> 'max' attribute must be a number, not \"%s\"\n",
372 String8(val
).string());
373 attr
.hasErrors
= true;
375 attr
.createIfNeeded(outTable
);
376 if (!attr
.hasErrors
) {
377 err
= outTable
->addBag(attr
.sourcePos
, myPackage
, attr16
, attr
.ident
,
378 String16(""), String16("^max"), String16(val
), NULL
, NULL
);
379 attr
.hasErrors
= true;
383 if ((minIdx
>= 0 || maxIdx
>= 0) && (attr
.type
&ResTable_map::TYPE_INTEGER
) == 0) {
384 attr
.sourcePos
.error("Tag <attr> must have format=integer attribute if using max or min\n");
385 attr
.hasErrors
= true;
388 ssize_t l10nIdx
= block
.indexOfAttribute(NULL
, "localization");
390 const uint16_t* str
= block
.getAttributeStringValue(l10nIdx
, &len
);
392 uint32_t l10n_required
= parse_flags(str
, len
, l10nRequiredFlags
, &error
);
394 attr
.sourcePos
.error("Tag <attr> 'localization' attribute value \"%s\" not valid\n",
395 String8(str
).string());
396 attr
.hasErrors
= true;
398 attr
.createIfNeeded(outTable
);
399 if (!attr
.hasErrors
) {
401 sprintf(buf
, "%d", l10n_required
);
402 err
= outTable
->addBag(attr
.sourcePos
, myPackage
, attr16
, attr
.ident
,
403 String16(""), String16("^l10n"), String16(buf
), NULL
, NULL
);
404 if (err
!= NO_ERROR
) {
405 attr
.hasErrors
= true;
410 String16 enumOrFlagsComment
;
412 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
413 if (code
== ResXMLTree::START_TAG
) {
414 uint32_t localType
= 0;
415 if (strcmp16(block
.getElementName(&len
), enum16
.string()) == 0) {
416 localType
= ResTable_map::TYPE_ENUM
;
417 } else if (strcmp16(block
.getElementName(&len
), flag16
.string()) == 0) {
418 localType
= ResTable_map::TYPE_FLAGS
;
420 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
421 .error("Tag <%s> can not appear inside <attr>, only <enum> or <flag>\n",
422 String8(block
.getElementName(&len
)).string());
423 return UNKNOWN_ERROR
;
426 attr
.createIfNeeded(outTable
);
428 if (attr
.type
== ResTable_map::TYPE_ANY
) {
429 // No type was explicitly stated, so supplying enum tags
430 // implicitly creates an enum or flag.
434 if ((attr
.type
&(ResTable_map::TYPE_ENUM
|ResTable_map::TYPE_FLAGS
)) == 0) {
435 // Wasn't originally specified as an enum, so update its type.
436 attr
.type
|= localType
;
437 if (!attr
.hasErrors
) {
439 sprintf(numberStr
, "%d", attr
.type
);
440 err
= outTable
->addBag(SourcePos(in
->getPrintableSource(), block
.getLineNumber()),
441 myPackage
, attr16
, attr
.ident
, String16(""),
442 String16("^type"), String16(numberStr
), NULL
, NULL
, true);
443 if (err
!= NO_ERROR
) {
444 attr
.hasErrors
= true;
447 } else if ((uint32_t)(attr
.type
&(ResTable_map::TYPE_ENUM
|ResTable_map::TYPE_FLAGS
)) != localType
) {
448 if (localType
== ResTable_map::TYPE_ENUM
) {
449 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
450 .error("<enum> attribute can not be used inside a flags format\n");
451 attr
.hasErrors
= true;
453 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
454 .error("<flag> attribute can not be used inside a enum format\n");
455 attr
.hasErrors
= true;
460 ssize_t itemIdentIdx
= block
.indexOfAttribute(NULL
, "name");
461 if (itemIdentIdx
>= 0) {
462 itemIdent
= String16(block
.getAttributeStringValue(itemIdentIdx
, &len
));
464 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
465 .error("A 'name' attribute is required for <enum> or <flag>\n");
466 attr
.hasErrors
= true;
470 ssize_t valueIdx
= block
.indexOfAttribute(NULL
, "value");
472 value
= String16(block
.getAttributeStringValue(valueIdx
, &len
));
474 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
475 .error("A 'value' attribute is required for <enum> or <flag>\n");
476 attr
.hasErrors
= true;
478 if (!attr
.hasErrors
&& !ResTable::stringToInt(value
.string(), value
.size(), NULL
)) {
479 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
480 .error("Tag <enum> or <flag> 'value' attribute must be a number,"
482 String8(value
).string());
483 attr
.hasErrors
= true;
486 // Make sure an id is defined for this enum/flag identifier...
487 if (!attr
.hasErrors
&& !outTable
->hasBagOrEntry(itemIdent
, &id16
, &myPackage
)) {
488 err
= outTable
->startBag(SourcePos(in
->getPrintableSource(), block
.getLineNumber()),
489 myPackage
, id16
, itemIdent
, String16(), NULL
);
490 if (err
!= NO_ERROR
) {
491 attr
.hasErrors
= true;
495 if (!attr
.hasErrors
) {
496 if (enumOrFlagsComment
.size() == 0) {
497 enumOrFlagsComment
.append(mayOrMust(attr
.type
,
498 ResTable_map::TYPE_ENUM
|ResTable_map::TYPE_FLAGS
));
499 enumOrFlagsComment
.append((attr
.type
&ResTable_map::TYPE_ENUM
)
500 ? String16(" be one of the following constant values.")
501 : String16(" be one or more (separated by '|') of the following constant values."));
502 enumOrFlagsComment
.append(String16("</p>\n<table>\n"
503 "<colgroup align=\"left\" />\n"
504 "<colgroup align=\"left\" />\n"
505 "<colgroup align=\"left\" />\n"
506 "<tr><th>Constant</th><th>Value</th><th>Description</th></tr>"));
509 enumOrFlagsComment
.append(String16("\n<tr><td><code>"));
510 enumOrFlagsComment
.append(itemIdent
);
511 enumOrFlagsComment
.append(String16("</code></td><td>"));
512 enumOrFlagsComment
.append(value
);
513 enumOrFlagsComment
.append(String16("</td><td>"));
514 if (block
.getComment(&len
)) {
515 enumOrFlagsComment
.append(String16(block
.getComment(&len
)));
517 enumOrFlagsComment
.append(String16("</td></tr>"));
519 err
= outTable
->addBag(SourcePos(in
->getPrintableSource(), block
.getLineNumber()),
521 attr16
, attr
.ident
, String16(""),
522 itemIdent
, value
, NULL
, NULL
, false, true);
523 if (err
!= NO_ERROR
) {
524 attr
.hasErrors
= true;
527 } else if (code
== ResXMLTree::END_TAG
) {
528 if (strcmp16(block
.getElementName(&len
), attr16
.string()) == 0) {
531 if ((attr
.type
&ResTable_map::TYPE_ENUM
) != 0) {
532 if (strcmp16(block
.getElementName(&len
), enum16
.string()) != 0) {
533 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
534 .error("Found tag </%s> where </enum> is expected\n",
535 String8(block
.getElementName(&len
)).string());
536 return UNKNOWN_ERROR
;
539 if (strcmp16(block
.getElementName(&len
), flag16
.string()) != 0) {
540 SourcePos(in
->getPrintableSource(), block
.getLineNumber())
541 .error("Found tag </%s> where </flag> is expected\n",
542 String8(block
.getElementName(&len
)).string());
543 return UNKNOWN_ERROR
;
549 if (!attr
.hasErrors
&& attr
.added
) {
550 appendTypeInfo(outTable
, myPackage
, attr16
, attr
.ident
, attr
.type
, gFormatFlags
);
553 if (!attr
.hasErrors
&& enumOrFlagsComment
.size() > 0) {
554 enumOrFlagsComment
.append(String16("\n</table>"));
555 outTable
->appendTypeComment(myPackage
, attr16
, attr
.ident
, enumOrFlagsComment
);
562 bool localeIsDefined(const ResTable_config
& config
)
564 return config
.locale
== 0;
567 status_t
parseAndAddBag(Bundle
* bundle
,
568 const sp
<AaptFile
>& in
,
570 const ResTable_config
& config
,
571 const String16
& myPackage
,
572 const String16
& curType
,
573 const String16
& ident
,
574 const String16
& parentIdent
,
575 const String16
& itemIdent
,
578 const String16
& product
,
580 const bool overwrite
,
581 ResourceTable
* outTable
)
584 const String16
item16("item");
587 Vector
<StringPool::entry_style_span
> spans
;
588 err
= parseStyledString(bundle
, in
->getPrintableSource().string(),
589 block
, item16
, &str
, &spans
, isFormatted
,
591 if (err
!= NO_ERROR
) {
595 NOISY(printf("Adding resource bag entry l=%c%c c=%c%c orien=%d d=%d "
596 " pid=%s, bag=%s, id=%s: %s\n",
597 config
.language
[0], config
.language
[1],
598 config
.country
[0], config
.country
[1],
599 config
.orientation
, config
.density
,
600 String8(parentIdent
).string(),
601 String8(ident
).string(),
602 String8(itemIdent
).string(),
603 String8(str
).string()));
605 err
= outTable
->addBag(SourcePos(in
->getPrintableSource(), block
->getLineNumber()),
606 myPackage
, curType
, ident
, parentIdent
, itemIdent
, str
,
607 &spans
, &config
, overwrite
, false, curFormat
);
612 * Returns true if needle is one of the elements in the comma-separated list
613 * haystack, false otherwise.
615 bool isInProductList(const String16
& needle
, const String16
& haystack
) {
616 const char16_t *needle2
= needle
.string();
617 const char16_t *haystack2
= haystack
.string();
618 size_t needlesize
= needle
.size();
620 while (*haystack2
!= '\0') {
621 if (strncmp16(haystack2
, needle2
, needlesize
) == 0) {
622 if (haystack2
[needlesize
] == '\0' || haystack2
[needlesize
] == ',') {
627 while (*haystack2
!= '\0' && *haystack2
!= ',') {
630 if (*haystack2
== ',') {
638 status_t
parseAndAddEntry(Bundle
* bundle
,
639 const sp
<AaptFile
>& in
,
641 const ResTable_config
& config
,
642 const String16
& myPackage
,
643 const String16
& curType
,
644 const String16
& ident
,
645 const String16
& curTag
,
649 const String16
& product
,
651 const bool overwrite
,
652 ResourceTable
* outTable
)
657 Vector
<StringPool::entry_style_span
> spans
;
658 err
= parseStyledString(bundle
, in
->getPrintableSource().string(), block
,
659 curTag
, &str
, curIsStyled
? &spans
: NULL
,
660 isFormatted
, pseudolocalize
);
662 if (err
< NO_ERROR
) {
667 * If a product type was specified on the command line
668 * and also in the string, and the two are not the same,
669 * return without adding the string.
672 const char *bundleProduct
= bundle
->getProduct();
673 if (bundleProduct
== NULL
) {
677 if (product
.size() != 0) {
679 * If the command-line-specified product is empty, only "default"
680 * matches. Other variants are skipped. This is so generation
681 * of the R.java file when the product is not known is predictable.
684 if (bundleProduct
[0] == '\0') {
685 if (strcmp16(String16("default").string(), product
.string()) != 0) {
690 * The command-line product is not empty.
691 * If the product for this string is on the command-line list,
692 * it matches. "default" also matches, but only if nothing
693 * else has matched already.
696 if (isInProductList(product
, String16(bundleProduct
))) {
698 } else if (strcmp16(String16("default").string(), product
.string()) == 0 &&
699 !outTable
->hasBagOrEntry(myPackage
, curType
, ident
, config
)) {
707 NOISY(printf("Adding resource entry l=%c%c c=%c%c orien=%d d=%d id=%s: %s\n",
708 config
.language
[0], config
.language
[1],
709 config
.country
[0], config
.country
[1],
710 config
.orientation
, config
.density
,
711 String8(ident
).string(), String8(str
).string()));
713 err
= outTable
->addEntry(SourcePos(in
->getPrintableSource(), block
->getLineNumber()),
714 myPackage
, curType
, ident
, str
, &spans
, &config
,
715 false, curFormat
, overwrite
);
720 status_t
compileResourceFile(Bundle
* bundle
,
721 const sp
<AaptAssets
>& assets
,
722 const sp
<AaptFile
>& in
,
723 const ResTable_config
& defParams
,
724 const bool overwrite
,
725 ResourceTable
* outTable
)
728 status_t err
= parseXMLResource(in
, &block
, false, true);
729 if (err
!= NO_ERROR
) {
734 const String16
resources16("resources");
736 // Identifier declaration tags.
737 const String16
declare_styleable16("declare-styleable");
738 const String16
attr16("attr");
740 // Data creation organizational tags.
741 const String16
string16("string");
742 const String16
drawable16("drawable");
743 const String16
color16("color");
744 const String16
bool16("bool");
745 const String16
integer16("integer");
746 const String16
dimen16("dimen");
747 const String16
fraction16("fraction");
748 const String16
style16("style");
749 const String16
plurals16("plurals");
750 const String16
array16("array");
751 const String16
string_array16("string-array");
752 const String16
integer_array16("integer-array");
753 const String16
public16("public");
754 const String16
public_padding16("public-padding");
755 const String16
private_symbols16("private-symbols");
756 const String16
add_resource16("add-resource");
757 const String16
skip16("skip");
758 const String16
eat_comment16("eat-comment");
760 // Data creation tags.
761 const String16
bag16("bag");
762 const String16
item16("item");
764 // Attribute type constants.
765 const String16
enum16("enum");
768 const String16
other16("other");
769 const String16
quantityOther16("^other");
770 const String16
zero16("zero");
771 const String16
quantityZero16("^zero");
772 const String16
one16("one");
773 const String16
quantityOne16("^one");
774 const String16
two16("two");
775 const String16
quantityTwo16("^two");
776 const String16
few16("few");
777 const String16
quantityFew16("^few");
778 const String16
many16("many");
779 const String16
quantityMany16("^many");
781 // useful attribute names and special values
782 const String16
name16("name");
783 const String16
translatable16("translatable");
784 const String16
formatted16("formatted");
785 const String16
false16("false");
787 const String16
myPackage(assets
->getPackage());
789 bool hasErrors
= false;
791 bool fileIsTranslatable
= true;
792 if (strstr(in
->getPrintableSource().string(), "donottranslate") != NULL
) {
793 fileIsTranslatable
= false;
796 DefaultKeyedVector
<String16
, uint32_t> nextPublicId(0);
798 ResXMLTree::event_code_t code
;
801 } while (code
== ResXMLTree::START_NAMESPACE
);
804 if (code
!= ResXMLTree::START_TAG
) {
805 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
806 "No start tag found\n");
807 return UNKNOWN_ERROR
;
809 if (strcmp16(block
.getElementName(&len
), resources16
.string()) != 0) {
810 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
811 "Invalid start tag %s\n", String8(block
.getElementName(&len
)).string());
812 return UNKNOWN_ERROR
;
815 ResTable_config
curParams(defParams
);
817 ResTable_config
pseudoParams(curParams
);
818 pseudoParams
.language
[0] = 'z';
819 pseudoParams
.language
[1] = 'z';
820 pseudoParams
.country
[0] = 'Z';
821 pseudoParams
.country
[1] = 'Z';
823 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
824 if (code
== ResXMLTree::START_TAG
) {
825 const String16
* curTag
= NULL
;
827 int32_t curFormat
= ResTable_map::TYPE_ANY
;
828 bool curIsBag
= false;
829 bool curIsBagReplaceOnOverwrite
= false;
830 bool curIsStyled
= false;
831 bool curIsPseudolocalizable
= false;
832 bool curIsFormatted
= fileIsTranslatable
;
833 bool localHasErrors
= false;
835 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
836 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
837 && code
!= ResXMLTree::BAD_DOCUMENT
) {
838 if (code
== ResXMLTree::END_TAG
) {
839 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
846 } else if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
847 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
848 && code
!= ResXMLTree::BAD_DOCUMENT
) {
849 if (code
== ResXMLTree::END_TAG
) {
850 if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
857 } else if (strcmp16(block
.getElementName(&len
), public16
.string()) == 0) {
858 SourcePos
srcPos(in
->getPrintableSource(), block
.getLineNumber());
861 ssize_t typeIdx
= block
.indexOfAttribute(NULL
, "type");
863 srcPos
.error("A 'type' attribute is required for <public>\n");
864 hasErrors
= localHasErrors
= true;
866 type
= String16(block
.getAttributeStringValue(typeIdx
, &len
));
869 ssize_t nameIdx
= block
.indexOfAttribute(NULL
, "name");
871 srcPos
.error("A 'name' attribute is required for <public>\n");
872 hasErrors
= localHasErrors
= true;
874 name
= String16(block
.getAttributeStringValue(nameIdx
, &len
));
877 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "id");
879 const char16_t* identStr
= block
.getAttributeStringValue(identIdx
, &len
);
880 Res_value identValue
;
881 if (!ResTable::stringToInt(identStr
, len
, &identValue
)) {
882 srcPos
.error("Given 'id' attribute is not an integer: %s\n",
883 String8(block
.getAttributeStringValue(identIdx
, &len
)).string());
884 hasErrors
= localHasErrors
= true;
886 ident
= identValue
.data
;
887 nextPublicId
.replaceValueFor(type
, ident
+1);
889 } else if (nextPublicId
.indexOfKey(type
) < 0) {
890 srcPos
.error("No 'id' attribute supplied <public>,"
891 " and no previous id defined in this file.\n");
892 hasErrors
= localHasErrors
= true;
893 } else if (!localHasErrors
) {
894 ident
= nextPublicId
.valueFor(type
);
895 nextPublicId
.replaceValueFor(type
, ident
+1);
898 if (!localHasErrors
) {
899 err
= outTable
->addPublic(srcPos
, myPackage
, type
, name
, ident
);
900 if (err
< NO_ERROR
) {
901 hasErrors
= localHasErrors
= true;
904 if (!localHasErrors
) {
905 sp
<AaptSymbols
> symbols
= assets
->getSymbolsFor(String8("R"));
906 if (symbols
!= NULL
) {
907 symbols
= symbols
->addNestedSymbol(String8(type
), srcPos
);
909 if (symbols
!= NULL
) {
910 symbols
->makeSymbolPublic(String8(name
), srcPos
);
912 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
913 symbols
->appendComment(String8(name
), comment
, srcPos
);
915 srcPos
.error("Unable to create symbols!\n");
916 hasErrors
= localHasErrors
= true;
920 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
921 if (code
== ResXMLTree::END_TAG
) {
922 if (strcmp16(block
.getElementName(&len
), public16
.string()) == 0) {
929 } else if (strcmp16(block
.getElementName(&len
), public_padding16
.string()) == 0) {
930 SourcePos
srcPos(in
->getPrintableSource(), block
.getLineNumber());
933 ssize_t typeIdx
= block
.indexOfAttribute(NULL
, "type");
935 srcPos
.error("A 'type' attribute is required for <public-padding>\n");
936 hasErrors
= localHasErrors
= true;
938 type
= String16(block
.getAttributeStringValue(typeIdx
, &len
));
941 ssize_t nameIdx
= block
.indexOfAttribute(NULL
, "name");
943 srcPos
.error("A 'name' attribute is required for <public-padding>\n");
944 hasErrors
= localHasErrors
= true;
946 name
= String16(block
.getAttributeStringValue(nameIdx
, &len
));
949 ssize_t startIdx
= block
.indexOfAttribute(NULL
, "start");
951 const char16_t* startStr
= block
.getAttributeStringValue(startIdx
, &len
);
952 Res_value startValue
;
953 if (!ResTable::stringToInt(startStr
, len
, &startValue
)) {
954 srcPos
.error("Given 'start' attribute is not an integer: %s\n",
955 String8(block
.getAttributeStringValue(startIdx
, &len
)).string());
956 hasErrors
= localHasErrors
= true;
958 start
= startValue
.data
;
960 } else if (nextPublicId
.indexOfKey(type
) < 0) {
961 srcPos
.error("No 'start' attribute supplied <public-padding>,"
962 " and no previous id defined in this file.\n");
963 hasErrors
= localHasErrors
= true;
964 } else if (!localHasErrors
) {
965 start
= nextPublicId
.valueFor(type
);
969 ssize_t endIdx
= block
.indexOfAttribute(NULL
, "end");
971 const char16_t* endStr
= block
.getAttributeStringValue(endIdx
, &len
);
973 if (!ResTable::stringToInt(endStr
, len
, &endValue
)) {
974 srcPos
.error("Given 'end' attribute is not an integer: %s\n",
975 String8(block
.getAttributeStringValue(endIdx
, &len
)).string());
976 hasErrors
= localHasErrors
= true;
981 srcPos
.error("No 'end' attribute supplied <public-padding>\n");
982 hasErrors
= localHasErrors
= true;
986 nextPublicId
.replaceValueFor(type
, end
+1);
988 srcPos
.error("Padding start '%ul' is after end '%ul'\n",
990 hasErrors
= localHasErrors
= true;
994 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
995 for (uint32_t curIdent
=start
; curIdent
<=end
; curIdent
++) {
996 if (localHasErrors
) {
999 String16
curName(name
);
1001 sprintf(buf
, "%d", (int)(end
-curIdent
+1));
1002 curName
.append(String16(buf
));
1004 err
= outTable
->addEntry(srcPos
, myPackage
, type
, curName
,
1005 String16("padding"), NULL
, &curParams
, false,
1006 ResTable_map::TYPE_STRING
, overwrite
);
1007 if (err
< NO_ERROR
) {
1008 hasErrors
= localHasErrors
= true;
1011 err
= outTable
->addPublic(srcPos
, myPackage
, type
,
1013 if (err
< NO_ERROR
) {
1014 hasErrors
= localHasErrors
= true;
1017 sp
<AaptSymbols
> symbols
= assets
->getSymbolsFor(String8("R"));
1018 if (symbols
!= NULL
) {
1019 symbols
= symbols
->addNestedSymbol(String8(type
), srcPos
);
1021 if (symbols
!= NULL
) {
1022 symbols
->makeSymbolPublic(String8(curName
), srcPos
);
1023 symbols
->appendComment(String8(curName
), comment
, srcPos
);
1025 srcPos
.error("Unable to create symbols!\n");
1026 hasErrors
= localHasErrors
= true;
1030 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
1031 if (code
== ResXMLTree::END_TAG
) {
1032 if (strcmp16(block
.getElementName(&len
), public_padding16
.string()) == 0) {
1039 } else if (strcmp16(block
.getElementName(&len
), private_symbols16
.string()) == 0) {
1041 ssize_t pkgIdx
= block
.indexOfAttribute(NULL
, "package");
1043 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1044 "A 'package' attribute is required for <private-symbols>\n");
1045 hasErrors
= localHasErrors
= true;
1047 pkg
= String16(block
.getAttributeStringValue(pkgIdx
, &len
));
1048 if (!localHasErrors
) {
1049 assets
->setSymbolsPrivatePackage(String8(pkg
));
1052 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
1053 if (code
== ResXMLTree::END_TAG
) {
1054 if (strcmp16(block
.getElementName(&len
), private_symbols16
.string()) == 0) {
1061 } else if (strcmp16(block
.getElementName(&len
), add_resource16
.string()) == 0) {
1062 SourcePos
srcPos(in
->getPrintableSource(), block
.getLineNumber());
1065 ssize_t typeIdx
= block
.indexOfAttribute(NULL
, "type");
1067 srcPos
.error("A 'type' attribute is required for <add-resource>\n");
1068 hasErrors
= localHasErrors
= true;
1070 typeName
= String16(block
.getAttributeStringValue(typeIdx
, &len
));
1073 ssize_t nameIdx
= block
.indexOfAttribute(NULL
, "name");
1075 srcPos
.error("A 'name' attribute is required for <add-resource>\n");
1076 hasErrors
= localHasErrors
= true;
1078 name
= String16(block
.getAttributeStringValue(nameIdx
, &len
));
1080 outTable
->canAddEntry(srcPos
, myPackage
, typeName
, name
);
1082 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
1083 if (code
== ResXMLTree::END_TAG
) {
1084 if (strcmp16(block
.getElementName(&len
), add_resource16
.string()) == 0) {
1091 } else if (strcmp16(block
.getElementName(&len
), declare_styleable16
.string()) == 0) {
1092 SourcePos
srcPos(in
->getPrintableSource(), block
.getLineNumber());
1095 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "name");
1097 srcPos
.error("A 'name' attribute is required for <declare-styleable>\n");
1098 hasErrors
= localHasErrors
= true;
1100 ident
= String16(block
.getAttributeStringValue(identIdx
, &len
));
1102 sp
<AaptSymbols
> symbols
= assets
->getSymbolsFor(String8("R"));
1103 if (!localHasErrors
) {
1104 if (symbols
!= NULL
) {
1105 symbols
= symbols
->addNestedSymbol(String8("styleable"), srcPos
);
1107 sp
<AaptSymbols
> styleSymbols
= symbols
;
1108 if (symbols
!= NULL
) {
1109 symbols
= symbols
->addNestedSymbol(String8(ident
), srcPos
);
1111 if (symbols
== NULL
) {
1112 srcPos
.error("Unable to create symbols!\n");
1113 return UNKNOWN_ERROR
;
1117 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
1118 styleSymbols
->appendComment(String8(ident
), comment
, srcPos
);
1123 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
1124 if (code
== ResXMLTree::START_TAG
) {
1125 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
1126 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
1127 && code
!= ResXMLTree::BAD_DOCUMENT
) {
1128 if (code
== ResXMLTree::END_TAG
) {
1129 if (strcmp16(block
.getElementName(&len
), skip16
.string()) == 0) {
1135 } else if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
1136 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
1137 && code
!= ResXMLTree::BAD_DOCUMENT
) {
1138 if (code
== ResXMLTree::END_TAG
) {
1139 if (strcmp16(block
.getElementName(&len
), eat_comment16
.string()) == 0) {
1145 } else if (strcmp16(block
.getElementName(&len
), attr16
.string()) != 0) {
1146 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1147 "Tag <%s> can not appear inside <declare-styleable>, only <attr>\n",
1148 String8(block
.getElementName(&len
)).string());
1149 return UNKNOWN_ERROR
;
1153 block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
1155 err
= compileAttribute(in
, block
, myPackage
, outTable
, &itemIdent
, true);
1156 if (err
!= NO_ERROR
) {
1157 hasErrors
= localHasErrors
= true;
1160 if (symbols
!= NULL
) {
1161 SourcePos
srcPos(String8(in
->getPrintableSource()), block
.getLineNumber());
1162 symbols
->addSymbol(String8(itemIdent
), 0, srcPos
);
1163 symbols
->appendComment(String8(itemIdent
), comment
, srcPos
);
1164 //printf("Attribute %s comment: %s\n", String8(itemIdent).string(),
1165 // String8(comment).string());
1167 } else if (code
== ResXMLTree::END_TAG
) {
1168 if (strcmp16(block
.getElementName(&len
), declare_styleable16
.string()) == 0) {
1172 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1173 "Found tag </%s> where </attr> is expected\n",
1174 String8(block
.getElementName(&len
)).string());
1175 return UNKNOWN_ERROR
;
1180 } else if (strcmp16(block
.getElementName(&len
), attr16
.string()) == 0) {
1181 err
= compileAttribute(in
, block
, myPackage
, outTable
, NULL
);
1182 if (err
!= NO_ERROR
) {
1187 } else if (strcmp16(block
.getElementName(&len
), item16
.string()) == 0) {
1189 ssize_t attri
= block
.indexOfAttribute(NULL
, "type");
1191 curType
= String16(block
.getAttributeStringValue(attri
, &len
));
1192 ssize_t formatIdx
= block
.indexOfAttribute(NULL
, "format");
1193 if (formatIdx
>= 0) {
1194 String16 formatStr
= String16(block
.getAttributeStringValue(
1196 curFormat
= parse_flags(formatStr
.string(), formatStr
.size(),
1198 if (curFormat
== 0) {
1199 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1200 "Tag <item> 'format' attribute value \"%s\" not valid\n",
1201 String8(formatStr
).string());
1202 hasErrors
= localHasErrors
= true;
1206 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1207 "A 'type' attribute is required for <item>\n");
1208 hasErrors
= localHasErrors
= true;
1211 } else if (strcmp16(block
.getElementName(&len
), string16
.string()) == 0) {
1212 // Note the existence and locale of every string we process
1214 curParams
.getLocale(rawLocale
);
1215 String8
locale(rawLocale
);
1217 String16 translatable
;
1220 size_t n
= block
.getAttributeCount();
1221 for (size_t i
= 0; i
< n
; i
++) {
1223 const uint16_t* attr
= block
.getAttributeName(i
, &length
);
1224 if (strcmp16(attr
, name16
.string()) == 0) {
1225 name
.setTo(block
.getAttributeStringValue(i
, &length
));
1226 } else if (strcmp16(attr
, translatable16
.string()) == 0) {
1227 translatable
.setTo(block
.getAttributeStringValue(i
, &length
));
1228 } else if (strcmp16(attr
, formatted16
.string()) == 0) {
1229 formatted
.setTo(block
.getAttributeStringValue(i
, &length
));
1233 if (name
.size() > 0) {
1234 if (translatable
== false16
) {
1235 curIsFormatted
= false;
1236 // Untranslatable strings must only exist in the default [empty] locale
1237 if (locale
.size() > 0) {
1238 fprintf(stderr
, "aapt: warning: string '%s' in %s marked untranslatable but exists"
1239 " in locale '%s'\n", String8(name
).string(),
1240 bundle
->getResourceSourceDirs()[0],
1242 // hasErrors = localHasErrors = true;
1244 // Intentionally empty block:
1246 // Don't add untranslatable strings to the localization table; that
1247 // way if we later see localizations of them, they'll be flagged as
1248 // having no default translation.
1251 outTable
->addLocalization(name
, locale
);
1254 if (formatted
== false16
) {
1255 curIsFormatted
= false;
1261 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_STRING
;
1263 curIsPseudolocalizable
= true;
1264 } else if (strcmp16(block
.getElementName(&len
), drawable16
.string()) == 0) {
1265 curTag
= &drawable16
;
1266 curType
= drawable16
;
1267 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_COLOR
;
1268 } else if (strcmp16(block
.getElementName(&len
), color16
.string()) == 0) {
1271 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_COLOR
;
1272 } else if (strcmp16(block
.getElementName(&len
), bool16
.string()) == 0) {
1275 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_BOOLEAN
;
1276 } else if (strcmp16(block
.getElementName(&len
), integer16
.string()) == 0) {
1277 curTag
= &integer16
;
1278 curType
= integer16
;
1279 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_INTEGER
;
1280 } else if (strcmp16(block
.getElementName(&len
), dimen16
.string()) == 0) {
1283 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_DIMENSION
;
1284 } else if (strcmp16(block
.getElementName(&len
), fraction16
.string()) == 0) {
1285 curTag
= &fraction16
;
1286 curType
= fraction16
;
1287 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_FRACTION
;
1288 } else if (strcmp16(block
.getElementName(&len
), bag16
.string()) == 0) {
1291 ssize_t attri
= block
.indexOfAttribute(NULL
, "type");
1293 curType
= String16(block
.getAttributeStringValue(attri
, &len
));
1295 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1296 "A 'type' attribute is required for <bag>\n");
1297 hasErrors
= localHasErrors
= true;
1299 } else if (strcmp16(block
.getElementName(&len
), style16
.string()) == 0) {
1303 } else if (strcmp16(block
.getElementName(&len
), plurals16
.string()) == 0) {
1304 curTag
= &plurals16
;
1305 curType
= plurals16
;
1307 } else if (strcmp16(block
.getElementName(&len
), array16
.string()) == 0) {
1311 curIsBagReplaceOnOverwrite
= true;
1312 ssize_t formatIdx
= block
.indexOfAttribute(NULL
, "format");
1313 if (formatIdx
>= 0) {
1314 String16 formatStr
= String16(block
.getAttributeStringValue(
1316 curFormat
= parse_flags(formatStr
.string(), formatStr
.size(),
1318 if (curFormat
== 0) {
1319 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1320 "Tag <array> 'format' attribute value \"%s\" not valid\n",
1321 String8(formatStr
).string());
1322 hasErrors
= localHasErrors
= true;
1325 } else if (strcmp16(block
.getElementName(&len
), string_array16
.string()) == 0) {
1326 // Check whether these strings need valid formats.
1327 // (simplified form of what string16 does above)
1328 size_t n
= block
.getAttributeCount();
1329 for (size_t i
= 0; i
< n
; i
++) {
1331 const uint16_t* attr
= block
.getAttributeName(i
, &length
);
1332 if (strcmp16(attr
, translatable16
.string()) == 0
1333 || strcmp16(attr
, formatted16
.string()) == 0) {
1334 const uint16_t* value
= block
.getAttributeStringValue(i
, &length
);
1335 if (strcmp16(value
, false16
.string()) == 0) {
1336 curIsFormatted
= false;
1342 curTag
= &string_array16
;
1344 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_STRING
;
1346 curIsBagReplaceOnOverwrite
= true;
1347 curIsPseudolocalizable
= true;
1348 } else if (strcmp16(block
.getElementName(&len
), integer_array16
.string()) == 0) {
1349 curTag
= &integer_array16
;
1351 curFormat
= ResTable_map::TYPE_REFERENCE
|ResTable_map::TYPE_INTEGER
;
1353 curIsBagReplaceOnOverwrite
= true;
1355 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1356 "Found tag %s where item is expected\n",
1357 String8(block
.getElementName(&len
)).string());
1358 return UNKNOWN_ERROR
;
1362 ssize_t identIdx
= block
.indexOfAttribute(NULL
, "name");
1363 if (identIdx
>= 0) {
1364 ident
= String16(block
.getAttributeStringValue(identIdx
, &len
));
1366 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1367 "A 'name' attribute is required for <%s>\n",
1368 String8(*curTag
).string());
1369 hasErrors
= localHasErrors
= true;
1373 identIdx
= block
.indexOfAttribute(NULL
, "product");
1374 if (identIdx
>= 0) {
1375 product
= String16(block
.getAttributeStringValue(identIdx
, &len
));
1378 String16
comment(block
.getComment(&len
) ? block
.getComment(&len
) : nulStr
);
1381 // Figure out the parent of this bag...
1382 String16 parentIdent
;
1383 ssize_t parentIdentIdx
= block
.indexOfAttribute(NULL
, "parent");
1384 if (parentIdentIdx
>= 0) {
1385 parentIdent
= String16(block
.getAttributeStringValue(parentIdentIdx
, &len
));
1387 ssize_t sep
= ident
.findLast('.');
1389 parentIdent
.setTo(ident
, sep
);
1393 if (!localHasErrors
) {
1394 err
= outTable
->startBag(SourcePos(in
->getPrintableSource(),
1395 block
.getLineNumber()), myPackage
, curType
, ident
,
1396 parentIdent
, &curParams
,
1397 overwrite
, curIsBagReplaceOnOverwrite
);
1398 if (err
!= NO_ERROR
) {
1399 hasErrors
= localHasErrors
= true;
1403 ssize_t elmIndex
= 0;
1404 char elmIndexStr
[14];
1405 while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
1406 && code
!= ResXMLTree::BAD_DOCUMENT
) {
1408 if (code
== ResXMLTree::START_TAG
) {
1409 if (strcmp16(block
.getElementName(&len
), item16
.string()) != 0) {
1410 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1411 "Tag <%s> can not appear inside <%s>, only <item>\n",
1412 String8(block
.getElementName(&len
)).string(),
1413 String8(*curTag
).string());
1414 return UNKNOWN_ERROR
;
1418 if (curType
== array16
) {
1419 sprintf(elmIndexStr
, "^index_%d", (int)elmIndex
++);
1420 itemIdent
= String16(elmIndexStr
);
1421 } else if (curType
== plurals16
) {
1422 ssize_t itemIdentIdx
= block
.indexOfAttribute(NULL
, "quantity");
1423 if (itemIdentIdx
>= 0) {
1424 String16
quantity16(block
.getAttributeStringValue(itemIdentIdx
, &len
));
1425 if (quantity16
== other16
) {
1426 itemIdent
= quantityOther16
;
1428 else if (quantity16
== zero16
) {
1429 itemIdent
= quantityZero16
;
1431 else if (quantity16
== one16
) {
1432 itemIdent
= quantityOne16
;
1434 else if (quantity16
== two16
) {
1435 itemIdent
= quantityTwo16
;
1437 else if (quantity16
== few16
) {
1438 itemIdent
= quantityFew16
;
1440 else if (quantity16
== many16
) {
1441 itemIdent
= quantityMany16
;
1444 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1445 "Illegal 'quantity' attribute is <item> inside <plurals>\n");
1446 hasErrors
= localHasErrors
= true;
1449 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1450 "A 'quantity' attribute is required for <item> inside <plurals>\n");
1451 hasErrors
= localHasErrors
= true;
1454 ssize_t itemIdentIdx
= block
.indexOfAttribute(NULL
, "name");
1455 if (itemIdentIdx
>= 0) {
1456 itemIdent
= String16(block
.getAttributeStringValue(itemIdentIdx
, &len
));
1458 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1459 "A 'name' attribute is required for <item>\n");
1460 hasErrors
= localHasErrors
= true;
1464 ResXMLParser::ResXMLPosition parserPosition
;
1465 block
.getPosition(&parserPosition
);
1467 err
= parseAndAddBag(bundle
, in
, &block
, curParams
, myPackage
, curType
,
1468 ident
, parentIdent
, itemIdent
, curFormat
, curIsFormatted
,
1469 product
, false, overwrite
, outTable
);
1470 if (err
== NO_ERROR
) {
1471 if (curIsPseudolocalizable
&& localeIsDefined(curParams
)
1472 && bundle
->getPseudolocalize()) {
1473 // pseudolocalize here
1475 block
.setPosition(parserPosition
);
1476 err
= parseAndAddBag(bundle
, in
, &block
, pseudoParams
, myPackage
,
1477 curType
, ident
, parentIdent
, itemIdent
, curFormat
,
1478 curIsFormatted
, product
, true, overwrite
, outTable
);
1482 if (err
!= NO_ERROR
) {
1483 hasErrors
= localHasErrors
= true;
1485 } else if (code
== ResXMLTree::END_TAG
) {
1486 if (strcmp16(block
.getElementName(&len
), curTag
->string()) != 0) {
1487 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1488 "Found tag </%s> where </%s> is expected\n",
1489 String8(block
.getElementName(&len
)).string(),
1490 String8(*curTag
).string());
1491 return UNKNOWN_ERROR
;
1497 ResXMLParser::ResXMLPosition parserPosition
;
1498 block
.getPosition(&parserPosition
);
1500 err
= parseAndAddEntry(bundle
, in
, &block
, curParams
, myPackage
, curType
, ident
,
1501 *curTag
, curIsStyled
, curFormat
, curIsFormatted
,
1502 product
, false, overwrite
, outTable
);
1504 if (err
< NO_ERROR
) { // Why err < NO_ERROR instead of err != NO_ERROR?
1505 hasErrors
= localHasErrors
= true;
1507 else if (err
== NO_ERROR
) {
1508 if (curIsPseudolocalizable
&& localeIsDefined(curParams
)
1509 && bundle
->getPseudolocalize()) {
1510 // pseudolocalize here
1511 block
.setPosition(parserPosition
);
1512 err
= parseAndAddEntry(bundle
, in
, &block
, pseudoParams
, myPackage
, curType
,
1513 ident
, *curTag
, curIsStyled
, curFormat
,
1514 curIsFormatted
, product
,
1515 true, overwrite
, outTable
);
1516 if (err
!= NO_ERROR
) {
1517 hasErrors
= localHasErrors
= true;
1524 if (comment
.size() > 0) {
1525 printf("Comment for @%s:%s/%s: %s\n", String8(myPackage
).string(),
1526 String8(curType
).string(), String8(ident
).string(),
1527 String8(comment
).string());
1530 if (!localHasErrors
) {
1531 outTable
->appendComment(myPackage
, curType
, ident
, comment
, false);
1534 else if (code
== ResXMLTree::END_TAG
) {
1535 if (strcmp16(block
.getElementName(&len
), resources16
.string()) != 0) {
1536 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1537 "Unexpected end tag %s\n", String8(block
.getElementName(&len
)).string());
1538 return UNKNOWN_ERROR
;
1541 else if (code
== ResXMLTree::START_NAMESPACE
|| code
== ResXMLTree::END_NAMESPACE
) {
1543 else if (code
== ResXMLTree::TEXT
) {
1544 if (isWhitespace(block
.getText(&len
))) {
1547 SourcePos(in
->getPrintableSource(), block
.getLineNumber()).error(
1548 "Found text \"%s\" where item tag is expected\n",
1549 String8(block
.getText(&len
)).string());
1550 return UNKNOWN_ERROR
;
1554 return hasErrors
? UNKNOWN_ERROR
: NO_ERROR
;
1557 ResourceTable::ResourceTable(Bundle
* bundle
, const String16
& assetsPackage
)
1558 : mAssetsPackage(assetsPackage
), mNextPackageId(1), mHaveAppPackage(false),
1559 mIsAppPackage(!bundle
->getExtending()),
1565 status_t
ResourceTable::addIncludedResources(Bundle
* bundle
, const sp
<AaptAssets
>& assets
)
1567 status_t err
= assets
->buildIncludedResources(bundle
);
1568 if (err
!= NO_ERROR
) {
1572 // For future reference to included resources.
1575 const ResTable
& incl
= assets
->getIncludedResources();
1577 // Retrieve all the packages.
1578 const size_t N
= incl
.getBasePackageCount();
1579 for (size_t phase
=0; phase
<2; phase
++) {
1580 for (size_t i
=0; i
<N
; i
++) {
1581 String16
name(incl
.getBasePackageName(i
));
1582 uint32_t id
= incl
.getBasePackageId(i
);
1583 // First time through: only add base packages (id
1584 // is not 0); second time through add the other
1588 // Skip base packages -- already one.
1591 // Assign a dynamic id.
1592 id
= mNextPackageId
;
1594 } else if (id
!= 0) {
1596 if (mHaveAppPackage
) {
1597 fprintf(stderr
, "Included resources have two application packages!\n");
1598 return UNKNOWN_ERROR
;
1600 mHaveAppPackage
= true;
1602 if (mNextPackageId
> id
) {
1603 fprintf(stderr
, "Included base package ID %d already in use!\n", id
);
1604 return UNKNOWN_ERROR
;
1608 NOISY(printf("Including package %s with ID=%d\n",
1609 String8(name
).string(), id
));
1610 sp
<Package
> p
= new Package(name
, id
);
1611 mPackages
.add(name
, p
);
1612 mOrderedPackages
.add(p
);
1614 if (id
>= mNextPackageId
) {
1615 mNextPackageId
= id
+1;
1621 // Every resource table always has one first entry, the bag attributes.
1622 const SourcePos
unknown(String8("????"), 0);
1623 sp
<Type
> attr
= getType(mAssetsPackage
, String16("attr"), unknown
);
1628 status_t
ResourceTable::addPublic(const SourcePos
& sourcePos
,
1629 const String16
& package
,
1630 const String16
& type
,
1631 const String16
& name
,
1632 const uint32_t ident
)
1634 uint32_t rid
= mAssets
->getIncludedResources()
1635 .identifierForName(name
.string(), name
.size(),
1636 type
.string(), type
.size(),
1637 package
.string(), package
.size());
1639 sourcePos
.error("Error declaring public resource %s/%s for included package %s\n",
1640 String8(type
).string(), String8(name
).string(),
1641 String8(package
).string());
1642 return UNKNOWN_ERROR
;
1645 sp
<Type
> t
= getType(package
, type
, sourcePos
);
1647 return UNKNOWN_ERROR
;
1649 return t
->addPublic(sourcePos
, name
, ident
);
1652 status_t
ResourceTable::addEntry(const SourcePos
& sourcePos
,
1653 const String16
& package
,
1654 const String16
& type
,
1655 const String16
& name
,
1656 const String16
& value
,
1657 const Vector
<StringPool::entry_style_span
>* style
,
1658 const ResTable_config
* params
,
1659 const bool doSetIndex
,
1660 const int32_t format
,
1661 const bool overwrite
)
1663 // Check for adding entries in other packages... for now we do
1664 // nothing. We need to do the right thing here to support skinning.
1665 uint32_t rid
= mAssets
->getIncludedResources()
1666 .identifierForName(name
.string(), name
.size(),
1667 type
.string(), type
.size(),
1668 package
.string(), package
.size());
1674 if (name
== String16("left")) {
1675 printf("Adding entry left: file=%s, line=%d, type=%s, value=%s\n",
1676 sourcePos
.file
.string(), sourcePos
.line
, String8(type
).string(),
1677 String8(value
).string());
1681 sp
<Entry
> e
= getEntry(package
, type
, name
, sourcePos
, overwrite
,
1682 params
, doSetIndex
);
1684 return UNKNOWN_ERROR
;
1686 status_t err
= e
->setItem(sourcePos
, value
, style
, format
, overwrite
);
1687 if (err
== NO_ERROR
) {
1693 status_t
ResourceTable::startBag(const SourcePos
& sourcePos
,
1694 const String16
& package
,
1695 const String16
& type
,
1696 const String16
& name
,
1697 const String16
& bagParent
,
1698 const ResTable_config
* params
,
1700 bool replace
, bool isId
)
1702 status_t result
= NO_ERROR
;
1704 // Check for adding entries in other packages... for now we do
1705 // nothing. We need to do the right thing here to support skinning.
1706 uint32_t rid
= mAssets
->getIncludedResources()
1707 .identifierForName(name
.string(), name
.size(),
1708 type
.string(), type
.size(),
1709 package
.string(), package
.size());
1715 if (name
== String16("left")) {
1716 printf("Adding bag left: file=%s, line=%d, type=%s\n",
1717 sourcePos
.file
.striing(), sourcePos
.line
, String8(type
).string());
1720 if (overlay
&& !mBundle
->getAutoAddOverlay() && !hasBagOrEntry(package
, type
, name
)) {
1721 bool canAdd
= false;
1722 sp
<Package
> p
= mPackages
.valueFor(package
);
1724 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1726 if (t
->getCanAddEntries().indexOf(name
) >= 0) {
1732 sourcePos
.error("Resource does not already exist in overlay at '%s'; use <add-resource> to add.\n",
1733 String8(name
).string());
1734 return UNKNOWN_ERROR
;
1737 sp
<Entry
> e
= getEntry(package
, type
, name
, sourcePos
, overlay
, params
);
1739 return UNKNOWN_ERROR
;
1742 // If a parent is explicitly specified, set it.
1743 if (bagParent
.size() > 0) {
1744 e
->setParent(bagParent
);
1747 if ((result
= e
->makeItABag(sourcePos
)) != NO_ERROR
) {
1751 if (overlay
&& replace
) {
1752 return e
->emptyBag(sourcePos
);
1757 status_t
ResourceTable::addBag(const SourcePos
& sourcePos
,
1758 const String16
& package
,
1759 const String16
& type
,
1760 const String16
& name
,
1761 const String16
& bagParent
,
1762 const String16
& bagKey
,
1763 const String16
& value
,
1764 const Vector
<StringPool::entry_style_span
>* style
,
1765 const ResTable_config
* params
,
1766 bool replace
, bool isId
, const int32_t format
)
1768 // Check for adding entries in other packages... for now we do
1769 // nothing. We need to do the right thing here to support skinning.
1770 uint32_t rid
= mAssets
->getIncludedResources()
1771 .identifierForName(name
.string(), name
.size(),
1772 type
.string(), type
.size(),
1773 package
.string(), package
.size());
1779 if (name
== String16("left")) {
1780 printf("Adding bag left: file=%s, line=%d, type=%s\n",
1781 sourcePos
.file
.striing(), sourcePos
.line
, String8(type
).string());
1784 sp
<Entry
> e
= getEntry(package
, type
, name
, sourcePos
, replace
, params
);
1786 return UNKNOWN_ERROR
;
1789 // If a parent is explicitly specified, set it.
1790 if (bagParent
.size() > 0) {
1791 e
->setParent(bagParent
);
1794 const bool first
= e
->getBag().indexOfKey(bagKey
) < 0;
1795 status_t err
= e
->addToBag(sourcePos
, bagKey
, value
, style
, replace
, isId
, format
);
1796 if (err
== NO_ERROR
&& first
) {
1802 bool ResourceTable::hasBagOrEntry(const String16
& package
,
1803 const String16
& type
,
1804 const String16
& name
) const
1806 // First look for this in the included resources...
1807 uint32_t rid
= mAssets
->getIncludedResources()
1808 .identifierForName(name
.string(), name
.size(),
1809 type
.string(), type
.size(),
1810 package
.string(), package
.size());
1815 sp
<Package
> p
= mPackages
.valueFor(package
);
1817 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1819 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1820 if (c
!= NULL
) return true;
1827 bool ResourceTable::hasBagOrEntry(const String16
& package
,
1828 const String16
& type
,
1829 const String16
& name
,
1830 const ResTable_config
& config
) const
1832 // First look for this in the included resources...
1833 uint32_t rid
= mAssets
->getIncludedResources()
1834 .identifierForName(name
.string(), name
.size(),
1835 type
.string(), type
.size(),
1836 package
.string(), package
.size());
1841 sp
<Package
> p
= mPackages
.valueFor(package
);
1843 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1845 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1847 sp
<Entry
> e
= c
->getEntries().valueFor(config
);
1858 bool ResourceTable::hasBagOrEntry(const String16
& ref
,
1859 const String16
* defType
,
1860 const String16
* defPackage
)
1862 String16 package
, type
, name
;
1863 if (!ResTable::expandResourceRef(ref
.string(), ref
.size(), &package
, &type
, &name
,
1864 defType
, defPackage
? defPackage
:&mAssetsPackage
, NULL
)) {
1867 return hasBagOrEntry(package
, type
, name
);
1870 bool ResourceTable::appendComment(const String16
& package
,
1871 const String16
& type
,
1872 const String16
& name
,
1873 const String16
& comment
,
1876 if (comment
.size() <= 0) {
1880 sp
<Package
> p
= mPackages
.valueFor(package
);
1882 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1884 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1886 c
->appendComment(comment
, onlyIfEmpty
);
1894 bool ResourceTable::appendTypeComment(const String16
& package
,
1895 const String16
& type
,
1896 const String16
& name
,
1897 const String16
& comment
)
1899 if (comment
.size() <= 0) {
1903 sp
<Package
> p
= mPackages
.valueFor(package
);
1905 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1907 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1909 c
->appendTypeComment(comment
);
1917 void ResourceTable::canAddEntry(const SourcePos
& pos
,
1918 const String16
& package
, const String16
& type
, const String16
& name
)
1920 sp
<Type
> t
= getType(package
, type
, pos
);
1922 t
->canAddEntry(name
);
1926 size_t ResourceTable::size() const {
1927 return mPackages
.size();
1930 size_t ResourceTable::numLocalResources() const {
1934 bool ResourceTable::hasResources() const {
1935 return mNumLocal
> 0;
1938 sp
<AaptFile
> ResourceTable::flatten(Bundle
* bundle
)
1940 sp
<AaptFile
> data
= new AaptFile(String8(), AaptGroupEntry(), String8());
1941 status_t err
= flatten(bundle
, data
);
1942 return err
== NO_ERROR
? data
: NULL
;
1945 inline uint32_t ResourceTable::getResId(const sp
<Package
>& p
,
1949 return makeResId(p
->getAssignedId(), t
->getIndex(), nameId
);
1952 uint32_t ResourceTable::getResId(const String16
& package
,
1953 const String16
& type
,
1954 const String16
& name
,
1955 bool onlyPublic
) const
1957 sp
<Package
> p
= mPackages
.valueFor(package
);
1958 if (p
== NULL
) return 0;
1960 // First look for this in the included resources...
1961 uint32_t specFlags
= 0;
1962 uint32_t rid
= mAssets
->getIncludedResources()
1963 .identifierForName(name
.string(), name
.size(),
1964 type
.string(), type
.size(),
1965 package
.string(), package
.size(),
1969 if ((specFlags
& ResTable_typeSpec::SPEC_PUBLIC
) == 0) {
1974 if (Res_INTERNALID(rid
)) {
1977 return Res_MAKEID(p
->getAssignedId()-1,
1982 sp
<Type
> t
= p
->getTypes().valueFor(type
);
1983 if (t
== NULL
) return 0;
1984 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
1985 if (c
== NULL
) return 0;
1986 int32_t ei
= c
->getEntryIndex();
1987 if (ei
< 0) return 0;
1988 return getResId(p
, t
, ei
);
1991 uint32_t ResourceTable::getResId(const String16
& ref
,
1992 const String16
* defType
,
1993 const String16
* defPackage
,
1994 const char** outErrorMsg
,
1995 bool onlyPublic
) const
1997 String16 package
, type
, name
;
1998 bool refOnlyPublic
= true;
1999 if (!ResTable::expandResourceRef(
2000 ref
.string(), ref
.size(), &package
, &type
, &name
,
2001 defType
, defPackage
? defPackage
:&mAssetsPackage
,
2002 outErrorMsg
, &refOnlyPublic
)) {
2003 NOISY(printf("Expanding resource: ref=%s\n",
2004 String8(ref
).string()));
2005 NOISY(printf("Expanding resource: defType=%s\n",
2006 defType
? String8(*defType
).string() : "NULL"));
2007 NOISY(printf("Expanding resource: defPackage=%s\n",
2008 defPackage
? String8(*defPackage
).string() : "NULL"));
2009 NOISY(printf("Expanding resource: ref=%s\n", String8(ref
).string()));
2010 NOISY(printf("Expanded resource: p=%s, t=%s, n=%s, res=0\n",
2011 String8(package
).string(), String8(type
).string(),
2012 String8(name
).string()));
2015 uint32_t res
= getResId(package
, type
, name
, onlyPublic
&& refOnlyPublic
);
2016 NOISY(printf("Expanded resource: p=%s, t=%s, n=%s, res=%d\n",
2017 String8(package
).string(), String8(type
).string(),
2018 String8(name
).string(), res
));
2021 *outErrorMsg
= "No resource found that matches the given name";
2026 bool ResourceTable::isValidResourceName(const String16
& s
)
2028 const char16_t* p
= s
.string();
2031 if ((*p
>= 'a' && *p
<= 'z')
2032 || (*p
>= 'A' && *p
<= 'Z')
2034 || (!first
&& *p
>= '0' && *p
<= '9')) {
2044 bool ResourceTable::stringToValue(Res_value
* outValue
, StringPool
* pool
,
2045 const String16
& str
,
2046 bool preserveSpaces
, bool coerceType
,
2048 const Vector
<StringPool::entry_style_span
>* style
,
2049 String16
* outStr
, void* accessorCookie
,
2055 if (style
== NULL
|| style
->size() == 0) {
2056 // Text is not styled so it can be any type... let's figure it out.
2057 res
= mAssets
->getIncludedResources()
2058 .stringToValue(outValue
, &finalStr
, str
.string(), str
.size(), preserveSpaces
,
2059 coerceType
, attrID
, NULL
, &mAssetsPackage
, this,
2060 accessorCookie
, attrType
);
2062 // Styled text can only be a string, and while collecting the style
2063 // information we have already processed that string!
2064 outValue
->size
= sizeof(Res_value
);
2066 outValue
->dataType
= outValue
->TYPE_STRING
;
2075 if (outValue
->dataType
== outValue
->TYPE_STRING
) {
2076 // Should do better merging styles.
2078 if (style
!= NULL
&& style
->size() > 0) {
2079 outValue
->data
= pool
->add(finalStr
, *style
);
2081 outValue
->data
= pool
->add(finalStr
, true);
2084 // Caller will fill this in later.
2097 uint32_t ResourceTable::getCustomResource(
2098 const String16
& package
, const String16
& type
, const String16
& name
) const
2100 //printf("getCustomResource: %s %s %s\n", String8(package).string(),
2101 // String8(type).string(), String8(name).string());
2102 sp
<Package
> p
= mPackages
.valueFor(package
);
2103 if (p
== NULL
) return 0;
2104 sp
<Type
> t
= p
->getTypes().valueFor(type
);
2105 if (t
== NULL
) return 0;
2106 sp
<ConfigList
> c
= t
->getConfigs().valueFor(name
);
2107 if (c
== NULL
) return 0;
2108 int32_t ei
= c
->getEntryIndex();
2109 if (ei
< 0) return 0;
2110 return getResId(p
, t
, ei
);
2113 uint32_t ResourceTable::getCustomResourceWithCreation(
2114 const String16
& package
, const String16
& type
, const String16
& name
,
2115 const bool createIfNotFound
)
2117 uint32_t resId
= getCustomResource(package
, type
, name
);
2118 if (resId
!= 0 || !createIfNotFound
) {
2121 String16
value("false");
2123 status_t status
= addEntry(mCurrentXmlPos
, package
, type
, name
, value
, NULL
, NULL
, true);
2124 if (status
== NO_ERROR
) {
2125 resId
= getResId(package
, type
, name
);
2131 uint32_t ResourceTable::getRemappedPackage(uint32_t origPackage
) const
2136 bool ResourceTable::getAttributeType(uint32_t attrID
, uint32_t* outType
)
2138 //printf("getAttributeType #%08x\n", attrID);
2140 if (getItemValue(attrID
, ResTable_map::ATTR_TYPE
, &value
)) {
2141 //printf("getAttributeType #%08x (%s): #%08x\n", attrID,
2142 // String8(getEntry(attrID)->getName()).string(), value.data);
2143 *outType
= value
.data
;
2149 bool ResourceTable::getAttributeMin(uint32_t attrID
, uint32_t* outMin
)
2151 //printf("getAttributeMin #%08x\n", attrID);
2153 if (getItemValue(attrID
, ResTable_map::ATTR_MIN
, &value
)) {
2154 *outMin
= value
.data
;
2160 bool ResourceTable::getAttributeMax(uint32_t attrID
, uint32_t* outMax
)
2162 //printf("getAttributeMax #%08x\n", attrID);
2164 if (getItemValue(attrID
, ResTable_map::ATTR_MAX
, &value
)) {
2165 *outMax
= value
.data
;
2171 uint32_t ResourceTable::getAttributeL10N(uint32_t attrID
)
2173 //printf("getAttributeL10N #%08x\n", attrID);
2175 if (getItemValue(attrID
, ResTable_map::ATTR_L10N
, &value
)) {
2178 return ResTable_map::L10N_NOT_REQUIRED
;
2181 bool ResourceTable::getLocalizationSetting()
2183 return mBundle
->getRequireLocalization();
2186 void ResourceTable::reportError(void* accessorCookie
, const char* fmt
, ...)
2188 if (accessorCookie
!= NULL
&& fmt
!= NULL
) {
2189 AccessorCookie
* ac
= (AccessorCookie
*)accessorCookie
;
2194 retval
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
2196 ac
->sourcePos
.error("Error: %s (at '%s' with value '%s').\n",
2197 buf
, ac
->attr
.string(), ac
->value
.string());
2201 bool ResourceTable::getAttributeKeys(
2202 uint32_t attrID
, Vector
<String16
>* outKeys
)
2204 sp
<const Entry
> e
= getEntry(attrID
);
2206 const size_t N
= e
->getBag().size();
2207 for (size_t i
=0; i
<N
; i
++) {
2208 const String16
& key
= e
->getBag().keyAt(i
);
2209 if (key
.size() > 0 && key
.string()[0] != '^') {
2218 bool ResourceTable::getAttributeEnum(
2219 uint32_t attrID
, const char16_t* name
, size_t nameLen
,
2220 Res_value
* outValue
)
2222 //printf("getAttributeEnum #%08x %s\n", attrID, String8(name, nameLen).string());
2223 String16
nameStr(name
, nameLen
);
2224 sp
<const Entry
> e
= getEntry(attrID
);
2226 const size_t N
= e
->getBag().size();
2227 for (size_t i
=0; i
<N
; i
++) {
2228 //printf("Comparing %s to %s\n", String8(name, nameLen).string(),
2229 // String8(e->getBag().keyAt(i)).string());
2230 if (e
->getBag().keyAt(i
) == nameStr
) {
2231 return getItemValue(attrID
, e
->getBag().valueAt(i
).bagKeyId
, outValue
);
2238 bool ResourceTable::getAttributeFlags(
2239 uint32_t attrID
, const char16_t* name
, size_t nameLen
,
2240 Res_value
* outValue
)
2242 outValue
->dataType
= Res_value::TYPE_INT_HEX
;
2245 //printf("getAttributeFlags #%08x %s\n", attrID, String8(name, nameLen).string());
2246 String16
nameStr(name
, nameLen
);
2247 sp
<const Entry
> e
= getEntry(attrID
);
2249 const size_t N
= e
->getBag().size();
2251 const char16_t* end
= name
+ nameLen
;
2252 const char16_t* pos
= name
;
2253 bool failed
= false;
2254 while (pos
< end
&& !failed
) {
2255 const char16_t* start
= pos
;
2256 while (pos
< end
&& *pos
!= '|') {
2260 String16
nameStr(start
, pos
-start
);
2262 for (i
=0; i
<N
; i
++) {
2263 //printf("Comparing \"%s\" to \"%s\"\n", String8(nameStr).string(),
2264 // String8(e->getBag().keyAt(i)).string());
2265 if (e
->getBag().keyAt(i
) == nameStr
) {
2267 bool got
= getItemValue(attrID
, e
->getBag().valueAt(i
).bagKeyId
, &val
);
2271 //printf("Got value: 0x%08x\n", val.data);
2272 outValue
->data
|= val
.data
;
2278 // Didn't find this flag identifier.
2291 status_t
ResourceTable::assignResourceIds()
2293 const size_t N
= mOrderedPackages
.size();
2295 status_t firstError
= NO_ERROR
;
2297 // First generate all bag attributes and assign indices.
2298 for (pi
=0; pi
<N
; pi
++) {
2299 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2300 if (p
== NULL
|| p
->getTypes().size() == 0) {
2305 status_t err
= p
->applyPublicTypeOrder();
2306 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2310 // Generate attributes...
2311 const size_t N
= p
->getOrderedTypes().size();
2313 for (ti
=0; ti
<N
; ti
++) {
2314 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2318 const size_t N
= t
->getOrderedConfigs().size();
2319 for (size_t ci
=0; ci
<N
; ci
++) {
2320 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2324 const size_t N
= c
->getEntries().size();
2325 for (size_t ei
=0; ei
<N
; ei
++) {
2326 sp
<Entry
> e
= c
->getEntries().valueAt(ei
);
2330 status_t err
= e
->generateAttributes(this, p
->getName());
2331 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2338 const SourcePos
unknown(String8("????"), 0);
2339 sp
<Type
> attr
= p
->getType(String16("attr"), unknown
);
2341 // Assign indices...
2342 for (ti
=0; ti
<N
; ti
++) {
2343 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2347 err
= t
->applyPublicEntryOrder();
2348 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2352 const size_t N
= t
->getOrderedConfigs().size();
2355 LOG_ALWAYS_FATAL_IF(ti
== 0 && attr
!= t
,
2356 "First type is not attr!");
2358 for (size_t ei
=0; ei
<N
; ei
++) {
2359 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ei
);
2363 c
->setEntryIndex(ei
);
2367 // Assign resource IDs to keys in bags...
2368 for (ti
=0; ti
<N
; ti
++) {
2369 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2373 const size_t N
= t
->getOrderedConfigs().size();
2374 for (size_t ci
=0; ci
<N
; ci
++) {
2375 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2376 //printf("Ordered config #%d: %p\n", ci, c.get());
2377 const size_t N
= c
->getEntries().size();
2378 for (size_t ei
=0; ei
<N
; ei
++) {
2379 sp
<Entry
> e
= c
->getEntries().valueAt(ei
);
2383 status_t err
= e
->assignResourceIds(this, p
->getName());
2384 if (err
!= NO_ERROR
&& firstError
== NO_ERROR
) {
2394 status_t
ResourceTable::addSymbols(const sp
<AaptSymbols
>& outSymbols
) {
2395 const size_t N
= mOrderedPackages
.size();
2398 for (pi
=0; pi
<N
; pi
++) {
2399 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2400 if (p
->getTypes().size() == 0) {
2405 const size_t N
= p
->getOrderedTypes().size();
2408 for (ti
=0; ti
<N
; ti
++) {
2409 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2413 const size_t N
= t
->getOrderedConfigs().size();
2414 sp
<AaptSymbols
> typeSymbols
;
2415 typeSymbols
= outSymbols
->addNestedSymbol(String8(t
->getName()), t
->getPos());
2416 for (size_t ci
=0; ci
<N
; ci
++) {
2417 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2421 uint32_t rid
= getResId(p
, t
, ci
);
2423 return UNKNOWN_ERROR
;
2425 if (Res_GETPACKAGE(rid
) == (size_t)(p
->getAssignedId()-1)) {
2426 typeSymbols
->addSymbol(String8(c
->getName()), rid
, c
->getPos());
2428 String16
comment(c
->getComment());
2429 typeSymbols
->appendComment(String8(c
->getName()), comment
, c
->getPos());
2430 //printf("Type symbol %s comment: %s\n", String8(e->getName()).string(),
2431 // String8(comment).string());
2432 comment
= c
->getTypeComment();
2433 typeSymbols
->appendTypeComment(String8(c
->getName()), comment
);
2436 printf("**** NO MATCH: 0x%08x vs 0x%08x\n",
2437 Res_GETPACKAGE(rid
), p
->getAssignedId());
2448 ResourceTable::addLocalization(const String16
& name
, const String8
& locale
)
2450 mLocalizations
[name
].insert(locale
);
2455 * Flag various sorts of localization problems. '+' indicates checks already implemented;
2456 * '-' indicates checks that will be implemented in the future.
2458 * + A localized string for which no default-locale version exists => warning
2459 * + A string for which no version in an explicitly-requested locale exists => warning
2460 * + A localized translation of an translateable="false" string => warning
2461 * - A localized string not provided in every locale used by the table
2464 ResourceTable::validateLocalizations(void)
2466 status_t err
= NO_ERROR
;
2467 const String8 defaultLocale
;
2469 // For all strings...
2470 for (map
<String16
, set
<String8
> >::iterator nameIter
= mLocalizations
.begin();
2471 nameIter
!= mLocalizations
.end();
2473 const set
<String8
>& configSet
= nameIter
->second
; // naming convenience
2475 // Look for strings with no default localization
2476 if (configSet
.count(defaultLocale
) == 0) {
2477 fprintf(stdout
, "aapt: warning: string '%s' has no default translation in %s; found:",
2478 String8(nameIter
->first
).string(), mBundle
->getResourceSourceDirs()[0]);
2479 for (set
<String8
>::const_iterator locales
= configSet
.begin();
2480 locales
!= configSet
.end();
2482 fprintf(stdout
, " %s", (*locales
).string());
2484 fprintf(stdout
, "\n");
2485 // !!! TODO: throw an error here in some circumstances
2488 // Check that all requested localizations are present for this string
2489 if (mBundle
->getConfigurations() != NULL
&& mBundle
->getRequireLocalization()) {
2490 const char* allConfigs
= mBundle
->getConfigurations();
2491 const char* start
= allConfigs
;
2496 comma
= strchr(start
, ',');
2497 if (comma
!= NULL
) {
2498 config
.setTo(start
, comma
- start
);
2501 config
.setTo(start
);
2504 // don't bother with the pseudolocale "zz_ZZ"
2505 if (config
!= "zz_ZZ") {
2506 if (configSet
.find(config
) == configSet
.end()) {
2507 // okay, no specific localization found. it's possible that we are
2508 // requiring a specific regional localization [e.g. de_DE] but there is an
2509 // available string in the generic language localization [e.g. de];
2510 // consider that string to have fulfilled the localization requirement.
2511 String8
region(config
.string(), 2);
2512 if (configSet
.find(region
) == configSet
.end()) {
2513 if (configSet
.count(defaultLocale
) == 0) {
2514 fprintf(stdout
, "aapt: warning: "
2515 "**** string '%s' has no default or required localization "
2517 String8(nameIter
->first
).string(),
2519 mBundle
->getResourceSourceDirs()[0]);
2524 } while (comma
!= NULL
);
2531 status_t
ResourceTable::flatten(Bundle
* bundle
, const sp
<AaptFile
>& dest
)
2533 ResourceFilter filter
;
2534 status_t err
= filter
.parse(bundle
->getConfigurations());
2535 if (err
!= NO_ERROR
) {
2539 const size_t N
= mOrderedPackages
.size();
2542 const static String16
mipmap16("mipmap");
2544 bool useUTF8
= !bundle
->getWantUTF16() && bundle
->isMinSdkAtLeast(SDK_FROYO
);
2546 // Iterate through all data, collecting all values (strings,
2547 // references, etc).
2548 StringPool valueStrings
= StringPool(false, useUTF8
);
2549 for (pi
=0; pi
<N
; pi
++) {
2550 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2551 if (p
->getTypes().size() == 0) {
2556 StringPool typeStrings
= StringPool(false, useUTF8
);
2557 StringPool keyStrings
= StringPool(false, useUTF8
);
2559 const size_t N
= p
->getOrderedTypes().size();
2560 for (size_t ti
=0; ti
<N
; ti
++) {
2561 sp
<Type
> t
= p
->getOrderedTypes().itemAt(ti
);
2563 typeStrings
.add(String16("<empty>"), false);
2566 const String16
typeName(t
->getName());
2567 typeStrings
.add(typeName
, false);
2569 const bool filterable
= (typeName
!= mipmap16
);
2571 const size_t N
= t
->getOrderedConfigs().size();
2572 for (size_t ci
=0; ci
<N
; ci
++) {
2573 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(ci
);
2577 const size_t N
= c
->getEntries().size();
2578 for (size_t ei
=0; ei
<N
; ei
++) {
2579 ConfigDescription config
= c
->getEntries().keyAt(ei
);
2580 if (filterable
&& !filter
.match(config
)) {
2583 sp
<Entry
> e
= c
->getEntries().valueAt(ei
);
2587 e
->setNameIndex(keyStrings
.add(e
->getName(), true));
2588 status_t err
= e
->prepareFlatten(&valueStrings
, this);
2589 if (err
!= NO_ERROR
) {
2596 p
->setTypeStrings(typeStrings
.createStringBlock());
2597 p
->setKeyStrings(keyStrings
.createStringBlock());
2602 // Now build the array of package chunks.
2603 Vector
<sp
<AaptFile
> > flatPackages
;
2604 for (pi
=0; pi
<N
; pi
++) {
2605 sp
<Package
> p
= mOrderedPackages
.itemAt(pi
);
2606 if (p
->getTypes().size() == 0) {
2611 const size_t N
= p
->getTypeStrings().size();
2613 const size_t baseSize
= sizeof(ResTable_package
);
2615 // Start the package data.
2616 sp
<AaptFile
> data
= new AaptFile(String8(), AaptGroupEntry(), String8());
2617 ResTable_package
* header
= (ResTable_package
*)data
->editData(baseSize
);
2618 if (header
== NULL
) {
2619 fprintf(stderr
, "ERROR: out of memory creating ResTable_package\n");
2622 memset(header
, 0, sizeof(*header
));
2623 header
->header
.type
= htods(RES_TABLE_PACKAGE_TYPE
);
2624 header
->header
.headerSize
= htods(sizeof(*header
));
2625 header
->id
= htodl(p
->getAssignedId());
2626 strcpy16_htod(header
->name
, p
->getName().string());
2628 // Write the string blocks.
2629 const size_t typeStringsStart
= data
->getSize();
2630 sp
<AaptFile
> strFile
= p
->getTypeStringsData();
2631 ssize_t amt
= data
->writeData(strFile
->getData(), strFile
->getSize());
2632 #if PRINT_STRING_METRICS
2633 fprintf(stderr
, "**** type strings: %d\n", amt
);
2639 const size_t keyStringsStart
= data
->getSize();
2640 strFile
= p
->getKeyStringsData();
2641 amt
= data
->writeData(strFile
->getData(), strFile
->getSize());
2642 #if PRINT_STRING_METRICS
2643 fprintf(stderr
, "**** key strings: %d\n", amt
);
2650 // Build the type chunks inside of this package.
2651 for (size_t ti
=0; ti
<N
; ti
++) {
2652 // Retrieve them in the same order as the type string block.
2654 String16
typeName(p
->getTypeStrings().stringAt(ti
, &len
));
2655 sp
<Type
> t
= p
->getTypes().valueFor(typeName
);
2656 LOG_ALWAYS_FATAL_IF(t
== NULL
&& typeName
!= String16("<empty>"),
2657 "Type name %s not found",
2658 String8(typeName
).string());
2660 const bool filterable
= (typeName
!= mipmap16
);
2662 const size_t N
= t
!= NULL
? t
->getOrderedConfigs().size() : 0;
2664 // Until a non-NO_ENTRY value has been written for a resource,
2665 // that resource is invalid; validResources[i] represents
2666 // the item at t->getOrderedConfigs().itemAt(i).
2667 Vector
<bool> validResources
;
2668 validResources
.insertAt(false, 0, N
);
2670 // First write the typeSpec chunk, containing information about
2671 // each resource entry in this type.
2673 const size_t typeSpecSize
= sizeof(ResTable_typeSpec
) + sizeof(uint32_t)*N
;
2674 const size_t typeSpecStart
= data
->getSize();
2675 ResTable_typeSpec
* tsHeader
= (ResTable_typeSpec
*)
2676 (((uint8_t*)data
->editData(typeSpecStart
+typeSpecSize
)) + typeSpecStart
);
2677 if (tsHeader
== NULL
) {
2678 fprintf(stderr
, "ERROR: out of memory creating ResTable_typeSpec\n");
2681 memset(tsHeader
, 0, sizeof(*tsHeader
));
2682 tsHeader
->header
.type
= htods(RES_TABLE_TYPE_SPEC_TYPE
);
2683 tsHeader
->header
.headerSize
= htods(sizeof(*tsHeader
));
2684 tsHeader
->header
.size
= htodl(typeSpecSize
);
2685 tsHeader
->id
= ti
+1;
2686 tsHeader
->entryCount
= htodl(N
);
2688 uint32_t* typeSpecFlags
= (uint32_t*)
2689 (((uint8_t*)data
->editData())
2690 + typeSpecStart
+ sizeof(ResTable_typeSpec
));
2691 memset(typeSpecFlags
, 0, sizeof(uint32_t)*N
);
2693 for (size_t ei
=0; ei
<N
; ei
++) {
2694 sp
<ConfigList
> cl
= t
->getOrderedConfigs().itemAt(ei
);
2695 if (cl
->getPublic()) {
2696 typeSpecFlags
[ei
] |= htodl(ResTable_typeSpec::SPEC_PUBLIC
);
2698 const size_t CN
= cl
->getEntries().size();
2699 for (size_t ci
=0; ci
<CN
; ci
++) {
2700 if (filterable
&& !filter
.match(cl
->getEntries().keyAt(ci
))) {
2703 for (size_t cj
=ci
+1; cj
<CN
; cj
++) {
2704 if (filterable
&& !filter
.match(cl
->getEntries().keyAt(cj
))) {
2707 typeSpecFlags
[ei
] |= htodl(
2708 cl
->getEntries().keyAt(ci
).diff(cl
->getEntries().keyAt(cj
)));
2714 // We need to write one type chunk for each configuration for
2715 // which we have entries in this type.
2716 const size_t NC
= t
->getUniqueConfigs().size();
2718 const size_t typeSize
= sizeof(ResTable_type
) + sizeof(uint32_t)*N
;
2720 for (size_t ci
=0; ci
<NC
; ci
++) {
2721 ConfigDescription config
= t
->getUniqueConfigs().itemAt(ci
);
2723 NOISY(printf("Writing config %d config: imsi:%d/%d lang:%c%c cnt:%c%c "
2724 "orien:%d ui:%d touch:%d density:%d key:%d inp:%d nav:%d sz:%dx%d "
2725 "sw%ddp w%ddp h%ddp\n",
2727 config
.mcc
, config
.mnc
,
2728 config
.language
[0] ? config
.language
[0] : '-',
2729 config
.language
[1] ? config
.language
[1] : '-',
2730 config
.country
[0] ? config
.country
[0] : '-',
2731 config
.country
[1] ? config
.country
[1] : '-',
2740 config
.screenHeight
,
2741 config
.smallestScreenWidthDp
,
2742 config
.screenWidthDp
,
2743 config
.screenHeightDp
));
2745 if (filterable
&& !filter
.match(config
)) {
2749 const size_t typeStart
= data
->getSize();
2751 ResTable_type
* tHeader
= (ResTable_type
*)
2752 (((uint8_t*)data
->editData(typeStart
+typeSize
)) + typeStart
);
2753 if (tHeader
== NULL
) {
2754 fprintf(stderr
, "ERROR: out of memory creating ResTable_type\n");
2758 memset(tHeader
, 0, sizeof(*tHeader
));
2759 tHeader
->header
.type
= htods(RES_TABLE_TYPE_TYPE
);
2760 tHeader
->header
.headerSize
= htods(sizeof(*tHeader
));
2762 tHeader
->entryCount
= htodl(N
);
2763 tHeader
->entriesStart
= htodl(typeSize
);
2764 tHeader
->config
= config
;
2765 NOISY(printf("Writing type %d config: imsi:%d/%d lang:%c%c cnt:%c%c "
2766 "orien:%d ui:%d touch:%d density:%d key:%d inp:%d nav:%d sz:%dx%d "
2767 "sw%ddp w%ddp h%ddp\n",
2769 tHeader
->config
.mcc
, tHeader
->config
.mnc
,
2770 tHeader
->config
.language
[0] ? tHeader
->config
.language
[0] : '-',
2771 tHeader
->config
.language
[1] ? tHeader
->config
.language
[1] : '-',
2772 tHeader
->config
.country
[0] ? tHeader
->config
.country
[0] : '-',
2773 tHeader
->config
.country
[1] ? tHeader
->config
.country
[1] : '-',
2774 tHeader
->config
.orientation
,
2775 tHeader
->config
.uiMode
,
2776 tHeader
->config
.touchscreen
,
2777 tHeader
->config
.density
,
2778 tHeader
->config
.keyboard
,
2779 tHeader
->config
.inputFlags
,
2780 tHeader
->config
.navigation
,
2781 tHeader
->config
.screenWidth
,
2782 tHeader
->config
.screenHeight
,
2783 tHeader
->config
.smallestScreenWidthDp
,
2784 tHeader
->config
.screenWidthDp
,
2785 tHeader
->config
.screenHeightDp
));
2786 tHeader
->config
.swapHtoD();
2788 // Build the entries inside of this type.
2789 for (size_t ei
=0; ei
<N
; ei
++) {
2790 sp
<ConfigList
> cl
= t
->getOrderedConfigs().itemAt(ei
);
2791 sp
<Entry
> e
= cl
->getEntries().valueFor(config
);
2793 // Set the offset for this entry in its type.
2794 uint32_t* index
= (uint32_t*)
2795 (((uint8_t*)data
->editData())
2796 + typeStart
+ sizeof(ResTable_type
));
2798 index
[ei
] = htodl(data
->getSize()-typeStart
-typeSize
);
2800 // Create the entry.
2801 ssize_t amt
= e
->flatten(bundle
, data
, cl
->getPublic());
2805 validResources
.editItemAt(ei
) = true;
2807 index
[ei
] = htodl(ResTable_type::NO_ENTRY
);
2811 // Fill in the rest of the type information.
2812 tHeader
= (ResTable_type
*)
2813 (((uint8_t*)data
->editData()) + typeStart
);
2814 tHeader
->header
.size
= htodl(data
->getSize()-typeStart
);
2817 for (size_t i
= 0; i
< N
; ++i
) {
2818 if (!validResources
[i
]) {
2819 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(i
);
2820 fprintf(stderr
, "warning: no entries written for %s/%s\n",
2821 String8(typeName
).string(), String8(c
->getName()).string());
2826 // Fill in the rest of the package information.
2827 header
= (ResTable_package
*)data
->editData();
2828 header
->header
.size
= htodl(data
->getSize());
2829 header
->typeStrings
= htodl(typeStringsStart
);
2830 header
->lastPublicType
= htodl(p
->getTypeStrings().size());
2831 header
->keyStrings
= htodl(keyStringsStart
);
2832 header
->lastPublicKey
= htodl(p
->getKeyStrings().size());
2834 flatPackages
.add(data
);
2837 // And now write out the final chunks.
2838 const size_t dataStart
= dest
->getSize();
2842 ResTable_header header
;
2843 memset(&header
, 0, sizeof(header
));
2844 header
.header
.type
= htods(RES_TABLE_TYPE
);
2845 header
.header
.headerSize
= htods(sizeof(header
));
2846 header
.packageCount
= htodl(flatPackages
.size());
2847 status_t err
= dest
->writeData(&header
, sizeof(header
));
2848 if (err
!= NO_ERROR
) {
2849 fprintf(stderr
, "ERROR: out of memory creating ResTable_header\n");
2854 ssize_t strStart
= dest
->getSize();
2855 err
= valueStrings
.writeStringBlock(dest
);
2856 if (err
!= NO_ERROR
) {
2860 ssize_t amt
= (dest
->getSize()-strStart
);
2862 #if PRINT_STRING_METRICS
2863 fprintf(stderr
, "**** value strings: %d\n", amt
);
2864 fprintf(stderr
, "**** total strings: %d\n", strAmt
);
2867 for (pi
=0; pi
<flatPackages
.size(); pi
++) {
2868 err
= dest
->writeData(flatPackages
[pi
]->getData(),
2869 flatPackages
[pi
]->getSize());
2870 if (err
!= NO_ERROR
) {
2871 fprintf(stderr
, "ERROR: out of memory creating package chunk for ResTable_header\n");
2876 ResTable_header
* header
= (ResTable_header
*)
2877 (((uint8_t*)dest
->getData()) + dataStart
);
2878 header
->header
.size
= htodl(dest
->getSize() - dataStart
);
2880 NOISY(aout
<< "Resource table:"
2881 << HexDump(dest
->getData(), dest
->getSize()) << endl
);
2883 #if PRINT_STRING_METRICS
2884 fprintf(stderr
, "**** total resource table size: %d / %d%% strings\n",
2885 dest
->getSize(), (strAmt
*100)/dest
->getSize());
2891 void ResourceTable::writePublicDefinitions(const String16
& package
, FILE* fp
)
2894 "<!-- This file contains <public> resource definitions for all\n"
2895 " resources that were generated from the source data. -->\n"
2899 writePublicDefinitions(package
, fp
, true);
2900 writePublicDefinitions(package
, fp
, false);
2907 void ResourceTable::writePublicDefinitions(const String16
& package
, FILE* fp
, bool pub
)
2909 bool didHeader
= false;
2911 sp
<Package
> pkg
= mPackages
.valueFor(package
);
2913 const size_t NT
= pkg
->getOrderedTypes().size();
2914 for (size_t i
=0; i
<NT
; i
++) {
2915 sp
<Type
> t
= pkg
->getOrderedTypes().itemAt(i
);
2920 bool didType
= false;
2922 const size_t NC
= t
->getOrderedConfigs().size();
2923 for (size_t j
=0; j
<NC
; j
++) {
2924 sp
<ConfigList
> c
= t
->getOrderedConfigs().itemAt(j
);
2929 if (c
->getPublic() != pub
) {
2939 fprintf(fp
," <!-- PUBLIC SECTION. These resources have been declared public.\n");
2940 fprintf(fp
," Changes to these definitions will break binary compatibility. -->\n\n");
2942 fprintf(fp
," <!-- PRIVATE SECTION. These resources have not been declared public.\n");
2943 fprintf(fp
," You can make them public my moving these lines into a file in res/values. -->\n\n");
2948 const size_t NE
= c
->getEntries().size();
2949 for (size_t k
=0; k
<NE
; k
++) {
2950 const SourcePos
& pos
= c
->getEntries().valueAt(k
)->getPos();
2951 if (pos
.file
!= "") {
2952 fprintf(fp
," <!-- Declared at %s:%d -->\n",
2953 pos
.file
.string(), pos
.line
);
2957 fprintf(fp
, " <public type=\"%s\" name=\"%s\" id=\"0x%08x\" />\n",
2958 String8(t
->getName()).string(),
2959 String8(c
->getName()).string(),
2960 getResId(pkg
, t
, c
->getEntryIndex()));
2966 ResourceTable::Item::Item(const SourcePos
& _sourcePos
,
2968 const String16
& _value
,
2969 const Vector
<StringPool::entry_style_span
>* _style
,
2971 : sourcePos(_sourcePos
)
2983 status_t
ResourceTable::Entry::makeItABag(const SourcePos
& sourcePos
)
2985 if (mType
== TYPE_BAG
) {
2988 if (mType
== TYPE_UNKNOWN
) {
2992 sourcePos
.error("Resource entry %s is already defined as a single item.\n"
2993 "%s:%d: Originally defined here.\n",
2994 String8(mName
).string(),
2995 mItem
.sourcePos
.file
.string(), mItem
.sourcePos
.line
);
2996 return UNKNOWN_ERROR
;
2999 status_t
ResourceTable::Entry::setItem(const SourcePos
& sourcePos
,
3000 const String16
& value
,
3001 const Vector
<StringPool::entry_style_span
>* style
,
3003 const bool overwrite
)
3005 Item
item(sourcePos
, false, value
, style
);
3007 if (mType
== TYPE_BAG
) {
3008 const Item
& item(mBag
.valueAt(0));
3009 sourcePos
.error("Resource entry %s is already defined as a bag.\n"
3010 "%s:%d: Originally defined here.\n",
3011 String8(mName
).string(),
3012 item
.sourcePos
.file
.string(), item
.sourcePos
.line
);
3013 return UNKNOWN_ERROR
;
3015 if ( (mType
!= TYPE_UNKNOWN
) && (overwrite
== false) ) {
3016 sourcePos
.error("Resource entry %s is already defined.\n"
3017 "%s:%d: Originally defined here.\n",
3018 String8(mName
).string(),
3019 mItem
.sourcePos
.file
.string(), mItem
.sourcePos
.line
);
3020 return UNKNOWN_ERROR
;
3025 mItemFormat
= format
;
3029 status_t
ResourceTable::Entry::addToBag(const SourcePos
& sourcePos
,
3030 const String16
& key
, const String16
& value
,
3031 const Vector
<StringPool::entry_style_span
>* style
,
3032 bool replace
, bool isId
, int32_t format
)
3034 status_t err
= makeItABag(sourcePos
);
3035 if (err
!= NO_ERROR
) {
3039 Item
item(sourcePos
, isId
, value
, style
, format
);
3041 // XXX NOTE: there is an error if you try to have a bag with two keys,
3042 // one an attr and one an id, with the same name. Not something we
3043 // currently ever have to worry about.
3044 ssize_t origKey
= mBag
.indexOfKey(key
);
3047 const Item
& item(mBag
.valueAt(origKey
));
3048 sourcePos
.error("Resource entry %s already has bag item %s.\n"
3049 "%s:%d: Originally defined here.\n",
3050 String8(mName
).string(), String8(key
).string(),
3051 item
.sourcePos
.file
.string(), item
.sourcePos
.line
);
3052 return UNKNOWN_ERROR
;
3054 //printf("Replacing %s with %s\n",
3055 // String8(mBag.valueFor(key).value).string(), String8(value).string());
3056 mBag
.replaceValueFor(key
, item
);
3059 mBag
.add(key
, item
);
3063 status_t
ResourceTable::Entry::emptyBag(const SourcePos
& sourcePos
)
3065 status_t err
= makeItABag(sourcePos
);
3066 if (err
!= NO_ERROR
) {
3074 status_t
ResourceTable::Entry::generateAttributes(ResourceTable
* table
,
3075 const String16
& package
)
3077 const String16
attr16("attr");
3078 const String16
id16("id");
3079 const size_t N
= mBag
.size();
3080 for (size_t i
=0; i
<N
; i
++) {
3081 const String16
& key
= mBag
.keyAt(i
);
3082 const Item
& it
= mBag
.valueAt(i
);
3084 if (!table
->hasBagOrEntry(key
, &id16
, &package
)) {
3085 String16
value("false");
3086 status_t err
= table
->addEntry(SourcePos(String8("<generated>"), 0), package
,
3088 if (err
!= NO_ERROR
) {
3092 } else if (!table
->hasBagOrEntry(key
, &attr16
, &package
)) {
3095 // fprintf(stderr, "ERROR: Bag attribute '%s' has not been defined.\n",
3096 // String8(key).string());
3097 // const Item& item(mBag.valueAt(i));
3098 // fprintf(stderr, "Referenced from file %s line %d\n",
3099 // item.sourcePos.file.string(), item.sourcePos.line);
3100 // return UNKNOWN_ERROR;
3103 sprintf(numberStr
, "%d", ResTable_map::TYPE_ANY
);
3104 status_t err
= table
->addBag(SourcePos("<generated>", 0), package
,
3105 attr16
, key
, String16(""),
3107 String16(numberStr
), NULL
, NULL
);
3108 if (err
!= NO_ERROR
) {
3117 status_t
ResourceTable::Entry::assignResourceIds(ResourceTable
* table
,
3118 const String16
& package
)
3120 bool hasErrors
= false;
3122 if (mType
== TYPE_BAG
) {
3123 const char* errorMsg
;
3124 const String16
style16("style");
3125 const String16
attr16("attr");
3126 const String16
id16("id");
3128 if (mParent
.size() > 0) {
3129 mParentId
= table
->getResId(mParent
, &style16
, NULL
, &errorMsg
);
3130 if (mParentId
== 0) {
3131 mPos
.error("Error retrieving parent for item: %s '%s'.\n",
3132 errorMsg
, String8(mParent
).string());
3136 const size_t N
= mBag
.size();
3137 for (size_t i
=0; i
<N
; i
++) {
3138 const String16
& key
= mBag
.keyAt(i
);
3139 Item
& it
= mBag
.editValueAt(i
);
3140 it
.bagKeyId
= table
->getResId(key
,
3141 it
.isId
? &id16
: &attr16
, NULL
, &errorMsg
);
3142 //printf("Bag key of %s: #%08x\n", String8(key).string(), it.bagKeyId);
3143 if (it
.bagKeyId
== 0) {
3144 it
.sourcePos
.error("Error: %s: %s '%s'.\n", errorMsg
,
3145 String8(it
.isId
? id16
: attr16
).string(),
3146 String8(key
).string());
3151 return hasErrors
? UNKNOWN_ERROR
: NO_ERROR
;
3154 status_t
ResourceTable::Entry::prepareFlatten(StringPool
* strings
, ResourceTable
* table
)
3156 if (mType
== TYPE_ITEM
) {
3158 AccessorCookie
ac(it
.sourcePos
, String8(mName
), String8(it
.value
));
3159 if (!table
->stringToValue(&it
.parsedValue
, strings
,
3160 it
.value
, false, true, 0,
3161 &it
.style
, NULL
, &ac
, mItemFormat
)) {
3162 return UNKNOWN_ERROR
;
3164 } else if (mType
== TYPE_BAG
) {
3165 const size_t N
= mBag
.size();
3166 for (size_t i
=0; i
<N
; i
++) {
3167 const String16
& key
= mBag
.keyAt(i
);
3168 Item
& it
= mBag
.editValueAt(i
);
3169 AccessorCookie
ac(it
.sourcePos
, String8(key
), String8(it
.value
));
3170 if (!table
->stringToValue(&it
.parsedValue
, strings
,
3171 it
.value
, false, true, it
.bagKeyId
,
3172 &it
.style
, NULL
, &ac
, it
.format
)) {
3173 return UNKNOWN_ERROR
;
3177 mPos
.error("Error: entry %s is not a single item or a bag.\n",
3178 String8(mName
).string());
3179 return UNKNOWN_ERROR
;
3184 ssize_t
ResourceTable::Entry::flatten(Bundle
* bundle
, const sp
<AaptFile
>& data
, bool isPublic
)
3187 ResTable_entry header
;
3188 memset(&header
, 0, sizeof(header
));
3189 header
.size
= htods(sizeof(header
));
3190 const type ty
= this != NULL
? mType
: TYPE_ITEM
;
3192 if (ty
== TYPE_BAG
) {
3193 header
.flags
|= htods(header
.FLAG_COMPLEX
);
3196 header
.flags
|= htods(header
.FLAG_PUBLIC
);
3198 header
.key
.index
= htodl(mNameIndex
);
3200 if (ty
!= TYPE_BAG
) {
3201 status_t err
= data
->writeData(&header
, sizeof(header
));
3202 if (err
!= NO_ERROR
) {
3203 fprintf(stderr
, "ERROR: out of memory creating ResTable_entry\n");
3207 const Item
& it
= mItem
;
3209 memset(&par
, 0, sizeof(par
));
3210 par
.size
= htods(it
.parsedValue
.size
);
3211 par
.dataType
= it
.parsedValue
.dataType
;
3212 par
.res0
= it
.parsedValue
.res0
;
3213 par
.data
= htodl(it
.parsedValue
.data
);
3215 printf("Writing item (%s): type=%d, data=0x%x, res0=0x%x\n",
3216 String8(mName
).string(), it
.parsedValue
.dataType
,
3217 it
.parsedValue
.data
, par
.res0
);
3219 err
= data
->writeData(&par
, it
.parsedValue
.size
);
3220 if (err
!= NO_ERROR
) {
3221 fprintf(stderr
, "ERROR: out of memory creating Res_value\n");
3224 amt
+= it
.parsedValue
.size
;
3226 size_t N
= mBag
.size();
3228 // Create correct ordering of items.
3229 KeyedVector
<uint32_t, const Item
*> items
;
3230 for (i
=0; i
<N
; i
++) {
3231 const Item
& it
= mBag
.valueAt(i
);
3232 items
.add(it
.bagKeyId
, &it
);
3236 ResTable_map_entry mapHeader
;
3237 memcpy(&mapHeader
, &header
, sizeof(header
));
3238 mapHeader
.size
= htods(sizeof(mapHeader
));
3239 mapHeader
.parent
.ident
= htodl(mParentId
);
3240 mapHeader
.count
= htodl(N
);
3241 status_t err
= data
->writeData(&mapHeader
, sizeof(mapHeader
));
3242 if (err
!= NO_ERROR
) {
3243 fprintf(stderr
, "ERROR: out of memory creating ResTable_entry\n");
3247 for (i
=0; i
<N
; i
++) {
3248 const Item
& it
= *items
.valueAt(i
);
3250 map
.name
.ident
= htodl(it
.bagKeyId
);
3251 map
.value
.size
= htods(it
.parsedValue
.size
);
3252 map
.value
.dataType
= it
.parsedValue
.dataType
;
3253 map
.value
.res0
= it
.parsedValue
.res0
;
3254 map
.value
.data
= htodl(it
.parsedValue
.data
);
3255 err
= data
->writeData(&map
, sizeof(map
));
3256 if (err
!= NO_ERROR
) {
3257 fprintf(stderr
, "ERROR: out of memory creating Res_value\n");
3266 void ResourceTable::ConfigList::appendComment(const String16
& comment
,
3269 if (comment
.size() <= 0) {
3272 if (onlyIfEmpty
&& mComment
.size() > 0) {
3275 if (mComment
.size() > 0) {
3276 mComment
.append(String16("\n"));
3278 mComment
.append(comment
);
3281 void ResourceTable::ConfigList::appendTypeComment(const String16
& comment
)
3283 if (comment
.size() <= 0) {
3286 if (mTypeComment
.size() > 0) {
3287 mTypeComment
.append(String16("\n"));
3289 mTypeComment
.append(comment
);
3292 status_t
ResourceTable::Type::addPublic(const SourcePos
& sourcePos
,
3293 const String16
& name
,
3294 const uint32_t ident
)
3297 int32_t entryIdx
= Res_GETENTRY(ident
);
3299 sourcePos
.error("Public resource %s/%s has an invalid 0 identifier (0x%08x).\n",
3300 String8(mName
).string(), String8(name
).string(), ident
);
3301 return UNKNOWN_ERROR
;
3305 int32_t typeIdx
= Res_GETTYPE(ident
);
3308 if (mPublicIndex
> 0 && mPublicIndex
!= typeIdx
) {
3309 sourcePos
.error("Public resource %s/%s has conflicting type codes for its"
3310 " public identifiers (0x%x vs 0x%x).\n",
3311 String8(mName
).string(), String8(name
).string(),
3312 mPublicIndex
, typeIdx
);
3313 return UNKNOWN_ERROR
;
3315 mPublicIndex
= typeIdx
;
3318 if (mFirstPublicSourcePos
== NULL
) {
3319 mFirstPublicSourcePos
= new SourcePos(sourcePos
);
3322 if (mPublic
.indexOfKey(name
) < 0) {
3323 mPublic
.add(name
, Public(sourcePos
, String16(), ident
));
3325 Public
& p
= mPublic
.editValueFor(name
);
3326 if (p
.ident
!= ident
) {
3327 sourcePos
.error("Public resource %s/%s has conflicting public identifiers"
3328 " (0x%08x vs 0x%08x).\n"
3329 "%s:%d: Originally defined here.\n",
3330 String8(mName
).string(), String8(name
).string(), p
.ident
, ident
,
3331 p
.sourcePos
.file
.string(), p
.sourcePos
.line
);
3332 return UNKNOWN_ERROR
;
3339 void ResourceTable::Type::canAddEntry(const String16
& name
)
3341 mCanAddEntries
.add(name
);
3344 sp
<ResourceTable::Entry
> ResourceTable::Type::getEntry(const String16
& entry
,
3345 const SourcePos
& sourcePos
,
3346 const ResTable_config
* config
,
3349 bool autoAddOverlay
)
3352 sp
<ConfigList
> c
= mConfigs
.valueFor(entry
);
3354 if (overlay
&& !autoAddOverlay
&& mCanAddEntries
.indexOf(entry
) < 0) {
3355 sourcePos
.error("Resource at %s appears in overlay but not"
3356 " in the base package; use <add-resource> to add.\n",
3357 String8(entry
).string());
3360 c
= new ConfigList(entry
, sourcePos
);
3361 mConfigs
.add(entry
, c
);
3362 pos
= (int)mOrderedConfigs
.size();
3363 mOrderedConfigs
.add(c
);
3365 c
->setEntryIndex(pos
);
3369 ConfigDescription cdesc
;
3370 if (config
) cdesc
= *config
;
3372 sp
<Entry
> e
= c
->getEntries().valueFor(cdesc
);
3374 if (config
!= NULL
) {
3375 NOISY(printf("New entry at %s:%d: imsi:%d/%d lang:%c%c cnt:%c%c "
3376 "orien:%d touch:%d density:%d key:%d inp:%d nav:%d sz:%dx%d "
3377 "sw%ddp w%ddp h%ddp\n",
3378 sourcePos
.file
.string(), sourcePos
.line
,
3379 config
->mcc
, config
->mnc
,
3380 config
->language
[0] ? config
->language
[0] : '-',
3381 config
->language
[1] ? config
->language
[1] : '-',
3382 config
->country
[0] ? config
->country
[0] : '-',
3383 config
->country
[1] ? config
->country
[1] : '-',
3384 config
->orientation
,
3385 config
->touchscreen
,
3390 config
->screenWidth
,
3391 config
->screenHeight
,
3392 config
->smallestScreenWidthDp
,
3393 config
->screenWidthDp
,
3394 config
->screenHeightDp
));
3396 NOISY(printf("New entry at %s:%d: NULL config\n",
3397 sourcePos
.file
.string(), sourcePos
.line
));
3399 e
= new Entry(entry
, sourcePos
);
3400 c
->addEntry(cdesc
, e
);
3404 for (pos=0; pos<(int)mOrderedConfigs.size(); pos++) {
3405 if (mOrderedConfigs[pos] == c) {
3409 if (pos >= (int)mOrderedConfigs.size()) {
3410 sourcePos.error("Internal error: config not found in mOrderedConfigs when adding entry");
3414 e->setEntryIndex(pos);
3419 mUniqueConfigs
.add(cdesc
);
3424 status_t
ResourceTable::Type::applyPublicEntryOrder()
3426 size_t N
= mOrderedConfigs
.size();
3427 Vector
<sp
<ConfigList
> > origOrder(mOrderedConfigs
);
3428 bool hasError
= false;
3431 for (i
=0; i
<N
; i
++) {
3432 mOrderedConfigs
.replaceAt(NULL
, i
);
3435 const size_t NP
= mPublic
.size();
3436 //printf("Ordering %d configs from %d public defs\n", N, NP);
3438 for (j
=0; j
<NP
; j
++) {
3439 const String16
& name
= mPublic
.keyAt(j
);
3440 const Public
& p
= mPublic
.valueAt(j
);
3441 int32_t idx
= Res_GETENTRY(p
.ident
);
3442 //printf("Looking for entry \"%s\"/\"%s\" (0x%08x) in %d...\n",
3443 // String8(mName).string(), String8(name).string(), p.ident, N);
3445 for (i
=0; i
<N
; i
++) {
3446 sp
<ConfigList
> e
= origOrder
.itemAt(i
);
3447 //printf("#%d: \"%s\"\n", i, String8(e->getName()).string());
3448 if (e
->getName() == name
) {
3449 if (idx
>= (int32_t)mOrderedConfigs
.size()) {
3450 p
.sourcePos
.error("Public entry identifier 0x%x entry index "
3451 "is larger than available symbols (index %d, total symbols %d).\n",
3452 p
.ident
, idx
, mOrderedConfigs
.size());
3454 } else if (mOrderedConfigs
.itemAt(idx
) == NULL
) {
3456 e
->setPublicSourcePos(p
.sourcePos
);
3457 mOrderedConfigs
.replaceAt(e
, idx
);
3458 origOrder
.removeAt(i
);
3463 sp
<ConfigList
> oe
= mOrderedConfigs
.itemAt(idx
);
3465 p
.sourcePos
.error("Multiple entry names declared for public entry"
3466 " identifier 0x%x in type %s (%s vs %s).\n"
3467 "%s:%d: Originally defined here.",
3468 idx
+1, String8(mName
).string(),
3469 String8(oe
->getName()).string(),
3470 String8(name
).string(),
3471 oe
->getPublicSourcePos().file
.string(),
3472 oe
->getPublicSourcePos().line
);
3479 p
.sourcePos
.error("Public symbol %s/%s declared here is not defined.",
3480 String8(mName
).string(), String8(name
).string());
3485 //printf("Copying back in %d non-public configs, have %d\n", N, origOrder.size());
3487 if (N
!= origOrder
.size()) {
3488 printf("Internal error: remaining private symbol count mismatch\n");
3489 N
= origOrder
.size();
3493 for (i
=0; i
<N
; i
++) {
3494 sp
<ConfigList
> e
= origOrder
.itemAt(i
);
3495 // There will always be enough room for the remaining entries.
3496 while (mOrderedConfigs
.itemAt(j
) != NULL
) {
3499 mOrderedConfigs
.replaceAt(e
, j
);
3503 return hasError
? UNKNOWN_ERROR
: NO_ERROR
;
3506 ResourceTable::Package::Package(const String16
& name
, ssize_t includedId
)
3507 : mName(name
), mIncludedId(includedId
),
3508 mTypeStringsMapping(0xffffffff),
3509 mKeyStringsMapping(0xffffffff)
3513 sp
<ResourceTable::Type
> ResourceTable::Package::getType(const String16
& type
,
3514 const SourcePos
& sourcePos
,
3517 sp
<Type
> t
= mTypes
.valueFor(type
);
3519 t
= new Type(type
, sourcePos
);
3520 mTypes
.add(type
, t
);
3521 mOrderedTypes
.add(t
);
3523 // For some reason the type's index is set to one plus the index
3524 // in the mOrderedTypes list, rather than just the index.
3525 t
->setIndex(mOrderedTypes
.size());
3531 status_t
ResourceTable::Package::setTypeStrings(const sp
<AaptFile
>& data
)
3533 mTypeStringsData
= data
;
3534 status_t err
= setStrings(data
, &mTypeStrings
, &mTypeStringsMapping
);
3535 if (err
!= NO_ERROR
) {
3536 fprintf(stderr
, "ERROR: Type string data is corrupt!\n");
3541 status_t
ResourceTable::Package::setKeyStrings(const sp
<AaptFile
>& data
)
3543 mKeyStringsData
= data
;
3544 status_t err
= setStrings(data
, &mKeyStrings
, &mKeyStringsMapping
);
3545 if (err
!= NO_ERROR
) {
3546 fprintf(stderr
, "ERROR: Key string data is corrupt!\n");
3551 status_t
ResourceTable::Package::setStrings(const sp
<AaptFile
>& data
,
3552 ResStringPool
* strings
,
3553 DefaultKeyedVector
<String16
, uint32_t>* mappings
)
3555 if (data
->getData() == NULL
) {
3556 return UNKNOWN_ERROR
;
3559 NOISY(aout
<< "Setting restable string pool: "
3560 << HexDump(data
->getData(), data
->getSize()) << endl
);
3562 status_t err
= strings
->setTo(data
->getData(), data
->getSize());
3563 if (err
== NO_ERROR
) {
3564 const size_t N
= strings
->size();
3565 for (size_t i
=0; i
<N
; i
++) {
3567 mappings
->add(String16(strings
->stringAt(i
, &len
)), i
);
3573 status_t
ResourceTable::Package::applyPublicTypeOrder()
3575 size_t N
= mOrderedTypes
.size();
3576 Vector
<sp
<Type
> > origOrder(mOrderedTypes
);
3579 for (i
=0; i
<N
; i
++) {
3580 mOrderedTypes
.replaceAt(NULL
, i
);
3583 for (i
=0; i
<N
; i
++) {
3584 sp
<Type
> t
= origOrder
.itemAt(i
);
3585 int32_t idx
= t
->getPublicIndex();
3588 while (idx
>= (int32_t)mOrderedTypes
.size()) {
3589 mOrderedTypes
.add();
3591 if (mOrderedTypes
.itemAt(idx
) != NULL
) {
3592 sp
<Type
> ot
= mOrderedTypes
.itemAt(idx
);
3593 t
->getFirstPublicSourcePos().error("Multiple type names declared for public type"
3594 " identifier 0x%x (%s vs %s).\n"
3595 "%s:%d: Originally defined here.",
3596 idx
, String8(ot
->getName()).string(),
3597 String8(t
->getName()).string(),
3598 ot
->getFirstPublicSourcePos().file
.string(),
3599 ot
->getFirstPublicSourcePos().line
);
3600 return UNKNOWN_ERROR
;
3602 mOrderedTypes
.replaceAt(t
, idx
);
3603 origOrder
.removeAt(i
);
3610 for (i
=0; i
<N
; i
++) {
3611 sp
<Type
> t
= origOrder
.itemAt(i
);
3612 // There will always be enough room for the remaining types.
3613 while (mOrderedTypes
.itemAt(j
) != NULL
) {
3616 mOrderedTypes
.replaceAt(t
, j
);
3622 sp
<ResourceTable::Package
> ResourceTable::getPackage(const String16
& package
)
3624 sp
<Package
> p
= mPackages
.valueFor(package
);
3626 if (mIsAppPackage
) {
3627 if (mHaveAppPackage
) {
3628 fprintf(stderr
, "Adding multiple application package resources; only one is allowed.\n"
3629 "Use -x to create extended resources.\n");
3632 mHaveAppPackage
= true;
3633 p
= new Package(package
, 127);
3635 p
= new Package(package
, mNextPackageId
);
3637 //printf("*** NEW PACKAGE: \"%s\" id=%d\n",
3638 // String8(package).string(), p->getAssignedId());
3639 mPackages
.add(package
, p
);
3640 mOrderedPackages
.add(p
);
3646 sp
<ResourceTable::Type
> ResourceTable::getType(const String16
& package
,
3647 const String16
& type
,
3648 const SourcePos
& sourcePos
,
3651 sp
<Package
> p
= getPackage(package
);
3655 return p
->getType(type
, sourcePos
, doSetIndex
);
3658 sp
<ResourceTable::Entry
> ResourceTable::getEntry(const String16
& package
,
3659 const String16
& type
,
3660 const String16
& name
,
3661 const SourcePos
& sourcePos
,
3663 const ResTable_config
* config
,
3666 sp
<Type
> t
= getType(package
, type
, sourcePos
, doSetIndex
);
3670 return t
->getEntry(name
, sourcePos
, config
, doSetIndex
, overlay
, mBundle
->getAutoAddOverlay());
3673 sp
<const ResourceTable::Entry
> ResourceTable::getEntry(uint32_t resID
,
3674 const ResTable_config
* config
) const
3676 int pid
= Res_GETPACKAGE(resID
)+1;
3677 const size_t N
= mOrderedPackages
.size();
3680 for (i
=0; i
<N
; i
++) {
3681 sp
<Package
> check
= mOrderedPackages
[i
];
3682 if (check
->getAssignedId() == pid
) {
3689 fprintf(stderr
, "warning: Package not found for resource #%08x\n", resID
);
3693 int tid
= Res_GETTYPE(resID
);
3694 if (tid
< 0 || tid
>= (int)p
->getOrderedTypes().size()) {
3695 fprintf(stderr
, "warning: Type not found for resource #%08x\n", resID
);
3698 sp
<Type
> t
= p
->getOrderedTypes()[tid
];
3700 int eid
= Res_GETENTRY(resID
);
3701 if (eid
< 0 || eid
>= (int)t
->getOrderedConfigs().size()) {
3702 fprintf(stderr
, "warning: Entry not found for resource #%08x\n", resID
);
3706 sp
<ConfigList
> c
= t
->getOrderedConfigs()[eid
];
3708 fprintf(stderr
, "warning: Entry not found for resource #%08x\n", resID
);
3712 ConfigDescription cdesc
;
3713 if (config
) cdesc
= *config
;
3714 sp
<Entry
> e
= c
->getEntries().valueFor(cdesc
);
3716 fprintf(stderr
, "warning: Entry configuration not found for resource #%08x\n", resID
);
3723 const ResourceTable::Item
* ResourceTable::getItem(uint32_t resID
, uint32_t attrID
) const
3725 sp
<const Entry
> e
= getEntry(resID
);
3730 const size_t N
= e
->getBag().size();
3731 for (size_t i
=0; i
<N
; i
++) {
3732 const Item
& it
= e
->getBag().valueAt(i
);
3733 if (it
.bagKeyId
== 0) {
3734 fprintf(stderr
, "warning: ID not yet assigned to '%s' in bag '%s'\n",
3735 String8(e
->getName()).string(),
3736 String8(e
->getBag().keyAt(i
)).string());
3738 if (it
.bagKeyId
== attrID
) {
3746 bool ResourceTable::getItemValue(
3747 uint32_t resID
, uint32_t attrID
, Res_value
* outValue
)
3749 const Item
* item
= getItem(resID
, attrID
);
3753 if (item
->evaluating
) {
3754 sp
<const Entry
> e
= getEntry(resID
);
3755 const size_t N
= e
->getBag().size();
3757 for (i
=0; i
<N
; i
++) {
3758 if (&e
->getBag().valueAt(i
) == item
) {
3762 fprintf(stderr
, "warning: Circular reference detected in key '%s' of bag '%s'\n",
3763 String8(e
->getName()).string(),
3764 String8(e
->getBag().keyAt(i
)).string());
3767 item
->evaluating
= true;
3768 res
= stringToValue(outValue
, NULL
, item
->value
, false, false, item
->bagKeyId
);
3771 printf("getItemValue of #%08x[#%08x] (%s): type=#%08x, data=#%08x\n",
3772 resID
, attrID
, String8(getEntry(resID
)->getName()).string(),
3773 outValue
->dataType
, outValue
->data
);
3775 printf("getItemValue of #%08x[#%08x]: failed\n",
3779 item
->evaluating
= false;