blob: 7852197ef63726503d0d8e9978a1061d0fedc94e [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001//
2// Copyright 2006 The Android Open Source Project
3//
4// Android Asset Packaging Tool main entry point.
5//
6#include "Main.h"
7#include "Bundle.h"
8#include "ResourceTable.h"
9#include "XMLNode.h"
10
Mathias Agopian3b4062e2009-05-31 19:13:00 -070011#include <utils/Log.h>
12#include <utils/threads.h>
13#include <utils/List.h>
14#include <utils/Errors.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080015
16#include <fcntl.h>
17#include <errno.h>
18
19using namespace android;
20
21/*
22 * Show version info. All the cool kids do it.
23 */
24int doVersion(Bundle* bundle)
25{
26 if (bundle->getFileSpecCount() != 0)
27 printf("(ignoring extra arguments)\n");
28 printf("Android Asset Packaging Tool, v0.2\n");
29
30 return 0;
31}
32
33
34/*
35 * Open the file read only. The call fails if the file doesn't exist.
36 *
37 * Returns NULL on failure.
38 */
39ZipFile* openReadOnly(const char* fileName)
40{
41 ZipFile* zip;
42 status_t result;
43
44 zip = new ZipFile;
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);
51 else
52 fprintf(stderr, "ERROR: failed opening '%s' as Zip file\n",
53 fileName);
54 delete zip;
55 return NULL;
56 }
57
58 return zip;
59}
60
61/*
62 * Open the file read-write. The file will be created if it doesn't
63 * already exist and "okayToCreate" is set.
64 *
65 * Returns NULL on failure.
66 */
67ZipFile* openReadWrite(const char* fileName, bool okayToCreate)
68{
69 ZipFile* zip = NULL;
70 status_t result;
71 int flags;
72
73 flags = ZipFile::kOpenReadWrite;
74 if (okayToCreate)
75 flags |= ZipFile::kOpenCreate;
76
77 zip = new ZipFile;
78 result = zip->open(fileName, flags);
79 if (result != NO_ERROR) {
80 delete zip;
81 zip = NULL;
82 goto bail;
83 }
84
85bail:
86 return zip;
87}
88
89
90/*
91 * Return a short string describing the compression method.
92 */
93const char* compressionName(int method)
94{
95 if (method == ZipEntry::kCompressStored)
96 return "Stored";
97 else if (method == ZipEntry::kCompressDeflated)
98 return "Deflated";
99 else
100 return "Unknown";
101}
102
103/*
104 * Return the percent reduction in size (0% == no compression).
105 */
106int calcPercent(long uncompressedLen, long compressedLen)
107{
108 if (!uncompressedLen)
109 return 0;
110 else
111 return (int) (100.0 - (compressedLen * 100.0) / uncompressedLen + 0.5);
112}
113
114/*
115 * Handle the "list" command, which can be a simple file dump or
116 * a verbose listing.
117 *
118 * The verbose listing closely matches the output of the Info-ZIP "unzip"
119 * command.
120 */
121int doList(Bundle* bundle)
122{
123 int result = 1;
124 ZipFile* zip = NULL;
125 const ZipEntry* entry;
126 long totalUncLen, totalCompLen;
127 const char* zipFileName;
128
129 if (bundle->getFileSpecCount() != 1) {
130 fprintf(stderr, "ERROR: specify zip file name (only)\n");
131 goto bail;
132 }
133 zipFileName = bundle->getFileSpecEntry(0);
134
135 zip = openReadOnly(zipFileName);
136 if (zip == NULL)
137 goto bail;
138
139 int count, i;
140
141 if (bundle->getVerbose()) {
142 printf("Archive: %s\n", zipFileName);
143 printf(
Kenny Rootfb2a9462010-08-25 07:36:31 -0700144 " Length Method Size Ratio Offset Date Time CRC-32 Name\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 printf(
Kenny Rootfb2a9462010-08-25 07:36:31 -0700146 "-------- ------ ------- ----- ------- ---- ---- ------ ----\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 }
148
149 totalUncLen = totalCompLen = 0;
150
151 count = zip->getNumEntries();
152 for (i = 0; i < count; i++) {
153 entry = zip->getEntryByIndex(i);
154 if (bundle->getVerbose()) {
155 char dateBuf[32];
156 time_t when;
157
158 when = entry->getModWhen();
159 strftime(dateBuf, sizeof(dateBuf), "%m-%d-%y %H:%M",
160 localtime(&when));
161
Kenny Rootfb2a9462010-08-25 07:36:31 -0700162 printf("%8ld %-7.7s %7ld %3d%% %8zd %s %08lx %s\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 (long) entry->getUncompressedLen(),
164 compressionName(entry->getCompressionMethod()),
165 (long) entry->getCompressedLen(),
166 calcPercent(entry->getUncompressedLen(),
167 entry->getCompressedLen()),
Kenny Rootfb2a9462010-08-25 07:36:31 -0700168 (size_t) entry->getLFHOffset(),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800169 dateBuf,
170 entry->getCRC32(),
171 entry->getFileName());
172 } else {
173 printf("%s\n", entry->getFileName());
174 }
175
176 totalUncLen += entry->getUncompressedLen();
177 totalCompLen += entry->getCompressedLen();
178 }
179
180 if (bundle->getVerbose()) {
181 printf(
182 "-------- ------- --- -------\n");
183 printf("%8ld %7ld %2d%% %d files\n",
184 totalUncLen,
185 totalCompLen,
186 calcPercent(totalUncLen, totalCompLen),
187 zip->getNumEntries());
188 }
189
190 if (bundle->getAndroidList()) {
191 AssetManager assets;
192 if (!assets.addAssetPath(String8(zipFileName), NULL)) {
193 fprintf(stderr, "ERROR: list -a failed because assets could not be loaded\n");
194 goto bail;
195 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700196
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 const ResTable& res = assets.getResources(false);
198 if (&res == NULL) {
199 printf("\nNo resource table found.\n");
200 } else {
Steve Blockf1ff21a2010-06-14 17:34:04 +0100201#ifndef HAVE_ANDROID_OS
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800202 printf("\nResource table:\n");
Dianne Hackborne17086b2009-06-19 15:13:28 -0700203 res.print(false);
Steve Blockf1ff21a2010-06-14 17:34:04 +0100204#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700206
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207 Asset* manifestAsset = assets.openNonAsset("AndroidManifest.xml",
208 Asset::ACCESS_BUFFER);
209 if (manifestAsset == NULL) {
210 printf("\nNo AndroidManifest.xml found.\n");
211 } else {
212 printf("\nAndroid manifest:\n");
213 ResXMLTree tree;
214 tree.setTo(manifestAsset->getBuffer(true),
215 manifestAsset->getLength());
216 printXMLBlock(&tree);
217 }
218 delete manifestAsset;
219 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700220
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800221 result = 0;
222
223bail:
224 delete zip;
225 return result;
226}
227
228static ssize_t indexOfAttribute(const ResXMLTree& tree, uint32_t attrRes)
229{
230 size_t N = tree.getAttributeCount();
231 for (size_t i=0; i<N; i++) {
232 if (tree.getAttributeNameResID(i) == attrRes) {
233 return (ssize_t)i;
234 }
235 }
236 return -1;
237}
238
Joe Onorato1553c822009-08-30 13:36:22 -0700239String8 getAttribute(const ResXMLTree& tree, const char* ns,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240 const char* attr, String8* outError)
241{
242 ssize_t idx = tree.indexOfAttribute(ns, attr);
243 if (idx < 0) {
244 return String8();
245 }
246 Res_value value;
247 if (tree.getAttributeValue(idx, &value) != NO_ERROR) {
248 if (value.dataType != Res_value::TYPE_STRING) {
249 if (outError != NULL) *outError = "attribute is not a string value";
250 return String8();
251 }
252 }
253 size_t len;
254 const uint16_t* str = tree.getAttributeStringValue(idx, &len);
255 return str ? String8(str, len) : String8();
256}
257
258static String8 getAttribute(const ResXMLTree& tree, uint32_t attrRes, String8* outError)
259{
260 ssize_t idx = indexOfAttribute(tree, attrRes);
261 if (idx < 0) {
262 return String8();
263 }
264 Res_value value;
265 if (tree.getAttributeValue(idx, &value) != NO_ERROR) {
266 if (value.dataType != Res_value::TYPE_STRING) {
267 if (outError != NULL) *outError = "attribute is not a string value";
268 return String8();
269 }
270 }
271 size_t len;
272 const uint16_t* str = tree.getAttributeStringValue(idx, &len);
273 return str ? String8(str, len) : String8();
274}
275
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700276static int32_t getIntegerAttribute(const ResXMLTree& tree, uint32_t attrRes,
277 String8* outError, int32_t defValue = -1)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278{
279 ssize_t idx = indexOfAttribute(tree, attrRes);
280 if (idx < 0) {
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700281 return defValue;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 }
283 Res_value value;
284 if (tree.getAttributeValue(idx, &value) != NO_ERROR) {
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700285 if (value.dataType < Res_value::TYPE_FIRST_INT
286 || value.dataType > Res_value::TYPE_LAST_INT) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800287 if (outError != NULL) *outError = "attribute is not an integer value";
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700288 return defValue;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 }
290 }
291 return value.data;
292}
293
Dianne Hackbornf77ae6e2011-06-16 11:11:23 -0700294static int32_t getResolvedIntegerAttribute(const ResTable* resTable, const ResXMLTree& tree,
295 uint32_t attrRes, String8* outError, int32_t defValue = -1)
296{
297 ssize_t idx = indexOfAttribute(tree, attrRes);
298 if (idx < 0) {
299 return defValue;
300 }
301 Res_value value;
302 if (tree.getAttributeValue(idx, &value) != NO_ERROR) {
303 if (value.dataType == Res_value::TYPE_REFERENCE) {
304 resTable->resolveReference(&value, 0);
305 }
306 if (value.dataType < Res_value::TYPE_FIRST_INT
307 || value.dataType > Res_value::TYPE_LAST_INT) {
308 if (outError != NULL) *outError = "attribute is not an integer value";
309 return defValue;
310 }
311 }
312 return value.data;
313}
314
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315static String8 getResolvedAttribute(const ResTable* resTable, const ResXMLTree& tree,
316 uint32_t attrRes, String8* outError)
317{
318 ssize_t idx = indexOfAttribute(tree, attrRes);
319 if (idx < 0) {
320 return String8();
321 }
322 Res_value value;
323 if (tree.getAttributeValue(idx, &value) != NO_ERROR) {
324 if (value.dataType == Res_value::TYPE_STRING) {
325 size_t len;
326 const uint16_t* str = tree.getAttributeStringValue(idx, &len);
327 return str ? String8(str, len) : String8();
328 }
329 resTable->resolveReference(&value, 0);
330 if (value.dataType != Res_value::TYPE_STRING) {
331 if (outError != NULL) *outError = "attribute is not a string value";
332 return String8();
333 }
334 }
335 size_t len;
336 const Res_value* value2 = &value;
337 const char16_t* str = const_cast<ResTable*>(resTable)->valueToString(value2, 0, NULL, &len);
338 return str ? String8(str, len) : String8();
339}
340
341// These are attribute resource constants for the platform, as found
342// in android.R.attr
343enum {
Dianne Hackbornf77ae6e2011-06-16 11:11:23 -0700344 LABEL_ATTR = 0x01010001,
345 ICON_ATTR = 0x01010002,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346 NAME_ATTR = 0x01010003,
347 VERSION_CODE_ATTR = 0x0101021b,
348 VERSION_NAME_ATTR = 0x0101021c,
Dianne Hackbornf77ae6e2011-06-16 11:11:23 -0700349 SCREEN_ORIENTATION_ATTR = 0x0101001e,
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700350 MIN_SDK_VERSION_ATTR = 0x0101020c,
Suchi Amalapurapu75c49842009-08-14 15:13:09 -0700351 MAX_SDK_VERSION_ATTR = 0x01010271,
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700352 REQ_TOUCH_SCREEN_ATTR = 0x01010227,
353 REQ_KEYBOARD_TYPE_ATTR = 0x01010228,
354 REQ_HARD_KEYBOARD_ATTR = 0x01010229,
355 REQ_NAVIGATION_ATTR = 0x0101022a,
356 REQ_FIVE_WAY_NAV_ATTR = 0x01010232,
357 TARGET_SDK_VERSION_ATTR = 0x01010270,
358 TEST_ONLY_ATTR = 0x01010272,
Dianne Hackborna0b46c92010-10-21 15:32:06 -0700359 ANY_DENSITY_ATTR = 0x0101026c,
Dianne Hackborne5276a72009-08-27 16:28:44 -0700360 GL_ES_VERSION_ATTR = 0x01010281,
Dianne Hackborn723738c2009-06-25 19:48:04 -0700361 SMALL_SCREEN_ATTR = 0x01010284,
362 NORMAL_SCREEN_ATTR = 0x01010285,
363 LARGE_SCREEN_ATTR = 0x01010286,
Dianne Hackbornf43489d2010-08-20 12:44:33 -0700364 XLARGE_SCREEN_ATTR = 0x010102bf,
Dianne Hackborne5276a72009-08-27 16:28:44 -0700365 REQUIRED_ATTR = 0x0101028e,
Dianne Hackborna0b46c92010-10-21 15:32:06 -0700366 SCREEN_SIZE_ATTR = 0x010102ca,
367 SCREEN_DENSITY_ATTR = 0x010102cb,
Dianne Hackborne289bff2011-06-13 19:33:22 -0700368 REQUIRES_SMALLEST_WIDTH_DP_ATTR = 0x01010364,
369 COMPATIBLE_WIDTH_LIMIT_DP_ATTR = 0x01010365,
370 LARGEST_WIDTH_LIMIT_DP_ATTR = 0x01010366,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800371};
372
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700373const char *getComponentName(String8 &pkgName, String8 &componentName) {
374 ssize_t idx = componentName.find(".");
375 String8 retStr(pkgName);
376 if (idx == 0) {
377 retStr += componentName;
378 } else if (idx < 0) {
379 retStr += ".";
380 retStr += componentName;
381 } else {
382 return componentName.string();
383 }
384 return retStr.string();
385}
386
Dianne Hackborna0b46c92010-10-21 15:32:06 -0700387static void printCompatibleScreens(ResXMLTree& tree) {
388 size_t len;
389 ResXMLTree::event_code_t code;
390 int depth = 0;
391 bool first = true;
392 printf("compatible-screens:");
393 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
394 if (code == ResXMLTree::END_TAG) {
395 depth--;
396 if (depth < 0) {
397 break;
398 }
399 continue;
400 }
401 if (code != ResXMLTree::START_TAG) {
402 continue;
403 }
404 depth++;
405 String8 tag(tree.getElementName(&len));
406 if (tag == "screen") {
407 int32_t screenSize = getIntegerAttribute(tree,
408 SCREEN_SIZE_ATTR, NULL, -1);
409 int32_t screenDensity = getIntegerAttribute(tree,
410 SCREEN_DENSITY_ATTR, NULL, -1);
411 if (screenSize > 0 && screenDensity > 0) {
412 if (!first) {
413 printf(",");
414 }
415 first = false;
416 printf("'%d/%d'", screenSize, screenDensity);
417 }
418 }
419 }
420 printf("\n");
421}
422
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800423/*
424 * Handle the "dump" command, to extract select data from an archive.
425 */
426int doDump(Bundle* bundle)
427{
428 status_t result = UNKNOWN_ERROR;
429 Asset* asset = NULL;
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700430
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431 if (bundle->getFileSpecCount() < 1) {
432 fprintf(stderr, "ERROR: no dump option specified\n");
433 return 1;
434 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700435
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800436 if (bundle->getFileSpecCount() < 2) {
437 fprintf(stderr, "ERROR: no dump file specified\n");
438 return 1;
439 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700440
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800441 const char* option = bundle->getFileSpecEntry(0);
442 const char* filename = bundle->getFileSpecEntry(1);
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700443
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 AssetManager assets;
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700445 void* assetsCookie;
446 if (!assets.addAssetPath(String8(filename), &assetsCookie)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800447 fprintf(stderr, "ERROR: dump failed because assets could not be loaded\n");
448 return 1;
449 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700450
Dianne Hackborne289bff2011-06-13 19:33:22 -0700451 // Make a dummy config for retrieving resources... we need to supply
452 // non-default values for some configs so that we can retrieve resources
453 // in the app that don't have a default. The most important of these is
454 // the API version because key resources like icons will have an implicit
455 // version if they are using newer config types like density.
456 ResTable_config config;
457 config.language[0] = 'e';
458 config.language[1] = 'n';
459 config.country[0] = 'U';
460 config.country[1] = 'S';
461 config.orientation = ResTable_config::ORIENTATION_PORT;
462 config.density = ResTable_config::DENSITY_MEDIUM;
463 config.sdkVersion = 10000; // Very high.
464 config.screenWidthDp = 320;
465 config.screenHeightDp = 480;
466 config.smallestScreenWidthDp = 320;
467 assets.setConfiguration(config);
468
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800469 const ResTable& res = assets.getResources(false);
470 if (&res == NULL) {
471 fprintf(stderr, "ERROR: dump failed because no resource table was found\n");
472 goto bail;
473 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700474
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800475 if (strcmp("resources", option) == 0) {
Steve Blockf1ff21a2010-06-14 17:34:04 +0100476#ifndef HAVE_ANDROID_OS
Dianne Hackborne17086b2009-06-19 15:13:28 -0700477 res.print(bundle->getValues());
Steve Blockf1ff21a2010-06-14 17:34:04 +0100478#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800479 } else if (strcmp("xmltree", option) == 0) {
480 if (bundle->getFileSpecCount() < 3) {
481 fprintf(stderr, "ERROR: no dump xmltree resource file specified\n");
482 goto bail;
483 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700484
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800485 for (int i=2; i<bundle->getFileSpecCount(); i++) {
486 const char* resname = bundle->getFileSpecEntry(i);
487 ResXMLTree tree;
488 asset = assets.openNonAsset(resname, Asset::ACCESS_BUFFER);
489 if (asset == NULL) {
Kenny Root44b283d2009-09-01 19:03:11 -0500490 fprintf(stderr, "ERROR: dump failed because resource %s found\n", resname);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800491 goto bail;
492 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700493
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 if (tree.setTo(asset->getBuffer(true),
495 asset->getLength()) != NO_ERROR) {
496 fprintf(stderr, "ERROR: Resource %s is corrupt\n", resname);
497 goto bail;
498 }
499 tree.restart();
500 printXMLBlock(&tree);
Kenny Root19138462009-12-04 09:38:48 -0800501 tree.uninit();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800502 delete asset;
503 asset = NULL;
504 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700505
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800506 } else if (strcmp("xmlstrings", option) == 0) {
507 if (bundle->getFileSpecCount() < 3) {
508 fprintf(stderr, "ERROR: no dump xmltree resource file specified\n");
509 goto bail;
510 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700511
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800512 for (int i=2; i<bundle->getFileSpecCount(); i++) {
513 const char* resname = bundle->getFileSpecEntry(i);
514 ResXMLTree tree;
515 asset = assets.openNonAsset(resname, Asset::ACCESS_BUFFER);
516 if (asset == NULL) {
Kenny Root44b283d2009-09-01 19:03:11 -0500517 fprintf(stderr, "ERROR: dump failed because resource %s found\n", resname);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800518 goto bail;
519 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700520
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800521 if (tree.setTo(asset->getBuffer(true),
522 asset->getLength()) != NO_ERROR) {
523 fprintf(stderr, "ERROR: Resource %s is corrupt\n", resname);
524 goto bail;
525 }
526 printStringPool(&tree.getStrings());
527 delete asset;
528 asset = NULL;
529 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700530
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800531 } else {
532 ResXMLTree tree;
533 asset = assets.openNonAsset("AndroidManifest.xml",
534 Asset::ACCESS_BUFFER);
535 if (asset == NULL) {
536 fprintf(stderr, "ERROR: dump failed because no AndroidManifest.xml found\n");
537 goto bail;
538 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700539
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800540 if (tree.setTo(asset->getBuffer(true),
541 asset->getLength()) != NO_ERROR) {
542 fprintf(stderr, "ERROR: AndroidManifest.xml is corrupt\n");
543 goto bail;
544 }
545 tree.restart();
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700546
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800547 if (strcmp("permissions", option) == 0) {
548 size_t len;
549 ResXMLTree::event_code_t code;
550 int depth = 0;
551 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
552 if (code == ResXMLTree::END_TAG) {
553 depth--;
554 continue;
555 }
556 if (code != ResXMLTree::START_TAG) {
557 continue;
558 }
559 depth++;
560 String8 tag(tree.getElementName(&len));
561 //printf("Depth %d tag %s\n", depth, tag.string());
562 if (depth == 1) {
563 if (tag != "manifest") {
564 fprintf(stderr, "ERROR: manifest does not start with <manifest> tag\n");
565 goto bail;
566 }
567 String8 pkg = getAttribute(tree, NULL, "package", NULL);
568 printf("package: %s\n", pkg.string());
569 } else if (depth == 2 && tag == "permission") {
570 String8 error;
571 String8 name = getAttribute(tree, NAME_ATTR, &error);
572 if (error != "") {
573 fprintf(stderr, "ERROR: %s\n", error.string());
574 goto bail;
575 }
576 printf("permission: %s\n", name.string());
577 } else if (depth == 2 && tag == "uses-permission") {
578 String8 error;
579 String8 name = getAttribute(tree, NAME_ATTR, &error);
580 if (error != "") {
581 fprintf(stderr, "ERROR: %s\n", error.string());
582 goto bail;
583 }
584 printf("uses-permission: %s\n", name.string());
585 }
586 }
587 } else if (strcmp("badging", option) == 0) {
Dianne Hackborne289bff2011-06-13 19:33:22 -0700588 Vector<String8> locales;
589 res.getLocales(&locales);
590
591 Vector<ResTable_config> configs;
592 res.getConfigurations(&configs);
593 SortedVector<int> densities;
594 const size_t NC = configs.size();
595 for (size_t i=0; i<NC; i++) {
596 int dens = configs[i].density;
597 if (dens == 0) dens = 160;
598 densities.add(dens);
599 }
600
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800601 size_t len;
602 ResXMLTree::event_code_t code;
603 int depth = 0;
604 String8 error;
605 bool withinActivity = false;
606 bool isMainActivity = false;
607 bool isLauncherActivity = false;
Suchi Amalapurapu1b125982009-08-18 01:42:27 -0700608 bool isSearchable = false;
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700609 bool withinApplication = false;
610 bool withinReceiver = false;
Suchi Amalapurapu1b125982009-08-18 01:42:27 -0700611 bool withinService = false;
612 bool withinIntentFilter = false;
613 bool hasMainActivity = false;
614 bool hasOtherActivities = false;
615 bool hasOtherReceivers = false;
616 bool hasOtherServices = false;
617 bool hasWallpaperService = false;
618 bool hasImeService = false;
619 bool hasWidgetReceivers = false;
620 bool hasIntentFilter = false;
621 bool actMainActivity = false;
622 bool actWidgetReceivers = false;
623 bool actImeService = false;
624 bool actWallpaperService = false;
Dan Morrill89d97c12010-05-03 16:13:14 -0700625
626 // This next group of variables is used to implement a group of
627 // backward-compatibility heuristics necessitated by the addition of
628 // some new uses-feature constants in 2.1 and 2.2. In most cases, the
629 // heuristic is "if an app requests a permission but doesn't explicitly
630 // request the corresponding <uses-feature>, presume it's there anyway".
631 bool specCameraFeature = false; // camera-related
632 bool specCameraAutofocusFeature = false;
633 bool reqCameraAutofocusFeature = false;
634 bool reqCameraFlashFeature = false;
Dianne Hackborne5276a72009-08-27 16:28:44 -0700635 bool hasCameraPermission = false;
Dan Morrill89d97c12010-05-03 16:13:14 -0700636 bool specLocationFeature = false; // location-related
637 bool specNetworkLocFeature = false;
638 bool reqNetworkLocFeature = false;
Dianne Hackbornef05e072010-03-01 17:43:39 -0800639 bool specGpsFeature = false;
Dan Morrill89d97c12010-05-03 16:13:14 -0700640 bool reqGpsFeature = false;
641 bool hasMockLocPermission = false;
642 bool hasCoarseLocPermission = false;
Dianne Hackbornef05e072010-03-01 17:43:39 -0800643 bool hasGpsPermission = false;
Dan Morrill89d97c12010-05-03 16:13:14 -0700644 bool hasGeneralLocPermission = false;
645 bool specBluetoothFeature = false; // Bluetooth API-related
646 bool hasBluetoothPermission = false;
647 bool specMicrophoneFeature = false; // microphone-related
648 bool hasRecordAudioPermission = false;
649 bool specWiFiFeature = false;
650 bool hasWiFiPermission = false;
651 bool specTelephonyFeature = false; // telephony-related
652 bool reqTelephonySubFeature = false;
653 bool hasTelephonyPermission = false;
654 bool specTouchscreenFeature = false; // touchscreen-related
655 bool specMultitouchFeature = false;
656 bool reqDistinctMultitouchFeature = false;
Dianne Hackborne289bff2011-06-13 19:33:22 -0700657 bool specScreenPortraitFeature = false;
658 bool specScreenLandscapeFeature = false;
Dianne Hackbornf77ae6e2011-06-16 11:11:23 -0700659 bool reqScreenPortraitFeature = false;
660 bool reqScreenLandscapeFeature = false;
Dan Morrill89d97c12010-05-03 16:13:14 -0700661 // 2.2 also added some other features that apps can request, but that
662 // have no corresponding permission, so we cannot implement any
663 // back-compatibility heuristic for them. The below are thus unnecessary
664 // (but are retained here for documentary purposes.)
665 //bool specCompassFeature = false;
666 //bool specAccelerometerFeature = false;
667 //bool specProximityFeature = false;
668 //bool specAmbientLightFeature = false;
669 //bool specLiveWallpaperFeature = false;
670
Dianne Hackborn723738c2009-06-25 19:48:04 -0700671 int targetSdk = 0;
672 int smallScreen = 1;
673 int normalScreen = 1;
674 int largeScreen = 1;
Dianne Hackbornf43489d2010-08-20 12:44:33 -0700675 int xlargeScreen = 1;
Dianne Hackborna0b46c92010-10-21 15:32:06 -0700676 int anyDensity = 1;
Dianne Hackborne289bff2011-06-13 19:33:22 -0700677 int requiresSmallestWidthDp = 0;
678 int compatibleWidthLimitDp = 0;
679 int largestWidthLimitDp = 0;
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700680 String8 pkg;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800681 String8 activityName;
682 String8 activityLabel;
683 String8 activityIcon;
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700684 String8 receiverName;
Suchi Amalapurapu1b125982009-08-18 01:42:27 -0700685 String8 serviceName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800686 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
687 if (code == ResXMLTree::END_TAG) {
688 depth--;
Suchi Amalapurapu1b125982009-08-18 01:42:27 -0700689 if (depth < 2) {
690 withinApplication = false;
691 } else if (depth < 3) {
692 if (withinActivity && isMainActivity && isLauncherActivity) {
693 const char *aName = getComponentName(pkg, activityName);
Dianne Hackborne289bff2011-06-13 19:33:22 -0700694 printf("launchable-activity:");
Suchi Amalapurapu1b125982009-08-18 01:42:27 -0700695 if (aName != NULL) {
Dianne Hackborne289bff2011-06-13 19:33:22 -0700696 printf(" name='%s' ", aName);
Suchi Amalapurapu1b125982009-08-18 01:42:27 -0700697 }
Dianne Hackborne289bff2011-06-13 19:33:22 -0700698 printf(" label='%s' icon='%s'\n",
Suchi Amalapurapu1b125982009-08-18 01:42:27 -0700699 activityLabel.string(),
700 activityIcon.string());
701 }
702 if (!hasIntentFilter) {
703 hasOtherActivities |= withinActivity;
704 hasOtherReceivers |= withinReceiver;
705 hasOtherServices |= withinService;
706 }
707 withinActivity = false;
708 withinService = false;
709 withinReceiver = false;
710 hasIntentFilter = false;
711 isMainActivity = isLauncherActivity = false;
712 } else if (depth < 4) {
713 if (withinIntentFilter) {
714 if (withinActivity) {
715 hasMainActivity |= actMainActivity;
716 hasOtherActivities |= !actMainActivity;
717 } else if (withinReceiver) {
718 hasWidgetReceivers |= actWidgetReceivers;
719 hasOtherReceivers |= !actWidgetReceivers;
720 } else if (withinService) {
721 hasImeService |= actImeService;
722 hasWallpaperService |= actWallpaperService;
723 hasOtherServices |= (!actImeService && !actWallpaperService);
724 }
725 }
726 withinIntentFilter = false;
727 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800728 continue;
729 }
730 if (code != ResXMLTree::START_TAG) {
731 continue;
732 }
733 depth++;
734 String8 tag(tree.getElementName(&len));
Suchi Amalapurapu1b125982009-08-18 01:42:27 -0700735 //printf("Depth %d, %s\n", depth, tag.string());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800736 if (depth == 1) {
737 if (tag != "manifest") {
738 fprintf(stderr, "ERROR: manifest does not start with <manifest> tag\n");
739 goto bail;
740 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700741 pkg = getAttribute(tree, NULL, "package", NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800742 printf("package: name='%s' ", pkg.string());
743 int32_t versionCode = getIntegerAttribute(tree, VERSION_CODE_ATTR, &error);
744 if (error != "") {
745 fprintf(stderr, "ERROR getting 'android:versionCode' attribute: %s\n", error.string());
746 goto bail;
747 }
748 if (versionCode > 0) {
749 printf("versionCode='%d' ", versionCode);
750 } else {
751 printf("versionCode='' ");
752 }
Dianne Hackborncf244ad2010-03-09 15:00:30 -0800753 String8 versionName = getResolvedAttribute(&res, tree, VERSION_NAME_ATTR, &error);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800754 if (error != "") {
755 fprintf(stderr, "ERROR getting 'android:versionName' attribute: %s\n", error.string());
756 goto bail;
757 }
758 printf("versionName='%s'\n", versionName.string());
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700759 } else if (depth == 2) {
760 withinApplication = false;
761 if (tag == "application") {
762 withinApplication = true;
Dianne Hackborne289bff2011-06-13 19:33:22 -0700763
764 String8 label;
765 const size_t NL = locales.size();
766 for (size_t i=0; i<NL; i++) {
767 const char* localeStr = locales[i].string();
768 assets.setLocale(localeStr != NULL ? localeStr : "");
769 String8 llabel = getResolvedAttribute(&res, tree, LABEL_ATTR, &error);
770 if (llabel != "") {
771 if (localeStr == NULL || strlen(localeStr) == 0) {
772 label = llabel;
773 printf("application-label:'%s'\n", llabel.string());
774 } else {
775 if (label == "") {
776 label = llabel;
777 }
778 printf("application-label-%s:'%s'\n", localeStr,
779 llabel.string());
780 }
781 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700782 }
Dianne Hackborne289bff2011-06-13 19:33:22 -0700783
784 ResTable_config tmpConfig = config;
785 const size_t ND = densities.size();
786 for (size_t i=0; i<ND; i++) {
787 tmpConfig.density = densities[i];
788 assets.setConfiguration(tmpConfig);
789 String8 icon = getResolvedAttribute(&res, tree, ICON_ATTR, &error);
790 if (icon != "") {
791 printf("application-icon-%d:'%s'\n", densities[i], icon.string());
792 }
793 }
794 assets.setConfiguration(config);
795
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700796 String8 icon = getResolvedAttribute(&res, tree, ICON_ATTR, &error);
797 if (error != "") {
798 fprintf(stderr, "ERROR getting 'android:icon' attribute: %s\n", error.string());
799 goto bail;
800 }
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700801 int32_t testOnly = getIntegerAttribute(tree, TEST_ONLY_ATTR, &error, 0);
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700802 if (error != "") {
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700803 fprintf(stderr, "ERROR getting 'android:testOnly' attribute: %s\n", error.string());
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700804 goto bail;
805 }
Dianne Hackborne289bff2011-06-13 19:33:22 -0700806 printf("application: label='%s' ", label.string());
807 printf("icon='%s'\n", icon.string());
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700808 if (testOnly != 0) {
809 printf("testOnly='%d'\n", testOnly);
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -0700810 }
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700811 } else if (tag == "uses-sdk") {
812 int32_t code = getIntegerAttribute(tree, MIN_SDK_VERSION_ATTR, &error);
813 if (error != "") {
814 error = "";
815 String8 name = getResolvedAttribute(&res, tree, MIN_SDK_VERSION_ATTR, &error);
816 if (error != "") {
817 fprintf(stderr, "ERROR getting 'android:minSdkVersion' attribute: %s\n",
818 error.string());
819 goto bail;
820 }
Dianne Hackborn723738c2009-06-25 19:48:04 -0700821 if (name == "Donut") targetSdk = 4;
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700822 printf("sdkVersion:'%s'\n", name.string());
823 } else if (code != -1) {
Dianne Hackborn723738c2009-06-25 19:48:04 -0700824 targetSdk = code;
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700825 printf("sdkVersion:'%d'\n", code);
826 }
Suchi Amalapurapu75c49842009-08-14 15:13:09 -0700827 code = getIntegerAttribute(tree, MAX_SDK_VERSION_ATTR, NULL, -1);
828 if (code != -1) {
829 printf("maxSdkVersion:'%d'\n", code);
830 }
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700831 code = getIntegerAttribute(tree, TARGET_SDK_VERSION_ATTR, &error);
832 if (error != "") {
833 error = "";
834 String8 name = getResolvedAttribute(&res, tree, TARGET_SDK_VERSION_ATTR, &error);
835 if (error != "") {
836 fprintf(stderr, "ERROR getting 'android:targetSdkVersion' attribute: %s\n",
837 error.string());
838 goto bail;
839 }
Dianne Hackborn723738c2009-06-25 19:48:04 -0700840 if (name == "Donut" && targetSdk < 4) targetSdk = 4;
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700841 printf("targetSdkVersion:'%s'\n", name.string());
842 } else if (code != -1) {
Dianne Hackborn723738c2009-06-25 19:48:04 -0700843 if (targetSdk < code) {
844 targetSdk = code;
845 }
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700846 printf("targetSdkVersion:'%d'\n", code);
847 }
848 } else if (tag == "uses-configuration") {
849 int32_t reqTouchScreen = getIntegerAttribute(tree,
850 REQ_TOUCH_SCREEN_ATTR, NULL, 0);
851 int32_t reqKeyboardType = getIntegerAttribute(tree,
852 REQ_KEYBOARD_TYPE_ATTR, NULL, 0);
853 int32_t reqHardKeyboard = getIntegerAttribute(tree,
854 REQ_HARD_KEYBOARD_ATTR, NULL, 0);
855 int32_t reqNavigation = getIntegerAttribute(tree,
856 REQ_NAVIGATION_ATTR, NULL, 0);
857 int32_t reqFiveWayNav = getIntegerAttribute(tree,
858 REQ_FIVE_WAY_NAV_ATTR, NULL, 0);
Dianne Hackborncb2d50d2010-01-06 11:29:54 -0800859 printf("uses-configuration:");
Dianne Hackbornbb9ea302009-05-18 15:22:00 -0700860 if (reqTouchScreen != 0) {
861 printf(" reqTouchScreen='%d'", reqTouchScreen);
862 }
863 if (reqKeyboardType != 0) {
864 printf(" reqKeyboardType='%d'", reqKeyboardType);
865 }
866 if (reqHardKeyboard != 0) {
867 printf(" reqHardKeyboard='%d'", reqHardKeyboard);
868 }
869 if (reqNavigation != 0) {
870 printf(" reqNavigation='%d'", reqNavigation);
871 }
872 if (reqFiveWayNav != 0) {
873 printf(" reqFiveWayNav='%d'", reqFiveWayNav);
874 }
875 printf("\n");
Dianne Hackborn723738c2009-06-25 19:48:04 -0700876 } else if (tag == "supports-screens") {
877 smallScreen = getIntegerAttribute(tree,
878 SMALL_SCREEN_ATTR, NULL, 1);
879 normalScreen = getIntegerAttribute(tree,
880 NORMAL_SCREEN_ATTR, NULL, 1);
881 largeScreen = getIntegerAttribute(tree,
882 LARGE_SCREEN_ATTR, NULL, 1);
Dianne Hackbornf43489d2010-08-20 12:44:33 -0700883 xlargeScreen = getIntegerAttribute(tree,
884 XLARGE_SCREEN_ATTR, NULL, 1);
Dianne Hackborna0b46c92010-10-21 15:32:06 -0700885 anyDensity = getIntegerAttribute(tree,
886 ANY_DENSITY_ATTR, NULL, 1);
Dianne Hackborne289bff2011-06-13 19:33:22 -0700887 requiresSmallestWidthDp = getIntegerAttribute(tree,
888 REQUIRES_SMALLEST_WIDTH_DP_ATTR, NULL, 0);
889 compatibleWidthLimitDp = getIntegerAttribute(tree,
890 COMPATIBLE_WIDTH_LIMIT_DP_ATTR, NULL, 0);
891 largestWidthLimitDp = getIntegerAttribute(tree,
892 LARGEST_WIDTH_LIMIT_DP_ATTR, NULL, 0);
Dianne Hackborne5276a72009-08-27 16:28:44 -0700893 } else if (tag == "uses-feature") {
894 String8 name = getAttribute(tree, NAME_ATTR, &error);
Suchi Amalapurapu40b94722009-09-20 13:39:37 -0700895
896 if (name != "" && error == "") {
Dianne Hackborne5276a72009-08-27 16:28:44 -0700897 int req = getIntegerAttribute(tree,
898 REQUIRED_ATTR, NULL, 1);
Dan Morrill89d97c12010-05-03 16:13:14 -0700899
Dianne Hackborne5276a72009-08-27 16:28:44 -0700900 if (name == "android.hardware.camera") {
901 specCameraFeature = true;
Dan Morrill89d97c12010-05-03 16:13:14 -0700902 } else if (name == "android.hardware.camera.autofocus") {
903 // these have no corresponding permission to check for,
904 // but should imply the foundational camera permission
905 reqCameraAutofocusFeature = reqCameraAutofocusFeature || req;
906 specCameraAutofocusFeature = true;
907 } else if (req && (name == "android.hardware.camera.flash")) {
908 // these have no corresponding permission to check for,
909 // but should imply the foundational camera permission
910 reqCameraFlashFeature = true;
911 } else if (name == "android.hardware.location") {
912 specLocationFeature = true;
913 } else if (name == "android.hardware.location.network") {
914 specNetworkLocFeature = true;
915 reqNetworkLocFeature = reqNetworkLocFeature || req;
Dianne Hackbornef05e072010-03-01 17:43:39 -0800916 } else if (name == "android.hardware.location.gps") {
917 specGpsFeature = true;
Dan Morrill89d97c12010-05-03 16:13:14 -0700918 reqGpsFeature = reqGpsFeature || req;
919 } else if (name == "android.hardware.bluetooth") {
920 specBluetoothFeature = true;
921 } else if (name == "android.hardware.touchscreen") {
922 specTouchscreenFeature = true;
923 } else if (name == "android.hardware.touchscreen.multitouch") {
924 specMultitouchFeature = true;
925 } else if (name == "android.hardware.touchscreen.multitouch.distinct") {
926 reqDistinctMultitouchFeature = reqDistinctMultitouchFeature || req;
927 } else if (name == "android.hardware.microphone") {
928 specMicrophoneFeature = true;
929 } else if (name == "android.hardware.wifi") {
930 specWiFiFeature = true;
931 } else if (name == "android.hardware.telephony") {
932 specTelephonyFeature = true;
933 } else if (req && (name == "android.hardware.telephony.gsm" ||
934 name == "android.hardware.telephony.cdma")) {
935 // these have no corresponding permission to check for,
936 // but should imply the foundational telephony permission
937 reqTelephonySubFeature = true;
Dianne Hackborne289bff2011-06-13 19:33:22 -0700938 } else if (name == "android.hardware.screen.portrait") {
939 specScreenPortraitFeature = true;
940 } else if (name == "android.hardware.screen.landscape") {
941 specScreenLandscapeFeature = true;
Dianne Hackborne5276a72009-08-27 16:28:44 -0700942 }
943 printf("uses-feature%s:'%s'\n",
944 req ? "" : "-not-required", name.string());
945 } else {
946 int vers = getIntegerAttribute(tree,
947 GL_ES_VERSION_ATTR, &error);
948 if (error == "") {
949 printf("uses-gl-es:'0x%x'\n", vers);
950 }
951 }
952 } else if (tag == "uses-permission") {
953 String8 name = getAttribute(tree, NAME_ATTR, &error);
Suchi Amalapurapu40b94722009-09-20 13:39:37 -0700954 if (name != "" && error == "") {
Dianne Hackborne5276a72009-08-27 16:28:44 -0700955 if (name == "android.permission.CAMERA") {
956 hasCameraPermission = true;
Dianne Hackbornef05e072010-03-01 17:43:39 -0800957 } else if (name == "android.permission.ACCESS_FINE_LOCATION") {
958 hasGpsPermission = true;
Dan Morrill89d97c12010-05-03 16:13:14 -0700959 } else if (name == "android.permission.ACCESS_MOCK_LOCATION") {
960 hasMockLocPermission = true;
961 } else if (name == "android.permission.ACCESS_COARSE_LOCATION") {
962 hasCoarseLocPermission = true;
963 } else if (name == "android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" ||
964 name == "android.permission.INSTALL_LOCATION_PROVIDER") {
965 hasGeneralLocPermission = true;
966 } else if (name == "android.permission.BLUETOOTH" ||
967 name == "android.permission.BLUETOOTH_ADMIN") {
968 hasBluetoothPermission = true;
969 } else if (name == "android.permission.RECORD_AUDIO") {
970 hasRecordAudioPermission = true;
971 } else if (name == "android.permission.ACCESS_WIFI_STATE" ||
972 name == "android.permission.CHANGE_WIFI_STATE" ||
973 name == "android.permission.CHANGE_WIFI_MULTICAST_STATE") {
974 hasWiFiPermission = true;
975 } else if (name == "android.permission.CALL_PHONE" ||
976 name == "android.permission.CALL_PRIVILEGED" ||
977 name == "android.permission.MODIFY_PHONE_STATE" ||
978 name == "android.permission.PROCESS_OUTGOING_CALLS" ||
979 name == "android.permission.READ_SMS" ||
980 name == "android.permission.RECEIVE_SMS" ||
981 name == "android.permission.RECEIVE_MMS" ||
982 name == "android.permission.RECEIVE_WAP_PUSH" ||
983 name == "android.permission.SEND_SMS" ||
984 name == "android.permission.WRITE_APN_SETTINGS" ||
985 name == "android.permission.WRITE_SMS") {
986 hasTelephonyPermission = true;
Dianne Hackborne5276a72009-08-27 16:28:44 -0700987 }
988 printf("uses-permission:'%s'\n", name.string());
989 } else {
990 fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n",
991 error.string());
992 goto bail;
993 }
Dianne Hackborn43b68032010-09-02 17:14:41 -0700994 } else if (tag == "uses-package") {
995 String8 name = getAttribute(tree, NAME_ATTR, &error);
996 if (name != "" && error == "") {
997 printf("uses-package:'%s'\n", name.string());
998 } else {
999 fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n",
1000 error.string());
1001 goto bail;
1002 }
Jeff Hamiltone2c17f92010-02-12 13:45:16 -06001003 } else if (tag == "original-package") {
1004 String8 name = getAttribute(tree, NAME_ATTR, &error);
1005 if (name != "" && error == "") {
1006 printf("original-package:'%s'\n", name.string());
1007 } else {
1008 fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n",
1009 error.string());
1010 goto bail;
1011 }
Dan Morrill096b67f2010-12-13 16:25:54 -08001012 } else if (tag == "supports-gl-texture") {
Dan Morrill6f51fc12010-10-13 14:33:43 -07001013 String8 name = getAttribute(tree, NAME_ATTR, &error);
1014 if (name != "" && error == "") {
Dan Morrill096b67f2010-12-13 16:25:54 -08001015 printf("supports-gl-texture:'%s'\n", name.string());
Dan Morrill6f51fc12010-10-13 14:33:43 -07001016 } else {
1017 fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n",
1018 error.string());
1019 goto bail;
1020 }
Dianne Hackborna0b46c92010-10-21 15:32:06 -07001021 } else if (tag == "compatible-screens") {
1022 printCompatibleScreens(tree);
1023 depth--;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001024 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001025 } else if (depth == 3 && withinApplication) {
1026 withinActivity = false;
1027 withinReceiver = false;
Suchi Amalapurapu1b125982009-08-18 01:42:27 -07001028 withinService = false;
1029 hasIntentFilter = false;
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001030 if(tag == "activity") {
1031 withinActivity = true;
1032 activityName = getAttribute(tree, NAME_ATTR, &error);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001033 if (error != "") {
1034 fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n", error.string());
1035 goto bail;
1036 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001037
1038 activityLabel = getResolvedAttribute(&res, tree, LABEL_ATTR, &error);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001039 if (error != "") {
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001040 fprintf(stderr, "ERROR getting 'android:label' attribute: %s\n", error.string());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001041 goto bail;
1042 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001043
1044 activityIcon = getResolvedAttribute(&res, tree, ICON_ATTR, &error);
1045 if (error != "") {
1046 fprintf(stderr, "ERROR getting 'android:icon' attribute: %s\n", error.string());
1047 goto bail;
1048 }
Dianne Hackbornf77ae6e2011-06-16 11:11:23 -07001049
1050 int32_t orien = getResolvedIntegerAttribute(&res, tree,
1051 SCREEN_ORIENTATION_ATTR, &error);
1052 if (error == "") {
1053 if (orien == 0 || orien == 6 || orien == 8) {
1054 // Requests landscape, sensorLandscape, or reverseLandscape.
1055 reqScreenLandscapeFeature = true;
1056 } else if (orien == 1 || orien == 7 || orien == 9) {
1057 // Requests portrait, sensorPortrait, or reversePortrait.
1058 reqScreenPortraitFeature = true;
1059 }
1060 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001061 } else if (tag == "uses-library") {
1062 String8 libraryName = getAttribute(tree, NAME_ATTR, &error);
1063 if (error != "") {
1064 fprintf(stderr, "ERROR getting 'android:name' attribute for uses-library: %s\n", error.string());
1065 goto bail;
1066 }
Dianne Hackborn49237342009-08-27 20:08:01 -07001067 int req = getIntegerAttribute(tree,
1068 REQUIRED_ATTR, NULL, 1);
1069 printf("uses-library%s:'%s'\n",
1070 req ? "" : "-not-required", libraryName.string());
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001071 } else if (tag == "receiver") {
1072 withinReceiver = true;
1073 receiverName = getAttribute(tree, NAME_ATTR, &error);
1074
1075 if (error != "") {
1076 fprintf(stderr, "ERROR getting 'android:name' attribute for receiver: %s\n", error.string());
1077 goto bail;
1078 }
Suchi Amalapurapu1b125982009-08-18 01:42:27 -07001079 } else if (tag == "service") {
1080 withinService = true;
1081 serviceName = getAttribute(tree, NAME_ATTR, &error);
1082
1083 if (error != "") {
1084 fprintf(stderr, "ERROR getting 'android:name' attribute for service: %s\n", error.string());
1085 goto bail;
1086 }
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001087 }
Suchi Amalapurapu1b125982009-08-18 01:42:27 -07001088 } else if ((depth == 4) && (tag == "intent-filter")) {
1089 hasIntentFilter = true;
1090 withinIntentFilter = true;
1091 actMainActivity = actWidgetReceivers = actImeService = actWallpaperService = false;
1092 } else if ((depth == 5) && withinIntentFilter){
1093 String8 action;
1094 if (tag == "action") {
1095 action = getAttribute(tree, NAME_ATTR, &error);
1096 if (error != "") {
1097 fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n", error.string());
1098 goto bail;
1099 }
1100 if (withinActivity) {
Dianne Hackbornbb9ea302009-05-18 15:22:00 -07001101 if (action == "android.intent.action.MAIN") {
1102 isMainActivity = true;
Suchi Amalapurapu1b125982009-08-18 01:42:27 -07001103 actMainActivity = true;
Dianne Hackbornbb9ea302009-05-18 15:22:00 -07001104 }
Suchi Amalapurapu1b125982009-08-18 01:42:27 -07001105 } else if (withinReceiver) {
1106 if (action == "android.appwidget.action.APPWIDGET_UPDATE") {
1107 actWidgetReceivers = true;
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001108 }
Suchi Amalapurapu1b125982009-08-18 01:42:27 -07001109 } else if (withinService) {
1110 if (action == "android.view.InputMethod") {
1111 actImeService = true;
1112 } else if (action == "android.service.wallpaper.WallpaperService") {
1113 actWallpaperService = true;
1114 }
1115 }
1116 if (action == "android.intent.action.SEARCH") {
1117 isSearchable = true;
1118 }
1119 }
1120
1121 if (tag == "category") {
1122 String8 category = getAttribute(tree, NAME_ATTR, &error);
1123 if (error != "") {
1124 fprintf(stderr, "ERROR getting 'name' attribute: %s\n", error.string());
1125 goto bail;
1126 }
1127 if (withinActivity) {
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001128 if (category == "android.intent.category.LAUNCHER") {
1129 isLauncherActivity = true;
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001130 }
1131 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001132 }
1133 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001134 }
Suchi Amalapurapu1b125982009-08-18 01:42:27 -07001135
Dan Morrill89d97c12010-05-03 16:13:14 -07001136 /* The following blocks handle printing "inferred" uses-features, based
1137 * on whether related features or permissions are used by the app.
1138 * Note that the various spec*Feature variables denote whether the
1139 * relevant tag was *present* in the AndroidManfest, not that it was
1140 * present and set to true.
1141 */
1142 // Camera-related back-compatibility logic
1143 if (!specCameraFeature) {
1144 if (reqCameraFlashFeature || reqCameraAutofocusFeature) {
1145 // if app requested a sub-feature (autofocus or flash) and didn't
1146 // request the base camera feature, we infer that it meant to
1147 printf("uses-feature:'android.hardware.camera'\n");
1148 } else if (hasCameraPermission) {
1149 // if app wants to use camera but didn't request the feature, we infer
1150 // that it meant to, and further that it wants autofocus
1151 // (which was the 1.0 - 1.5 behavior)
1152 printf("uses-feature:'android.hardware.camera'\n");
1153 if (!specCameraAutofocusFeature) {
1154 printf("uses-feature:'android.hardware.camera.autofocus'\n");
1155 }
1156 }
Dianne Hackborne5276a72009-08-27 16:28:44 -07001157 }
Doug Zongkerdbe7a682009-10-09 11:24:51 -07001158
Dan Morrill89d97c12010-05-03 16:13:14 -07001159 // Location-related back-compatibility logic
1160 if (!specLocationFeature &&
1161 (hasMockLocPermission || hasCoarseLocPermission || hasGpsPermission ||
1162 hasGeneralLocPermission || reqNetworkLocFeature || reqGpsFeature)) {
1163 // if app either takes a location-related permission or requests one of the
1164 // sub-features, we infer that it also meant to request the base location feature
1165 printf("uses-feature:'android.hardware.location'\n");
1166 }
Dianne Hackbornef05e072010-03-01 17:43:39 -08001167 if (!specGpsFeature && hasGpsPermission) {
Dan Morrill89d97c12010-05-03 16:13:14 -07001168 // if app takes GPS (FINE location) perm but does not request the GPS
1169 // feature, we infer that it meant to
Dianne Hackbornef05e072010-03-01 17:43:39 -08001170 printf("uses-feature:'android.hardware.location.gps'\n");
1171 }
Dan Morrill89d97c12010-05-03 16:13:14 -07001172 if (!specNetworkLocFeature && hasCoarseLocPermission) {
1173 // if app takes Network location (COARSE location) perm but does not request the
1174 // network location feature, we infer that it meant to
1175 printf("uses-feature:'android.hardware.location.network'\n");
1176 }
1177
1178 // Bluetooth-related compatibility logic
Dan Morrill6b22d812010-06-15 21:41:42 -07001179 if (!specBluetoothFeature && hasBluetoothPermission && (targetSdk > 4)) {
Dan Morrill89d97c12010-05-03 16:13:14 -07001180 // if app takes a Bluetooth permission but does not request the Bluetooth
1181 // feature, we infer that it meant to
1182 printf("uses-feature:'android.hardware.bluetooth'\n");
1183 }
1184
1185 // Microphone-related compatibility logic
1186 if (!specMicrophoneFeature && hasRecordAudioPermission) {
1187 // if app takes the record-audio permission but does not request the microphone
1188 // feature, we infer that it meant to
1189 printf("uses-feature:'android.hardware.microphone'\n");
1190 }
1191
1192 // WiFi-related compatibility logic
1193 if (!specWiFiFeature && hasWiFiPermission) {
1194 // if app takes one of the WiFi permissions but does not request the WiFi
1195 // feature, we infer that it meant to
1196 printf("uses-feature:'android.hardware.wifi'\n");
1197 }
1198
1199 // Telephony-related compatibility logic
1200 if (!specTelephonyFeature && (hasTelephonyPermission || reqTelephonySubFeature)) {
1201 // if app takes one of the telephony permissions or requests a sub-feature but
1202 // does not request the base telephony feature, we infer that it meant to
1203 printf("uses-feature:'android.hardware.telephony'\n");
1204 }
1205
1206 // Touchscreen-related back-compatibility logic
1207 if (!specTouchscreenFeature) { // not a typo!
1208 // all apps are presumed to require a touchscreen, unless they explicitly say
1209 // <uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
1210 // Note that specTouchscreenFeature is true if the tag is present, regardless
1211 // of whether its value is true or false, so this is safe
1212 printf("uses-feature:'android.hardware.touchscreen'\n");
1213 }
1214 if (!specMultitouchFeature && reqDistinctMultitouchFeature) {
1215 // if app takes one of the telephony permissions or requests a sub-feature but
1216 // does not request the base telephony feature, we infer that it meant to
1217 printf("uses-feature:'android.hardware.touchscreen.multitouch'\n");
1218 }
Dianne Hackbornef05e072010-03-01 17:43:39 -08001219
Dianne Hackborne289bff2011-06-13 19:33:22 -07001220 // Landscape/portrait-related compatibility logic
Dianne Hackbornf77ae6e2011-06-16 11:11:23 -07001221 if (!specScreenLandscapeFeature && !specScreenPortraitFeature) {
1222 // If the app has specified any activities in its manifest
1223 // that request a specific orientation, then assume that
1224 // orientation is required.
1225 if (reqScreenLandscapeFeature) {
1226 printf("uses-feature:'android.hardware.screen.landscape'\n");
1227 }
1228 if (reqScreenPortraitFeature) {
1229 printf("uses-feature:'android.hardware.screen.portrait'\n");
1230 }
Dianne Hackborne289bff2011-06-13 19:33:22 -07001231 }
1232
Suchi Amalapurapu1b125982009-08-18 01:42:27 -07001233 if (hasMainActivity) {
1234 printf("main\n");
1235 }
1236 if (hasWidgetReceivers) {
1237 printf("app-widget\n");
1238 }
1239 if (hasImeService) {
1240 printf("ime\n");
1241 }
1242 if (hasWallpaperService) {
1243 printf("wallpaper\n");
1244 }
1245 if (hasOtherActivities) {
1246 printf("other-activities\n");
1247 }
1248 if (isSearchable) {
1249 printf("search\n");
1250 }
1251 if (hasOtherReceivers) {
1252 printf("other-receivers\n");
1253 }
1254 if (hasOtherServices) {
1255 printf("other-services\n");
1256 }
1257
Dianne Hackborne289bff2011-06-13 19:33:22 -07001258 // For modern apps, if screen size buckets haven't been specified
1259 // but the new width ranges have, then infer the buckets from them.
1260 if (smallScreen > 0 && normalScreen > 0 && largeScreen > 0 && xlargeScreen > 0
1261 && requiresSmallestWidthDp > 0) {
1262 int compatWidth = compatibleWidthLimitDp;
1263 if (compatWidth <= 0) compatWidth = requiresSmallestWidthDp;
1264 if (requiresSmallestWidthDp <= 240 && compatWidth >= 240) {
1265 smallScreen = -1;
1266 } else {
1267 smallScreen = 0;
1268 }
1269 if (requiresSmallestWidthDp <= 320 && compatWidth >= 320) {
1270 normalScreen = -1;
1271 } else {
1272 normalScreen = 0;
1273 }
1274 if (requiresSmallestWidthDp <= 480 && compatWidth >= 480) {
1275 largeScreen = -1;
1276 } else {
1277 largeScreen = 0;
1278 }
1279 if (requiresSmallestWidthDp <= 720 && compatWidth >= 720) {
1280 xlargeScreen = -1;
1281 } else {
1282 xlargeScreen = 0;
1283 }
1284 }
1285
Dianne Hackborn723738c2009-06-25 19:48:04 -07001286 // Determine default values for any unspecified screen sizes,
1287 // based on the target SDK of the package. As of 4 (donut)
1288 // the screen size support was introduced, so all default to
1289 // enabled.
1290 if (smallScreen > 0) {
1291 smallScreen = targetSdk >= 4 ? -1 : 0;
1292 }
1293 if (normalScreen > 0) {
1294 normalScreen = -1;
1295 }
1296 if (largeScreen > 0) {
1297 largeScreen = targetSdk >= 4 ? -1 : 0;
1298 }
Dianne Hackbornf43489d2010-08-20 12:44:33 -07001299 if (xlargeScreen > 0) {
Scott Maind58fb972010-11-04 18:32:00 -07001300 // Introduced in Gingerbread.
1301 xlargeScreen = targetSdk >= 9 ? -1 : 0;
Dianne Hackbornf43489d2010-08-20 12:44:33 -07001302 }
Dianne Hackborna0b46c92010-10-21 15:32:06 -07001303 if (anyDensity > 0) {
Dianne Hackborne289bff2011-06-13 19:33:22 -07001304 anyDensity = (targetSdk >= 4 || requiresSmallestWidthDp > 0
1305 || compatibleWidthLimitDp > 0) ? -1 : 0;
Dianne Hackborna0b46c92010-10-21 15:32:06 -07001306 }
Dianne Hackborn723738c2009-06-25 19:48:04 -07001307 printf("supports-screens:");
1308 if (smallScreen != 0) printf(" 'small'");
1309 if (normalScreen != 0) printf(" 'normal'");
1310 if (largeScreen != 0) printf(" 'large'");
Dianne Hackbornf43489d2010-08-20 12:44:33 -07001311 if (xlargeScreen != 0) printf(" 'xlarge'");
Dianne Hackborn723738c2009-06-25 19:48:04 -07001312 printf("\n");
Dianne Hackborna0b46c92010-10-21 15:32:06 -07001313 printf("supports-any-density: '%s'\n", anyDensity ? "true" : "false");
Dianne Hackborne289bff2011-06-13 19:33:22 -07001314 if (requiresSmallestWidthDp > 0) {
1315 printf("requires-smallest-width:'%d'\n", requiresSmallestWidthDp);
1316 }
1317 if (compatibleWidthLimitDp > 0) {
1318 printf("compatible-width-limit:'%d'\n", compatibleWidthLimitDp);
1319 }
1320 if (largestWidthLimitDp > 0) {
1321 printf("largest-width-limit:'%d'\n", largestWidthLimitDp);
1322 }
Dianne Hackborna0b46c92010-10-21 15:32:06 -07001323
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001324 printf("locales:");
Dianne Hackborne17086b2009-06-19 15:13:28 -07001325 const size_t NL = locales.size();
1326 for (size_t i=0; i<NL; i++) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001327 const char* localeStr = locales[i].string();
1328 if (localeStr == NULL || strlen(localeStr) == 0) {
1329 localeStr = "--_--";
1330 }
1331 printf(" '%s'", localeStr);
1332 }
1333 printf("\n");
Suchi Amalapurapu1b125982009-08-18 01:42:27 -07001334
Dianne Hackborne17086b2009-06-19 15:13:28 -07001335 printf("densities:");
1336 const size_t ND = densities.size();
1337 for (size_t i=0; i<ND; i++) {
1338 printf(" '%d'", densities[i]);
1339 }
1340 printf("\n");
Suchi Amalapurapu1b125982009-08-18 01:42:27 -07001341
Dianne Hackbornbb9ea302009-05-18 15:22:00 -07001342 AssetDir* dir = assets.openNonAssetDir(assetsCookie, "lib");
1343 if (dir != NULL) {
1344 if (dir->getFileCount() > 0) {
1345 printf("native-code:");
1346 for (size_t i=0; i<dir->getFileCount(); i++) {
1347 printf(" '%s'", dir->getFileName(i).string());
1348 }
1349 printf("\n");
1350 }
1351 delete dir;
1352 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001353 } else if (strcmp("configurations", option) == 0) {
1354 Vector<ResTable_config> configs;
1355 res.getConfigurations(&configs);
1356 const size_t N = configs.size();
1357 for (size_t i=0; i<N; i++) {
1358 printf("%s\n", configs[i].toString().string());
1359 }
1360 } else {
1361 fprintf(stderr, "ERROR: unknown dump option '%s'\n", option);
1362 goto bail;
1363 }
1364 }
1365
1366 result = NO_ERROR;
Suchi Amalapurapu7ef189d2009-04-02 15:20:29 -07001367
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001368bail:
1369 if (asset) {
1370 delete asset;
1371 }
1372 return (result != NO_ERROR);
1373}
1374
1375
1376/*
1377 * Handle the "add" command, which wants to add files to a new or
1378 * pre-existing archive.
1379 */
1380int doAdd(Bundle* bundle)
1381{
1382 ZipFile* zip = NULL;
1383 status_t result = UNKNOWN_ERROR;
1384 const char* zipFileName;
1385
1386 if (bundle->getUpdate()) {
1387 /* avoid confusion */
1388 fprintf(stderr, "ERROR: can't use '-u' with add\n");
1389 goto bail;
1390 }
1391
1392 if (bundle->getFileSpecCount() < 1) {
1393 fprintf(stderr, "ERROR: must specify zip file name\n");
1394 goto bail;
1395 }
1396 zipFileName = bundle->getFileSpecEntry(0);
1397
1398 if (bundle->getFileSpecCount() < 2) {
1399 fprintf(stderr, "NOTE: nothing to do\n");
1400 goto bail;
1401 }
1402
1403 zip = openReadWrite(zipFileName, true);
1404 if (zip == NULL) {
1405 fprintf(stderr, "ERROR: failed opening/creating '%s' as Zip file\n", zipFileName);
1406 goto bail;
1407 }
1408
1409 for (int i = 1; i < bundle->getFileSpecCount(); i++) {
1410 const char* fileName = bundle->getFileSpecEntry(i);
1411
1412 if (strcasecmp(String8(fileName).getPathExtension().string(), ".gz") == 0) {
1413 printf(" '%s'... (from gzip)\n", fileName);
1414 result = zip->addGzip(fileName, String8(fileName).getBasePath().string(), NULL);
1415 } else {
Doug Zongkerdbe7a682009-10-09 11:24:51 -07001416 if (bundle->getJunkPath()) {
1417 String8 storageName = String8(fileName).getPathLeaf();
1418 printf(" '%s' as '%s'...\n", fileName, storageName.string());
1419 result = zip->add(fileName, storageName.string(),
1420 bundle->getCompressionMethod(), NULL);
1421 } else {
1422 printf(" '%s'...\n", fileName);
1423 result = zip->add(fileName, bundle->getCompressionMethod(), NULL);
1424 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001425 }
1426 if (result != NO_ERROR) {
1427 fprintf(stderr, "Unable to add '%s' to '%s'", bundle->getFileSpecEntry(i), zipFileName);
1428 if (result == NAME_NOT_FOUND)
1429 fprintf(stderr, ": file not found\n");
1430 else if (result == ALREADY_EXISTS)
1431 fprintf(stderr, ": already exists in archive\n");
1432 else
1433 fprintf(stderr, "\n");
1434 goto bail;
1435 }
1436 }
1437
1438 result = NO_ERROR;
1439
1440bail:
1441 delete zip;
1442 return (result != NO_ERROR);
1443}
1444
1445
1446/*
1447 * Delete files from an existing archive.
1448 */
1449int doRemove(Bundle* bundle)
1450{
1451 ZipFile* zip = NULL;
1452 status_t result = UNKNOWN_ERROR;
1453 const char* zipFileName;
1454
1455 if (bundle->getFileSpecCount() < 1) {
1456 fprintf(stderr, "ERROR: must specify zip file name\n");
1457 goto bail;
1458 }
1459 zipFileName = bundle->getFileSpecEntry(0);
1460
1461 if (bundle->getFileSpecCount() < 2) {
1462 fprintf(stderr, "NOTE: nothing to do\n");
1463 goto bail;
1464 }
1465
1466 zip = openReadWrite(zipFileName, false);
1467 if (zip == NULL) {
1468 fprintf(stderr, "ERROR: failed opening Zip archive '%s'\n",
1469 zipFileName);
1470 goto bail;
1471 }
1472
1473 for (int i = 1; i < bundle->getFileSpecCount(); i++) {
1474 const char* fileName = bundle->getFileSpecEntry(i);
1475 ZipEntry* entry;
1476
1477 entry = zip->getEntryByName(fileName);
1478 if (entry == NULL) {
1479 printf(" '%s' NOT FOUND\n", fileName);
1480 continue;
1481 }
1482
1483 result = zip->remove(entry);
1484
1485 if (result != NO_ERROR) {
1486 fprintf(stderr, "Unable to delete '%s' from '%s'\n",
1487 bundle->getFileSpecEntry(i), zipFileName);
1488 goto bail;
1489 }
1490 }
1491
1492 /* update the archive */
1493 zip->flush();
1494
1495bail:
1496 delete zip;
1497 return (result != NO_ERROR);
1498}
1499
1500
1501/*
1502 * Package up an asset directory and associated application files.
1503 */
1504int doPackage(Bundle* bundle)
1505{
1506 const char* outputAPKFile;
1507 int retVal = 1;
1508 status_t err;
1509 sp<AaptAssets> assets;
1510 int N;
1511
1512 // -c zz_ZZ means do pseudolocalization
1513 ResourceFilter filter;
1514 err = filter.parse(bundle->getConfigurations());
1515 if (err != NO_ERROR) {
1516 goto bail;
1517 }
1518 if (filter.containsPseudo()) {
1519 bundle->setPseudolocalize(true);
1520 }
1521
1522 N = bundle->getFileSpecCount();
1523 if (N < 1 && bundle->getResourceSourceDirs().size() == 0 && bundle->getJarFiles().size() == 0
1524 && bundle->getAndroidManifestFile() == NULL && bundle->getAssetSourceDir() == NULL) {
1525 fprintf(stderr, "ERROR: no input files\n");
1526 goto bail;
1527 }
1528
1529 outputAPKFile = bundle->getOutputAPKFile();
1530
1531 // Make sure the filenames provided exist and are of the appropriate type.
1532 if (outputAPKFile) {
1533 FileType type;
1534 type = getFileType(outputAPKFile);
1535 if (type != kFileTypeNonexistent && type != kFileTypeRegular) {
1536 fprintf(stderr,
1537 "ERROR: output file '%s' exists but is not regular file\n",
1538 outputAPKFile);
1539 goto bail;
1540 }
1541 }
1542
1543 // Load the assets.
1544 assets = new AaptAssets();
1545 err = assets->slurpFromArgs(bundle);
1546 if (err < 0) {
1547 goto bail;
1548 }
1549
1550 if (bundle->getVerbose()) {
1551 assets->print();
1552 }
1553
1554 // If they asked for any files that need to be compiled, do so.
1555 if (bundle->getResourceSourceDirs().size() || bundle->getAndroidManifestFile()) {
1556 err = buildResources(bundle, assets);
1557 if (err != 0) {
1558 goto bail;
1559 }
1560 }
1561
1562 // At this point we've read everything and processed everything. From here
1563 // on out it's just writing output files.
1564 if (SourcePos::hasErrors()) {
1565 goto bail;
1566 }
1567
1568 // Write out R.java constants
1569 if (assets->getPackage() == assets->getSymbolsPrivatePackage()) {
Xavier Ducrohet63459ad2009-11-30 18:05:10 -08001570 if (bundle->getCustomPackage() == NULL) {
1571 err = writeResourceSymbols(bundle, assets, assets->getPackage(), true);
1572 } else {
1573 const String8 customPkg(bundle->getCustomPackage());
1574 err = writeResourceSymbols(bundle, assets, customPkg, true);
1575 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001576 if (err < 0) {
1577 goto bail;
1578 }
1579 } else {
1580 err = writeResourceSymbols(bundle, assets, assets->getPackage(), false);
1581 if (err < 0) {
1582 goto bail;
1583 }
1584 err = writeResourceSymbols(bundle, assets, assets->getSymbolsPrivatePackage(), true);
1585 if (err < 0) {
1586 goto bail;
1587 }
1588 }
1589
Joe Onorato1553c822009-08-30 13:36:22 -07001590 // Write out the ProGuard file
1591 err = writeProguardFile(bundle, assets);
1592 if (err < 0) {
1593 goto bail;
1594 }
1595
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001596 // Write the apk
1597 if (outputAPKFile) {
1598 err = writeAPK(bundle, assets, String8(outputAPKFile));
1599 if (err != NO_ERROR) {
1600 fprintf(stderr, "ERROR: packaging of '%s' failed\n", outputAPKFile);
1601 goto bail;
1602 }
1603 }
1604
1605 retVal = 0;
1606bail:
1607 if (SourcePos::hasErrors()) {
1608 SourcePos::printErrors(stderr);
1609 }
1610 return retVal;
1611}