2 // Copyright 2006 The Android Open Source Project
4 // Build resource files from raw assets.
8 #include "ResourceTable.h"
10 #include <host/pseudolocalize.h>
11 #include <utils/ByteOrder.h>
15 #ifndef HAVE_MS_C_RUNTIME
20 #define NOISY_PARSE(x) //x
22 const char* const RESOURCES_ROOT_NAMESPACE
= "http://schemas.android.com/apk/res/";
23 const char* const RESOURCES_ANDROID_NAMESPACE
= "http://schemas.android.com/apk/res/android";
24 const char* const RESOURCES_ROOT_PRV_NAMESPACE
= "http://schemas.android.com/apk/prv/res/";
26 const char* const XLIFF_XMLNS
= "urn:oasis:names:tc:xliff:document:1.2";
27 const char* const ALLOWED_XLIFF_ELEMENTS
[] = {
38 bool isWhitespace(const char16_t* str
)
40 while (*str
!= 0 && *str
< 128 && isspace(*str
)) {
46 static const String16
RESOURCES_PREFIX(RESOURCES_ROOT_NAMESPACE
);
47 static const String16
RESOURCES_PRV_PREFIX(RESOURCES_ROOT_PRV_NAMESPACE
);
49 String16
getNamespaceResourcePackage(String16 namespaceUri
, bool* outIsPublic
)
51 //printf("%s starts with %s?\n", String8(namespaceUri).string(),
52 // String8(RESOURCES_PREFIX).string());
55 if (namespaceUri
.startsWith(RESOURCES_PREFIX
)) {
56 prefixSize
= RESOURCES_PREFIX
.size();
57 } else if (namespaceUri
.startsWith(RESOURCES_PRV_PREFIX
)) {
59 prefixSize
= RESOURCES_PRV_PREFIX
.size();
61 if (outIsPublic
) *outIsPublic
= isPublic
; // = true
66 //printf("namespace: %s\n", String8(String16(namespaceUri, namespaceUri.size()-prefixSize, prefixSize)).string());
67 if (outIsPublic
) *outIsPublic
= isPublic
;
68 return String16(namespaceUri
, namespaceUri
.size()-prefixSize
, prefixSize
);
71 status_t
parseStyledString(Bundle
* bundle
,
74 const String16
& endTag
,
76 Vector
<StringPool::entry_style_span
>* outSpans
,
79 Vector
<StringPool::entry_style_span
> spanStack
;
84 bool firstTime
= true;
87 ResXMLTree::event_code_t code
;
88 while ((code
=inXml
->next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
90 if (code
== ResXMLTree::TEXT
) {
91 String16
text(inXml
->getText(&len
));
92 if (firstTime
&& text
.size() > 0) {
94 if (text
.string()[0] == '@') {
95 // If this is a resource reference, don't do the pseudoloc.
96 pseudolocalize
= false;
99 if (xliffDepth
== 0 && pseudolocalize
) {
100 std::string
orig(String8(text
).string());
101 std::string pseudo
= pseudolocalize_string(orig
);
102 curString
.append(String16(String8(pseudo
.c_str())));
104 curString
.append(text
);
106 } else if (code
== ResXMLTree::START_TAG
) {
107 const String16
element16(inXml
->getElementName(&len
));
108 const String8
element8(element16
);
111 const uint16_t* ns
= inXml
->getElementNamespace(&nslen
);
113 ns
= (const uint16_t*)"\0\0";
116 const String8
nspace(String16(ns
, nslen
));
117 if (nspace
== XLIFF_XMLNS
) {
118 const int N
= sizeof(ALLOWED_XLIFF_ELEMENTS
)/sizeof(ALLOWED_XLIFF_ELEMENTS
[0]);
119 for (int i
=0; i
<N
; i
++) {
120 if (element8
== ALLOWED_XLIFF_ELEMENTS
[i
]) {
122 // in this case, treat it like it was just text, in other words, do nothing
123 // here and silently drop this element
128 SourcePos(String8(fileName
), inXml
->getLineNumber()).error(
129 "Found unsupported XLIFF tag <%s>\n",
131 return UNKNOWN_ERROR
;
137 if (outSpans
== NULL
) {
138 SourcePos(String8(fileName
), inXml
->getLineNumber()).error(
139 "Found style tag <%s> where styles are not allowed\n", element8
.string());
140 return UNKNOWN_ERROR
;
143 if (!ResTable::collectString(outString
, curString
.string(),
144 curString
.size(), false, &errorMsg
, true)) {
145 SourcePos(String8(fileName
), inXml
->getLineNumber()).error("%s (in %s)\n",
146 errorMsg
, String8(curString
).string());
147 return UNKNOWN_ERROR
;
149 rawString
.append(curString
);
150 curString
= String16();
152 StringPool::entry_style_span span
;
153 span
.name
= element16
;
154 for (size_t ai
=0; ai
<inXml
->getAttributeCount(); ai
++) {
155 span
.name
.append(String16(";"));
156 const char16_t* str
= inXml
->getAttributeName(ai
, &len
);
157 span
.name
.append(str
, len
);
158 span
.name
.append(String16("="));
159 str
= inXml
->getAttributeStringValue(ai
, &len
);
160 span
.name
.append(str
, len
);
162 //printf("Span: %s\n", String8(span.name).string());
163 span
.span
.firstChar
= span
.span
.lastChar
= outString
->size();
164 spanStack
.push(span
);
166 } else if (code
== ResXMLTree::END_TAG
) {
168 const uint16_t* ns
= inXml
->getElementNamespace(&nslen
);
170 ns
= (const uint16_t*)"\0\0";
173 const String8
nspace(String16(ns
, nslen
));
174 if (nspace
== XLIFF_XMLNS
) {
178 if (!ResTable::collectString(outString
, curString
.string(),
179 curString
.size(), false, &errorMsg
, true)) {
180 SourcePos(String8(fileName
), inXml
->getLineNumber()).error("%s (in %s)\n",
181 errorMsg
, String8(curString
).string());
182 return UNKNOWN_ERROR
;
184 rawString
.append(curString
);
185 curString
= String16();
187 if (spanStack
.size() == 0) {
188 if (strcmp16(inXml
->getElementName(&len
), endTag
.string()) != 0) {
189 SourcePos(String8(fileName
), inXml
->getLineNumber()).error(
190 "Found tag %s where <%s> close is expected\n",
191 String8(inXml
->getElementName(&len
)).string(),
192 String8(endTag
).string());
193 return UNKNOWN_ERROR
;
197 StringPool::entry_style_span span
= spanStack
.top();
199 ssize_t semi
= span
.name
.findFirst(';');
201 spanTag
.setTo(span
.name
.string(), semi
);
203 spanTag
.setTo(span
.name
);
205 if (strcmp16(inXml
->getElementName(&len
), spanTag
.string()) != 0) {
206 SourcePos(String8(fileName
), inXml
->getLineNumber()).error(
207 "Found close tag %s where close tag %s is expected\n",
208 String8(inXml
->getElementName(&len
)).string(),
209 String8(spanTag
).string());
210 return UNKNOWN_ERROR
;
213 if (outString
->size() > 0) {
214 span
.span
.lastChar
= outString
->size()-1;
215 if (span
.span
.lastChar
>= span
.span
.firstChar
) {
223 * This warning seems to be just an irritation to most people,
224 * since it is typically introduced by translators who then never
228 fprintf(stderr
, "%s:%d: warning: empty '%s' span found in text '%s'\n",
229 fileName
, inXml
->getLineNumber(),
230 String8(spanTag
).string(), String8(*outString
).string());
233 } else if (code
== ResXMLTree::START_NAMESPACE
) {
238 if (code
== ResXMLTree::BAD_DOCUMENT
) {
239 SourcePos(String8(fileName
), inXml
->getLineNumber()).error(
240 "Error parsing XML\n");
243 if (outSpans
!= NULL
&& outSpans
->size() > 0) {
244 if (curString
.size() > 0) {
245 if (!ResTable::collectString(outString
, curString
.string(),
246 curString
.size(), false, &errorMsg
, true)) {
247 SourcePos(String8(fileName
), inXml
->getLineNumber()).error(
249 errorMsg
, String8(curString
).string());
250 return UNKNOWN_ERROR
;
254 // There is no style information, so string processing will happen
255 // later as part of the overall type conversion. Return to the
256 // client the raw unprocessed text.
257 rawString
.append(curString
);
258 outString
->setTo(rawString
);
264 struct namespace_entry
{
269 static String8
make_prefix(int depth
)
273 for (i
=0; i
<depth
; i
++) {
279 static String8
build_namespace(const Vector
<namespace_entry
>& namespaces
,
285 const size_t N
= namespaces
.size();
286 for (size_t i
=0; i
<N
; i
++) {
287 const namespace_entry
& ne
= namespaces
.itemAt(i
);
298 void printXMLBlock(ResXMLTree
* block
)
302 Vector
<namespace_entry
> namespaces
;
304 ResXMLTree::event_code_t code
;
306 while ((code
=block
->next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
307 String8 prefix
= make_prefix(depth
);
309 if (code
== ResXMLTree::START_TAG
) {
311 const uint16_t* ns16
= block
->getElementNamespace(&len
);
312 String8 elemNs
= build_namespace(namespaces
, ns16
);
313 const uint16_t* com16
= block
->getComment(&len
);
315 printf("%s <!-- %s -->\n", prefix
.string(), String8(com16
).string());
317 printf("%sE: %s%s (line=%d)\n", prefix
.string(), elemNs
.string(),
318 String8(block
->getElementName(&len
)).string(),
319 block
->getLineNumber());
320 int N
= block
->getAttributeCount();
322 prefix
= make_prefix(depth
);
323 for (i
=0; i
<N
; i
++) {
324 uint32_t res
= block
->getAttributeNameResID(i
);
325 ns16
= block
->getAttributeNamespace(i
, &len
);
326 String8 ns
= build_namespace(namespaces
, ns16
);
327 String8
name(block
->getAttributeName(i
, &len
));
328 printf("%sA: ", prefix
.string());
330 printf("%s%s(0x%08x)", ns
.string(), name
.string(), res
);
332 printf("%s%s", ns
.string(), name
.string());
335 block
->getAttributeValue(i
, &value
);
336 if (value
.dataType
== Res_value::TYPE_NULL
) {
338 } else if (value
.dataType
== Res_value::TYPE_REFERENCE
) {
339 printf("=@0x%x", (int)value
.data
);
340 } else if (value
.dataType
== Res_value::TYPE_ATTRIBUTE
) {
341 printf("=?0x%x", (int)value
.data
);
342 } else if (value
.dataType
== Res_value::TYPE_STRING
) {
344 String8(block
->getAttributeStringValue(i
, &len
)).string());
346 printf("=(type 0x%x)0x%x", (int)value
.dataType
, (int)value
.data
);
348 const char16_t* val
= block
->getAttributeStringValue(i
, &len
);
350 printf(" (Raw: \"%s\")", String8(val
).string());
354 } else if (code
== ResXMLTree::END_TAG
) {
356 } else if (code
== ResXMLTree::START_NAMESPACE
) {
359 const uint16_t* prefix16
= block
->getNamespacePrefix(&len
);
361 ns
.prefix
= String8(prefix16
);
365 ns
.uri
= String8(block
->getNamespaceUri(&len
));
367 printf("%sN: %s=%s\n", prefix
.string(), ns
.prefix
.string(),
370 } else if (code
== ResXMLTree::END_NAMESPACE
) {
372 const namespace_entry
& ns
= namespaces
.top();
374 const uint16_t* prefix16
= block
->getNamespacePrefix(&len
);
377 pr
= String8(prefix16
);
381 if (ns
.prefix
!= pr
) {
382 prefix
= make_prefix(depth
);
383 printf("%s*** BAD END NS PREFIX: found=%s, expected=%s\n",
384 prefix
.string(), pr
.string(), ns
.prefix
.string());
386 String8 uri
= String8(block
->getNamespaceUri(&len
));
388 prefix
= make_prefix(depth
);
389 printf("%s *** BAD END NS URI: found=%s, expected=%s\n",
390 prefix
.string(), uri
.string(), ns
.uri
.string());
393 } else if (code
== ResXMLTree::TEXT
) {
395 printf("%sC: \"%s\"\n", prefix
.string(), String8(block
->getText(&len
)).string());
402 status_t
parseXMLResource(const sp
<AaptFile
>& file
, ResXMLTree
* outTree
,
403 bool stripAll
, bool keepComments
,
404 const char** cDataTags
)
406 sp
<XMLNode
> root
= XMLNode::parse(file
);
408 return UNKNOWN_ERROR
;
410 root
->removeWhitespace(stripAll
, cDataTags
);
412 NOISY(printf("Input XML from %s:\n", (const char*)file
->getPrintableSource()));
413 NOISY(root
->print());
414 sp
<AaptFile
> rsc
= new AaptFile(String8(), AaptGroupEntry(), String8());
415 status_t err
= root
->flatten(rsc
, !keepComments
, false);
416 if (err
!= NO_ERROR
) {
419 err
= outTree
->setTo(rsc
->getData(), rsc
->getSize(), true);
420 if (err
!= NO_ERROR
) {
424 NOISY(printf("Output XML:\n"));
425 NOISY(printXMLBlock(outTree
));
430 sp
<XMLNode
> XMLNode::parse(const sp
<AaptFile
>& file
)
433 int fd
= open(file
->getSourceFile().string(), O_RDONLY
| O_BINARY
);
435 SourcePos(file
->getSourceFile(), -1).error("Unable to open file for read: %s",
440 XML_Parser parser
= XML_ParserCreateNS(NULL
, 1);
442 state
.filename
= file
->getPrintableSource();
443 state
.parser
= parser
;
444 XML_SetUserData(parser
, &state
);
445 XML_SetElementHandler(parser
, startElement
, endElement
);
446 XML_SetNamespaceDeclHandler(parser
, startNamespace
, endNamespace
);
447 XML_SetCharacterDataHandler(parser
, characterData
);
448 XML_SetCommentHandler(parser
, commentData
);
453 len
= read(fd
, buf
, sizeof(buf
));
454 done
= len
< (ssize_t
)sizeof(buf
);
456 SourcePos(file
->getSourceFile(), -1).error("Error reading file: %s\n", strerror(errno
));
460 if (XML_Parse(parser
, buf
, len
, done
) == XML_STATUS_ERROR
) {
461 SourcePos(file
->getSourceFile(), (int)XML_GetCurrentLineNumber(parser
)).error(
462 "Error parsing XML: %s\n", XML_ErrorString(XML_GetErrorCode(parser
)));
468 XML_ParserFree(parser
);
469 if (state
.root
== NULL
) {
470 SourcePos(file
->getSourceFile(), -1).error("No XML data generated when parsing");
476 XMLNode::XMLNode(const String8
& filename
, const String16
& s1
, const String16
& s2
, bool isNamespace
)
477 : mNextAttributeIndex(0x80000000)
478 , mFilename(filename
)
479 , mStartLineNumber(0)
484 mNamespacePrefix
= s1
;
492 XMLNode::XMLNode(const String8
& filename
)
493 : mFilename(filename
)
495 memset(&mCharsValue
, 0, sizeof(mCharsValue
));
498 XMLNode::type
XMLNode::getType() const
500 if (mElementName
.size() != 0) {
503 if (mNamespaceUri
.size() != 0) {
504 return TYPE_NAMESPACE
;
509 const String16
& XMLNode::getNamespacePrefix() const
511 return mNamespacePrefix
;
514 const String16
& XMLNode::getNamespaceUri() const
516 return mNamespaceUri
;
519 const String16
& XMLNode::getElementNamespace() const
521 return mNamespaceUri
;
524 const String16
& XMLNode::getElementName() const
529 const Vector
<sp
<XMLNode
> >& XMLNode::getChildren() const
534 const String8
& XMLNode::getFilename() const
539 const Vector
<XMLNode::attribute_entry
>&
540 XMLNode::getAttributes() const
545 const XMLNode::attribute_entry
* XMLNode::getAttribute(const String16
& ns
,
546 const String16
& name
) const
548 for (size_t i
=0; i
<mAttributes
.size(); i
++) {
549 const attribute_entry
& ae(mAttributes
.itemAt(i
));
550 if (ae
.ns
== ns
&& ae
.name
== name
) {
558 XMLNode::attribute_entry
* XMLNode::editAttribute(const String16
& ns
,
559 const String16
& name
)
561 for (size_t i
=0; i
<mAttributes
.size(); i
++) {
562 attribute_entry
* ae
= &mAttributes
.editItemAt(i
);
563 if (ae
->ns
== ns
&& ae
->name
== name
) {
571 const String16
& XMLNode::getCData() const
576 const String16
& XMLNode::getComment() const
581 int32_t XMLNode::getStartLineNumber() const
583 return mStartLineNumber
;
586 int32_t XMLNode::getEndLineNumber() const
588 return mEndLineNumber
;
591 sp
<XMLNode
> XMLNode::searchElement(const String16
& tagNamespace
, const String16
& tagName
)
593 if (getType() == XMLNode::TYPE_ELEMENT
594 && mNamespaceUri
== tagNamespace
595 && mElementName
== tagName
) {
599 for (size_t i
=0; i
<mChildren
.size(); i
++) {
600 sp
<XMLNode
> found
= mChildren
.itemAt(i
)->searchElement(tagNamespace
, tagName
);
609 sp
<XMLNode
> XMLNode::getChildElement(const String16
& tagNamespace
, const String16
& tagName
)
611 for (size_t i
=0; i
<mChildren
.size(); i
++) {
612 sp
<XMLNode
> child
= mChildren
.itemAt(i
);
613 if (child
->getType() == XMLNode::TYPE_ELEMENT
614 && child
->mNamespaceUri
== tagNamespace
615 && child
->mElementName
== tagName
) {
623 status_t
XMLNode::addChild(const sp
<XMLNode
>& child
)
625 if (getType() == TYPE_CDATA
) {
626 SourcePos(mFilename
, child
->getStartLineNumber()).error("Child to CDATA node.");
627 return UNKNOWN_ERROR
;
629 //printf("Adding child %p to parent %p\n", child.get(), this);
630 mChildren
.add(child
);
634 status_t
XMLNode::insertChildAt(const sp
<XMLNode
>& child
, size_t index
)
636 if (getType() == TYPE_CDATA
) {
637 SourcePos(mFilename
, child
->getStartLineNumber()).error("Child to CDATA node.");
638 return UNKNOWN_ERROR
;
640 //printf("Adding child %p to parent %p\n", child.get(), this);
641 mChildren
.insertAt(child
, index
);
645 status_t
XMLNode::addAttribute(const String16
& ns
, const String16
& name
,
646 const String16
& value
)
648 if (getType() == TYPE_CDATA
) {
649 SourcePos(mFilename
, getStartLineNumber()).error("Child to CDATA node.");
650 return UNKNOWN_ERROR
;
653 e
.index
= mNextAttributeIndex
++;
658 mAttributeOrder
.add(e
.index
, mAttributes
.size()-1);
662 void XMLNode::setAttributeResID(size_t attrIdx
, uint32_t resId
)
664 attribute_entry
& e
= mAttributes
.editItemAt(attrIdx
);
666 mAttributeOrder
.removeItem(e
.nameResId
);
668 mAttributeOrder
.removeItem(e
.index
);
670 NOISY(printf("Elem %s %s=\"%s\": set res id = 0x%08x\n",
671 String8(getElementName()).string(),
672 String8(mAttributes
.itemAt(attrIdx
).name
).string(),
673 String8(mAttributes
.itemAt(attrIdx
).string
).string(),
675 mAttributes
.editItemAt(attrIdx
).nameResId
= resId
;
676 mAttributeOrder
.add(resId
, attrIdx
);
679 status_t
XMLNode::appendChars(const String16
& chars
)
681 if (getType() != TYPE_CDATA
) {
682 SourcePos(mFilename
, getStartLineNumber()).error("Adding characters to element node.");
683 return UNKNOWN_ERROR
;
685 mChars
.append(chars
);
689 status_t
XMLNode::appendComment(const String16
& comment
)
691 if (mComment
.size() > 0) {
692 mComment
.append(String16("\n"));
694 mComment
.append(comment
);
698 void XMLNode::setStartLineNumber(int32_t line
)
700 mStartLineNumber
= line
;
703 void XMLNode::setEndLineNumber(int32_t line
)
705 mEndLineNumber
= line
;
708 void XMLNode::removeWhitespace(bool stripAll
, const char** cDataTags
)
710 //printf("Removing whitespace in %s\n", String8(mElementName).string());
711 size_t N
= mChildren
.size();
713 String8
tag(mElementName
);
714 const char** p
= cDataTags
;
722 for (size_t i
=0; i
<N
; i
++) {
723 sp
<XMLNode
> node
= mChildren
.itemAt(i
);
724 if (node
->getType() == TYPE_CDATA
) {
725 // This is a CDATA node...
726 const char16_t* p
= node
->mChars
.string();
727 while (*p
!= 0 && *p
< 128 && isspace(*p
)) {
730 //printf("Space ends at %d in \"%s\"\n",
731 // (int)(p-node->mChars.string()),
732 // String8(node->mChars).string());
736 mChildren
.removeAt(i
);
740 node
->mChars
= String16(" ");
743 // Compact leading/trailing whitespace.
744 const char16_t* e
= node
->mChars
.string()+node
->mChars
.size()-1;
745 while (e
> p
&& *e
< 128 && isspace(*e
)) {
748 if (p
> node
->mChars
.string()) {
751 if (e
< (node
->mChars
.string()+node
->mChars
.size()-1)) {
754 if (p
> node
->mChars
.string() ||
755 e
< (node
->mChars
.string()+node
->mChars
.size()-1)) {
756 String16
tmp(p
, e
-p
+1);
761 node
->removeWhitespace(stripAll
, cDataTags
);
766 status_t
XMLNode::parseValues(const sp
<AaptAssets
>& assets
,
767 ResourceTable
* table
)
769 bool hasErrors
= false;
771 if (getType() == TYPE_ELEMENT
) {
772 const size_t N
= mAttributes
.size();
773 String16
defPackage(assets
->getPackage());
774 for (size_t i
=0; i
<N
; i
++) {
775 attribute_entry
& e
= mAttributes
.editItemAt(i
);
776 AccessorCookie
ac(SourcePos(mFilename
, getStartLineNumber()), String8(e
.name
),
778 table
->setCurrentXmlPos(SourcePos(mFilename
, getStartLineNumber()));
779 if (!assets
->getIncludedResources()
780 .stringToValue(&e
.value
, &e
.string
,
781 e
.string
.string(), e
.string
.size(), true, true,
782 e
.nameResId
, NULL
, &defPackage
, table
, &ac
)) {
785 NOISY(printf("Attr %s: type=0x%x, str=%s\n",
786 String8(e
.name
).string(), e
.value
.dataType
,
787 String8(e
.string
).string()));
790 const size_t N
= mChildren
.size();
791 for (size_t i
=0; i
<N
; i
++) {
792 status_t err
= mChildren
.itemAt(i
)->parseValues(assets
, table
);
793 if (err
!= NO_ERROR
) {
797 return hasErrors
? UNKNOWN_ERROR
: NO_ERROR
;
800 status_t
XMLNode::assignResourceIds(const sp
<AaptAssets
>& assets
,
801 const ResourceTable
* table
)
803 bool hasErrors
= false;
805 if (getType() == TYPE_ELEMENT
) {
806 String16
attr("attr");
807 const char* errorMsg
;
808 const size_t N
= mAttributes
.size();
809 for (size_t i
=0; i
<N
; i
++) {
810 const attribute_entry
& e
= mAttributes
.itemAt(i
);
811 if (e
.ns
.size() <= 0) continue;
813 String16
pkg(getNamespaceResourcePackage(e
.ns
, &nsIsPublic
));
814 NOISY(printf("Elem %s %s=\"%s\": namespace(%s) %s ===> %s\n",
815 String8(getElementName()).string(),
816 String8(e
.name
).string(),
817 String8(e
.string
).string(),
818 String8(e
.ns
).string(),
819 (nsIsPublic
) ? "public" : "private",
820 String8(pkg
).string()));
821 if (pkg
.size() <= 0) continue;
822 uint32_t res
= table
!= NULL
823 ? table
->getResId(e
.name
, &attr
, &pkg
, &errorMsg
, nsIsPublic
)
824 : assets
->getIncludedResources().
825 identifierForName(e
.name
.string(), e
.name
.size(),
826 attr
.string(), attr
.size(),
827 pkg
.string(), pkg
.size());
829 NOISY(printf("XML attribute name %s: resid=0x%08x\n",
830 String8(e
.name
).string(), res
));
831 setAttributeResID(i
, res
);
833 SourcePos(mFilename
, getStartLineNumber()).error(
834 "No resource identifier found for attribute '%s' in package '%s'\n",
835 String8(e
.name
).string(), String8(pkg
).string());
840 const size_t N
= mChildren
.size();
841 for (size_t i
=0; i
<N
; i
++) {
842 status_t err
= mChildren
.itemAt(i
)->assignResourceIds(assets
, table
);
843 if (err
< NO_ERROR
) {
848 return hasErrors
? UNKNOWN_ERROR
: NO_ERROR
;
851 status_t
XMLNode::flatten(const sp
<AaptFile
>& dest
,
852 bool stripComments
, bool stripRawValues
) const
854 StringPool strings
= StringPool(false, mUTF8
);
855 Vector
<uint32_t> resids
;
857 // First collect just the strings for attribute names that have a
858 // resource ID assigned to them. This ensures that the resource ID
859 // array is compact, and makes it easier to deal with attribute names
860 // in different namespaces (and thus with different resource IDs).
861 collect_resid_strings(&strings
, &resids
);
863 // Next collect all remainibng strings.
864 collect_strings(&strings
, &resids
, stripComments
, stripRawValues
);
866 #if 0 // No longer compiles
867 NOISY(printf("Found strings:\n");
868 const size_t N
= strings
.size();
869 for (size_t i
=0; i
<N
; i
++) {
870 printf("%s\n", String8(strings
.entryAt(i
).string
).string());
875 sp
<AaptFile
> stringPool
= strings
.createStringBlock();
876 NOISY(aout
<< "String pool:"
877 << HexDump(stringPool
->getData(), stringPool
->getSize()) << endl
);
879 ResXMLTree_header header
;
880 memset(&header
, 0, sizeof(header
));
881 header
.header
.type
= htods(RES_XML_TYPE
);
882 header
.header
.headerSize
= htods(sizeof(header
));
884 const size_t basePos
= dest
->getSize();
885 dest
->writeData(&header
, sizeof(header
));
886 dest
->writeData(stringPool
->getData(), stringPool
->getSize());
888 // If we have resource IDs, write them.
889 if (resids
.size() > 0) {
890 const size_t resIdsPos
= dest
->getSize();
891 const size_t resIdsSize
=
892 sizeof(ResChunk_header
)+(sizeof(uint32_t)*resids
.size());
893 ResChunk_header
* idsHeader
= (ResChunk_header
*)
894 (((const uint8_t*)dest
->editData(resIdsPos
+resIdsSize
))+resIdsPos
);
895 idsHeader
->type
= htods(RES_XML_RESOURCE_MAP_TYPE
);
896 idsHeader
->headerSize
= htods(sizeof(*idsHeader
));
897 idsHeader
->size
= htodl(resIdsSize
);
898 uint32_t* ids
= (uint32_t*)(idsHeader
+1);
899 for (size_t i
=0; i
<resids
.size(); i
++) {
900 *ids
++ = htodl(resids
[i
]);
904 flatten_node(strings
, dest
, stripComments
, stripRawValues
);
906 void* data
= dest
->editData();
907 ResXMLTree_header
* hd
= (ResXMLTree_header
*)(((uint8_t*)data
)+basePos
);
908 size_t size
= dest
->getSize()-basePos
;
909 hd
->header
.size
= htodl(dest
->getSize()-basePos
);
911 NOISY(aout
<< "XML resource:"
912 << HexDump(dest
->getData(), dest
->getSize()) << endl
);
914 #if PRINT_STRING_METRICS
915 fprintf(stderr
, "**** total xml size: %d / %d%% strings (in %s)\n",
916 dest
->getSize(), (stringPool
->getSize()*100)/dest
->getSize(),
917 dest
->getPath().string());
923 void XMLNode::print(int indent
)
927 for (i
=0; i
<indent
; i
++) {
930 if (getType() == TYPE_ELEMENT
) {
931 String8
elemNs(getNamespaceUri());
932 if (elemNs
.size() > 0) {
935 printf("%s E: %s%s", prefix
.string(),
936 elemNs
.string(), String8(getElementName()).string());
937 int N
= mAttributes
.size();
938 for (i
=0; i
<N
; i
++) {
939 ssize_t idx
= mAttributeOrder
.valueAt(i
);
945 const attribute_entry
& attr
= mAttributes
.itemAt(idx
);
946 String8
attrNs(attr
.ns
);
947 if (attrNs
.size() > 0) {
950 if (attr
.nameResId
) {
951 printf("%s%s(0x%08x)", attrNs
.string(),
952 String8(attr
.name
).string(), attr
.nameResId
);
954 printf("%s%s", attrNs
.string(), String8(attr
.name
).string());
956 printf("=%s", String8(attr
.string
).string());
959 } else if (getType() == TYPE_NAMESPACE
) {
960 printf("%s N: %s=%s\n", prefix
.string(),
961 getNamespacePrefix().size() > 0
962 ? String8(getNamespacePrefix()).string() : "<DEF>",
963 String8(getNamespaceUri()).string());
965 printf("%s C: \"%s\"\n", prefix
.string(), String8(getCData()).string());
967 int N
= mChildren
.size();
968 for (i
=0; i
<N
; i
++) {
969 mChildren
.itemAt(i
)->print(indent
+1);
973 static void splitName(const char* name
, String16
* outNs
, String16
* outName
)
975 const char* p
= name
;
976 while (*p
!= 0 && *p
!= 1) {
981 *outName
= String16(name
);
983 *outNs
= String16(name
, (p
-name
));
984 *outName
= String16(p
+1);
989 XMLNode::startNamespace(void *userData
, const char *prefix
, const char *uri
)
991 NOISY_PARSE(printf("Start Namespace: %s %s\n", prefix
, uri
));
992 ParseState
* st
= (ParseState
*)userData
;
993 sp
<XMLNode
> node
= XMLNode::newNamespace(st
->filename
,
994 String16(prefix
!= NULL
? prefix
: ""), String16(uri
));
995 node
->setStartLineNumber(XML_GetCurrentLineNumber(st
->parser
));
996 if (st
->stack
.size() > 0) {
997 st
->stack
.itemAt(st
->stack
.size()-1)->addChild(node
);
1001 st
->stack
.push(node
);
1005 XMLNode::startElement(void *userData
, const char *name
, const char **atts
)
1007 NOISY_PARSE(printf("Start Element: %s\n", name
));
1008 ParseState
* st
= (ParseState
*)userData
;
1009 String16 ns16
, name16
;
1010 splitName(name
, &ns16
, &name16
);
1011 sp
<XMLNode
> node
= XMLNode::newElement(st
->filename
, ns16
, name16
);
1012 node
->setStartLineNumber(XML_GetCurrentLineNumber(st
->parser
));
1013 if (st
->pendingComment
.size() > 0) {
1014 node
->appendComment(st
->pendingComment
);
1015 st
->pendingComment
= String16();
1017 if (st
->stack
.size() > 0) {
1018 st
->stack
.itemAt(st
->stack
.size()-1)->addChild(node
);
1022 st
->stack
.push(node
);
1024 for (int i
= 0; atts
[i
]; i
+= 2) {
1025 splitName(atts
[i
], &ns16
, &name16
);
1026 node
->addAttribute(ns16
, name16
, String16(atts
[i
+1]));
1031 XMLNode::characterData(void *userData
, const XML_Char
*s
, int len
)
1033 NOISY_PARSE(printf("CDATA: \"%s\"\n", String8(s
, len
).string()));
1034 ParseState
* st
= (ParseState
*)userData
;
1035 sp
<XMLNode
> node
= NULL
;
1036 if (st
->stack
.size() == 0) {
1039 sp
<XMLNode
> parent
= st
->stack
.itemAt(st
->stack
.size()-1);
1040 if (parent
!= NULL
&& parent
->getChildren().size() > 0) {
1041 node
= parent
->getChildren()[parent
->getChildren().size()-1];
1042 if (node
->getType() != TYPE_CDATA
) {
1043 // Last node is not CDATA, need to make a new node.
1049 node
= XMLNode::newCData(st
->filename
);
1050 node
->setStartLineNumber(XML_GetCurrentLineNumber(st
->parser
));
1051 parent
->addChild(node
);
1054 node
->appendChars(String16(s
, len
));
1058 XMLNode::endElement(void *userData
, const char *name
)
1060 NOISY_PARSE(printf("End Element: %s\n", name
));
1061 ParseState
* st
= (ParseState
*)userData
;
1062 sp
<XMLNode
> node
= st
->stack
.itemAt(st
->stack
.size()-1);
1063 node
->setEndLineNumber(XML_GetCurrentLineNumber(st
->parser
));
1064 if (st
->pendingComment
.size() > 0) {
1065 node
->appendComment(st
->pendingComment
);
1066 st
->pendingComment
= String16();
1068 String16 ns16
, name16
;
1069 splitName(name
, &ns16
, &name16
);
1070 LOG_ALWAYS_FATAL_IF(node
->getElementNamespace() != ns16
1071 || node
->getElementName() != name16
,
1072 "Bad end element %s", name
);
1077 XMLNode::endNamespace(void *userData
, const char *prefix
)
1079 const char* nonNullPrefix
= prefix
!= NULL
? prefix
: "";
1080 NOISY_PARSE(printf("End Namespace: %s\n", prefix
));
1081 ParseState
* st
= (ParseState
*)userData
;
1082 sp
<XMLNode
> node
= st
->stack
.itemAt(st
->stack
.size()-1);
1083 node
->setEndLineNumber(XML_GetCurrentLineNumber(st
->parser
));
1084 LOG_ALWAYS_FATAL_IF(node
->getNamespacePrefix() != String16(nonNullPrefix
),
1085 "Bad end namespace %s", prefix
);
1090 XMLNode::commentData(void *userData
, const char *comment
)
1092 NOISY_PARSE(printf("Comment: %s\n", comment
));
1093 ParseState
* st
= (ParseState
*)userData
;
1094 if (st
->pendingComment
.size() > 0) {
1095 st
->pendingComment
.append(String16("\n"));
1097 st
->pendingComment
.append(String16(comment
));
1100 status_t
XMLNode::collect_strings(StringPool
* dest
, Vector
<uint32_t>* outResIds
,
1101 bool stripComments
, bool stripRawValues
) const
1103 collect_attr_strings(dest
, outResIds
, true);
1106 if (mNamespacePrefix
.size() > 0) {
1107 dest
->add(mNamespacePrefix
, true);
1109 if (mNamespaceUri
.size() > 0) {
1110 dest
->add(mNamespaceUri
, true);
1112 if (mElementName
.size() > 0) {
1113 dest
->add(mElementName
, true);
1116 if (!stripComments
&& mComment
.size() > 0) {
1117 dest
->add(mComment
, true);
1120 const int NA
= mAttributes
.size();
1122 for (i
=0; i
<NA
; i
++) {
1123 const attribute_entry
& ae
= mAttributes
.itemAt(i
);
1124 if (ae
.ns
.size() > 0) {
1125 dest
->add(ae
.ns
, true);
1127 if (!stripRawValues
|| ae
.needStringValue()) {
1128 dest
->add(ae
.string
, true);
1131 if (ae.value.dataType == Res_value::TYPE_NULL
1132 || ae.value.dataType == Res_value::TYPE_STRING) {
1133 dest->add(ae.string, true);
1138 if (mElementName
.size() == 0) {
1139 // If not an element, include the CDATA, even if it is empty.
1140 dest
->add(mChars
, true);
1143 const int NC
= mChildren
.size();
1145 for (i
=0; i
<NC
; i
++) {
1146 mChildren
.itemAt(i
)->collect_strings(dest
, outResIds
,
1147 stripComments
, stripRawValues
);
1153 status_t
XMLNode::collect_attr_strings(StringPool
* outPool
,
1154 Vector
<uint32_t>* outResIds
, bool allAttrs
) const {
1155 const int NA
= mAttributes
.size();
1157 for (int i
=0; i
<NA
; i
++) {
1158 const attribute_entry
& attr
= mAttributes
.itemAt(i
);
1159 uint32_t id
= attr
.nameResId
;
1160 if (id
|| allAttrs
) {
1161 // See if we have already assigned this resource ID to a pooled
1163 const Vector
<size_t>* indices
= outPool
->offsetsForString(attr
.name
);
1165 if (indices
!= NULL
) {
1166 const int NJ
= indices
->size();
1167 const size_t NR
= outResIds
->size();
1168 for (int j
=0; j
<NJ
; j
++) {
1169 size_t strIdx
= indices
->itemAt(j
);
1172 // We don't need to assign a resource ID for this one.
1176 // Just ignore strings that are out of range of
1177 // the currently assigned resource IDs... we add
1178 // strings as we assign the first ID.
1179 } else if (outResIds
->itemAt(strIdx
) == id
) {
1186 idx
= outPool
->add(attr
.name
);
1187 NOISY(printf("Adding attr %s (resid 0x%08x) to pool: idx=%d\n",
1188 String8(attr
.name
).string(), id
, idx
));
1190 while ((ssize_t
)outResIds
->size() <= idx
) {
1193 outResIds
->replaceAt(id
, idx
);
1196 attr
.namePoolIdx
= idx
;
1197 NOISY(printf("String %s offset=0x%08x\n",
1198 String8(attr
.name
).string(), idx
));
1205 status_t
XMLNode::collect_resid_strings(StringPool
* outPool
,
1206 Vector
<uint32_t>* outResIds
) const
1208 collect_attr_strings(outPool
, outResIds
, false);
1210 const int NC
= mChildren
.size();
1212 for (int i
=0; i
<NC
; i
++) {
1213 mChildren
.itemAt(i
)->collect_resid_strings(outPool
, outResIds
);
1219 status_t
XMLNode::flatten_node(const StringPool
& strings
, const sp
<AaptFile
>& dest
,
1220 bool stripComments
, bool stripRawValues
) const
1222 ResXMLTree_node node
;
1223 ResXMLTree_cdataExt cdataExt
;
1224 ResXMLTree_namespaceExt namespaceExt
;
1225 ResXMLTree_attrExt attrExt
;
1226 const void* extData
= NULL
;
1228 ResXMLTree_attribute attr
;
1230 const size_t NA
= mAttributes
.size();
1231 const size_t NC
= mChildren
.size();
1234 LOG_ALWAYS_FATAL_IF(NA
!= mAttributeOrder
.size(), "Attributes messed up!");
1236 const String16
id16("id");
1237 const String16
class16("class");
1238 const String16
style16("style");
1240 const type type
= getType();
1242 memset(&node
, 0, sizeof(node
));
1243 memset(&attr
, 0, sizeof(attr
));
1244 node
.header
.headerSize
= htods(sizeof(node
));
1245 node
.lineNumber
= htodl(getStartLineNumber());
1246 if (!stripComments
) {
1247 node
.comment
.index
= htodl(
1248 mComment
.size() > 0 ? strings
.offsetForString(mComment
) : -1);
1249 //if (mComment.size() > 0) {
1250 // printf("Flattening comment: %s\n", String8(mComment).string());
1253 node
.comment
.index
= htodl((uint32_t)-1);
1255 if (type
== TYPE_ELEMENT
) {
1256 node
.header
.type
= htods(RES_XML_START_ELEMENT_TYPE
);
1258 extSize
= sizeof(attrExt
);
1259 memset(&attrExt
, 0, sizeof(attrExt
));
1260 if (mNamespaceUri
.size() > 0) {
1261 attrExt
.ns
.index
= htodl(strings
.offsetForString(mNamespaceUri
));
1263 attrExt
.ns
.index
= htodl((uint32_t)-1);
1265 attrExt
.name
.index
= htodl(strings
.offsetForString(mElementName
));
1266 attrExt
.attributeStart
= htods(sizeof(attrExt
));
1267 attrExt
.attributeSize
= htods(sizeof(attr
));
1268 attrExt
.attributeCount
= htods(NA
);
1269 attrExt
.idIndex
= htods(0);
1270 attrExt
.classIndex
= htods(0);
1271 attrExt
.styleIndex
= htods(0);
1272 for (i
=0; i
<NA
; i
++) {
1273 ssize_t idx
= mAttributeOrder
.valueAt(i
);
1274 const attribute_entry
& ae
= mAttributes
.itemAt(idx
);
1275 if (ae
.ns
.size() == 0) {
1276 if (ae
.name
== id16
) {
1277 attrExt
.idIndex
= htods(i
+1);
1278 } else if (ae
.name
== class16
) {
1279 attrExt
.classIndex
= htods(i
+1);
1280 } else if (ae
.name
== style16
) {
1281 attrExt
.styleIndex
= htods(i
+1);
1285 } else if (type
== TYPE_NAMESPACE
) {
1286 node
.header
.type
= htods(RES_XML_START_NAMESPACE_TYPE
);
1287 extData
= &namespaceExt
;
1288 extSize
= sizeof(namespaceExt
);
1289 memset(&namespaceExt
, 0, sizeof(namespaceExt
));
1290 if (mNamespacePrefix
.size() > 0) {
1291 namespaceExt
.prefix
.index
= htodl(strings
.offsetForString(mNamespacePrefix
));
1293 namespaceExt
.prefix
.index
= htodl((uint32_t)-1);
1295 namespaceExt
.prefix
.index
= htodl(strings
.offsetForString(mNamespacePrefix
));
1296 namespaceExt
.uri
.index
= htodl(strings
.offsetForString(mNamespaceUri
));
1297 LOG_ALWAYS_FATAL_IF(NA
!= 0, "Namespace nodes can't have attributes!");
1298 } else if (type
== TYPE_CDATA
) {
1299 node
.header
.type
= htods(RES_XML_CDATA_TYPE
);
1300 extData
= &cdataExt
;
1301 extSize
= sizeof(cdataExt
);
1302 memset(&cdataExt
, 0, sizeof(cdataExt
));
1303 cdataExt
.data
.index
= htodl(strings
.offsetForString(mChars
));
1304 cdataExt
.typedData
.size
= htods(sizeof(cdataExt
.typedData
));
1305 cdataExt
.typedData
.res0
= 0;
1306 cdataExt
.typedData
.dataType
= mCharsValue
.dataType
;
1307 cdataExt
.typedData
.data
= htodl(mCharsValue
.data
);
1308 LOG_ALWAYS_FATAL_IF(NA
!= 0, "CDATA nodes can't have attributes!");
1311 node
.header
.size
= htodl(sizeof(node
) + extSize
+ (sizeof(attr
)*NA
));
1313 dest
->writeData(&node
, sizeof(node
));
1315 dest
->writeData(extData
, extSize
);
1318 for (i
=0; i
<NA
; i
++) {
1319 ssize_t idx
= mAttributeOrder
.valueAt(i
);
1320 const attribute_entry
& ae
= mAttributes
.itemAt(idx
);
1321 if (ae
.ns
.size() > 0) {
1322 attr
.ns
.index
= htodl(strings
.offsetForString(ae
.ns
));
1324 attr
.ns
.index
= htodl((uint32_t)-1);
1326 attr
.name
.index
= htodl(ae
.namePoolIdx
);
1328 if (!stripRawValues
|| ae
.needStringValue()) {
1329 attr
.rawValue
.index
= htodl(strings
.offsetForString(ae
.string
));
1331 attr
.rawValue
.index
= htodl((uint32_t)-1);
1333 attr
.typedValue
.size
= htods(sizeof(attr
.typedValue
));
1334 if (ae
.value
.dataType
== Res_value::TYPE_NULL
1335 || ae
.value
.dataType
== Res_value::TYPE_STRING
) {
1336 attr
.typedValue
.res0
= 0;
1337 attr
.typedValue
.dataType
= Res_value::TYPE_STRING
;
1338 attr
.typedValue
.data
= htodl(strings
.offsetForString(ae
.string
));
1340 attr
.typedValue
.res0
= 0;
1341 attr
.typedValue
.dataType
= ae
.value
.dataType
;
1342 attr
.typedValue
.data
= htodl(ae
.value
.data
);
1344 dest
->writeData(&attr
, sizeof(attr
));
1347 for (i
=0; i
<NC
; i
++) {
1348 status_t err
= mChildren
.itemAt(i
)->flatten_node(strings
, dest
,
1349 stripComments
, stripRawValues
);
1350 if (err
!= NO_ERROR
) {
1355 if (type
== TYPE_ELEMENT
) {
1356 ResXMLTree_endElementExt endElementExt
;
1357 memset(&endElementExt
, 0, sizeof(endElementExt
));
1358 node
.header
.type
= htods(RES_XML_END_ELEMENT_TYPE
);
1359 node
.header
.size
= htodl(sizeof(node
)+sizeof(endElementExt
));
1360 node
.lineNumber
= htodl(getEndLineNumber());
1361 node
.comment
.index
= htodl((uint32_t)-1);
1362 endElementExt
.ns
.index
= attrExt
.ns
.index
;
1363 endElementExt
.name
.index
= attrExt
.name
.index
;
1364 dest
->writeData(&node
, sizeof(node
));
1365 dest
->writeData(&endElementExt
, sizeof(endElementExt
));
1366 } else if (type
== TYPE_NAMESPACE
) {
1367 node
.header
.type
= htods(RES_XML_END_NAMESPACE_TYPE
);
1368 node
.lineNumber
= htodl(getEndLineNumber());
1369 node
.comment
.index
= htodl((uint32_t)-1);
1370 node
.header
.size
= htodl(sizeof(node
)+extSize
);
1371 dest
->writeData(&node
, sizeof(node
));
1372 dest
->writeData(extData
, extSize
);