]>
git.saurik.com Git - android/aapt.git/blob - Command.cpp
2 // Copyright 2006 The Android Open Source Project
4 // Android Asset Packaging Tool main entry point.
8 #include "ResourceTable.h"
11 #include <utils/Log.h>
12 #include <utils/threads.h>
13 #include <utils/List.h>
14 #include <utils/Errors.h>
19 using namespace android
;
22 * Show version info. All the cool kids do it.
24 int doVersion(Bundle
* bundle
)
26 if (bundle
->getFileSpecCount() != 0)
27 printf("(ignoring extra arguments)\n");
28 printf("Android Asset Packaging Tool, v0.2\n");
35 * Open the file read only. The call fails if the file doesn't exist.
37 * Returns NULL on failure.
39 ZipFile
* openReadOnly(const char* fileName
)
45 result
= zip
->open(fileName
, ZipFile::kOpenReadOnly
);
46 if (result
!= NO_ERROR
) {
47 if (result
== NAME_NOT_FOUND
)
48 fprintf(stderr
, "ERROR: '%s' not found\n", fileName
);
49 else if (result
== PERMISSION_DENIED
)
50 fprintf(stderr
, "ERROR: '%s' access denied\n", fileName
);
52 fprintf(stderr
, "ERROR: failed opening '%s' as Zip file\n",
62 * Open the file read-write. The file will be created if it doesn't
63 * already exist and "okayToCreate" is set.
65 * Returns NULL on failure.
67 ZipFile
* openReadWrite(const char* fileName
, bool okayToCreate
)
73 flags
= ZipFile::kOpenReadWrite
;
75 flags
|= ZipFile::kOpenCreate
;
78 result
= zip
->open(fileName
, flags
);
79 if (result
!= NO_ERROR
) {
91 * Return a short string describing the compression method.
93 const char* compressionName(int method
)
95 if (method
== ZipEntry::kCompressStored
)
97 else if (method
== ZipEntry::kCompressDeflated
)
104 * Return the percent reduction in size (0% == no compression).
106 int calcPercent(long uncompressedLen
, long compressedLen
)
108 if (!uncompressedLen
)
111 return (int) (100.0 - (compressedLen
* 100.0) / uncompressedLen
+ 0.5);
115 * Handle the "list" command, which can be a simple file dump or
118 * The verbose listing closely matches the output of the Info-ZIP "unzip"
121 int doList(Bundle
* bundle
)
125 const ZipEntry
* entry
;
126 long totalUncLen
, totalCompLen
;
127 const char* zipFileName
;
129 if (bundle
->getFileSpecCount() != 1) {
130 fprintf(stderr
, "ERROR: specify zip file name (only)\n");
133 zipFileName
= bundle
->getFileSpecEntry(0);
135 zip
= openReadOnly(zipFileName
);
141 if (bundle
->getVerbose()) {
142 printf("Archive: %s\n", zipFileName
);
144 " Length Method Size Ratio Date Time CRC-32 Name\n");
146 "-------- ------ ------- ----- ---- ---- ------ ----\n");
149 totalUncLen
= totalCompLen
= 0;
151 count
= zip
->getNumEntries();
152 for (i
= 0; i
< count
; i
++) {
153 entry
= zip
->getEntryByIndex(i
);
154 if (bundle
->getVerbose()) {
158 when
= entry
->getModWhen();
159 strftime(dateBuf
, sizeof(dateBuf
), "%m-%d-%y %H:%M",
162 printf("%8ld %-7.7s %7ld %3d%% %s %08lx %s\n",
163 (long) entry
->getUncompressedLen(),
164 compressionName(entry
->getCompressionMethod()),
165 (long) entry
->getCompressedLen(),
166 calcPercent(entry
->getUncompressedLen(),
167 entry
->getCompressedLen()),
170 entry
->getFileName());
172 printf("%s\n", entry
->getFileName());
175 totalUncLen
+= entry
->getUncompressedLen();
176 totalCompLen
+= entry
->getCompressedLen();
179 if (bundle
->getVerbose()) {
181 "-------- ------- --- -------\n");
182 printf("%8ld %7ld %2d%% %d files\n",
185 calcPercent(totalUncLen
, totalCompLen
),
186 zip
->getNumEntries());
189 if (bundle
->getAndroidList()) {
191 if (!assets
.addAssetPath(String8(zipFileName
), NULL
)) {
192 fprintf(stderr
, "ERROR: list -a failed because assets could not be loaded\n");
196 const ResTable
& res
= assets
.getResources(false);
198 printf("\nNo resource table found.\n");
200 printf("\nResource table:\n");
204 Asset
* manifestAsset
= assets
.openNonAsset("AndroidManifest.xml",
205 Asset::ACCESS_BUFFER
);
206 if (manifestAsset
== NULL
) {
207 printf("\nNo AndroidManifest.xml found.\n");
209 printf("\nAndroid manifest:\n");
211 tree
.setTo(manifestAsset
->getBuffer(true),
212 manifestAsset
->getLength());
213 printXMLBlock(&tree
);
215 delete manifestAsset
;
225 static ssize_t
indexOfAttribute(const ResXMLTree
& tree
, uint32_t attrRes
)
227 size_t N
= tree
.getAttributeCount();
228 for (size_t i
=0; i
<N
; i
++) {
229 if (tree
.getAttributeNameResID(i
) == attrRes
) {
236 static String8
getAttribute(const ResXMLTree
& tree
, const char* ns
,
237 const char* attr
, String8
* outError
)
239 ssize_t idx
= tree
.indexOfAttribute(ns
, attr
);
244 if (tree
.getAttributeValue(idx
, &value
) != NO_ERROR
) {
245 if (value
.dataType
!= Res_value::TYPE_STRING
) {
246 if (outError
!= NULL
) *outError
= "attribute is not a string value";
251 const uint16_t* str
= tree
.getAttributeStringValue(idx
, &len
);
252 return str
? String8(str
, len
) : String8();
255 static String8
getAttribute(const ResXMLTree
& tree
, uint32_t attrRes
, String8
* outError
)
257 ssize_t idx
= indexOfAttribute(tree
, attrRes
);
262 if (tree
.getAttributeValue(idx
, &value
) != NO_ERROR
) {
263 if (value
.dataType
!= Res_value::TYPE_STRING
) {
264 if (outError
!= NULL
) *outError
= "attribute is not a string value";
269 const uint16_t* str
= tree
.getAttributeStringValue(idx
, &len
);
270 return str
? String8(str
, len
) : String8();
273 static int32_t getIntegerAttribute(const ResXMLTree
& tree
, uint32_t attrRes
,
274 String8
* outError
, int32_t defValue
= -1)
276 ssize_t idx
= indexOfAttribute(tree
, attrRes
);
281 if (tree
.getAttributeValue(idx
, &value
) != NO_ERROR
) {
282 if (value
.dataType
< Res_value::TYPE_FIRST_INT
283 || value
.dataType
> Res_value::TYPE_LAST_INT
) {
284 if (outError
!= NULL
) *outError
= "attribute is not an integer value";
291 static String8
getResolvedAttribute(const ResTable
* resTable
, const ResXMLTree
& tree
,
292 uint32_t attrRes
, String8
* outError
)
294 ssize_t idx
= indexOfAttribute(tree
, attrRes
);
299 if (tree
.getAttributeValue(idx
, &value
) != NO_ERROR
) {
300 if (value
.dataType
== Res_value::TYPE_STRING
) {
302 const uint16_t* str
= tree
.getAttributeStringValue(idx
, &len
);
303 return str
? String8(str
, len
) : String8();
305 resTable
->resolveReference(&value
, 0);
306 if (value
.dataType
!= Res_value::TYPE_STRING
) {
307 if (outError
!= NULL
) *outError
= "attribute is not a string value";
312 const Res_value
* value2
= &value
;
313 const char16_t* str
= const_cast<ResTable
*>(resTable
)->valueToString(value2
, 0, NULL
, &len
);
314 return str
? String8(str
, len
) : String8();
317 // These are attribute resource constants for the platform, as found
320 NAME_ATTR
= 0x01010003,
321 VERSION_CODE_ATTR
= 0x0101021b,
322 VERSION_NAME_ATTR
= 0x0101021c,
323 LABEL_ATTR
= 0x01010001,
324 ICON_ATTR
= 0x01010002,
325 MIN_SDK_VERSION_ATTR
= 0x0101020c,
326 REQ_TOUCH_SCREEN_ATTR
= 0x01010227,
327 REQ_KEYBOARD_TYPE_ATTR
= 0x01010228,
328 REQ_HARD_KEYBOARD_ATTR
= 0x01010229,
329 REQ_NAVIGATION_ATTR
= 0x0101022a,
330 REQ_FIVE_WAY_NAV_ATTR
= 0x01010232,
331 TARGET_SDK_VERSION_ATTR
= 0x01010270,
332 TEST_ONLY_ATTR
= 0x01010272,
333 DENSITY_ATTR
= 0x0101026c,
334 SMALL_SCREEN_ATTR
= 0x01010284,
335 NORMAL_SCREEN_ATTR
= 0x01010285,
336 LARGE_SCREEN_ATTR
= 0x01010286,
339 const char *getComponentName(String8
&pkgName
, String8
&componentName
) {
340 ssize_t idx
= componentName
.find(".");
341 String8
retStr(pkgName
);
343 retStr
+= componentName
;
344 } else if (idx
< 0) {
346 retStr
+= componentName
;
348 return componentName
.string();
350 return retStr
.string();
354 * Handle the "dump" command, to extract select data from an archive.
356 int doDump(Bundle
* bundle
)
358 status_t result
= UNKNOWN_ERROR
;
361 if (bundle
->getFileSpecCount() < 1) {
362 fprintf(stderr
, "ERROR: no dump option specified\n");
366 if (bundle
->getFileSpecCount() < 2) {
367 fprintf(stderr
, "ERROR: no dump file specified\n");
371 const char* option
= bundle
->getFileSpecEntry(0);
372 const char* filename
= bundle
->getFileSpecEntry(1);
376 if (!assets
.addAssetPath(String8(filename
), &assetsCookie
)) {
377 fprintf(stderr
, "ERROR: dump failed because assets could not be loaded\n");
381 const ResTable
& res
= assets
.getResources(false);
383 fprintf(stderr
, "ERROR: dump failed because no resource table was found\n");
387 if (strcmp("resources", option
) == 0) {
388 res
.print(bundle
->getValues());
390 } else if (strcmp("xmltree", option
) == 0) {
391 if (bundle
->getFileSpecCount() < 3) {
392 fprintf(stderr
, "ERROR: no dump xmltree resource file specified\n");
396 for (int i
=2; i
<bundle
->getFileSpecCount(); i
++) {
397 const char* resname
= bundle
->getFileSpecEntry(i
);
399 asset
= assets
.openNonAsset(resname
, Asset::ACCESS_BUFFER
);
401 fprintf(stderr
, "ERROR: dump failed because resource %p found\n", resname
);
405 if (tree
.setTo(asset
->getBuffer(true),
406 asset
->getLength()) != NO_ERROR
) {
407 fprintf(stderr
, "ERROR: Resource %s is corrupt\n", resname
);
411 printXMLBlock(&tree
);
416 } else if (strcmp("xmlstrings", option
) == 0) {
417 if (bundle
->getFileSpecCount() < 3) {
418 fprintf(stderr
, "ERROR: no dump xmltree resource file specified\n");
422 for (int i
=2; i
<bundle
->getFileSpecCount(); i
++) {
423 const char* resname
= bundle
->getFileSpecEntry(i
);
425 asset
= assets
.openNonAsset(resname
, Asset::ACCESS_BUFFER
);
427 fprintf(stderr
, "ERROR: dump failed because resource %p found\n", resname
);
431 if (tree
.setTo(asset
->getBuffer(true),
432 asset
->getLength()) != NO_ERROR
) {
433 fprintf(stderr
, "ERROR: Resource %s is corrupt\n", resname
);
436 printStringPool(&tree
.getStrings());
443 asset
= assets
.openNonAsset("AndroidManifest.xml",
444 Asset::ACCESS_BUFFER
);
446 fprintf(stderr
, "ERROR: dump failed because no AndroidManifest.xml found\n");
450 if (tree
.setTo(asset
->getBuffer(true),
451 asset
->getLength()) != NO_ERROR
) {
452 fprintf(stderr
, "ERROR: AndroidManifest.xml is corrupt\n");
457 if (strcmp("permissions", option
) == 0) {
459 ResXMLTree::event_code_t code
;
461 while ((code
=tree
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
462 if (code
== ResXMLTree::END_TAG
) {
466 if (code
!= ResXMLTree::START_TAG
) {
470 String8
tag(tree
.getElementName(&len
));
471 //printf("Depth %d tag %s\n", depth, tag.string());
473 if (tag
!= "manifest") {
474 fprintf(stderr
, "ERROR: manifest does not start with <manifest> tag\n");
477 String8 pkg
= getAttribute(tree
, NULL
, "package", NULL
);
478 printf("package: %s\n", pkg
.string());
479 } else if (depth
== 2 && tag
== "permission") {
481 String8 name
= getAttribute(tree
, NAME_ATTR
, &error
);
483 fprintf(stderr
, "ERROR: %s\n", error
.string());
486 printf("permission: %s\n", name
.string());
487 } else if (depth
== 2 && tag
== "uses-permission") {
489 String8 name
= getAttribute(tree
, NAME_ATTR
, &error
);
491 fprintf(stderr
, "ERROR: %s\n", error
.string());
494 printf("uses-permission: %s\n", name
.string());
497 } else if (strcmp("badging", option
) == 0) {
499 ResXMLTree::event_code_t code
;
502 bool withinActivity
= false;
503 bool isMainActivity
= false;
504 bool isLauncherActivity
= false;
505 bool withinApplication
= false;
506 bool withinReceiver
= false;
509 int normalScreen
= 1;
512 String8 activityName
;
513 String8 activityLabel
;
514 String8 activityIcon
;
515 String8 receiverName
;
516 while ((code
=tree
.next()) != ResXMLTree::END_DOCUMENT
&& code
!= ResXMLTree::BAD_DOCUMENT
) {
517 if (code
== ResXMLTree::END_TAG
) {
521 if (code
!= ResXMLTree::START_TAG
) {
525 String8
tag(tree
.getElementName(&len
));
526 //printf("Depth %d tag %s\n", depth, tag.string());
528 if (tag
!= "manifest") {
529 fprintf(stderr
, "ERROR: manifest does not start with <manifest> tag\n");
532 pkg
= getAttribute(tree
, NULL
, "package", NULL
);
533 printf("package: name='%s' ", pkg
.string());
534 int32_t versionCode
= getIntegerAttribute(tree
, VERSION_CODE_ATTR
, &error
);
536 fprintf(stderr
, "ERROR getting 'android:versionCode' attribute: %s\n", error
.string());
539 if (versionCode
> 0) {
540 printf("versionCode='%d' ", versionCode
);
542 printf("versionCode='' ");
544 String8 versionName
= getAttribute(tree
, VERSION_NAME_ATTR
, &error
);
546 fprintf(stderr
, "ERROR getting 'android:versionName' attribute: %s\n", error
.string());
549 printf("versionName='%s'\n", versionName
.string());
550 } else if (depth
== 2) {
551 withinApplication
= false;
552 if (tag
== "application") {
553 withinApplication
= true;
554 String8 label
= getResolvedAttribute(&res
, tree
, LABEL_ATTR
, &error
);
556 fprintf(stderr
, "ERROR getting 'android:label' attribute: %s\n", error
.string());
559 printf("application: label='%s' ", label
.string());
560 String8 icon
= getResolvedAttribute(&res
, tree
, ICON_ATTR
, &error
);
562 fprintf(stderr
, "ERROR getting 'android:icon' attribute: %s\n", error
.string());
565 printf("icon='%s'\n", icon
.string());
566 int32_t testOnly
= getIntegerAttribute(tree
, TEST_ONLY_ATTR
, &error
, 0);
568 fprintf(stderr
, "ERROR getting 'android:testOnly' attribute: %s\n", error
.string());
572 printf("testOnly='%d'\n", testOnly
);
574 } else if (tag
== "uses-sdk") {
575 int32_t code
= getIntegerAttribute(tree
, MIN_SDK_VERSION_ATTR
, &error
);
578 String8 name
= getResolvedAttribute(&res
, tree
, MIN_SDK_VERSION_ATTR
, &error
);
580 fprintf(stderr
, "ERROR getting 'android:minSdkVersion' attribute: %s\n",
584 if (name
== "Donut") targetSdk
= 4;
585 printf("sdkVersion:'%s'\n", name
.string());
586 } else if (code
!= -1) {
588 printf("sdkVersion:'%d'\n", code
);
590 code
= getIntegerAttribute(tree
, TARGET_SDK_VERSION_ATTR
, &error
);
593 String8 name
= getResolvedAttribute(&res
, tree
, TARGET_SDK_VERSION_ATTR
, &error
);
595 fprintf(stderr
, "ERROR getting 'android:targetSdkVersion' attribute: %s\n",
599 if (name
== "Donut" && targetSdk
< 4) targetSdk
= 4;
600 printf("targetSdkVersion:'%s'\n", name
.string());
601 } else if (code
!= -1) {
602 if (targetSdk
< code
) {
605 printf("targetSdkVersion:'%d'\n", code
);
607 } else if (tag
== "uses-configuration") {
608 int32_t reqTouchScreen
= getIntegerAttribute(tree
,
609 REQ_TOUCH_SCREEN_ATTR
, NULL
, 0);
610 int32_t reqKeyboardType
= getIntegerAttribute(tree
,
611 REQ_KEYBOARD_TYPE_ATTR
, NULL
, 0);
612 int32_t reqHardKeyboard
= getIntegerAttribute(tree
,
613 REQ_HARD_KEYBOARD_ATTR
, NULL
, 0);
614 int32_t reqNavigation
= getIntegerAttribute(tree
,
615 REQ_NAVIGATION_ATTR
, NULL
, 0);
616 int32_t reqFiveWayNav
= getIntegerAttribute(tree
,
617 REQ_FIVE_WAY_NAV_ATTR
, NULL
, 0);
618 printf("uses-configuation:");
619 if (reqTouchScreen
!= 0) {
620 printf(" reqTouchScreen='%d'", reqTouchScreen
);
622 if (reqKeyboardType
!= 0) {
623 printf(" reqKeyboardType='%d'", reqKeyboardType
);
625 if (reqHardKeyboard
!= 0) {
626 printf(" reqHardKeyboard='%d'", reqHardKeyboard
);
628 if (reqNavigation
!= 0) {
629 printf(" reqNavigation='%d'", reqNavigation
);
631 if (reqFiveWayNav
!= 0) {
632 printf(" reqFiveWayNav='%d'", reqFiveWayNav
);
635 } else if (tag
== "supports-density") {
636 int32_t dens
= getIntegerAttribute(tree
, DENSITY_ATTR
, &error
);
638 fprintf(stderr
, "ERROR getting 'android:density' attribute: %s\n",
642 printf("supports-density:'%d'\n", dens
);
643 } else if (tag
== "supports-screens") {
644 smallScreen
= getIntegerAttribute(tree
,
645 SMALL_SCREEN_ATTR
, NULL
, 1);
646 normalScreen
= getIntegerAttribute(tree
,
647 NORMAL_SCREEN_ATTR
, NULL
, 1);
648 largeScreen
= getIntegerAttribute(tree
,
649 LARGE_SCREEN_ATTR
, NULL
, 1);
651 } else if (depth
== 3 && withinApplication
) {
652 withinActivity
= false;
653 withinReceiver
= false;
654 if(tag
== "activity") {
655 withinActivity
= true;
656 activityName
= getAttribute(tree
, NAME_ATTR
, &error
);
658 fprintf(stderr
, "ERROR getting 'android:name' attribute: %s\n", error
.string());
662 activityLabel
= getResolvedAttribute(&res
, tree
, LABEL_ATTR
, &error
);
664 fprintf(stderr
, "ERROR getting 'android:label' attribute: %s\n", error
.string());
668 activityIcon
= getResolvedAttribute(&res
, tree
, ICON_ATTR
, &error
);
670 fprintf(stderr
, "ERROR getting 'android:icon' attribute: %s\n", error
.string());
673 } else if (tag
== "uses-library") {
674 String8 libraryName
= getAttribute(tree
, NAME_ATTR
, &error
);
676 fprintf(stderr
, "ERROR getting 'android:name' attribute for uses-library: %s\n", error
.string());
679 printf("uses-library:'%s'\n", libraryName
.string());
680 } else if (tag
== "receiver") {
681 withinReceiver
= true;
682 receiverName
= getAttribute(tree
, NAME_ATTR
, &error
);
685 fprintf(stderr
, "ERROR getting 'android:name' attribute for receiver: %s\n", error
.string());
689 } else if (depth
== 5) {
690 if (withinActivity
) {
691 if (tag
== "action") {
692 //printf("LOG: action tag\n");
693 String8 action
= getAttribute(tree
, NAME_ATTR
, &error
);
695 fprintf(stderr
, "ERROR getting 'android:name' attribute: %s\n", error
.string());
698 if (action
== "android.intent.action.MAIN") {
699 isMainActivity
= true;
700 //printf("LOG: isMainActivity==true\n");
702 } else if (tag
== "category") {
703 String8 category
= getAttribute(tree
, NAME_ATTR
, &error
);
705 fprintf(stderr
, "ERROR getting 'name' attribute: %s\n", error
.string());
708 if (category
== "android.intent.category.LAUNCHER") {
709 isLauncherActivity
= true;
710 //printf("LOG: isLauncherActivity==true\n");
713 } else if (withinReceiver
) {
714 if (tag
== "action") {
715 String8 action
= getAttribute(tree
, NAME_ATTR
, &error
);
717 fprintf(stderr
, "ERROR getting 'android:name' attribute for receiver: %s\n", error
.string());
720 if (action
== "android.appwidget.action.APPWIDGET_UPDATE") {
721 const char *rName
= getComponentName(pkg
, receiverName
);
723 printf("gadget-receiver:'%s/%s'\n", pkg
.string(), rName
);
731 withinApplication
= false;
734 //if (withinActivity) printf("LOG: withinActivity==false\n");
735 withinActivity
= false;
736 withinReceiver
= false;
740 //if (isMainActivity) printf("LOG: isMainActivity==false\n");
741 //if (isLauncherActivity) printf("LOG: isLauncherActivity==false\n");
742 isMainActivity
= false;
743 isLauncherActivity
= false;
746 if (withinActivity
&& isMainActivity
&& isLauncherActivity
) {
747 printf("launchable activity:");
748 const char *aName
= getComponentName(pkg
, activityName
);
750 printf(" name='%s'", aName
);
752 printf("label='%s' icon='%s'\n",
753 activityLabel
.string(),
754 activityIcon
.string());
758 // Determine default values for any unspecified screen sizes,
759 // based on the target SDK of the package. As of 4 (donut)
760 // the screen size support was introduced, so all default to
762 if (smallScreen
> 0) {
763 smallScreen
= targetSdk
>= 4 ? -1 : 0;
765 if (normalScreen
> 0) {
768 if (largeScreen
> 0) {
769 largeScreen
= targetSdk
>= 4 ? -1 : 0;
771 printf("supports-screens:");
772 if (smallScreen
!= 0) printf(" 'small'");
773 if (normalScreen
!= 0) printf(" 'normal'");
774 if (largeScreen
!= 0) printf(" 'large'");
778 Vector
<String8
> locales
;
779 res
.getLocales(&locales
);
780 const size_t NL
= locales
.size();
781 for (size_t i
=0; i
<NL
; i
++) {
782 const char* localeStr
= locales
[i
].string();
783 if (localeStr
== NULL
|| strlen(localeStr
) == 0) {
786 printf(" '%s'", localeStr
);
790 Vector
<ResTable_config
> configs
;
791 res
.getConfigurations(&configs
);
792 SortedVector
<int> densities
;
793 const size_t NC
= configs
.size();
794 for (size_t i
=0; i
<NC
; i
++) {
795 int dens
= configs
[i
].density
;
796 if (dens
== 0) dens
= 160;
800 printf("densities:");
801 const size_t ND
= densities
.size();
802 for (size_t i
=0; i
<ND
; i
++) {
803 printf(" '%d'", densities
[i
]);
807 AssetDir
* dir
= assets
.openNonAssetDir(assetsCookie
, "lib");
809 if (dir
->getFileCount() > 0) {
810 printf("native-code:");
811 for (size_t i
=0; i
<dir
->getFileCount(); i
++) {
812 printf(" '%s'", dir
->getFileName(i
).string());
818 } else if (strcmp("configurations", option
) == 0) {
819 Vector
<ResTable_config
> configs
;
820 res
.getConfigurations(&configs
);
821 const size_t N
= configs
.size();
822 for (size_t i
=0; i
<N
; i
++) {
823 printf("%s\n", configs
[i
].toString().string());
826 fprintf(stderr
, "ERROR: unknown dump option '%s'\n", option
);
837 return (result
!= NO_ERROR
);
842 * Handle the "add" command, which wants to add files to a new or
843 * pre-existing archive.
845 int doAdd(Bundle
* bundle
)
848 status_t result
= UNKNOWN_ERROR
;
849 const char* zipFileName
;
851 if (bundle
->getUpdate()) {
852 /* avoid confusion */
853 fprintf(stderr
, "ERROR: can't use '-u' with add\n");
857 if (bundle
->getFileSpecCount() < 1) {
858 fprintf(stderr
, "ERROR: must specify zip file name\n");
861 zipFileName
= bundle
->getFileSpecEntry(0);
863 if (bundle
->getFileSpecCount() < 2) {
864 fprintf(stderr
, "NOTE: nothing to do\n");
868 zip
= openReadWrite(zipFileName
, true);
870 fprintf(stderr
, "ERROR: failed opening/creating '%s' as Zip file\n", zipFileName
);
874 for (int i
= 1; i
< bundle
->getFileSpecCount(); i
++) {
875 const char* fileName
= bundle
->getFileSpecEntry(i
);
877 if (strcasecmp(String8(fileName
).getPathExtension().string(), ".gz") == 0) {
878 printf(" '%s'... (from gzip)\n", fileName
);
879 result
= zip
->addGzip(fileName
, String8(fileName
).getBasePath().string(), NULL
);
881 printf(" '%s'...\n", fileName
);
882 result
= zip
->add(fileName
, bundle
->getCompressionMethod(), NULL
);
884 if (result
!= NO_ERROR
) {
885 fprintf(stderr
, "Unable to add '%s' to '%s'", bundle
->getFileSpecEntry(i
), zipFileName
);
886 if (result
== NAME_NOT_FOUND
)
887 fprintf(stderr
, ": file not found\n");
888 else if (result
== ALREADY_EXISTS
)
889 fprintf(stderr
, ": already exists in archive\n");
891 fprintf(stderr
, "\n");
900 return (result
!= NO_ERROR
);
905 * Delete files from an existing archive.
907 int doRemove(Bundle
* bundle
)
910 status_t result
= UNKNOWN_ERROR
;
911 const char* zipFileName
;
913 if (bundle
->getFileSpecCount() < 1) {
914 fprintf(stderr
, "ERROR: must specify zip file name\n");
917 zipFileName
= bundle
->getFileSpecEntry(0);
919 if (bundle
->getFileSpecCount() < 2) {
920 fprintf(stderr
, "NOTE: nothing to do\n");
924 zip
= openReadWrite(zipFileName
, false);
926 fprintf(stderr
, "ERROR: failed opening Zip archive '%s'\n",
931 for (int i
= 1; i
< bundle
->getFileSpecCount(); i
++) {
932 const char* fileName
= bundle
->getFileSpecEntry(i
);
935 entry
= zip
->getEntryByName(fileName
);
937 printf(" '%s' NOT FOUND\n", fileName
);
941 result
= zip
->remove(entry
);
943 if (result
!= NO_ERROR
) {
944 fprintf(stderr
, "Unable to delete '%s' from '%s'\n",
945 bundle
->getFileSpecEntry(i
), zipFileName
);
950 /* update the archive */
955 return (result
!= NO_ERROR
);
960 * Package up an asset directory and associated application files.
962 int doPackage(Bundle
* bundle
)
964 const char* outputAPKFile
;
967 sp
<AaptAssets
> assets
;
970 // -c zz_ZZ means do pseudolocalization
971 ResourceFilter filter
;
972 err
= filter
.parse(bundle
->getConfigurations());
973 if (err
!= NO_ERROR
) {
976 if (filter
.containsPseudo()) {
977 bundle
->setPseudolocalize(true);
980 N
= bundle
->getFileSpecCount();
981 if (N
< 1 && bundle
->getResourceSourceDirs().size() == 0 && bundle
->getJarFiles().size() == 0
982 && bundle
->getAndroidManifestFile() == NULL
&& bundle
->getAssetSourceDir() == NULL
) {
983 fprintf(stderr
, "ERROR: no input files\n");
987 outputAPKFile
= bundle
->getOutputAPKFile();
989 // Make sure the filenames provided exist and are of the appropriate type.
992 type
= getFileType(outputAPKFile
);
993 if (type
!= kFileTypeNonexistent
&& type
!= kFileTypeRegular
) {
995 "ERROR: output file '%s' exists but is not regular file\n",
1002 assets
= new AaptAssets();
1003 err
= assets
->slurpFromArgs(bundle
);
1008 if (bundle
->getVerbose()) {
1012 // If they asked for any files that need to be compiled, do so.
1013 if (bundle
->getResourceSourceDirs().size() || bundle
->getAndroidManifestFile()) {
1014 err
= buildResources(bundle
, assets
);
1020 // At this point we've read everything and processed everything. From here
1021 // on out it's just writing output files.
1022 if (SourcePos::hasErrors()) {
1026 // Write out R.java constants
1027 if (assets
->getPackage() == assets
->getSymbolsPrivatePackage()) {
1028 err
= writeResourceSymbols(bundle
, assets
, assets
->getPackage(), true);
1033 err
= writeResourceSymbols(bundle
, assets
, assets
->getPackage(), false);
1037 err
= writeResourceSymbols(bundle
, assets
, assets
->getSymbolsPrivatePackage(), true);
1044 if (outputAPKFile
) {
1045 err
= writeAPK(bundle
, assets
, String8(outputAPKFile
));
1046 if (err
!= NO_ERROR
) {
1047 fprintf(stderr
, "ERROR: packaging of '%s' failed\n", outputAPKFile
);
1054 if (SourcePos::hasErrors()) {
1055 SourcePos::printErrors(stderr
);