2 // Copyright 2006 The Android Open Source Project 
   4 // Build resource files from raw assets. 
   7 #include "AaptAssets.h" 
   8 #include "StringPool.h" 
  10 #include "ResourceTable.h" 
  15 // ========================================================================== 
  16 // ========================================================================== 
  17 // ========================================================================== 
  29     status_t 
parsePackage(const sp
<AaptGroup
>& grp
); 
  32 // ========================================================================== 
  33 // ========================================================================== 
  34 // ========================================================================== 
  36 static String8 
parseResourceName(const String8
& leaf
) 
  38     const char* firstDot 
= strchr(leaf
.string(), '.'); 
  39     const char* str 
= leaf
.string(); 
  42         return String8(str
, firstDot
-str
); 
  48 ResourceTypeSet::ResourceTypeSet() 
  50      KeyedVector
<String8
,sp
<AaptGroup
> >() 
  54 class ResourceDirIterator
 
  57     ResourceDirIterator(const sp
<ResourceTypeSet
>& set
, const String8
& resType
) 
  58         : mResType(resType
), mSet(set
), mSetPos(0), mGroupPos(0) 
  62     inline const sp
<AaptGroup
>& getGroup() const { return mGroup
; } 
  63     inline const sp
<AaptFile
>& getFile() const { return mFile
; } 
  65     inline const String8
& getBaseName() const { return mBaseName
; } 
  66     inline const String8
& getLeafName() const { return mLeafName
; } 
  67     inline String8 
getPath() const { return mPath
; } 
  68     inline const ResTable_config
& getParams() const { return mParams
; } 
  80             // Try to get next file in this current group. 
  81             if (mGroup 
!= NULL 
&& mGroupPos 
< mGroup
->getFiles().size()) { 
  83                 file 
= group
->getFiles().valueAt(mGroupPos
++); 
  85             // Try to get the next group/file in this directory 
  86             } else if (mSetPos 
< mSet
->size()) { 
  87                 mGroup 
= group 
= mSet
->valueAt(mSetPos
++); 
  88                 if (group
->getFiles().size() < 1) { 
  91                 file 
= group
->getFiles().valueAt(0); 
 101             String8 
leaf(group
->getLeaf()); 
 102             mLeafName 
= String8(leaf
); 
 103             mParams 
= file
->getGroupEntry().toParams(); 
 104             NOISY(printf("Dir %s: mcc=%d mnc=%d lang=%c%c cnt=%c%c orient=%d ui=%d density=%d touch=%d key=%d inp=%d nav=%d\n", 
 105                    group
->getPath().string(), mParams
.mcc
, mParams
.mnc
, 
 106                    mParams
.language
[0] ? mParams
.language
[0] : '-', 
 107                    mParams
.language
[1] ? mParams
.language
[1] : '-', 
 108                    mParams
.country
[0] ? mParams
.country
[0] : '-', 
 109                    mParams
.country
[1] ? mParams
.country
[1] : '-', 
 110                    mParams
.orientation
, mParams
.uiMode
, 
 111                    mParams
.density
, mParams
.touchscreen
, mParams
.keyboard
, 
 112                    mParams
.inputFlags
, mParams
.navigation
)); 
 114             mPath
.appendPath(file
->getGroupEntry().toDirName(mResType
)); 
 115             mPath
.appendPath(leaf
); 
 116             mBaseName 
= parseResourceName(leaf
); 
 117             if (mBaseName 
== "") { 
 118                 fprintf(stderr
, "Error: malformed resource filename %s\n", 
 119                         file
->getPrintableSource().string()); 
 120                 return UNKNOWN_ERROR
; 
 123             NOISY(printf("file name=%s\n", mBaseName
.string())); 
 132     const sp
<ResourceTypeSet
> mSet
; 
 135     sp
<AaptGroup
> mGroup
; 
 142     ResTable_config mParams
; 
 145 // ========================================================================== 
 146 // ========================================================================== 
 147 // ========================================================================== 
 149 bool isValidResourceType(const String8
& type
) 
 151     return type 
== "anim" || type 
== "drawable" || type 
== "layout" 
 152         || type 
== "values" || type 
== "xml" || type 
== "raw" 
 153         || type 
== "color" || type 
== "menu"; 
 156 static sp
<AaptFile
> getResourceFile(const sp
<AaptAssets
>& assets
, bool makeIfNecessary
=true) 
 158     sp
<AaptGroup
> group 
= assets
->getFiles().valueFor(String8("resources.arsc")); 
 161         file 
= group
->getFiles().valueFor(AaptGroupEntry()); 
 167     if (!makeIfNecessary
) { 
 170     return assets
->addFile(String8("resources.arsc"), AaptGroupEntry(), String8(), 
 174 static status_t 
parsePackage(Bundle
* bundle
, const sp
<AaptAssets
>& assets
, 
 175     const sp
<AaptGroup
>& grp
) 
 177     if (grp
->getFiles().size() != 1) { 
 178         fprintf(stderr
, "warning: Multiple AndroidManifest.xml files found, using %s\n", 
 179                 grp
->getFiles().valueAt(0)->getPrintableSource().string()); 
 182     sp
<AaptFile
> file 
= grp
->getFiles().valueAt(0); 
 185     status_t err 
= parseXMLResource(file
, &block
); 
 186     if (err 
!= NO_ERROR
) { 
 189     //printXMLBlock(&block); 
 191     ResXMLTree::event_code_t code
; 
 192     while ((code
=block
.next()) != ResXMLTree::START_TAG
 
 193            && code 
!= ResXMLTree::END_DOCUMENT
 
 194            && code 
!= ResXMLTree::BAD_DOCUMENT
) { 
 198     if (code 
!= ResXMLTree::START_TAG
) { 
 199         fprintf(stderr
, "%s:%d: No start tag found\n", 
 200                 file
->getPrintableSource().string(), block
.getLineNumber()); 
 201         return UNKNOWN_ERROR
; 
 203     if (strcmp16(block
.getElementName(&len
), String16("manifest").string()) != 0) { 
 204         fprintf(stderr
, "%s:%d: Invalid start tag %s, expected <manifest>\n", 
 205                 file
->getPrintableSource().string(), block
.getLineNumber(), 
 206                 String8(block
.getElementName(&len
)).string()); 
 207         return UNKNOWN_ERROR
; 
 210     ssize_t nameIndex 
= block
.indexOfAttribute(NULL
, "package"); 
 212         fprintf(stderr
, "%s:%d: <manifest> does not have package attribute.\n", 
 213                 file
->getPrintableSource().string(), block
.getLineNumber()); 
 214         return UNKNOWN_ERROR
; 
 217     assets
->setPackage(String8(block
.getAttributeStringValue(nameIndex
, &len
))); 
 219     String16 
uses_sdk16("uses-sdk"); 
 220     while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
 
 221            && code 
!= ResXMLTree::BAD_DOCUMENT
) { 
 222         if (code 
== ResXMLTree::START_TAG
) { 
 223             if (strcmp16(block
.getElementName(&len
), uses_sdk16
.string()) == 0) { 
 224                 ssize_t minSdkIndex 
= block
.indexOfAttribute(RESOURCES_ANDROID_NAMESPACE
, 
 226                 if (minSdkIndex 
>= 0) { 
 227                     const uint16_t* minSdk16 
= block
.getAttributeStringValue(minSdkIndex
, &len
); 
 228                     const char* minSdk8 
= strdup(String8(minSdk16
).string()); 
 229                     bundle
->setManifestMinSdkVersion(minSdk8
); 
 238 // ========================================================================== 
 239 // ========================================================================== 
 240 // ========================================================================== 
 242 static status_t 
makeFileResources(Bundle
* bundle
, const sp
<AaptAssets
>& assets
, 
 243                                   ResourceTable
* table
, 
 244                                   const sp
<ResourceTypeSet
>& set
, 
 247     String8 
type8(resType
); 
 248     String16 
type16(resType
); 
 250     bool hasErrors 
= false; 
 252     ResourceDirIterator 
it(set
, String8(resType
)); 
 254     while ((res
=it
.next()) == NO_ERROR
) { 
 255         if (bundle
->getVerbose()) { 
 256             printf("    (new resource id %s from %s)\n", 
 257                    it
.getBaseName().string(), it
.getFile()->getPrintableSource().string()); 
 259         String16 
baseName(it
.getBaseName()); 
 260         const char16_t* str 
= baseName
.string(); 
 261         const char16_t* const end 
= str 
+ baseName
.size(); 
 263             if (!((*str 
>= 'a' && *str 
<= 'z') 
 264                     || (*str 
>= '0' && *str 
<= '9') 
 265                     || *str 
== '_' || *str 
== '.')) { 
 266                 fprintf(stderr
, "%s: Invalid file name: must contain only [a-z0-9_.]\n", 
 267                         it
.getPath().string()); 
 272         String8 resPath 
= it
.getPath(); 
 273         resPath
.convertToResPath(); 
 274         table
->addEntry(SourcePos(it
.getPath(), 0), String16(assets
->getPackage()), 
 280         assets
->addResource(it
.getLeafName(), resPath
, it
.getFile(), type8
); 
 283     return hasErrors 
? UNKNOWN_ERROR 
: NO_ERROR
; 
 286 static status_t 
preProcessImages(Bundle
* bundle
, const sp
<AaptAssets
>& assets
, 
 287                           const sp
<ResourceTypeSet
>& set
) 
 289     ResourceDirIterator 
it(set
, String8("drawable")); 
 290     Vector
<sp
<AaptFile
> > newNameFiles
; 
 291     Vector
<String8
> newNamePaths
; 
 292     bool hasErrors 
= false; 
 294     while ((res
=it
.next()) == NO_ERROR
) { 
 295         res 
= preProcessImage(bundle
, assets
, it
.getFile(), NULL
); 
 296         if (res 
< NO_ERROR
) { 
 301     return (hasErrors 
|| (res 
< NO_ERROR
)) ? UNKNOWN_ERROR 
: NO_ERROR
; 
 304 status_t 
postProcessImages(const sp
<AaptAssets
>& assets
, 
 305                            ResourceTable
* table
, 
 306                            const sp
<ResourceTypeSet
>& set
) 
 308     ResourceDirIterator 
it(set
, String8("drawable")); 
 309     bool hasErrors 
= false; 
 311     while ((res
=it
.next()) == NO_ERROR
) { 
 312         res 
= postProcessImage(assets
, table
, it
.getFile()); 
 313         if (res 
< NO_ERROR
) { 
 318     return (hasErrors 
|| (res 
< NO_ERROR
)) ? UNKNOWN_ERROR 
: NO_ERROR
; 
 321 static void collect_files(const sp
<AaptDir
>& dir
, 
 322         KeyedVector
<String8
, sp
<ResourceTypeSet
> >* resources
) 
 324     const DefaultKeyedVector
<String8
, sp
<AaptGroup
> >& groups 
= dir
->getFiles(); 
 325     int N 
= groups
.size(); 
 326     for (int i
=0; i
<N
; i
++) { 
 327         String8 leafName 
= groups
.keyAt(i
); 
 328         const sp
<AaptGroup
>& group 
= groups
.valueAt(i
); 
 330         const DefaultKeyedVector
<AaptGroupEntry
, sp
<AaptFile
> >& files
 
 333         if (files
.size() == 0) { 
 337         String8 resType 
= files
.valueAt(0)->getResourceType(); 
 339         ssize_t index 
= resources
->indexOfKey(resType
); 
 342             sp
<ResourceTypeSet
> set 
= new ResourceTypeSet(); 
 343             set
->add(leafName
, group
); 
 344             resources
->add(resType
, set
); 
 346             sp
<ResourceTypeSet
> set 
= resources
->valueAt(index
); 
 347             index 
= set
->indexOfKey(leafName
); 
 349                 set
->add(leafName
, group
); 
 351                 sp
<AaptGroup
> existingGroup 
= set
->valueAt(index
); 
 352                 int M 
= files
.size(); 
 353                 for (int j
=0; j
<M
; j
++) { 
 354                     existingGroup
->addFile(files
.valueAt(j
)); 
 361 static void collect_files(const sp
<AaptAssets
>& ass
, 
 362         KeyedVector
<String8
, sp
<ResourceTypeSet
> >* resources
) 
 364     const Vector
<sp
<AaptDir
> >& dirs 
= ass
->resDirs(); 
 367     for (int i
=0; i
<N
; i
++) { 
 368         sp
<AaptDir
> d 
= dirs
.itemAt(i
); 
 369         collect_files(d
, resources
); 
 371         // don't try to include the res dir 
 372         ass
->removeDir(d
->getLeaf()); 
 379     ATTR_LEADING_SPACES 
= -3, 
 380     ATTR_TRAILING_SPACES 
= -4 
 382 static int validateAttr(const String8
& path
, const ResTable
& table
, 
 383         const ResXMLParser
& parser
, 
 384         const char* ns
, const char* attr
, const char* validChars
, bool required
) 
 388     ssize_t index 
= parser
.indexOfAttribute(ns
, attr
); 
 391     if (index 
>= 0 && parser
.getAttributeValue(index
, &value
) >= 0) { 
 392         const ResStringPool
* pool 
= &parser
.getStrings(); 
 393         if (value
.dataType 
== Res_value::TYPE_REFERENCE
) { 
 394             uint32_t specFlags 
= 0; 
 396             if ((strIdx
=table
.resolveReference(&value
, 0x10000000, NULL
, &specFlags
)) < 0) { 
 397                 fprintf(stderr
, "%s:%d: Tag <%s> attribute %s references unknown resid 0x%08x.\n", 
 398                         path
.string(), parser
.getLineNumber(), 
 399                         String8(parser
.getElementName(&len
)).string(), attr
, 
 401                 return ATTR_NOT_FOUND
; 
 404             pool 
= table
.getTableStringBlock(strIdx
); 
 407                 str 
= pool
->stringAt(value
.data
, &len
); 
 409             printf("***** RES ATTR: %s specFlags=0x%x strIdx=%d: %s\n", attr
, 
 410                     specFlags
, strIdx
, str 
!= NULL 
? String8(str
).string() : "???"); 
 412             if ((specFlags
&~ResTable_typeSpec::SPEC_PUBLIC
) != 0 && false) { 
 413                 fprintf(stderr
, "%s:%d: Tag <%s> attribute %s varies by configurations 0x%x.\n", 
 414                         path
.string(), parser
.getLineNumber(), 
 415                         String8(parser
.getElementName(&len
)).string(), attr
, 
 417                 return ATTR_NOT_FOUND
; 
 420         if (value
.dataType 
== Res_value::TYPE_STRING
) { 
 422                 fprintf(stderr
, "%s:%d: Tag <%s> attribute %s has no string block.\n", 
 423                         path
.string(), parser
.getLineNumber(), 
 424                         String8(parser
.getElementName(&len
)).string(), attr
); 
 425                 return ATTR_NOT_FOUND
; 
 427             if ((str
=pool
->stringAt(value
.data
, &len
)) == NULL
) { 
 428                 fprintf(stderr
, "%s:%d: Tag <%s> attribute %s has corrupt string value.\n", 
 429                         path
.string(), parser
.getLineNumber(), 
 430                         String8(parser
.getElementName(&len
)).string(), attr
); 
 431                 return ATTR_NOT_FOUND
; 
 434             fprintf(stderr
, "%s:%d: Tag <%s> attribute %s has invalid type %d.\n", 
 435                     path
.string(), parser
.getLineNumber(), 
 436                     String8(parser
.getElementName(&len
)).string(), attr
, 
 438             return ATTR_NOT_FOUND
; 
 441             for (size_t i
=0; i
<len
; i
++) { 
 443                 const char* p 
= validChars
; 
 453                     fprintf(stderr
, "%s:%d: Tag <%s> attribute %s has invalid character '%c'.\n", 
 454                             path
.string(), parser
.getLineNumber(), 
 455                             String8(parser
.getElementName(&len
)).string(), attr
, (char)str
[i
]); 
 461             fprintf(stderr
, "%s:%d: Tag <%s> attribute %s can not start with a space.\n", 
 462                     path
.string(), parser
.getLineNumber(), 
 463                     String8(parser
.getElementName(&len
)).string(), attr
); 
 464             return ATTR_LEADING_SPACES
; 
 466         if (str
[len
-1] == ' ') { 
 467             fprintf(stderr
, "%s:%d: Tag <%s> attribute %s can not end with a space.\n", 
 468                     path
.string(), parser
.getLineNumber(), 
 469                     String8(parser
.getElementName(&len
)).string(), attr
); 
 470             return ATTR_TRAILING_SPACES
; 
 475         fprintf(stderr
, "%s:%d: Tag <%s> missing required attribute %s.\n", 
 476                 path
.string(), parser
.getLineNumber(), 
 477                 String8(parser
.getElementName(&len
)).string(), attr
); 
 478         return ATTR_NOT_FOUND
; 
 483 static void checkForIds(const String8
& path
, ResXMLParser
& parser
) 
 485     ResXMLTree::event_code_t code
; 
 486     while ((code
=parser
.next()) != ResXMLTree::END_DOCUMENT
 
 487            && code 
> ResXMLTree::BAD_DOCUMENT
) { 
 488         if (code 
== ResXMLTree::START_TAG
) { 
 489             ssize_t index 
= parser
.indexOfAttribute(NULL
, "id"); 
 491                 fprintf(stderr
, "%s:%d: warning: found plain 'id' attribute; did you mean the new 'android:id' name?\n", 
 492                         path
.string(), parser
.getLineNumber()); 
 498 static bool applyFileOverlay(Bundle 
*bundle
, 
 499                              const sp
<AaptAssets
>& assets
, 
 500                              sp
<ResourceTypeSet
> *baseSet
, 
 503     if (bundle
->getVerbose()) { 
 504         printf("applyFileOverlay for %s\n", resType
); 
 507     // Replace any base level files in this category with any found from the overlay 
 508     // Also add any found only in the overlay. 
 509     sp
<AaptAssets
> overlay 
= assets
->getOverlay(); 
 510     String8 
resTypeString(resType
); 
 512     // work through the linked list of overlays 
 513     while (overlay
.get()) { 
 514         KeyedVector
<String8
, sp
<ResourceTypeSet
> >* overlayRes 
= overlay
->getResources(); 
 516         // get the overlay resources of the requested type 
 517         ssize_t index 
= overlayRes
->indexOfKey(resTypeString
); 
 519             sp
<ResourceTypeSet
> overlaySet 
= overlayRes
->valueAt(index
); 
 521             // for each of the resources, check for a match in the previously built 
 522             // non-overlay "baseset". 
 523             size_t overlayCount 
= overlaySet
->size(); 
 524             for (size_t overlayIndex
=0; overlayIndex
<overlayCount
; overlayIndex
++) { 
 525                 if (bundle
->getVerbose()) { 
 526                     printf("trying overlaySet Key=%s\n",overlaySet
->keyAt(overlayIndex
).string()); 
 528                 size_t baseIndex 
= UNKNOWN_ERROR
; 
 529                 if (baseSet
->get() != NULL
) { 
 530                     baseIndex 
= (*baseSet
)->indexOfKey(overlaySet
->keyAt(overlayIndex
)); 
 532                 if (baseIndex 
< UNKNOWN_ERROR
) { 
 533                     // look for same flavor.  For a given file (strings.xml, for example) 
 534                     // there may be a locale specific or other flavors - we want to match 
 536                     sp
<AaptGroup
> overlayGroup 
= overlaySet
->valueAt(overlayIndex
); 
 537                     sp
<AaptGroup
> baseGroup 
= (*baseSet
)->valueAt(baseIndex
); 
 539                     DefaultKeyedVector
<AaptGroupEntry
, sp
<AaptFile
> > overlayFiles 
= 
 540                             overlayGroup
->getFiles(); 
 541                     if (bundle
->getVerbose()) { 
 542                         DefaultKeyedVector
<AaptGroupEntry
, sp
<AaptFile
> > baseFiles 
= 
 543                                 baseGroup
->getFiles(); 
 544                         for (size_t i
=0; i 
< baseFiles
.size(); i
++) { 
 545                             printf("baseFile %d has flavor %s\n", i
, 
 546                                     baseFiles
.keyAt(i
).toString().string()); 
 548                         for (size_t i
=0; i 
< overlayFiles
.size(); i
++) { 
 549                             printf("overlayFile %d has flavor %s\n", i
, 
 550                                     overlayFiles
.keyAt(i
).toString().string()); 
 554                     size_t overlayGroupSize 
= overlayFiles
.size(); 
 555                     for (size_t overlayGroupIndex 
= 0; 
 556                             overlayGroupIndex
<overlayGroupSize
; 
 557                             overlayGroupIndex
++) { 
 558                         size_t baseFileIndex 
= 
 559                                 baseGroup
->getFiles().indexOfKey(overlayFiles
. 
 560                                 keyAt(overlayGroupIndex
)); 
 561                         if(baseFileIndex 
< UNKNOWN_ERROR
) { 
 562                             if (bundle
->getVerbose()) { 
 563                                 printf("found a match (%d) for overlay file %s, for flavor %s\n", 
 565                                         overlayGroup
->getLeaf().string(), 
 566                                         overlayFiles
.keyAt(overlayGroupIndex
).toString().string()); 
 568                             baseGroup
->removeFile(baseFileIndex
); 
 570                             // didn't find a match fall through and add it.. 
 572                         baseGroup
->addFile(overlayFiles
.valueAt(overlayGroupIndex
)); 
 573                         assets
->addGroupEntry(overlayFiles
.keyAt(overlayGroupIndex
)); 
 576                     if (baseSet
->get() == NULL
) { 
 577                         *baseSet 
= new ResourceTypeSet(); 
 578                         assets
->getResources()->add(String8(resType
), *baseSet
); 
 580                     // this group doesn't exist (a file that's only in the overlay) 
 581                     (*baseSet
)->add(overlaySet
->keyAt(overlayIndex
), 
 582                             overlaySet
->valueAt(overlayIndex
)); 
 583                     // make sure all flavors are defined in the resources. 
 584                     sp
<AaptGroup
> overlayGroup 
= overlaySet
->valueAt(overlayIndex
); 
 585                     DefaultKeyedVector
<AaptGroupEntry
, sp
<AaptFile
> > overlayFiles 
= 
 586                             overlayGroup
->getFiles(); 
 587                     size_t overlayGroupSize 
= overlayFiles
.size(); 
 588                     for (size_t overlayGroupIndex 
= 0; 
 589                             overlayGroupIndex
<overlayGroupSize
; 
 590                             overlayGroupIndex
++) { 
 591                         assets
->addGroupEntry(overlayFiles
.keyAt(overlayGroupIndex
)); 
 595             // this overlay didn't have resources for this type 
 598         overlay 
= overlay
->getOverlay(); 
 603 void addTagAttribute(const sp
<XMLNode
>& node
, const char* ns8
, 
 604         const char* attr8
, const char* value
) 
 610     const String16 
ns(ns8
); 
 611     const String16 
attr(attr8
); 
 613     if (node
->getAttribute(ns
, attr
) != NULL
) { 
 614         fprintf(stderr
, "Warning: AndroidManifest.xml already defines %s (in %s);" 
 615                         " using existing value in manifest.\n", 
 616                 String8(attr
).string(), String8(ns
).string()); 
 620     node
->addAttribute(ns
, attr
, String16(value
)); 
 623 static void fullyQualifyClassName(const String8
& package
, sp
<XMLNode
> node
, 
 624         const String16
& attrName
) { 
 625     XMLNode::attribute_entry
* attr 
= node
->editAttribute( 
 626             String16("http://schemas.android.com/apk/res/android"), attrName
); 
 628         String8 
name(attr
->string
); 
 630         // asdf     --> package.asdf 
 631         // .asdf  .a.b  --> package.asdf package.a.b 
 632         // asdf.adsf --> asdf.asdf 
 634         const char* p 
= name
.string(); 
 635         const char* q 
= strchr(p
, '.'); 
 637             className 
+= package
; 
 639         } else if (q 
== NULL
) { 
 640             className 
+= package
; 
 646         NOISY(printf("Qualifying class '%s' to '%s'", name
.string(), className
.string())); 
 647         attr
->string
.setTo(String16(className
)); 
 651 status_t 
massageManifest(Bundle
* bundle
, sp
<XMLNode
> root
) 
 653     root 
= root
->searchElement(String16(), String16("manifest")); 
 655         fprintf(stderr
, "No <manifest> tag.\n"); 
 656         return UNKNOWN_ERROR
; 
 659     addTagAttribute(root
, RESOURCES_ANDROID_NAMESPACE
, "versionCode", 
 660             bundle
->getVersionCode()); 
 661     addTagAttribute(root
, RESOURCES_ANDROID_NAMESPACE
, "versionName", 
 662             bundle
->getVersionName()); 
 664     if (bundle
->getMinSdkVersion() != NULL
 
 665             || bundle
->getTargetSdkVersion() != NULL
 
 666             || bundle
->getMaxSdkVersion() != NULL
) { 
 667         sp
<XMLNode
> vers 
= root
->getChildElement(String16(), String16("uses-sdk")); 
 669             vers 
= XMLNode::newElement(root
->getFilename(), String16(), String16("uses-sdk")); 
 670             root
->insertChildAt(vers
, 0); 
 673         addTagAttribute(vers
, RESOURCES_ANDROID_NAMESPACE
, "minSdkVersion", 
 674                 bundle
->getMinSdkVersion()); 
 675         addTagAttribute(vers
, RESOURCES_ANDROID_NAMESPACE
, "targetSdkVersion", 
 676                 bundle
->getTargetSdkVersion()); 
 677         addTagAttribute(vers
, RESOURCES_ANDROID_NAMESPACE
, "maxSdkVersion", 
 678                 bundle
->getMaxSdkVersion()); 
 681     if (bundle
->getDebugMode()) { 
 682         sp
<XMLNode
> application 
= root
->getChildElement(String16(), String16("application")); 
 683         if (application 
!= NULL
) { 
 684             addTagAttribute(application
, RESOURCES_ANDROID_NAMESPACE
, "debuggable", "true"); 
 688     // Deal with manifest package name overrides 
 689     const char* manifestPackageNameOverride 
= bundle
->getManifestPackageNameOverride(); 
 690     if (manifestPackageNameOverride 
!= NULL
) { 
 691         // Update the actual package name 
 692         XMLNode::attribute_entry
* attr 
= root
->editAttribute(String16(), String16("package")); 
 694             fprintf(stderr
, "package name is required with --rename-manifest-package.\n"); 
 695             return UNKNOWN_ERROR
; 
 697         String8 
origPackage(attr
->string
); 
 698         attr
->string
.setTo(String16(manifestPackageNameOverride
)); 
 699         NOISY(printf("Overriding package '%s' to be '%s'\n", origPackage
.string(), manifestPackageNameOverride
)); 
 701         // Make class names fully qualified 
 702         sp
<XMLNode
> application 
= root
->getChildElement(String16(), String16("application")); 
 703         if (application 
!= NULL
) { 
 704             fullyQualifyClassName(origPackage
, application
, String16("name")); 
 705             fullyQualifyClassName(origPackage
, application
, String16("backupAgent")); 
 707             Vector
<sp
<XMLNode
> >& children 
= const_cast<Vector
<sp
<XMLNode
> >&>(application
->getChildren()); 
 708             for (size_t i 
= 0; i 
< children
.size(); i
++) { 
 709                 sp
<XMLNode
> child 
= children
.editItemAt(i
); 
 710                 String8 
tag(child
->getElementName()); 
 711                 if (tag 
== "activity" || tag 
== "service" || tag 
== "receiver" || tag 
== "provider") { 
 712                     fullyQualifyClassName(origPackage
, child
, String16("name")); 
 713                 } else if (tag 
== "activity-alias") { 
 714                     fullyQualifyClassName(origPackage
, child
, String16("name")); 
 715                     fullyQualifyClassName(origPackage
, child
, String16("targetActivity")); 
 721     // Deal with manifest package name overrides 
 722     const char* instrumentationPackageNameOverride 
= bundle
->getInstrumentationPackageNameOverride(); 
 723     if (instrumentationPackageNameOverride 
!= NULL
) { 
 724         // Fix up instrumentation targets. 
 725         Vector
<sp
<XMLNode
> >& children 
= const_cast<Vector
<sp
<XMLNode
> >&>(root
->getChildren()); 
 726         for (size_t i 
= 0; i 
< children
.size(); i
++) { 
 727             sp
<XMLNode
> child 
= children
.editItemAt(i
); 
 728             String8 
tag(child
->getElementName()); 
 729             if (tag 
== "instrumentation") { 
 730                 XMLNode::attribute_entry
* attr 
= child
->editAttribute( 
 731                         String16("http://schemas.android.com/apk/res/android"), String16("targetPackage")); 
 733                     attr
->string
.setTo(String16(instrumentationPackageNameOverride
)); 
 742 #define ASSIGN_IT(n) \ 
 744             ssize_t index = resources->indexOfKey(String8(#n)); \ 
 746                 n ## s = resources->valueAt(index); \ 
 750 status_t 
buildResources(Bundle
* bundle
, const sp
<AaptAssets
>& assets
) 
 752     // First, look for a package file to parse.  This is required to 
 753     // be able to generate the resource information. 
 754     sp
<AaptGroup
> androidManifestFile 
= 
 755             assets
->getFiles().valueFor(String8("AndroidManifest.xml")); 
 756     if (androidManifestFile 
== NULL
) { 
 757         fprintf(stderr
, "ERROR: No AndroidManifest.xml file found.\n"); 
 758         return UNKNOWN_ERROR
; 
 761     status_t err 
= parsePackage(bundle
, assets
, androidManifestFile
); 
 762     if (err 
!= NO_ERROR
) { 
 766     NOISY(printf("Creating resources for package %s\n", 
 767                  assets
->getPackage().string())); 
 769     ResourceTable 
table(bundle
, String16(assets
->getPackage())); 
 770     err 
= table
.addIncludedResources(bundle
, assets
); 
 771     if (err 
!= NO_ERROR
) { 
 775     NOISY(printf("Found %d included resource packages\n", (int)table
.size())); 
 777     // Standard flags for compiled XML and optional UTF-8 encoding 
 778     int xmlFlags 
= XML_COMPILE_STANDARD_RESOURCE
; 
 780     /* Only enable UTF-8 if the caller of aapt didn't specifically 
 781      * request UTF-16 encoding and the parameters of this package 
 782      * allow UTF-8 to be used. 
 784     if (!bundle
->getWantUTF16() 
 785             && bundle
->isMinSdkAtLeast(SDK_FROYO
)) { 
 786         xmlFlags 
|= XML_COMPILE_UTF8
; 
 789     // -------------------------------------------------------------- 
 790     // First, gather all resource information. 
 791     // -------------------------------------------------------------- 
 793     // resType -> leafName -> group 
 794     KeyedVector
<String8
, sp
<ResourceTypeSet
> > *resources 
=  
 795             new KeyedVector
<String8
, sp
<ResourceTypeSet
> >; 
 796     collect_files(assets
, resources
); 
 798     sp
<ResourceTypeSet
> drawables
; 
 799     sp
<ResourceTypeSet
> layouts
; 
 800     sp
<ResourceTypeSet
> anims
; 
 801     sp
<ResourceTypeSet
> xmls
; 
 802     sp
<ResourceTypeSet
> raws
; 
 803     sp
<ResourceTypeSet
> colors
; 
 804     sp
<ResourceTypeSet
> menus
; 
 814     assets
->setResources(resources
); 
 815     // now go through any resource overlays and collect their files 
 816     sp
<AaptAssets
> current 
= assets
->getOverlay(); 
 817     while(current
.get()) { 
 818         KeyedVector
<String8
, sp
<ResourceTypeSet
> > *resources 
=  
 819                 new KeyedVector
<String8
, sp
<ResourceTypeSet
> >; 
 820         current
->setResources(resources
); 
 821         collect_files(current
, resources
); 
 822         current 
= current
->getOverlay(); 
 824     // apply the overlay files to the base set 
 825     if (!applyFileOverlay(bundle
, assets
, &drawables
, "drawable") || 
 826             !applyFileOverlay(bundle
, assets
, &layouts
, "layout") || 
 827             !applyFileOverlay(bundle
, assets
, &anims
, "anim") || 
 828             !applyFileOverlay(bundle
, assets
, &xmls
, "xml") || 
 829             !applyFileOverlay(bundle
, assets
, &raws
, "raw") || 
 830             !applyFileOverlay(bundle
, assets
, &colors
, "color") || 
 831             !applyFileOverlay(bundle
, assets
, &menus
, "menu")) { 
 832         return UNKNOWN_ERROR
; 
 835     bool hasErrors 
= false; 
 837     if (drawables 
!= NULL
) { 
 838         if (bundle
->getOutputAPKFile() != NULL
) { 
 839             err 
= preProcessImages(bundle
, assets
, drawables
); 
 841         if (err 
== NO_ERROR
) { 
 842             err 
= makeFileResources(bundle
, assets
, &table
, drawables
, "drawable"); 
 843             if (err 
!= NO_ERROR
) { 
 851     if (layouts 
!= NULL
) { 
 852         err 
= makeFileResources(bundle
, assets
, &table
, layouts
, "layout"); 
 853         if (err 
!= NO_ERROR
) { 
 859         err 
= makeFileResources(bundle
, assets
, &table
, anims
, "anim"); 
 860         if (err 
!= NO_ERROR
) { 
 866         err 
= makeFileResources(bundle
, assets
, &table
, xmls
, "xml"); 
 867         if (err 
!= NO_ERROR
) { 
 873         err 
= makeFileResources(bundle
, assets
, &table
, raws
, "raw"); 
 874         if (err 
!= NO_ERROR
) { 
 881     while(current
.get()) { 
 882         KeyedVector
<String8
, sp
<ResourceTypeSet
> > *resources 
=  
 883                 current
->getResources(); 
 885         ssize_t index 
= resources
->indexOfKey(String8("values")); 
 887             ResourceDirIterator 
it(resources
->valueAt(index
), String8("values")); 
 889             while ((res
=it
.next()) == NO_ERROR
) { 
 890                 sp
<AaptFile
> file 
= it
.getFile(); 
 891                 res 
= compileResourceFile(bundle
, assets
, file
, it
.getParams(),  
 892                                           (current
!=assets
), &table
); 
 893                 if (res 
!= NO_ERROR
) { 
 898         current 
= current
->getOverlay(); 
 901     if (colors 
!= NULL
) { 
 902         err 
= makeFileResources(bundle
, assets
, &table
, colors
, "color"); 
 903         if (err 
!= NO_ERROR
) { 
 909         err 
= makeFileResources(bundle
, assets
, &table
, menus
, "menu"); 
 910         if (err 
!= NO_ERROR
) { 
 915     // -------------------------------------------------------------------- 
 916     // Assignment of resource IDs and initial generation of resource table. 
 917     // -------------------------------------------------------------------- 
 919     if (table
.hasResources()) { 
 920         sp
<AaptFile
> resFile(getResourceFile(assets
)); 
 921         if (resFile 
== NULL
) { 
 922             fprintf(stderr
, "Error: unable to generate entry for resource data\n"); 
 923             return UNKNOWN_ERROR
; 
 926         err 
= table
.assignResourceIds(); 
 927         if (err 
< NO_ERROR
) { 
 932     // -------------------------------------------------------------- 
 933     // Finally, we can now we can compile XML files, which may reference 
 935     // -------------------------------------------------------------- 
 937     if (layouts 
!= NULL
) { 
 938         ResourceDirIterator 
it(layouts
, String8("layout")); 
 939         while ((err
=it
.next()) == NO_ERROR
) { 
 940             String8 src 
= it
.getFile()->getPrintableSource(); 
 941             err 
= compileXmlFile(assets
, it
.getFile(), &table
, xmlFlags
); 
 942             if (err 
== NO_ERROR
) { 
 944                 block
.setTo(it
.getFile()->getData(), it
.getFile()->getSize(), true); 
 945                 checkForIds(src
, block
); 
 951         if (err 
< NO_ERROR
) { 
 958         ResourceDirIterator 
it(anims
, String8("anim")); 
 959         while ((err
=it
.next()) == NO_ERROR
) { 
 960             err 
= compileXmlFile(assets
, it
.getFile(), &table
, xmlFlags
); 
 961             if (err 
!= NO_ERROR
) { 
 966         if (err 
< NO_ERROR
) { 
 973         ResourceDirIterator 
it(xmls
, String8("xml")); 
 974         while ((err
=it
.next()) == NO_ERROR
) { 
 975             err 
= compileXmlFile(assets
, it
.getFile(), &table
, xmlFlags
); 
 976             if (err 
!= NO_ERROR
) { 
 981         if (err 
< NO_ERROR
) { 
 987     if (drawables 
!= NULL
) { 
 988         err 
= postProcessImages(assets
, &table
, drawables
); 
 989         if (err 
!= NO_ERROR
) { 
 994     if (colors 
!= NULL
) { 
 995         ResourceDirIterator 
it(colors
, String8("color")); 
 996         while ((err
=it
.next()) == NO_ERROR
) { 
 997           err 
= compileXmlFile(assets
, it
.getFile(), &table
, xmlFlags
); 
 998             if (err 
!= NO_ERROR
) { 
1003         if (err 
< NO_ERROR
) { 
1009     if (menus 
!= NULL
) { 
1010         ResourceDirIterator 
it(menus
, String8("menu")); 
1011         while ((err
=it
.next()) == NO_ERROR
) { 
1012             String8 src 
= it
.getFile()->getPrintableSource(); 
1013             err 
= compileXmlFile(assets
, it
.getFile(), &table
, xmlFlags
); 
1014             if (err 
!= NO_ERROR
) { 
1018             block
.setTo(it
.getFile()->getData(), it
.getFile()->getSize(), true); 
1019             checkForIds(src
, block
); 
1022         if (err 
< NO_ERROR
) { 
1028     if (table
.validateLocalizations()) { 
1033         return UNKNOWN_ERROR
; 
1036     const sp
<AaptFile
> manifestFile(androidManifestFile
->getFiles().valueAt(0)); 
1037     String8 
manifestPath(manifestFile
->getPrintableSource()); 
1039     // Generate final compiled manifest file. 
1040     manifestFile
->clearData(); 
1041     sp
<XMLNode
> manifestTree 
= XMLNode::parse(manifestFile
); 
1042     if (manifestTree 
== NULL
) { 
1043         return UNKNOWN_ERROR
; 
1045     err 
= massageManifest(bundle
, manifestTree
); 
1046     if (err 
< NO_ERROR
) { 
1049     err 
= compileXmlFile(assets
, manifestTree
, manifestFile
, &table
); 
1050     if (err 
< NO_ERROR
) { 
1055     //printXMLBlock(&block); 
1057     // -------------------------------------------------------------- 
1058     // Generate the final resource table. 
1059     // Re-flatten because we may have added new resource IDs 
1060     // -------------------------------------------------------------- 
1062     ResTable finalResTable
; 
1063     sp
<AaptFile
> resFile
; 
1065     if (table
.hasResources()) { 
1066         sp
<AaptSymbols
> symbols 
= assets
->getSymbolsFor(String8("R")); 
1067         err 
= table
.addSymbols(symbols
); 
1068         if (err 
< NO_ERROR
) { 
1072         resFile 
= getResourceFile(assets
); 
1073         if (resFile 
== NULL
) { 
1074             fprintf(stderr
, "Error: unable to generate entry for resource data\n"); 
1075             return UNKNOWN_ERROR
; 
1078         err 
= table
.flatten(bundle
, resFile
); 
1079         if (err 
< NO_ERROR
) { 
1083         if (bundle
->getPublicOutputFile()) { 
1084             FILE* fp 
= fopen(bundle
->getPublicOutputFile(), "w+"); 
1086                 fprintf(stderr
, "ERROR: Unable to open public definitions output file %s: %s\n", 
1087                         (const char*)bundle
->getPublicOutputFile(), strerror(errno
)); 
1088                 return UNKNOWN_ERROR
; 
1090             if (bundle
->getVerbose()) { 
1091                 printf("  Writing public definitions to %s.\n", bundle
->getPublicOutputFile()); 
1093             table
.writePublicDefinitions(String16(assets
->getPackage()), fp
); 
1097         // Read resources back in, 
1098         finalResTable
.add(resFile
->getData(), resFile
->getSize(), NULL
); 
1102               printf("Generated resources:\n"); 
1103               finalResTable
.print(); 
1108     // Perform a basic validation of the manifest file.  This time we 
1109     // parse it with the comments intact, so that we can use them to 
1110     // generate java docs...  so we are not going to write this one 
1111     // back out to the final manifest data. 
1112     sp
<AaptFile
> outManifestFile 
= new AaptFile(manifestFile
->getSourceFile(), 
1113             manifestFile
->getGroupEntry(), 
1114             manifestFile
->getResourceType()); 
1115     err 
= compileXmlFile(assets
, manifestFile
, 
1116             outManifestFile
, &table
, 
1117             XML_COMPILE_ASSIGN_ATTRIBUTE_IDS
 
1118             | XML_COMPILE_STRIP_WHITESPACE 
| XML_COMPILE_STRIP_RAW_VALUES
); 
1119     if (err 
< NO_ERROR
) { 
1123     block
.setTo(outManifestFile
->getData(), outManifestFile
->getSize(), true); 
1124     String16 
manifest16("manifest"); 
1125     String16 
permission16("permission"); 
1126     String16 
permission_group16("permission-group"); 
1127     String16 
uses_permission16("uses-permission"); 
1128     String16 
instrumentation16("instrumentation"); 
1129     String16 
application16("application"); 
1130     String16 
provider16("provider"); 
1131     String16 
service16("service"); 
1132     String16 
receiver16("receiver"); 
1133     String16 
activity16("activity"); 
1134     String16 
action16("action"); 
1135     String16 
category16("category"); 
1136     String16 
data16("scheme"); 
1137     const char* packageIdentChars 
= "abcdefghijklmnopqrstuvwxyz" 
1138         "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789"; 
1139     const char* packageIdentCharsWithTheStupid 
= "abcdefghijklmnopqrstuvwxyz" 
1140         "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789-"; 
1141     const char* classIdentChars 
= "abcdefghijklmnopqrstuvwxyz" 
1142         "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789$"; 
1143     const char* processIdentChars 
= "abcdefghijklmnopqrstuvwxyz" 
1144         "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789:"; 
1145     const char* authoritiesIdentChars 
= "abcdefghijklmnopqrstuvwxyz" 
1146         "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789-:;"; 
1147     const char* typeIdentChars 
= "abcdefghijklmnopqrstuvwxyz" 
1148         "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789:-/*+"; 
1149     const char* schemeIdentChars 
= "abcdefghijklmnopqrstuvwxyz" 
1150         "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789-"; 
1151     ResXMLTree::event_code_t code
; 
1152     sp
<AaptSymbols
> permissionSymbols
; 
1153     sp
<AaptSymbols
> permissionGroupSymbols
; 
1154     while ((code
=block
.next()) != ResXMLTree::END_DOCUMENT
 
1155            && code 
> ResXMLTree::BAD_DOCUMENT
) { 
1156         if (code 
== ResXMLTree::START_TAG
) { 
1158             if (block
.getElementNamespace(&len
) != NULL
) { 
1161             if (strcmp16(block
.getElementName(&len
), manifest16
.string()) == 0) { 
1162                 if (validateAttr(manifestPath
, finalResTable
, block
, NULL
, "package", 
1163                                  packageIdentChars
, true) != ATTR_OKAY
) { 
1166                 if (validateAttr(manifestPath
, finalResTable
, block
, RESOURCES_ANDROID_NAMESPACE
, 
1167                                  "sharedUserId", packageIdentChars
, false) != ATTR_OKAY
) { 
1170             } else if (strcmp16(block
.getElementName(&len
), permission16
.string()) == 0 
1171                     || strcmp16(block
.getElementName(&len
), permission_group16
.string()) == 0) { 
1172                 const bool isGroup 
= strcmp16(block
.getElementName(&len
), 
1173                         permission_group16
.string()) == 0; 
1174                 if (validateAttr(manifestPath
, finalResTable
, block
, RESOURCES_ANDROID_NAMESPACE
, 
1175                                  "name", isGroup 
? packageIdentCharsWithTheStupid
 
1176                                  : packageIdentChars
, true) != ATTR_OKAY
) { 
1179                 SourcePos 
srcPos(manifestPath
, block
.getLineNumber()); 
1180                 sp
<AaptSymbols
> syms
; 
1182                     syms 
= permissionSymbols
; 
1184                         sp
<AaptSymbols
> symbols 
= 
1185                                 assets
->getSymbolsFor(String8("Manifest")); 
1186                         syms 
= permissionSymbols 
= symbols
->addNestedSymbol( 
1187                                 String8("permission"), srcPos
); 
1190                     syms 
= permissionGroupSymbols
; 
1192                         sp
<AaptSymbols
> symbols 
= 
1193                                 assets
->getSymbolsFor(String8("Manifest")); 
1194                         syms 
= permissionGroupSymbols 
= symbols
->addNestedSymbol( 
1195                                 String8("permission_group"), srcPos
); 
1199                 ssize_t index 
= block
.indexOfAttribute(RESOURCES_ANDROID_NAMESPACE
, "name"); 
1200                 const uint16_t* id 
= block
.getAttributeStringValue(index
, &len
); 
1202                     fprintf(stderr
, "%s:%d: missing name attribute in element <%s>.\n",  
1203                             manifestPath
.string(), block
.getLineNumber(), 
1204                             String8(block
.getElementName(&len
)).string()); 
1209                 char* p 
= idStr
.lockBuffer(idStr
.size()); 
1210                 char* e 
= p 
+ idStr
.size(); 
1211                 bool begins_with_digit 
= true;  // init to true so an empty string fails 
1214                     if (*e 
>= '0' && *e 
<= '9') { 
1215                       begins_with_digit 
= true; 
1218                     if ((*e 
>= 'a' && *e 
<= 'z') || 
1219                         (*e 
>= 'A' && *e 
<= 'Z') || 
1221                       begins_with_digit 
= false; 
1224                     if (isGroup 
&& (*e 
== '-')) { 
1226                         begins_with_digit 
= false; 
1232                 idStr
.unlockBuffer(); 
1233                 // verify that we stopped because we hit a period or 
1234                 // the beginning of the string, and that the 
1235                 // identifier didn't begin with a digit. 
1236                 if (begins_with_digit 
|| (e 
!= p 
&& *(e
-1) != '.')) { 
1238                           "%s:%d: Permission name <%s> is not a valid Java symbol\n", 
1239                           manifestPath
.string(), block
.getLineNumber(), idStr
.string()); 
1242                 syms
->addStringSymbol(String8(e
), idStr
, srcPos
); 
1243                 const uint16_t* cmt 
= block
.getComment(&len
); 
1244                 if (cmt 
!= NULL 
&& *cmt 
!= 0) { 
1245                     //printf("Comment of %s: %s\n", String8(e).string(), 
1246                     //        String8(cmt).string()); 
1247                     syms
->appendComment(String8(e
), String16(cmt
), srcPos
); 
1249                     //printf("No comment for %s\n", String8(e).string()); 
1251                 syms
->makeSymbolPublic(String8(e
), srcPos
); 
1252             } else if (strcmp16(block
.getElementName(&len
), uses_permission16
.string()) == 0) { 
1253                 if (validateAttr(manifestPath
, finalResTable
, block
, RESOURCES_ANDROID_NAMESPACE
, 
1254                                  "name", packageIdentChars
, true) != ATTR_OKAY
) { 
1257             } else if (strcmp16(block
.getElementName(&len
), instrumentation16
.string()) == 0) { 
1258                 if (validateAttr(manifestPath
, finalResTable
, block
, RESOURCES_ANDROID_NAMESPACE
, 
1259                                  "name", classIdentChars
, true) != ATTR_OKAY
) { 
1262                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1263                                  RESOURCES_ANDROID_NAMESPACE
, "targetPackage", 
1264                                  packageIdentChars
, true) != ATTR_OKAY
) { 
1267             } else if (strcmp16(block
.getElementName(&len
), application16
.string()) == 0) { 
1268                 if (validateAttr(manifestPath
, finalResTable
, block
, RESOURCES_ANDROID_NAMESPACE
, 
1269                                  "name", classIdentChars
, false) != ATTR_OKAY
) { 
1272                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1273                                  RESOURCES_ANDROID_NAMESPACE
, "permission", 
1274                                  packageIdentChars
, false) != ATTR_OKAY
) { 
1277                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1278                                  RESOURCES_ANDROID_NAMESPACE
, "process", 
1279                                  processIdentChars
, false) != ATTR_OKAY
) { 
1282                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1283                                  RESOURCES_ANDROID_NAMESPACE
, "taskAffinity", 
1284                                  processIdentChars
, false) != ATTR_OKAY
) { 
1287             } else if (strcmp16(block
.getElementName(&len
), provider16
.string()) == 0) { 
1288                 if (validateAttr(manifestPath
, finalResTable
, block
, RESOURCES_ANDROID_NAMESPACE
, 
1289                                  "name", classIdentChars
, true) != ATTR_OKAY
) { 
1292                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1293                                  RESOURCES_ANDROID_NAMESPACE
, "authorities", 
1294                                  authoritiesIdentChars
, true) != ATTR_OKAY
) { 
1297                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1298                                  RESOURCES_ANDROID_NAMESPACE
, "permission", 
1299                                  packageIdentChars
, false) != ATTR_OKAY
) { 
1302                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1303                                  RESOURCES_ANDROID_NAMESPACE
, "process", 
1304                                  processIdentChars
, false) != ATTR_OKAY
) { 
1307             } else if (strcmp16(block
.getElementName(&len
), service16
.string()) == 0 
1308                        || strcmp16(block
.getElementName(&len
), receiver16
.string()) == 0 
1309                        || strcmp16(block
.getElementName(&len
), activity16
.string()) == 0) { 
1310                 if (validateAttr(manifestPath
, finalResTable
, block
, RESOURCES_ANDROID_NAMESPACE
, 
1311                                  "name", classIdentChars
, true) != ATTR_OKAY
) { 
1314                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1315                                  RESOURCES_ANDROID_NAMESPACE
, "permission", 
1316                                  packageIdentChars
, false) != ATTR_OKAY
) { 
1319                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1320                                  RESOURCES_ANDROID_NAMESPACE
, "process", 
1321                                  processIdentChars
, false) != ATTR_OKAY
) { 
1324                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1325                                  RESOURCES_ANDROID_NAMESPACE
, "taskAffinity", 
1326                                  processIdentChars
, false) != ATTR_OKAY
) { 
1329             } else if (strcmp16(block
.getElementName(&len
), action16
.string()) == 0 
1330                        || strcmp16(block
.getElementName(&len
), category16
.string()) == 0) { 
1331                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1332                                  RESOURCES_ANDROID_NAMESPACE
, "name", 
1333                                  packageIdentChars
, true) != ATTR_OKAY
) { 
1336             } else if (strcmp16(block
.getElementName(&len
), data16
.string()) == 0) { 
1337                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1338                                  RESOURCES_ANDROID_NAMESPACE
, "mimeType", 
1339                                  typeIdentChars
, true) != ATTR_OKAY
) { 
1342                 if (validateAttr(manifestPath
, finalResTable
, block
, 
1343                                  RESOURCES_ANDROID_NAMESPACE
, "scheme", 
1344                                  schemeIdentChars
, true) != ATTR_OKAY
) { 
1351     if (resFile 
!= NULL
) { 
1352         // These resources are now considered to be a part of the included 
1353         // resources, for others to reference. 
1354         err 
= assets
->addIncludedResources(resFile
); 
1355         if (err 
< NO_ERROR
) { 
1356             fprintf(stderr
, "ERROR: Unable to parse generated resources, aborting.\n"); 
1364 static const char* getIndentSpace(int indent
) 
1366 static const char whitespace
[] = 
1369     return whitespace 
+ sizeof(whitespace
) - 1 - indent
*4; 
1372 static status_t 
fixupSymbol(String16
* inoutSymbol
) 
1374     inoutSymbol
->replaceAll('.', '_'); 
1375     inoutSymbol
->replaceAll(':', '_'); 
1379 static String16 
getAttributeComment(const sp
<AaptAssets
>& assets
, 
1380                                     const String8
& name
, 
1381                                     String16
* outTypeComment 
= NULL
) 
1383     sp
<AaptSymbols
> asym 
= assets
->getSymbolsFor(String8("R")); 
1385         //printf("Got R symbols!\n"); 
1386         asym 
= asym
->getNestedSymbols().valueFor(String8("attr")); 
1388             //printf("Got attrs symbols! comment %s=%s\n", 
1389             //     name.string(), String8(asym->getComment(name)).string()); 
1390             if (outTypeComment 
!= NULL
) { 
1391                 *outTypeComment 
= asym
->getTypeComment(name
); 
1393             return asym
->getComment(name
); 
1399 static status_t 
writeLayoutClasses( 
1400     FILE* fp
, const sp
<AaptAssets
>& assets
, 
1401     const sp
<AaptSymbols
>& symbols
, int indent
, bool includePrivate
) 
1403     const char* indentStr 
= getIndentSpace(indent
); 
1404     if (!includePrivate
) { 
1405         fprintf(fp
, "%s/** @doconly */\n", indentStr
); 
1407     fprintf(fp
, "%spublic static final class styleable {\n", indentStr
); 
1410     String16 
attr16("attr"); 
1411     String16 
package16(assets
->getPackage()); 
1413     indentStr 
= getIndentSpace(indent
); 
1414     bool hasErrors 
= false; 
1417     size_t N 
= symbols
->getNestedSymbols().size(); 
1418     for (i
=0; i
<N
; i
++) { 
1419         sp
<AaptSymbols
> nsymbols 
= symbols
->getNestedSymbols().valueAt(i
); 
1420         String16 
nclassName16(symbols
->getNestedSymbols().keyAt(i
)); 
1421         String8 
realClassName(nclassName16
); 
1422         if (fixupSymbol(&nclassName16
) != NO_ERROR
) { 
1425         String8 
nclassName(nclassName16
); 
1427         SortedVector
<uint32_t> idents
; 
1428         Vector
<uint32_t> origOrder
; 
1429         Vector
<bool> publicFlags
; 
1432         size_t NA 
= nsymbols
->getSymbols().size(); 
1433         for (a
=0; a
<NA
; a
++) { 
1434             const AaptSymbolEntry
& sym(nsymbols
->getSymbols().valueAt(a
)); 
1435             int32_t code 
= sym
.typeCode 
== AaptSymbolEntry::TYPE_INT32
 
1437             bool isPublic 
= true; 
1439                 String16 
name16(sym
.name
); 
1440                 uint32_t typeSpecFlags
; 
1441                 code 
= assets
->getIncludedResources().identifierForName( 
1442                     name16
.string(), name16
.size(), 
1443                     attr16
.string(), attr16
.size(), 
1444                     package16
.string(), package16
.size(), &typeSpecFlags
); 
1446                     fprintf(stderr
, "ERROR: In <declare-styleable> %s, unable to find attribute %s\n", 
1447                             nclassName
.string(), sym
.name
.string()); 
1450                 isPublic 
= (typeSpecFlags
&ResTable_typeSpec::SPEC_PUBLIC
) != 0; 
1453             origOrder
.add(code
); 
1454             publicFlags
.add(isPublic
); 
1459         bool deprecated 
= false; 
1461         String16 comment 
= symbols
->getComment(realClassName
); 
1462         fprintf(fp
, "%s/** ", indentStr
); 
1463         if (comment
.size() > 0) { 
1464             String8 
cmt(comment
); 
1465             fprintf(fp
, "%s\n", cmt
.string()); 
1466             if (strstr(cmt
.string(), "@deprecated") != NULL
) { 
1470             fprintf(fp
, "Attributes that can be used with a %s.\n", nclassName
.string()); 
1472         bool hasTable 
= false; 
1473         for (a
=0; a
<NA
; a
++) { 
1474             ssize_t pos 
= idents
.indexOf(origOrder
.itemAt(a
)); 
1479                             "%s   <p>Includes the following attributes:</p>\n" 
1481                             "%s   <colgroup align=\"left\" />\n" 
1482                             "%s   <colgroup align=\"left\" />\n" 
1483                             "%s   <tr><th>Attribute</th><th>Description</th></tr>\n", 
1490                 const AaptSymbolEntry
& sym 
= nsymbols
->getSymbols().valueAt(a
); 
1491                 if (!publicFlags
.itemAt(a
) && !includePrivate
) { 
1494                 String8 
name8(sym
.name
); 
1495                 String16 
comment(sym
.comment
); 
1496                 if (comment
.size() <= 0) { 
1497                     comment 
= getAttributeComment(assets
, name8
); 
1499                 if (comment
.size() > 0) { 
1500                     const char16_t* p 
= comment
.string(); 
1501                     while (*p 
!= 0 && *p 
!= '.') { 
1503                             while (*p 
!= 0 && *p 
!= '}') { 
1513                     comment 
= String16(comment
.string(), p
-comment
.string()); 
1515                 String16 
name(name8
); 
1517                 fprintf(fp
, "%s   <tr><td><code>{@link #%s_%s %s:%s}</code></td><td>%s</td></tr>\n", 
1518                         indentStr
, nclassName
.string(), 
1519                         String8(name
).string(), 
1520                         assets
->getPackage().string(), 
1521                         String8(name
).string(), 
1522                         String8(comment
).string()); 
1526             fprintf(fp
, "%s   </table>\n", indentStr
); 
1528         for (a
=0; a
<NA
; a
++) { 
1529             ssize_t pos 
= idents
.indexOf(origOrder
.itemAt(a
)); 
1531                 const AaptSymbolEntry
& sym 
= nsymbols
->getSymbols().valueAt(a
); 
1532                 if (!publicFlags
.itemAt(a
) && !includePrivate
) { 
1535                 String16 
name(sym
.name
); 
1537                 fprintf(fp
, "%s   @see #%s_%s\n", 
1538                         indentStr
, nclassName
.string(), 
1539                         String8(name
).string()); 
1542         fprintf(fp
, "%s */\n", getIndentSpace(indent
)); 
1545             fprintf(fp
, "%s@Deprecated\n", indentStr
); 
1549                 "%spublic static final int[] %s = {\n" 
1551                 indentStr
, nclassName
.string(), 
1552                 getIndentSpace(indent
+1)); 
1554         for (a
=0; a
<NA
; a
++) { 
1557                     fprintf(fp
, ",\n%s", getIndentSpace(indent
+1)); 
1562             fprintf(fp
, "0x%08x", idents
[a
]); 
1565         fprintf(fp
, "\n%s};\n", indentStr
); 
1567         for (a
=0; a
<NA
; a
++) { 
1568             ssize_t pos 
= idents
.indexOf(origOrder
.itemAt(a
)); 
1570                 const AaptSymbolEntry
& sym 
= nsymbols
->getSymbols().valueAt(a
); 
1571                 if (!publicFlags
.itemAt(a
) && !includePrivate
) { 
1574                 String8 
name8(sym
.name
); 
1575                 String16 
comment(sym
.comment
); 
1576                 String16 typeComment
; 
1577                 if (comment
.size() <= 0) { 
1578                     comment 
= getAttributeComment(assets
, name8
, &typeComment
); 
1580                     getAttributeComment(assets
, name8
, &typeComment
); 
1582                 String16 
name(name8
); 
1583                 if (fixupSymbol(&name
) != NO_ERROR
) { 
1587                 uint32_t typeSpecFlags 
= 0; 
1588                 String16 
name16(sym
.name
); 
1589                 assets
->getIncludedResources().identifierForName( 
1590                     name16
.string(), name16
.size(), 
1591                     attr16
.string(), attr16
.size(), 
1592                     package16
.string(), package16
.size(), &typeSpecFlags
); 
1593                 //printf("%s:%s/%s: 0x%08x\n", String8(package16).string(), 
1594                 //    String8(attr16).string(), String8(name16).string(), typeSpecFlags); 
1595                 const bool pub 
= (typeSpecFlags
&ResTable_typeSpec::SPEC_PUBLIC
) != 0; 
1597                 bool deprecated 
= false; 
1599                 fprintf(fp
, "%s/**\n", indentStr
); 
1600                 if (comment
.size() > 0) { 
1601                     String8 
cmt(comment
); 
1602                     fprintf(fp
, "%s  <p>\n%s  @attr description\n", indentStr
, indentStr
); 
1603                     fprintf(fp
, "%s  %s\n", indentStr
, cmt
.string()); 
1604                     if (strstr(cmt
.string(), "@deprecated") != NULL
) { 
1609                             "%s  <p>This symbol is the offset where the {@link %s.R.attr#%s}\n" 
1610                             "%s  attribute's value can be found in the {@link #%s} array.\n", 
1612                             pub 
? assets
->getPackage().string() 
1613                                 : assets
->getSymbolsPrivatePackage().string(), 
1614                             String8(name
).string(), 
1615                             indentStr
, nclassName
.string()); 
1617                 if (typeComment
.size() > 0) { 
1618                     String8 
cmt(typeComment
); 
1619                     fprintf(fp
, "\n\n%s  %s\n", indentStr
, cmt
.string()); 
1620                     if (strstr(cmt
.string(), "@deprecated") != NULL
) { 
1624                 if (comment
.size() > 0) { 
1627                                 "%s  <p>This corresponds to the global attribute" 
1628                                 "%s  resource symbol {@link %s.R.attr#%s}.\n", 
1629                                 indentStr
, indentStr
, 
1630                                 assets
->getPackage().string(), 
1631                                 String8(name
).string()); 
1634                                 "%s  <p>This is a private symbol.\n", indentStr
); 
1637                 fprintf(fp
, "%s  @attr name %s:%s\n", indentStr
, 
1638                         "android", String8(name
).string()); 
1639                 fprintf(fp
, "%s*/\n", indentStr
); 
1641                     fprintf(fp
, "%s@Deprecated\n", indentStr
); 
1644                         "%spublic static final int %s_%s = %d;\n", 
1645                         indentStr
, nclassName
.string(), 
1646                         String8(name
).string(), (int)pos
); 
1652     fprintf(fp
, "%s};\n", getIndentSpace(indent
)); 
1653     return hasErrors 
? UNKNOWN_ERROR 
: NO_ERROR
; 
1656 static status_t 
writeSymbolClass( 
1657     FILE* fp
, const sp
<AaptAssets
>& assets
, bool includePrivate
, 
1658     const sp
<AaptSymbols
>& symbols
, const String8
& className
, int indent
) 
1660     fprintf(fp
, "%spublic %sfinal class %s {\n", 
1661             getIndentSpace(indent
), 
1662             indent 
!= 0 ? "static " : "", className
.string()); 
1666     status_t err 
= NO_ERROR
; 
1668     size_t N 
= symbols
->getSymbols().size(); 
1669     for (i
=0; i
<N
; i
++) { 
1670         const AaptSymbolEntry
& sym 
= symbols
->getSymbols().valueAt(i
); 
1671         if (sym
.typeCode 
!= AaptSymbolEntry::TYPE_INT32
) { 
1674         if (!includePrivate 
&& !sym
.isPublic
) { 
1677         String16 
name(sym
.name
); 
1678         String8 
realName(name
); 
1679         if (fixupSymbol(&name
) != NO_ERROR
) { 
1680             return UNKNOWN_ERROR
; 
1682         String16 
comment(sym
.comment
); 
1683         bool haveComment 
= false; 
1684         bool deprecated 
= false; 
1685         if (comment
.size() > 0) { 
1687             String8 
cmt(comment
); 
1690                     getIndentSpace(indent
), cmt
.string()); 
1691             if (strstr(cmt
.string(), "@deprecated") != NULL
) { 
1694         } else if (sym
.isPublic 
&& !includePrivate
) { 
1695             sym
.sourcePos
.warning("No comment for public symbol %s:%s/%s", 
1696                 assets
->getPackage().string(), className
.string(), 
1697                 String8(sym
.name
).string()); 
1699         String16 
typeComment(sym
.typeComment
); 
1700         if (typeComment
.size() > 0) { 
1701             String8 
cmt(typeComment
); 
1705                         "%s/** %s\n", getIndentSpace(indent
), cmt
.string()); 
1708                         "%s %s\n", getIndentSpace(indent
), cmt
.string()); 
1710             if (strstr(cmt
.string(), "@deprecated") != NULL
) { 
1715             fprintf(fp
,"%s */\n", getIndentSpace(indent
)); 
1718             fprintf(fp
, "%s@Deprecated\n", getIndentSpace(indent
)); 
1720         fprintf(fp
, "%spublic static final int %s=0x%08x;\n", 
1721                 getIndentSpace(indent
), 
1722                 String8(name
).string(), (int)sym
.int32Val
); 
1725     for (i
=0; i
<N
; i
++) { 
1726         const AaptSymbolEntry
& sym 
= symbols
->getSymbols().valueAt(i
); 
1727         if (sym
.typeCode 
!= AaptSymbolEntry::TYPE_STRING
) { 
1730         if (!includePrivate 
&& !sym
.isPublic
) { 
1733         String16 
name(sym
.name
); 
1734         if (fixupSymbol(&name
) != NO_ERROR
) { 
1735             return UNKNOWN_ERROR
; 
1737         String16 
comment(sym
.comment
); 
1738         bool deprecated 
= false; 
1739         if (comment
.size() > 0) { 
1740             String8 
cmt(comment
); 
1744                     getIndentSpace(indent
), cmt
.string(), 
1745                     getIndentSpace(indent
)); 
1746             if (strstr(cmt
.string(), "@deprecated") != NULL
) { 
1749         } else if (sym
.isPublic 
&& !includePrivate
) { 
1750             sym
.sourcePos
.warning("No comment for public symbol %s:%s/%s", 
1751                 assets
->getPackage().string(), className
.string(), 
1752                 String8(sym
.name
).string()); 
1755             fprintf(fp
, "%s@Deprecated\n", getIndentSpace(indent
)); 
1757         fprintf(fp
, "%spublic static final String %s=\"%s\";\n", 
1758                 getIndentSpace(indent
), 
1759                 String8(name
).string(), sym
.stringVal
.string()); 
1762     sp
<AaptSymbols
> styleableSymbols
; 
1764     N 
= symbols
->getNestedSymbols().size(); 
1765     for (i
=0; i
<N
; i
++) { 
1766         sp
<AaptSymbols
> nsymbols 
= symbols
->getNestedSymbols().valueAt(i
); 
1767         String8 
nclassName(symbols
->getNestedSymbols().keyAt(i
)); 
1768         if (nclassName 
== "styleable") { 
1769             styleableSymbols 
= nsymbols
; 
1771             err 
= writeSymbolClass(fp
, assets
, includePrivate
, nsymbols
, nclassName
, indent
); 
1773         if (err 
!= NO_ERROR
) { 
1778     if (styleableSymbols 
!= NULL
) { 
1779         err 
= writeLayoutClasses(fp
, assets
, styleableSymbols
, indent
, includePrivate
); 
1780         if (err 
!= NO_ERROR
) { 
1786     fprintf(fp
, "%s}\n", getIndentSpace(indent
)); 
1790 status_t 
writeResourceSymbols(Bundle
* bundle
, const sp
<AaptAssets
>& assets
, 
1791     const String8
& package
, bool includePrivate
) 
1793     if (!bundle
->getRClassDir()) { 
1797     const size_t N 
= assets
->getSymbols().size(); 
1798     for (size_t i
=0; i
<N
; i
++) { 
1799         sp
<AaptSymbols
> symbols 
= assets
->getSymbols().valueAt(i
); 
1800         String8 
className(assets
->getSymbols().keyAt(i
)); 
1801         String8 
dest(bundle
->getRClassDir()); 
1802         if (bundle
->getMakePackageDirs()) { 
1803             String8 
pkg(package
); 
1804             const char* last 
= pkg
.string(); 
1805             const char* s 
= last
-1; 
1808                 if (s 
> last 
&& (*s 
== '.' || *s 
== 0)) { 
1809                     String8 
part(last
, s
-last
); 
1810                     dest
.appendPath(part
); 
1811 #ifdef HAVE_MS_C_RUNTIME 
1812                     _mkdir(dest
.string()); 
1814                     mkdir(dest
.string(), S_IRUSR
|S_IWUSR
|S_IXUSR
|S_IRGRP
|S_IXGRP
); 
1820         dest
.appendPath(className
); 
1821         dest
.append(".java"); 
1822         FILE* fp 
= fopen(dest
.string(), "w+"); 
1824             fprintf(stderr
, "ERROR: Unable to open class file %s: %s\n", 
1825                     dest
.string(), strerror(errno
)); 
1826             return UNKNOWN_ERROR
; 
1828         if (bundle
->getVerbose()) { 
1829             printf("  Writing symbols for class %s.\n", className
.string()); 
1833         "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n" 
1835         " * This class was automatically generated by the\n" 
1836         " * aapt tool from the resource data it found.  It\n" 
1837         " * should not be modified by hand.\n" 
1840         "package %s;\n\n", package
.string()); 
1842         status_t err 
= writeSymbolClass(fp
, assets
, includePrivate
, symbols
, className
, 0); 
1843         if (err 
!= NO_ERROR
) { 
1854 class ProguardKeepSet
 
1857     // { rule --> { file locations } } 
1858     KeyedVector
<String8
, SortedVector
<String8
> > rules
; 
1860     void add(const String8
& rule
, const String8
& where
); 
1863 void ProguardKeepSet::add(const String8
& rule
, const String8
& where
) 
1865     ssize_t index 
= rules
.indexOfKey(rule
); 
1867         index 
= rules
.add(rule
, SortedVector
<String8
>()); 
1869     rules
.editValueAt(index
).add(where
); 
1873 addProguardKeepRule(ProguardKeepSet
* keep
, const String8
& inClassName
, 
1874         const char* pkg
, const String8
& srcName
, int line
) 
1876     String8 
className(inClassName
); 
1878         // asdf     --> package.asdf 
1879         // .asdf  .a.b  --> package.asdf package.a.b 
1880         // asdf.adsf --> asdf.asdf 
1881         const char* p 
= className
.string(); 
1882         const char* q 
= strchr(p
, '.'); 
1885             className
.append(inClassName
); 
1886         } else if (q 
== NULL
) { 
1888             className
.append("."); 
1889             className
.append(inClassName
); 
1893     String8 
rule("-keep class "); 
1895     rule 
+= " { <init>(...); }"; 
1897     String8 
location("view "); 
1898     location 
+= srcName
; 
1900     sprintf(lineno
, ":%d", line
); 
1903     keep
->add(rule
, location
); 
1907 writeProguardForAndroidManifest(ProguardKeepSet
* keep
, const sp
<AaptAssets
>& assets
) 
1912     ResXMLTree::event_code_t code
; 
1914     bool inApplication 
= false; 
1916     sp
<AaptGroup
> assGroup
; 
1917     sp
<AaptFile
> assFile
; 
1920     // First, look for a package file to parse.  This is required to 
1921     // be able to generate the resource information. 
1922     assGroup 
= assets
->getFiles().valueFor(String8("AndroidManifest.xml")); 
1923     if (assGroup 
== NULL
) { 
1924         fprintf(stderr
, "ERROR: No AndroidManifest.xml file found.\n"); 
1928     if (assGroup
->getFiles().size() != 1) { 
1929         fprintf(stderr
, "warning: Multiple AndroidManifest.xml files found, using %s\n", 
1930                 assGroup
->getFiles().valueAt(0)->getPrintableSource().string()); 
1933     assFile 
= assGroup
->getFiles().valueAt(0); 
1935     err 
= parseXMLResource(assFile
, &tree
); 
1936     if (err 
!= NO_ERROR
) { 
1942     while ((code
=tree
.next()) != ResXMLTree::END_DOCUMENT 
&& code 
!= ResXMLTree::BAD_DOCUMENT
) { 
1943         if (code 
== ResXMLTree::END_TAG
) { 
1944             if (/* name == "Application" && */ depth 
== 2) { 
1945                 inApplication 
= false; 
1950         if (code 
!= ResXMLTree::START_TAG
) { 
1954         String8 
tag(tree
.getElementName(&len
)); 
1955         // printf("Depth %d tag %s\n", depth, tag.string()); 
1956         bool keepTag 
= false; 
1958             if (tag 
!= "manifest") { 
1959                 fprintf(stderr
, "ERROR: manifest does not start with <manifest> tag\n"); 
1962             pkg 
= getAttribute(tree
, NULL
, "package", NULL
); 
1963         } else if (depth 
== 2) { 
1964             if (tag 
== "application") { 
1965                 inApplication 
= true; 
1968                 String8 agent 
= getAttribute(tree
, "http://schemas.android.com/apk/res/android", 
1969                         "backupAgent", &error
); 
1970                 if (agent
.length() > 0) { 
1971                     addProguardKeepRule(keep
, agent
, pkg
.string(), 
1972                             assFile
->getPrintableSource(), tree
.getLineNumber()); 
1974             } else if (tag 
== "instrumentation") { 
1978         if (!keepTag 
&& inApplication 
&& depth 
== 3) { 
1979             if (tag 
== "activity" || tag 
== "service" || tag 
== "receiver" || tag 
== "provider") { 
1984             String8 name 
= getAttribute(tree
, "http://schemas.android.com/apk/res/android", 
1987                 fprintf(stderr
, "ERROR: %s\n", error
.string()); 
1990             if (name
.length() > 0) { 
1991                 addProguardKeepRule(keep
, name
, pkg
.string(), 
1992                         assFile
->getPrintableSource(), tree
.getLineNumber()); 
2000 struct NamespaceAttributePair 
{ 
2004     NamespaceAttributePair(const char* n
, const char* a
) : ns(n
), attr(a
) {} 
2005     NamespaceAttributePair() : ns(NULL
), attr(NULL
) {} 
2009 writeProguardForXml(ProguardKeepSet
* keep
, const sp
<AaptFile
>& layoutFile
, 
2010         const char* startTag
, const KeyedVector
<String8
, NamespaceAttributePair
>* tagAttrPairs
) 
2015     ResXMLTree::event_code_t code
; 
2017     err 
= parseXMLResource(layoutFile
, &tree
); 
2018     if (err 
!= NO_ERROR
) { 
2024     if (startTag 
!= NULL
) { 
2025         bool haveStart 
= false; 
2026         while ((code
=tree
.next()) != ResXMLTree::END_DOCUMENT 
&& code 
!= ResXMLTree::BAD_DOCUMENT
) { 
2027             if (code 
!= ResXMLTree::START_TAG
) { 
2030             String8 
tag(tree
.getElementName(&len
)); 
2031             if (tag 
== startTag
) { 
2041     while ((code
=tree
.next()) != ResXMLTree::END_DOCUMENT 
&& code 
!= ResXMLTree::BAD_DOCUMENT
) { 
2042         if (code 
!= ResXMLTree::START_TAG
) { 
2045         String8 
tag(tree
.getElementName(&len
)); 
2047         // If there is no '.', we'll assume that it's one of the built in names. 
2048         if (strchr(tag
.string(), '.')) { 
2049             addProguardKeepRule(keep
, tag
, NULL
, 
2050                     layoutFile
->getPrintableSource(), tree
.getLineNumber()); 
2051         } else if (tagAttrPairs 
!= NULL
) { 
2052             ssize_t tagIndex 
= tagAttrPairs
->indexOfKey(tag
); 
2053             if (tagIndex 
>= 0) { 
2054                 const NamespaceAttributePair
& nsAttr 
= tagAttrPairs
->valueAt(tagIndex
); 
2055                 ssize_t attrIndex 
= tree
.indexOfAttribute(nsAttr
.ns
, nsAttr
.attr
); 
2056                 if (attrIndex 
< 0) { 
2057                     // fprintf(stderr, "%s:%d: <%s> does not have attribute %s:%s.\n", 
2058                     //        layoutFile->getPrintableSource().string(), tree.getLineNumber(), 
2059                     //        tag.string(), nsAttr.ns, nsAttr.attr); 
2062                     addProguardKeepRule(keep
, 
2063                                         String8(tree
.getAttributeStringValue(attrIndex
, &len
)), NULL
, 
2064                                         layoutFile
->getPrintableSource(), tree
.getLineNumber()); 
2073 static void addTagAttrPair(KeyedVector
<String8
, NamespaceAttributePair
>* dest
, 
2074         const char* tag
, const char* ns
, const char* attr
) { 
2075     dest
->add(String8(tag
), NamespaceAttributePair(ns
, attr
)); 
2079 writeProguardForLayouts(ProguardKeepSet
* keep
, const sp
<AaptAssets
>& assets
) 
2083     // tag:attribute pairs that should be checked in layout files. 
2084     KeyedVector
<String8
, NamespaceAttributePair
> kLayoutTagAttrPairs
; 
2085     addTagAttrPair(&kLayoutTagAttrPairs
, "view", NULL
, "class"); 
2086     addTagAttrPair(&kLayoutTagAttrPairs
, "fragment", NULL
, "class"); 
2087     addTagAttrPair(&kLayoutTagAttrPairs
, "fragment", RESOURCES_ANDROID_NAMESPACE
, "name"); 
2089     // tag:attribute pairs that should be checked in xml files. 
2090     KeyedVector
<String8
, NamespaceAttributePair
> kXmlTagAttrPairs
; 
2091     addTagAttrPair(&kXmlTagAttrPairs
, "PreferenceScreen", RESOURCES_ANDROID_NAMESPACE
, "fragment"); 
2092     addTagAttrPair(&kXmlTagAttrPairs
, "header", RESOURCES_ANDROID_NAMESPACE
, "fragment"); 
2094     const Vector
<sp
<AaptDir
> >& dirs 
= assets
->resDirs(); 
2095     const size_t K 
= dirs
.size(); 
2096     for (size_t k
=0; k
<K
; k
++) { 
2097         const sp
<AaptDir
>& d 
= dirs
.itemAt(k
); 
2098         const String8
& dirName 
= d
->getLeaf(); 
2099         const char* startTag 
= NULL
; 
2100         const KeyedVector
<String8
, NamespaceAttributePair
>* tagAttrPairs 
= NULL
; 
2101         if ((dirName 
== String8("layout")) || (strncmp(dirName
.string(), "layout-", 7) == 0)) { 
2102             tagAttrPairs 
= &kLayoutTagAttrPairs
; 
2103         } else if ((dirName 
== String8("xml")) || (strncmp(dirName
.string(), "xml-", 4) == 0)) { 
2104             startTag 
= "PreferenceScreen"; 
2105             tagAttrPairs 
= &kXmlTagAttrPairs
; 
2110         const KeyedVector
<String8
,sp
<AaptGroup
> > groups 
= d
->getFiles(); 
2111         const size_t N 
= groups
.size(); 
2112         for (size_t i
=0; i
<N
; i
++) { 
2113             const sp
<AaptGroup
>& group 
= groups
.valueAt(i
); 
2114             const DefaultKeyedVector
<AaptGroupEntry
, sp
<AaptFile
> >& files 
= group
->getFiles(); 
2115             const size_t M 
= files
.size(); 
2116             for (size_t j
=0; j
<M
; j
++) { 
2117                 err 
= writeProguardForXml(keep
, files
.valueAt(j
), startTag
, tagAttrPairs
); 
2128 writeProguardFile(Bundle
* bundle
, const sp
<AaptAssets
>& assets
) 
2132     if (!bundle
->getProguardFile()) { 
2136     ProguardKeepSet keep
; 
2138     err 
= writeProguardForAndroidManifest(&keep
, assets
); 
2143     err 
= writeProguardForLayouts(&keep
, assets
); 
2148     FILE* fp 
= fopen(bundle
->getProguardFile(), "w+"); 
2150         fprintf(stderr
, "ERROR: Unable to open class file %s: %s\n", 
2151                 bundle
->getProguardFile(), strerror(errno
)); 
2152         return UNKNOWN_ERROR
; 
2155     const KeyedVector
<String8
, SortedVector
<String8
> >& rules 
= keep
.rules
; 
2156     const size_t N 
= rules
.size(); 
2157     for (size_t i
=0; i
<N
; i
++) { 
2158         const SortedVector
<String8
>& locations 
= rules
.valueAt(i
); 
2159         const size_t M 
= locations
.size(); 
2160         for (size_t j
=0; j
<M
; j
++) { 
2161             fprintf(fp
, "# %s\n", locations
.itemAt(j
).string()); 
2163         fprintf(fp
, "%s\n\n", rules
.keyAt(i
).string());