blob: 0a808059a56df5ca9c8c0100e321bc280ee26ab1 [file] [log] [blame]
Adam Lesinski282e1812014-01-23 18:17:42 -08001//
2// Copyright 2006 The Android Open Source Project
3//
4// Build resource files from raw assets.
5//
6#include "Main.h"
7#include "AaptAssets.h"
8#include "StringPool.h"
9#include "XMLNode.h"
10#include "ResourceTable.h"
11#include "Images.h"
12
13#include "CrunchCache.h"
14#include "FileFinder.h"
15#include "CacheUpdater.h"
16
17#include "WorkQueue.h"
18
19#if HAVE_PRINTF_ZD
20# define ZD "%zd"
21# define ZD_TYPE ssize_t
22#else
23# define ZD "%ld"
24# define ZD_TYPE long
25#endif
26
27#define NOISY(x) // x
28
29// Number of threads to use for preprocessing images.
30static const size_t MAX_THREADS = 4;
31
32// ==========================================================================
33// ==========================================================================
34// ==========================================================================
35
36class PackageInfo
37{
38public:
39 PackageInfo()
40 {
41 }
42 ~PackageInfo()
43 {
44 }
45
46 status_t parsePackage(const sp<AaptGroup>& grp);
47};
48
49// ==========================================================================
50// ==========================================================================
51// ==========================================================================
52
53static String8 parseResourceName(const String8& leaf)
54{
55 const char* firstDot = strchr(leaf.string(), '.');
56 const char* str = leaf.string();
57
58 if (firstDot) {
59 return String8(str, firstDot-str);
60 } else {
61 return String8(str);
62 }
63}
64
65ResourceTypeSet::ResourceTypeSet()
66 :RefBase(),
67 KeyedVector<String8,sp<AaptGroup> >()
68{
69}
70
71FilePathStore::FilePathStore()
72 :RefBase(),
73 Vector<String8>()
74{
75}
76
77class ResourceDirIterator
78{
79public:
80 ResourceDirIterator(const sp<ResourceTypeSet>& set, const String8& resType)
81 : mResType(resType), mSet(set), mSetPos(0), mGroupPos(0)
82 {
Narayan Kamath91447d82014-01-21 15:32:36 +000083 memset(&mParams, 0, sizeof(ResTable_config));
Adam Lesinski282e1812014-01-23 18:17:42 -080084 }
85
86 inline const sp<AaptGroup>& getGroup() const { return mGroup; }
87 inline const sp<AaptFile>& getFile() const { return mFile; }
88
89 inline const String8& getBaseName() const { return mBaseName; }
90 inline const String8& getLeafName() const { return mLeafName; }
91 inline String8 getPath() const { return mPath; }
92 inline const ResTable_config& getParams() const { return mParams; }
93
94 enum {
95 EOD = 1
96 };
97
98 ssize_t next()
99 {
100 while (true) {
101 sp<AaptGroup> group;
102 sp<AaptFile> file;
103
104 // Try to get next file in this current group.
105 if (mGroup != NULL && mGroupPos < mGroup->getFiles().size()) {
106 group = mGroup;
107 file = group->getFiles().valueAt(mGroupPos++);
108
109 // Try to get the next group/file in this directory
110 } else if (mSetPos < mSet->size()) {
111 mGroup = group = mSet->valueAt(mSetPos++);
112 if (group->getFiles().size() < 1) {
113 continue;
114 }
115 file = group->getFiles().valueAt(0);
116 mGroupPos = 1;
117
118 // All done!
119 } else {
120 return EOD;
121 }
122
123 mFile = file;
124
125 String8 leaf(group->getLeaf());
126 mLeafName = String8(leaf);
127 mParams = file->getGroupEntry().toParams();
128 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",
129 group->getPath().string(), mParams.mcc, mParams.mnc,
130 mParams.language[0] ? mParams.language[0] : '-',
131 mParams.language[1] ? mParams.language[1] : '-',
132 mParams.country[0] ? mParams.country[0] : '-',
133 mParams.country[1] ? mParams.country[1] : '-',
134 mParams.orientation, mParams.uiMode,
135 mParams.density, mParams.touchscreen, mParams.keyboard,
136 mParams.inputFlags, mParams.navigation));
137 mPath = "res";
138 mPath.appendPath(file->getGroupEntry().toDirName(mResType));
139 mPath.appendPath(leaf);
140 mBaseName = parseResourceName(leaf);
141 if (mBaseName == "") {
142 fprintf(stderr, "Error: malformed resource filename %s\n",
143 file->getPrintableSource().string());
144 return UNKNOWN_ERROR;
145 }
146
147 NOISY(printf("file name=%s\n", mBaseName.string()));
148
149 return NO_ERROR;
150 }
151 }
152
153private:
154 String8 mResType;
155
156 const sp<ResourceTypeSet> mSet;
157 size_t mSetPos;
158
159 sp<AaptGroup> mGroup;
160 size_t mGroupPos;
161
162 sp<AaptFile> mFile;
163 String8 mBaseName;
164 String8 mLeafName;
165 String8 mPath;
166 ResTable_config mParams;
167};
168
Jeff Browneb490d62014-06-06 19:43:42 -0700169class AnnotationProcessor {
170public:
171 AnnotationProcessor() : mDeprecated(false), mSystemApi(false) { }
172
173 void preprocessComment(String8& comment) {
174 if (comment.size() > 0) {
175 if (comment.contains("@deprecated")) {
176 mDeprecated = true;
177 }
178 if (comment.removeAll("@SystemApi")) {
179 mSystemApi = true;
180 }
181 }
182 }
183
184 void printAnnotations(FILE* fp, const char* indentStr) {
185 if (mDeprecated) {
186 fprintf(fp, "%s@Deprecated\n", indentStr);
187 }
188 if (mSystemApi) {
189 fprintf(fp, "%s@android.annotation.SystemApi\n", indentStr);
190 }
191 }
192
193private:
194 bool mDeprecated;
195 bool mSystemApi;
196};
197
Adam Lesinski282e1812014-01-23 18:17:42 -0800198// ==========================================================================
199// ==========================================================================
200// ==========================================================================
201
202bool isValidResourceType(const String8& type)
203{
204 return type == "anim" || type == "animator" || type == "interpolator"
Chet Haase7cce7bb2013-09-04 17:41:11 -0700205 || type == "transition"
Adam Lesinski282e1812014-01-23 18:17:42 -0800206 || type == "drawable" || type == "layout"
207 || type == "values" || type == "xml" || type == "raw"
208 || type == "color" || type == "menu" || type == "mipmap";
209}
210
Adam Lesinski282e1812014-01-23 18:17:42 -0800211static status_t parsePackage(Bundle* bundle, const sp<AaptAssets>& assets,
212 const sp<AaptGroup>& grp)
213{
214 if (grp->getFiles().size() != 1) {
215 fprintf(stderr, "warning: Multiple AndroidManifest.xml files found, using %s\n",
216 grp->getFiles().valueAt(0)->getPrintableSource().string());
217 }
218
219 sp<AaptFile> file = grp->getFiles().valueAt(0);
220
221 ResXMLTree block;
222 status_t err = parseXMLResource(file, &block);
223 if (err != NO_ERROR) {
224 return err;
225 }
226 //printXMLBlock(&block);
227
228 ResXMLTree::event_code_t code;
229 while ((code=block.next()) != ResXMLTree::START_TAG
230 && code != ResXMLTree::END_DOCUMENT
231 && code != ResXMLTree::BAD_DOCUMENT) {
232 }
233
234 size_t len;
235 if (code != ResXMLTree::START_TAG) {
236 fprintf(stderr, "%s:%d: No start tag found\n",
237 file->getPrintableSource().string(), block.getLineNumber());
238 return UNKNOWN_ERROR;
239 }
240 if (strcmp16(block.getElementName(&len), String16("manifest").string()) != 0) {
241 fprintf(stderr, "%s:%d: Invalid start tag %s, expected <manifest>\n",
242 file->getPrintableSource().string(), block.getLineNumber(),
243 String8(block.getElementName(&len)).string());
244 return UNKNOWN_ERROR;
245 }
246
247 ssize_t nameIndex = block.indexOfAttribute(NULL, "package");
248 if (nameIndex < 0) {
249 fprintf(stderr, "%s:%d: <manifest> does not have package attribute.\n",
250 file->getPrintableSource().string(), block.getLineNumber());
251 return UNKNOWN_ERROR;
252 }
253
254 assets->setPackage(String8(block.getAttributeStringValue(nameIndex, &len)));
255
256 String16 uses_sdk16("uses-sdk");
257 while ((code=block.next()) != ResXMLTree::END_DOCUMENT
258 && code != ResXMLTree::BAD_DOCUMENT) {
259 if (code == ResXMLTree::START_TAG) {
260 if (strcmp16(block.getElementName(&len), uses_sdk16.string()) == 0) {
261 ssize_t minSdkIndex = block.indexOfAttribute(RESOURCES_ANDROID_NAMESPACE,
262 "minSdkVersion");
263 if (minSdkIndex >= 0) {
264 const uint16_t* minSdk16 = block.getAttributeStringValue(minSdkIndex, &len);
265 const char* minSdk8 = strdup(String8(minSdk16).string());
266 bundle->setManifestMinSdkVersion(minSdk8);
267 }
268 }
269 }
270 }
271
272 return NO_ERROR;
273}
274
275// ==========================================================================
276// ==========================================================================
277// ==========================================================================
278
279static status_t makeFileResources(Bundle* bundle, const sp<AaptAssets>& assets,
280 ResourceTable* table,
281 const sp<ResourceTypeSet>& set,
282 const char* resType)
283{
284 String8 type8(resType);
285 String16 type16(resType);
286
287 bool hasErrors = false;
288
289 ResourceDirIterator it(set, String8(resType));
290 ssize_t res;
291 while ((res=it.next()) == NO_ERROR) {
292 if (bundle->getVerbose()) {
293 printf(" (new resource id %s from %s)\n",
294 it.getBaseName().string(), it.getFile()->getPrintableSource().string());
295 }
296 String16 baseName(it.getBaseName());
297 const char16_t* str = baseName.string();
298 const char16_t* const end = str + baseName.size();
299 while (str < end) {
300 if (!((*str >= 'a' && *str <= 'z')
301 || (*str >= '0' && *str <= '9')
302 || *str == '_' || *str == '.')) {
303 fprintf(stderr, "%s: Invalid file name: must contain only [a-z0-9_.]\n",
304 it.getPath().string());
305 hasErrors = true;
306 }
307 str++;
308 }
309 String8 resPath = it.getPath();
310 resPath.convertToResPath();
311 table->addEntry(SourcePos(it.getPath(), 0), String16(assets->getPackage()),
312 type16,
313 baseName,
314 String16(resPath),
315 NULL,
316 &it.getParams());
317 assets->addResource(it.getLeafName(), resPath, it.getFile(), type8);
318 }
319
320 return hasErrors ? UNKNOWN_ERROR : NO_ERROR;
321}
322
323class PreProcessImageWorkUnit : public WorkQueue::WorkUnit {
324public:
325 PreProcessImageWorkUnit(const Bundle* bundle, const sp<AaptAssets>& assets,
326 const sp<AaptFile>& file, volatile bool* hasErrors) :
327 mBundle(bundle), mAssets(assets), mFile(file), mHasErrors(hasErrors) {
328 }
329
330 virtual bool run() {
331 status_t status = preProcessImage(mBundle, mAssets, mFile, NULL);
332 if (status) {
333 *mHasErrors = true;
334 }
335 return true; // continue even if there are errors
336 }
337
338private:
339 const Bundle* mBundle;
340 sp<AaptAssets> mAssets;
341 sp<AaptFile> mFile;
342 volatile bool* mHasErrors;
343};
344
345static status_t preProcessImages(const Bundle* bundle, const sp<AaptAssets>& assets,
346 const sp<ResourceTypeSet>& set, const char* type)
347{
348 volatile bool hasErrors = false;
349 ssize_t res = NO_ERROR;
350 if (bundle->getUseCrunchCache() == false) {
351 WorkQueue wq(MAX_THREADS, false);
352 ResourceDirIterator it(set, String8(type));
353 while ((res=it.next()) == NO_ERROR) {
354 PreProcessImageWorkUnit* w = new PreProcessImageWorkUnit(
355 bundle, assets, it.getFile(), &hasErrors);
356 status_t status = wq.schedule(w);
357 if (status) {
358 fprintf(stderr, "preProcessImages failed: schedule() returned %d\n", status);
359 hasErrors = true;
360 delete w;
361 break;
362 }
363 }
364 status_t status = wq.finish();
365 if (status) {
366 fprintf(stderr, "preProcessImages failed: finish() returned %d\n", status);
367 hasErrors = true;
368 }
369 }
370 return (hasErrors || (res < NO_ERROR)) ? UNKNOWN_ERROR : NO_ERROR;
371}
372
Adam Lesinski282e1812014-01-23 18:17:42 -0800373static void collect_files(const sp<AaptDir>& dir,
374 KeyedVector<String8, sp<ResourceTypeSet> >* resources)
375{
376 const DefaultKeyedVector<String8, sp<AaptGroup> >& groups = dir->getFiles();
377 int N = groups.size();
378 for (int i=0; i<N; i++) {
379 String8 leafName = groups.keyAt(i);
380 const sp<AaptGroup>& group = groups.valueAt(i);
381
382 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files
383 = group->getFiles();
384
385 if (files.size() == 0) {
386 continue;
387 }
388
389 String8 resType = files.valueAt(0)->getResourceType();
390
391 ssize_t index = resources->indexOfKey(resType);
392
393 if (index < 0) {
394 sp<ResourceTypeSet> set = new ResourceTypeSet();
395 NOISY(printf("Creating new resource type set for leaf %s with group %s (%p)\n",
396 leafName.string(), group->getPath().string(), group.get()));
397 set->add(leafName, group);
398 resources->add(resType, set);
399 } else {
400 sp<ResourceTypeSet> set = resources->valueAt(index);
401 index = set->indexOfKey(leafName);
402 if (index < 0) {
403 NOISY(printf("Adding to resource type set for leaf %s group %s (%p)\n",
404 leafName.string(), group->getPath().string(), group.get()));
405 set->add(leafName, group);
406 } else {
407 sp<AaptGroup> existingGroup = set->valueAt(index);
408 NOISY(printf("Extending to resource type set for leaf %s group %s (%p)\n",
409 leafName.string(), group->getPath().string(), group.get()));
410 for (size_t j=0; j<files.size(); j++) {
411 NOISY(printf("Adding file %s in group %s resType %s\n",
412 files.valueAt(j)->getSourceFile().string(),
413 files.keyAt(j).toDirName(String8()).string(),
414 resType.string()));
415 status_t err = existingGroup->addFile(files.valueAt(j));
416 }
417 }
418 }
419 }
420}
421
422static void collect_files(const sp<AaptAssets>& ass,
423 KeyedVector<String8, sp<ResourceTypeSet> >* resources)
424{
425 const Vector<sp<AaptDir> >& dirs = ass->resDirs();
426 int N = dirs.size();
427
428 for (int i=0; i<N; i++) {
429 sp<AaptDir> d = dirs.itemAt(i);
430 NOISY(printf("Collecting dir #%d %p: %s, leaf %s\n", i, d.get(), d->getPath().string(),
431 d->getLeaf().string()));
432 collect_files(d, resources);
433
434 // don't try to include the res dir
435 NOISY(printf("Removing dir leaf %s\n", d->getLeaf().string()));
436 ass->removeDir(d->getLeaf());
437 }
438}
439
440enum {
441 ATTR_OKAY = -1,
442 ATTR_NOT_FOUND = -2,
443 ATTR_LEADING_SPACES = -3,
444 ATTR_TRAILING_SPACES = -4
445};
446static int validateAttr(const String8& path, const ResTable& table,
447 const ResXMLParser& parser,
448 const char* ns, const char* attr, const char* validChars, bool required)
449{
450 size_t len;
451
452 ssize_t index = parser.indexOfAttribute(ns, attr);
453 const uint16_t* str;
454 Res_value value;
455 if (index >= 0 && parser.getAttributeValue(index, &value) >= 0) {
456 const ResStringPool* pool = &parser.getStrings();
457 if (value.dataType == Res_value::TYPE_REFERENCE) {
458 uint32_t specFlags = 0;
459 int strIdx;
460 if ((strIdx=table.resolveReference(&value, 0x10000000, NULL, &specFlags)) < 0) {
461 fprintf(stderr, "%s:%d: Tag <%s> attribute %s references unknown resid 0x%08x.\n",
462 path.string(), parser.getLineNumber(),
463 String8(parser.getElementName(&len)).string(), attr,
464 value.data);
465 return ATTR_NOT_FOUND;
466 }
467
468 pool = table.getTableStringBlock(strIdx);
469 #if 0
470 if (pool != NULL) {
471 str = pool->stringAt(value.data, &len);
472 }
473 printf("***** RES ATTR: %s specFlags=0x%x strIdx=%d: %s\n", attr,
474 specFlags, strIdx, str != NULL ? String8(str).string() : "???");
475 #endif
476 if ((specFlags&~ResTable_typeSpec::SPEC_PUBLIC) != 0 && false) {
477 fprintf(stderr, "%s:%d: Tag <%s> attribute %s varies by configurations 0x%x.\n",
478 path.string(), parser.getLineNumber(),
479 String8(parser.getElementName(&len)).string(), attr,
480 specFlags);
481 return ATTR_NOT_FOUND;
482 }
483 }
484 if (value.dataType == Res_value::TYPE_STRING) {
485 if (pool == NULL) {
486 fprintf(stderr, "%s:%d: Tag <%s> attribute %s has no string block.\n",
487 path.string(), parser.getLineNumber(),
488 String8(parser.getElementName(&len)).string(), attr);
489 return ATTR_NOT_FOUND;
490 }
491 if ((str=pool->stringAt(value.data, &len)) == NULL) {
492 fprintf(stderr, "%s:%d: Tag <%s> attribute %s has corrupt string value.\n",
493 path.string(), parser.getLineNumber(),
494 String8(parser.getElementName(&len)).string(), attr);
495 return ATTR_NOT_FOUND;
496 }
497 } else {
498 fprintf(stderr, "%s:%d: Tag <%s> attribute %s has invalid type %d.\n",
499 path.string(), parser.getLineNumber(),
500 String8(parser.getElementName(&len)).string(), attr,
501 value.dataType);
502 return ATTR_NOT_FOUND;
503 }
504 if (validChars) {
505 for (size_t i=0; i<len; i++) {
506 uint16_t c = str[i];
507 const char* p = validChars;
508 bool okay = false;
509 while (*p) {
510 if (c == *p) {
511 okay = true;
512 break;
513 }
514 p++;
515 }
516 if (!okay) {
517 fprintf(stderr, "%s:%d: Tag <%s> attribute %s has invalid character '%c'.\n",
518 path.string(), parser.getLineNumber(),
519 String8(parser.getElementName(&len)).string(), attr, (char)str[i]);
520 return (int)i;
521 }
522 }
523 }
524 if (*str == ' ') {
525 fprintf(stderr, "%s:%d: Tag <%s> attribute %s can not start with a space.\n",
526 path.string(), parser.getLineNumber(),
527 String8(parser.getElementName(&len)).string(), attr);
528 return ATTR_LEADING_SPACES;
529 }
530 if (str[len-1] == ' ') {
531 fprintf(stderr, "%s:%d: Tag <%s> attribute %s can not end with a space.\n",
532 path.string(), parser.getLineNumber(),
533 String8(parser.getElementName(&len)).string(), attr);
534 return ATTR_TRAILING_SPACES;
535 }
536 return ATTR_OKAY;
537 }
538 if (required) {
539 fprintf(stderr, "%s:%d: Tag <%s> missing required attribute %s.\n",
540 path.string(), parser.getLineNumber(),
541 String8(parser.getElementName(&len)).string(), attr);
542 return ATTR_NOT_FOUND;
543 }
544 return ATTR_OKAY;
545}
546
547static void checkForIds(const String8& path, ResXMLParser& parser)
548{
549 ResXMLTree::event_code_t code;
550 while ((code=parser.next()) != ResXMLTree::END_DOCUMENT
551 && code > ResXMLTree::BAD_DOCUMENT) {
552 if (code == ResXMLTree::START_TAG) {
553 ssize_t index = parser.indexOfAttribute(NULL, "id");
554 if (index >= 0) {
555 fprintf(stderr, "%s:%d: warning: found plain 'id' attribute; did you mean the new 'android:id' name?\n",
556 path.string(), parser.getLineNumber());
557 }
558 }
559 }
560}
561
562static bool applyFileOverlay(Bundle *bundle,
563 const sp<AaptAssets>& assets,
564 sp<ResourceTypeSet> *baseSet,
565 const char *resType)
566{
567 if (bundle->getVerbose()) {
568 printf("applyFileOverlay for %s\n", resType);
569 }
570
571 // Replace any base level files in this category with any found from the overlay
572 // Also add any found only in the overlay.
573 sp<AaptAssets> overlay = assets->getOverlay();
574 String8 resTypeString(resType);
575
576 // work through the linked list of overlays
577 while (overlay.get()) {
578 KeyedVector<String8, sp<ResourceTypeSet> >* overlayRes = overlay->getResources();
579
580 // get the overlay resources of the requested type
581 ssize_t index = overlayRes->indexOfKey(resTypeString);
582 if (index >= 0) {
583 sp<ResourceTypeSet> overlaySet = overlayRes->valueAt(index);
584
585 // for each of the resources, check for a match in the previously built
586 // non-overlay "baseset".
587 size_t overlayCount = overlaySet->size();
588 for (size_t overlayIndex=0; overlayIndex<overlayCount; overlayIndex++) {
589 if (bundle->getVerbose()) {
590 printf("trying overlaySet Key=%s\n",overlaySet->keyAt(overlayIndex).string());
591 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700592 ssize_t baseIndex = -1;
Adam Lesinski282e1812014-01-23 18:17:42 -0800593 if (baseSet->get() != NULL) {
594 baseIndex = (*baseSet)->indexOfKey(overlaySet->keyAt(overlayIndex));
595 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700596 if (baseIndex >= 0) {
Adam Lesinski282e1812014-01-23 18:17:42 -0800597 // look for same flavor. For a given file (strings.xml, for example)
598 // there may be a locale specific or other flavors - we want to match
599 // the same flavor.
600 sp<AaptGroup> overlayGroup = overlaySet->valueAt(overlayIndex);
601 sp<AaptGroup> baseGroup = (*baseSet)->valueAt(baseIndex);
602
603 DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> > overlayFiles =
604 overlayGroup->getFiles();
605 if (bundle->getVerbose()) {
606 DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> > baseFiles =
607 baseGroup->getFiles();
608 for (size_t i=0; i < baseFiles.size(); i++) {
609 printf("baseFile " ZD " has flavor %s\n", (ZD_TYPE) i,
610 baseFiles.keyAt(i).toString().string());
611 }
612 for (size_t i=0; i < overlayFiles.size(); i++) {
613 printf("overlayFile " ZD " has flavor %s\n", (ZD_TYPE) i,
614 overlayFiles.keyAt(i).toString().string());
615 }
616 }
617
618 size_t overlayGroupSize = overlayFiles.size();
619 for (size_t overlayGroupIndex = 0;
620 overlayGroupIndex<overlayGroupSize;
621 overlayGroupIndex++) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700622 ssize_t baseFileIndex =
Adam Lesinski282e1812014-01-23 18:17:42 -0800623 baseGroup->getFiles().indexOfKey(overlayFiles.
624 keyAt(overlayGroupIndex));
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700625 if (baseFileIndex >= 0) {
Adam Lesinski282e1812014-01-23 18:17:42 -0800626 if (bundle->getVerbose()) {
627 printf("found a match (" ZD ") for overlay file %s, for flavor %s\n",
628 (ZD_TYPE) baseFileIndex,
629 overlayGroup->getLeaf().string(),
630 overlayFiles.keyAt(overlayGroupIndex).toString().string());
631 }
632 baseGroup->removeFile(baseFileIndex);
633 } else {
634 // didn't find a match fall through and add it..
635 if (true || bundle->getVerbose()) {
636 printf("nothing matches overlay file %s, for flavor %s\n",
637 overlayGroup->getLeaf().string(),
638 overlayFiles.keyAt(overlayGroupIndex).toString().string());
639 }
640 }
641 baseGroup->addFile(overlayFiles.valueAt(overlayGroupIndex));
642 assets->addGroupEntry(overlayFiles.keyAt(overlayGroupIndex));
643 }
644 } else {
645 if (baseSet->get() == NULL) {
646 *baseSet = new ResourceTypeSet();
647 assets->getResources()->add(String8(resType), *baseSet);
648 }
649 // this group doesn't exist (a file that's only in the overlay)
650 (*baseSet)->add(overlaySet->keyAt(overlayIndex),
651 overlaySet->valueAt(overlayIndex));
652 // make sure all flavors are defined in the resources.
653 sp<AaptGroup> overlayGroup = overlaySet->valueAt(overlayIndex);
654 DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> > overlayFiles =
655 overlayGroup->getFiles();
656 size_t overlayGroupSize = overlayFiles.size();
657 for (size_t overlayGroupIndex = 0;
658 overlayGroupIndex<overlayGroupSize;
659 overlayGroupIndex++) {
660 assets->addGroupEntry(overlayFiles.keyAt(overlayGroupIndex));
661 }
662 }
663 }
664 // this overlay didn't have resources for this type
665 }
666 // try next overlay
667 overlay = overlay->getOverlay();
668 }
669 return true;
670}
671
672/*
Jeff Davidsondf08d1c2014-02-25 12:28:08 -0800673 * Inserts an attribute in a given node.
Adam Lesinski282e1812014-01-23 18:17:42 -0800674 * If errorOnFailedInsert is true, and the attribute already exists, returns false.
Jeff Davidsondf08d1c2014-02-25 12:28:08 -0800675 * If replaceExisting is true, the attribute will be updated if it already exists.
676 * Returns true otherwise, even if the attribute already exists, and does not modify
677 * the existing attribute's value.
Adam Lesinski282e1812014-01-23 18:17:42 -0800678 */
679bool addTagAttribute(const sp<XMLNode>& node, const char* ns8,
Jeff Davidsondf08d1c2014-02-25 12:28:08 -0800680 const char* attr8, const char* value, bool errorOnFailedInsert,
681 bool replaceExisting)
Adam Lesinski282e1812014-01-23 18:17:42 -0800682{
683 if (value == NULL) {
684 return true;
685 }
686
687 const String16 ns(ns8);
688 const String16 attr(attr8);
689
Jeff Davidsondf08d1c2014-02-25 12:28:08 -0800690 XMLNode::attribute_entry* existingEntry = node->editAttribute(ns, attr);
691 if (existingEntry != NULL) {
692 if (replaceExisting) {
693 NOISY(printf("Info: AndroidManifest.xml already defines %s (in %s);"
694 " overwriting existing value from manifest.\n",
695 String8(attr).string(), String8(ns).string()));
696 existingEntry->string = String16(value);
697 return true;
698 }
699
Adam Lesinski282e1812014-01-23 18:17:42 -0800700 if (errorOnFailedInsert) {
701 fprintf(stderr, "Error: AndroidManifest.xml already defines %s (in %s);"
702 " cannot insert new value %s.\n",
703 String8(attr).string(), String8(ns).string(), value);
704 return false;
705 }
706
707 fprintf(stderr, "Warning: AndroidManifest.xml already defines %s (in %s);"
708 " using existing value in manifest.\n",
709 String8(attr).string(), String8(ns).string());
710
711 // don't stop the build.
712 return true;
713 }
714
715 node->addAttribute(ns, attr, String16(value));
716 return true;
717}
718
Jeff Davidsondf08d1c2014-02-25 12:28:08 -0800719/*
720 * Inserts an attribute in a given node, only if the attribute does not
721 * exist.
722 * If errorOnFailedInsert is true, and the attribute already exists, returns false.
723 * Returns true otherwise, even if the attribute already exists.
724 */
725bool addTagAttribute(const sp<XMLNode>& node, const char* ns8,
726 const char* attr8, const char* value, bool errorOnFailedInsert)
727{
728 return addTagAttribute(node, ns8, attr8, value, errorOnFailedInsert, false);
729}
730
Adam Lesinski282e1812014-01-23 18:17:42 -0800731static void fullyQualifyClassName(const String8& package, sp<XMLNode> node,
732 const String16& attrName) {
733 XMLNode::attribute_entry* attr = node->editAttribute(
734 String16("http://schemas.android.com/apk/res/android"), attrName);
735 if (attr != NULL) {
736 String8 name(attr->string);
737
738 // asdf --> package.asdf
739 // .asdf .a.b --> package.asdf package.a.b
740 // asdf.adsf --> asdf.asdf
741 String8 className;
742 const char* p = name.string();
743 const char* q = strchr(p, '.');
744 if (p == q) {
745 className += package;
746 className += name;
747 } else if (q == NULL) {
748 className += package;
749 className += ".";
750 className += name;
751 } else {
752 className += name;
753 }
754 NOISY(printf("Qualifying class '%s' to '%s'", name.string(), className.string()));
755 attr->string.setTo(String16(className));
756 }
757}
758
759status_t massageManifest(Bundle* bundle, sp<XMLNode> root)
760{
761 root = root->searchElement(String16(), String16("manifest"));
762 if (root == NULL) {
763 fprintf(stderr, "No <manifest> tag.\n");
764 return UNKNOWN_ERROR;
765 }
766
767 bool errorOnFailedInsert = bundle->getErrorOnFailedInsert();
Jeff Davidsondf08d1c2014-02-25 12:28:08 -0800768 bool replaceVersion = bundle->getReplaceVersion();
Adam Lesinski282e1812014-01-23 18:17:42 -0800769
770 if (!addTagAttribute(root, RESOURCES_ANDROID_NAMESPACE, "versionCode",
Jeff Davidsondf08d1c2014-02-25 12:28:08 -0800771 bundle->getVersionCode(), errorOnFailedInsert, replaceVersion)) {
Adam Lesinski282e1812014-01-23 18:17:42 -0800772 return UNKNOWN_ERROR;
773 }
774 if (!addTagAttribute(root, RESOURCES_ANDROID_NAMESPACE, "versionName",
Jeff Davidsondf08d1c2014-02-25 12:28:08 -0800775 bundle->getVersionName(), errorOnFailedInsert, replaceVersion)) {
Adam Lesinski282e1812014-01-23 18:17:42 -0800776 return UNKNOWN_ERROR;
777 }
778
779 if (bundle->getMinSdkVersion() != NULL
780 || bundle->getTargetSdkVersion() != NULL
781 || bundle->getMaxSdkVersion() != NULL) {
782 sp<XMLNode> vers = root->getChildElement(String16(), String16("uses-sdk"));
783 if (vers == NULL) {
784 vers = XMLNode::newElement(root->getFilename(), String16(), String16("uses-sdk"));
785 root->insertChildAt(vers, 0);
786 }
787
788 if (!addTagAttribute(vers, RESOURCES_ANDROID_NAMESPACE, "minSdkVersion",
789 bundle->getMinSdkVersion(), errorOnFailedInsert)) {
790 return UNKNOWN_ERROR;
791 }
792 if (!addTagAttribute(vers, RESOURCES_ANDROID_NAMESPACE, "targetSdkVersion",
793 bundle->getTargetSdkVersion(), errorOnFailedInsert)) {
794 return UNKNOWN_ERROR;
795 }
796 if (!addTagAttribute(vers, RESOURCES_ANDROID_NAMESPACE, "maxSdkVersion",
797 bundle->getMaxSdkVersion(), errorOnFailedInsert)) {
798 return UNKNOWN_ERROR;
799 }
800 }
801
802 if (bundle->getDebugMode()) {
803 sp<XMLNode> application = root->getChildElement(String16(), String16("application"));
804 if (application != NULL) {
805 if (!addTagAttribute(application, RESOURCES_ANDROID_NAMESPACE, "debuggable", "true",
806 errorOnFailedInsert)) {
807 return UNKNOWN_ERROR;
808 }
809 }
810 }
811
812 // Deal with manifest package name overrides
813 const char* manifestPackageNameOverride = bundle->getManifestPackageNameOverride();
814 if (manifestPackageNameOverride != NULL) {
815 // Update the actual package name
816 XMLNode::attribute_entry* attr = root->editAttribute(String16(), String16("package"));
817 if (attr == NULL) {
818 fprintf(stderr, "package name is required with --rename-manifest-package.\n");
819 return UNKNOWN_ERROR;
820 }
821 String8 origPackage(attr->string);
822 attr->string.setTo(String16(manifestPackageNameOverride));
823 NOISY(printf("Overriding package '%s' to be '%s'\n", origPackage.string(), manifestPackageNameOverride));
824
825 // Make class names fully qualified
826 sp<XMLNode> application = root->getChildElement(String16(), String16("application"));
827 if (application != NULL) {
828 fullyQualifyClassName(origPackage, application, String16("name"));
829 fullyQualifyClassName(origPackage, application, String16("backupAgent"));
830
831 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(application->getChildren());
832 for (size_t i = 0; i < children.size(); i++) {
833 sp<XMLNode> child = children.editItemAt(i);
834 String8 tag(child->getElementName());
835 if (tag == "activity" || tag == "service" || tag == "receiver" || tag == "provider") {
836 fullyQualifyClassName(origPackage, child, String16("name"));
837 } else if (tag == "activity-alias") {
838 fullyQualifyClassName(origPackage, child, String16("name"));
839 fullyQualifyClassName(origPackage, child, String16("targetActivity"));
840 }
841 }
842 }
843 }
844
845 // Deal with manifest package name overrides
846 const char* instrumentationPackageNameOverride = bundle->getInstrumentationPackageNameOverride();
847 if (instrumentationPackageNameOverride != NULL) {
848 // Fix up instrumentation targets.
849 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(root->getChildren());
850 for (size_t i = 0; i < children.size(); i++) {
851 sp<XMLNode> child = children.editItemAt(i);
852 String8 tag(child->getElementName());
853 if (tag == "instrumentation") {
854 XMLNode::attribute_entry* attr = child->editAttribute(
855 String16("http://schemas.android.com/apk/res/android"), String16("targetPackage"));
856 if (attr != NULL) {
857 attr->string.setTo(String16(instrumentationPackageNameOverride));
858 }
859 }
860 }
861 }
862
Adam Lesinski833f3cc2014-06-18 15:06:01 -0700863 // Generate split name if feature is present.
864 const XMLNode::attribute_entry* attr = root->getAttribute(String16(), String16("featureName"));
865 if (attr != NULL) {
866 String16 splitName("feature_");
867 splitName.append(attr->string);
868 status_t err = root->addAttribute(String16(), String16("split"), splitName);
869 if (err != NO_ERROR) {
870 ALOGE("Failed to insert split name into AndroidManifest.xml");
871 return err;
872 }
873 }
874
Adam Lesinski282e1812014-01-23 18:17:42 -0800875 return NO_ERROR;
876}
877
878#define ASSIGN_IT(n) \
879 do { \
880 ssize_t index = resources->indexOfKey(String8(#n)); \
881 if (index >= 0) { \
882 n ## s = resources->valueAt(index); \
883 } \
884 } while (0)
885
886status_t updatePreProcessedCache(Bundle* bundle)
887{
888 #if BENCHMARK
889 fprintf(stdout, "BENCHMARK: Starting PNG PreProcessing \n");
890 long startPNGTime = clock();
891 #endif /* BENCHMARK */
892
893 String8 source(bundle->getResourceSourceDirs()[0]);
894 String8 dest(bundle->getCrunchedOutputDir());
895
896 FileFinder* ff = new SystemFileFinder();
897 CrunchCache cc(source,dest,ff);
898
899 CacheUpdater* cu = new SystemCacheUpdater(bundle);
900 size_t numFiles = cc.crunch(cu);
901
902 if (bundle->getVerbose())
903 fprintf(stdout, "Crunched %d PNG files to update cache\n", (int)numFiles);
904
905 delete ff;
906 delete cu;
907
908 #if BENCHMARK
909 fprintf(stdout, "BENCHMARK: End PNG PreProcessing. Time Elapsed: %f ms \n"
910 ,(clock() - startPNGTime)/1000.0);
911 #endif /* BENCHMARK */
912 return 0;
913}
914
Jeff Sharkey2cfc8482014-07-09 16:10:16 -0700915status_t generateAndroidManifestForSplit(Bundle* bundle, const sp<AaptAssets>& assets,
916 const sp<ApkSplit>& split, sp<AaptFile>& outFile, ResourceTable* table) {
Adam Lesinskifab50872014-04-16 14:40:42 -0700917 const String8 filename("AndroidManifest.xml");
918 const String16 androidPrefix("android");
919 const String16 androidNSUri("http://schemas.android.com/apk/res/android");
920 sp<XMLNode> root = XMLNode::newNamespace(filename, androidPrefix, androidNSUri);
921
922 // Build the <manifest> tag
923 sp<XMLNode> manifest = XMLNode::newElement(filename, String16(), String16("manifest"));
924
Jeff Sharkey2cfc8482014-07-09 16:10:16 -0700925 // Add the 'package' attribute which is set to the package name.
926 const char* packageName = assets->getPackage();
927 const char* manifestPackageNameOverride = bundle->getManifestPackageNameOverride();
928 if (manifestPackageNameOverride != NULL) {
929 packageName = manifestPackageNameOverride;
930 }
931 manifest->addAttribute(String16(), String16("package"), String16(packageName));
932
933 // Add the 'versionCode' attribute which is set to the original version code.
934 if (!addTagAttribute(manifest, RESOURCES_ANDROID_NAMESPACE, "versionCode",
935 bundle->getVersionCode(), true, true)) {
936 return UNKNOWN_ERROR;
937 }
Adam Lesinskifab50872014-04-16 14:40:42 -0700938
939 // Add the 'split' attribute which describes the configurations included.
Adam Lesinski62408402014-08-07 21:26:53 -0700940 String8 splitName("config.");
941 splitName.append(split->getPackageSafeName());
Adam Lesinskifab50872014-04-16 14:40:42 -0700942 manifest->addAttribute(String16(), String16("split"), String16(splitName));
943
944 // Build an empty <application> tag (required).
945 sp<XMLNode> app = XMLNode::newElement(filename, String16(), String16("application"));
Jeff Sharkey78a13012014-07-15 20:18:34 -0700946
947 // Add the 'hasCode' attribute which is never true for resource splits.
948 if (!addTagAttribute(app, RESOURCES_ANDROID_NAMESPACE, "hasCode",
949 "false", true, true)) {
950 return UNKNOWN_ERROR;
951 }
952
Adam Lesinskifab50872014-04-16 14:40:42 -0700953 manifest->addChild(app);
954 root->addChild(manifest);
955
Jeff Sharkey2cfc8482014-07-09 16:10:16 -0700956 int err = compileXmlFile(assets, root, outFile, table);
957 if (err < NO_ERROR) {
Adam Lesinskifab50872014-04-16 14:40:42 -0700958 return err;
959 }
960 outFile->setCompressionMethod(ZipEntry::kCompressDeflated);
961 return NO_ERROR;
962}
963
964status_t buildResources(Bundle* bundle, const sp<AaptAssets>& assets, sp<ApkBuilder>& builder)
Adam Lesinski282e1812014-01-23 18:17:42 -0800965{
966 // First, look for a package file to parse. This is required to
967 // be able to generate the resource information.
968 sp<AaptGroup> androidManifestFile =
969 assets->getFiles().valueFor(String8("AndroidManifest.xml"));
970 if (androidManifestFile == NULL) {
971 fprintf(stderr, "ERROR: No AndroidManifest.xml file found.\n");
972 return UNKNOWN_ERROR;
973 }
974
975 status_t err = parsePackage(bundle, assets, androidManifestFile);
976 if (err != NO_ERROR) {
977 return err;
978 }
979
980 NOISY(printf("Creating resources for package %s\n",
981 assets->getPackage().string()));
982
Adam Lesinski833f3cc2014-06-18 15:06:01 -0700983 ResourceTable::PackageType packageType = ResourceTable::App;
984 if (bundle->getBuildSharedLibrary()) {
985 packageType = ResourceTable::SharedLibrary;
986 } else if (bundle->getExtending()) {
987 packageType = ResourceTable::System;
988 } else if (!bundle->getFeatureOfPackage().isEmpty()) {
989 packageType = ResourceTable::AppFeature;
990 }
991
992 ResourceTable table(bundle, String16(assets->getPackage()), packageType);
Adam Lesinski282e1812014-01-23 18:17:42 -0800993 err = table.addIncludedResources(bundle, assets);
994 if (err != NO_ERROR) {
995 return err;
996 }
997
998 NOISY(printf("Found %d included resource packages\n", (int)table.size()));
999
1000 // Standard flags for compiled XML and optional UTF-8 encoding
1001 int xmlFlags = XML_COMPILE_STANDARD_RESOURCE;
1002
1003 /* Only enable UTF-8 if the caller of aapt didn't specifically
1004 * request UTF-16 encoding and the parameters of this package
1005 * allow UTF-8 to be used.
1006 */
1007 if (!bundle->getUTF16StringsOption()) {
1008 xmlFlags |= XML_COMPILE_UTF8;
1009 }
1010
1011 // --------------------------------------------------------------
1012 // First, gather all resource information.
1013 // --------------------------------------------------------------
1014
1015 // resType -> leafName -> group
1016 KeyedVector<String8, sp<ResourceTypeSet> > *resources =
1017 new KeyedVector<String8, sp<ResourceTypeSet> >;
1018 collect_files(assets, resources);
1019
1020 sp<ResourceTypeSet> drawables;
1021 sp<ResourceTypeSet> layouts;
1022 sp<ResourceTypeSet> anims;
1023 sp<ResourceTypeSet> animators;
1024 sp<ResourceTypeSet> interpolators;
1025 sp<ResourceTypeSet> transitions;
Adam Lesinski282e1812014-01-23 18:17:42 -08001026 sp<ResourceTypeSet> xmls;
1027 sp<ResourceTypeSet> raws;
1028 sp<ResourceTypeSet> colors;
1029 sp<ResourceTypeSet> menus;
1030 sp<ResourceTypeSet> mipmaps;
1031
1032 ASSIGN_IT(drawable);
1033 ASSIGN_IT(layout);
1034 ASSIGN_IT(anim);
1035 ASSIGN_IT(animator);
1036 ASSIGN_IT(interpolator);
1037 ASSIGN_IT(transition);
Adam Lesinski282e1812014-01-23 18:17:42 -08001038 ASSIGN_IT(xml);
1039 ASSIGN_IT(raw);
1040 ASSIGN_IT(color);
1041 ASSIGN_IT(menu);
1042 ASSIGN_IT(mipmap);
1043
1044 assets->setResources(resources);
1045 // now go through any resource overlays and collect their files
1046 sp<AaptAssets> current = assets->getOverlay();
1047 while(current.get()) {
1048 KeyedVector<String8, sp<ResourceTypeSet> > *resources =
1049 new KeyedVector<String8, sp<ResourceTypeSet> >;
1050 current->setResources(resources);
1051 collect_files(current, resources);
1052 current = current->getOverlay();
1053 }
1054 // apply the overlay files to the base set
1055 if (!applyFileOverlay(bundle, assets, &drawables, "drawable") ||
1056 !applyFileOverlay(bundle, assets, &layouts, "layout") ||
1057 !applyFileOverlay(bundle, assets, &anims, "anim") ||
1058 !applyFileOverlay(bundle, assets, &animators, "animator") ||
1059 !applyFileOverlay(bundle, assets, &interpolators, "interpolator") ||
1060 !applyFileOverlay(bundle, assets, &transitions, "transition") ||
Adam Lesinski282e1812014-01-23 18:17:42 -08001061 !applyFileOverlay(bundle, assets, &xmls, "xml") ||
1062 !applyFileOverlay(bundle, assets, &raws, "raw") ||
1063 !applyFileOverlay(bundle, assets, &colors, "color") ||
1064 !applyFileOverlay(bundle, assets, &menus, "menu") ||
1065 !applyFileOverlay(bundle, assets, &mipmaps, "mipmap")) {
1066 return UNKNOWN_ERROR;
1067 }
1068
1069 bool hasErrors = false;
1070
1071 if (drawables != NULL) {
1072 if (bundle->getOutputAPKFile() != NULL) {
1073 err = preProcessImages(bundle, assets, drawables, "drawable");
1074 }
1075 if (err == NO_ERROR) {
1076 err = makeFileResources(bundle, assets, &table, drawables, "drawable");
1077 if (err != NO_ERROR) {
1078 hasErrors = true;
1079 }
1080 } else {
1081 hasErrors = true;
1082 }
1083 }
1084
1085 if (mipmaps != NULL) {
1086 if (bundle->getOutputAPKFile() != NULL) {
1087 err = preProcessImages(bundle, assets, mipmaps, "mipmap");
1088 }
1089 if (err == NO_ERROR) {
1090 err = makeFileResources(bundle, assets, &table, mipmaps, "mipmap");
1091 if (err != NO_ERROR) {
1092 hasErrors = true;
1093 }
1094 } else {
1095 hasErrors = true;
1096 }
1097 }
1098
1099 if (layouts != NULL) {
1100 err = makeFileResources(bundle, assets, &table, layouts, "layout");
1101 if (err != NO_ERROR) {
1102 hasErrors = true;
1103 }
1104 }
1105
1106 if (anims != NULL) {
1107 err = makeFileResources(bundle, assets, &table, anims, "anim");
1108 if (err != NO_ERROR) {
1109 hasErrors = true;
1110 }
1111 }
1112
1113 if (animators != NULL) {
1114 err = makeFileResources(bundle, assets, &table, animators, "animator");
1115 if (err != NO_ERROR) {
1116 hasErrors = true;
1117 }
1118 }
1119
1120 if (transitions != NULL) {
1121 err = makeFileResources(bundle, assets, &table, transitions, "transition");
1122 if (err != NO_ERROR) {
1123 hasErrors = true;
1124 }
1125 }
1126
Adam Lesinski282e1812014-01-23 18:17:42 -08001127 if (interpolators != NULL) {
1128 err = makeFileResources(bundle, assets, &table, interpolators, "interpolator");
1129 if (err != NO_ERROR) {
1130 hasErrors = true;
1131 }
1132 }
1133
1134 if (xmls != NULL) {
1135 err = makeFileResources(bundle, assets, &table, xmls, "xml");
1136 if (err != NO_ERROR) {
1137 hasErrors = true;
1138 }
1139 }
1140
1141 if (raws != NULL) {
1142 err = makeFileResources(bundle, assets, &table, raws, "raw");
1143 if (err != NO_ERROR) {
1144 hasErrors = true;
1145 }
1146 }
1147
1148 // compile resources
1149 current = assets;
1150 while(current.get()) {
1151 KeyedVector<String8, sp<ResourceTypeSet> > *resources =
1152 current->getResources();
1153
1154 ssize_t index = resources->indexOfKey(String8("values"));
1155 if (index >= 0) {
1156 ResourceDirIterator it(resources->valueAt(index), String8("values"));
1157 ssize_t res;
1158 while ((res=it.next()) == NO_ERROR) {
1159 sp<AaptFile> file = it.getFile();
1160 res = compileResourceFile(bundle, assets, file, it.getParams(),
1161 (current!=assets), &table);
1162 if (res != NO_ERROR) {
1163 hasErrors = true;
1164 }
1165 }
1166 }
1167 current = current->getOverlay();
1168 }
1169
1170 if (colors != NULL) {
1171 err = makeFileResources(bundle, assets, &table, colors, "color");
1172 if (err != NO_ERROR) {
1173 hasErrors = true;
1174 }
1175 }
1176
1177 if (menus != NULL) {
1178 err = makeFileResources(bundle, assets, &table, menus, "menu");
1179 if (err != NO_ERROR) {
1180 hasErrors = true;
1181 }
1182 }
1183
1184 // --------------------------------------------------------------------
1185 // Assignment of resource IDs and initial generation of resource table.
1186 // --------------------------------------------------------------------
1187
1188 if (table.hasResources()) {
Adam Lesinski282e1812014-01-23 18:17:42 -08001189 err = table.assignResourceIds();
1190 if (err < NO_ERROR) {
1191 return err;
1192 }
1193 }
1194
1195 // --------------------------------------------------------------
1196 // Finally, we can now we can compile XML files, which may reference
1197 // resources.
1198 // --------------------------------------------------------------
1199
1200 if (layouts != NULL) {
1201 ResourceDirIterator it(layouts, String8("layout"));
1202 while ((err=it.next()) == NO_ERROR) {
1203 String8 src = it.getFile()->getPrintableSource();
1204 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1205 if (err == NO_ERROR) {
1206 ResXMLTree block;
1207 block.setTo(it.getFile()->getData(), it.getFile()->getSize(), true);
1208 checkForIds(src, block);
1209 } else {
1210 hasErrors = true;
1211 }
1212 }
1213
1214 if (err < NO_ERROR) {
1215 hasErrors = true;
1216 }
1217 err = NO_ERROR;
1218 }
1219
1220 if (anims != NULL) {
1221 ResourceDirIterator it(anims, String8("anim"));
1222 while ((err=it.next()) == NO_ERROR) {
1223 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1224 if (err != NO_ERROR) {
1225 hasErrors = true;
1226 }
1227 }
1228
1229 if (err < NO_ERROR) {
1230 hasErrors = true;
1231 }
1232 err = NO_ERROR;
1233 }
1234
1235 if (animators != NULL) {
1236 ResourceDirIterator it(animators, String8("animator"));
1237 while ((err=it.next()) == NO_ERROR) {
1238 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1239 if (err != NO_ERROR) {
1240 hasErrors = true;
1241 }
1242 }
1243
1244 if (err < NO_ERROR) {
1245 hasErrors = true;
1246 }
1247 err = NO_ERROR;
1248 }
1249
1250 if (interpolators != NULL) {
1251 ResourceDirIterator it(interpolators, String8("interpolator"));
1252 while ((err=it.next()) == NO_ERROR) {
1253 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1254 if (err != NO_ERROR) {
1255 hasErrors = true;
1256 }
1257 }
1258
1259 if (err < NO_ERROR) {
1260 hasErrors = true;
1261 }
1262 err = NO_ERROR;
1263 }
1264
1265 if (transitions != NULL) {
1266 ResourceDirIterator it(transitions, String8("transition"));
1267 while ((err=it.next()) == NO_ERROR) {
1268 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1269 if (err != NO_ERROR) {
1270 hasErrors = true;
1271 }
1272 }
1273
1274 if (err < NO_ERROR) {
1275 hasErrors = true;
1276 }
1277 err = NO_ERROR;
1278 }
1279
Adam Lesinski282e1812014-01-23 18:17:42 -08001280 if (xmls != NULL) {
1281 ResourceDirIterator it(xmls, String8("xml"));
1282 while ((err=it.next()) == NO_ERROR) {
1283 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1284 if (err != NO_ERROR) {
1285 hasErrors = true;
1286 }
1287 }
1288
1289 if (err < NO_ERROR) {
1290 hasErrors = true;
1291 }
1292 err = NO_ERROR;
1293 }
1294
1295 if (drawables != NULL) {
Adam Lesinskifab50872014-04-16 14:40:42 -07001296 ResourceDirIterator it(drawables, String8("drawable"));
1297 while ((err=it.next()) == NO_ERROR) {
1298 err = postProcessImage(assets, &table, it.getFile());
1299 if (err != NO_ERROR) {
1300 hasErrors = true;
1301 }
1302 }
1303
1304 if (err < NO_ERROR) {
Adam Lesinski282e1812014-01-23 18:17:42 -08001305 hasErrors = true;
1306 }
Adam Lesinskifab50872014-04-16 14:40:42 -07001307 err = NO_ERROR;
Adam Lesinski282e1812014-01-23 18:17:42 -08001308 }
1309
1310 if (colors != NULL) {
1311 ResourceDirIterator it(colors, String8("color"));
1312 while ((err=it.next()) == NO_ERROR) {
Adam Lesinskifab50872014-04-16 14:40:42 -07001313 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
Adam Lesinski282e1812014-01-23 18:17:42 -08001314 if (err != NO_ERROR) {
1315 hasErrors = true;
1316 }
1317 }
1318
1319 if (err < NO_ERROR) {
1320 hasErrors = true;
1321 }
1322 err = NO_ERROR;
1323 }
1324
1325 if (menus != NULL) {
1326 ResourceDirIterator it(menus, String8("menu"));
1327 while ((err=it.next()) == NO_ERROR) {
1328 String8 src = it.getFile()->getPrintableSource();
1329 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
Adam Lesinskifab50872014-04-16 14:40:42 -07001330 if (err == NO_ERROR) {
1331 ResXMLTree block;
1332 block.setTo(it.getFile()->getData(), it.getFile()->getSize(), true);
1333 checkForIds(src, block);
1334 } else {
Adam Lesinski282e1812014-01-23 18:17:42 -08001335 hasErrors = true;
1336 }
Adam Lesinski282e1812014-01-23 18:17:42 -08001337 }
1338
1339 if (err < NO_ERROR) {
1340 hasErrors = true;
1341 }
1342 err = NO_ERROR;
1343 }
1344
1345 if (table.validateLocalizations()) {
1346 hasErrors = true;
1347 }
1348
1349 if (hasErrors) {
1350 return UNKNOWN_ERROR;
1351 }
1352
1353 const sp<AaptFile> manifestFile(androidManifestFile->getFiles().valueAt(0));
1354 String8 manifestPath(manifestFile->getPrintableSource());
1355
1356 // Generate final compiled manifest file.
1357 manifestFile->clearData();
1358 sp<XMLNode> manifestTree = XMLNode::parse(manifestFile);
1359 if (manifestTree == NULL) {
1360 return UNKNOWN_ERROR;
1361 }
1362 err = massageManifest(bundle, manifestTree);
1363 if (err < NO_ERROR) {
1364 return err;
1365 }
1366 err = compileXmlFile(assets, manifestTree, manifestFile, &table);
1367 if (err < NO_ERROR) {
1368 return err;
1369 }
1370
1371 //block.restart();
1372 //printXMLBlock(&block);
1373
1374 // --------------------------------------------------------------
1375 // Generate the final resource table.
1376 // Re-flatten because we may have added new resource IDs
1377 // --------------------------------------------------------------
1378
1379 ResTable finalResTable;
1380 sp<AaptFile> resFile;
1381
1382 if (table.hasResources()) {
1383 sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R"));
1384 err = table.addSymbols(symbols);
1385 if (err < NO_ERROR) {
1386 return err;
1387 }
1388
Adam Lesinskifab50872014-04-16 14:40:42 -07001389 Vector<sp<ApkSplit> >& splits = builder->getSplits();
1390 const size_t numSplits = splits.size();
1391 for (size_t i = 0; i < numSplits; i++) {
1392 sp<ApkSplit>& split = splits.editItemAt(i);
1393 sp<AaptFile> flattenedTable = new AaptFile(String8("resources.arsc"),
1394 AaptGroupEntry(), String8());
1395 err = table.flatten(bundle, split->getResourceFilter(), flattenedTable);
1396 if (err != NO_ERROR) {
1397 fprintf(stderr, "Failed to generate resource table for split '%s'\n",
1398 split->getPrintableName().string());
1399 return err;
1400 }
1401 split->addEntry(String8("resources.arsc"), flattenedTable);
Adam Lesinski282e1812014-01-23 18:17:42 -08001402
Adam Lesinskifab50872014-04-16 14:40:42 -07001403 if (split->isBase()) {
1404 resFile = flattenedTable;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07001405 err = finalResTable.add(flattenedTable->getData(), flattenedTable->getSize());
1406 if (err != NO_ERROR) {
1407 fprintf(stderr, "Generated resource table is corrupt.\n");
1408 return err;
1409 }
Adam Lesinskifab50872014-04-16 14:40:42 -07001410 } else {
1411 sp<AaptFile> generatedManifest = new AaptFile(String8("AndroidManifest.xml"),
1412 AaptGroupEntry(), String8());
Jeff Sharkey2cfc8482014-07-09 16:10:16 -07001413 err = generateAndroidManifestForSplit(bundle, assets, split,
1414 generatedManifest, &table);
Adam Lesinskifab50872014-04-16 14:40:42 -07001415 if (err != NO_ERROR) {
1416 fprintf(stderr, "Failed to generate AndroidManifest.xml for split '%s'\n",
1417 split->getPrintableName().string());
1418 return err;
1419 }
1420 split->addEntry(String8("AndroidManifest.xml"), generatedManifest);
1421 }
Adam Lesinski282e1812014-01-23 18:17:42 -08001422 }
1423
1424 if (bundle->getPublicOutputFile()) {
1425 FILE* fp = fopen(bundle->getPublicOutputFile(), "w+");
1426 if (fp == NULL) {
1427 fprintf(stderr, "ERROR: Unable to open public definitions output file %s: %s\n",
1428 (const char*)bundle->getPublicOutputFile(), strerror(errno));
1429 return UNKNOWN_ERROR;
1430 }
1431 if (bundle->getVerbose()) {
1432 printf(" Writing public definitions to %s.\n", bundle->getPublicOutputFile());
1433 }
1434 table.writePublicDefinitions(String16(assets->getPackage()), fp);
1435 fclose(fp);
1436 }
Adam Lesinskifab50872014-04-16 14:40:42 -07001437
1438 if (finalResTable.getTableCount() == 0 || resFile == NULL) {
1439 fprintf(stderr, "No resource table was generated.\n");
1440 return UNKNOWN_ERROR;
1441 }
Adam Lesinski282e1812014-01-23 18:17:42 -08001442 }
Adam Lesinskifab50872014-04-16 14:40:42 -07001443
Adam Lesinski282e1812014-01-23 18:17:42 -08001444 // Perform a basic validation of the manifest file. This time we
1445 // parse it with the comments intact, so that we can use them to
1446 // generate java docs... so we are not going to write this one
1447 // back out to the final manifest data.
1448 sp<AaptFile> outManifestFile = new AaptFile(manifestFile->getSourceFile(),
1449 manifestFile->getGroupEntry(),
1450 manifestFile->getResourceType());
1451 err = compileXmlFile(assets, manifestFile,
1452 outManifestFile, &table,
1453 XML_COMPILE_ASSIGN_ATTRIBUTE_IDS
1454 | XML_COMPILE_STRIP_WHITESPACE | XML_COMPILE_STRIP_RAW_VALUES);
1455 if (err < NO_ERROR) {
1456 return err;
1457 }
1458 ResXMLTree block;
1459 block.setTo(outManifestFile->getData(), outManifestFile->getSize(), true);
1460 String16 manifest16("manifest");
1461 String16 permission16("permission");
1462 String16 permission_group16("permission-group");
1463 String16 uses_permission16("uses-permission");
1464 String16 instrumentation16("instrumentation");
1465 String16 application16("application");
1466 String16 provider16("provider");
1467 String16 service16("service");
1468 String16 receiver16("receiver");
1469 String16 activity16("activity");
1470 String16 action16("action");
1471 String16 category16("category");
1472 String16 data16("scheme");
Adam Lesinskid3edfde2014-08-08 17:32:44 -07001473 String16 feature_group16("feature-group");
1474 String16 uses_feature16("uses-feature");
Adam Lesinski282e1812014-01-23 18:17:42 -08001475 const char* packageIdentChars = "abcdefghijklmnopqrstuvwxyz"
1476 "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789";
1477 const char* packageIdentCharsWithTheStupid = "abcdefghijklmnopqrstuvwxyz"
1478 "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789-";
1479 const char* classIdentChars = "abcdefghijklmnopqrstuvwxyz"
1480 "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789$";
1481 const char* processIdentChars = "abcdefghijklmnopqrstuvwxyz"
1482 "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789:";
1483 const char* authoritiesIdentChars = "abcdefghijklmnopqrstuvwxyz"
1484 "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789-:;";
1485 const char* typeIdentChars = "abcdefghijklmnopqrstuvwxyz"
1486 "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789:-/*+";
1487 const char* schemeIdentChars = "abcdefghijklmnopqrstuvwxyz"
1488 "ABCDEFGHIJKLMNOPQRSTUVWXYZ._0123456789-";
1489 ResXMLTree::event_code_t code;
1490 sp<AaptSymbols> permissionSymbols;
1491 sp<AaptSymbols> permissionGroupSymbols;
1492 while ((code=block.next()) != ResXMLTree::END_DOCUMENT
1493 && code > ResXMLTree::BAD_DOCUMENT) {
1494 if (code == ResXMLTree::START_TAG) {
1495 size_t len;
1496 if (block.getElementNamespace(&len) != NULL) {
1497 continue;
1498 }
1499 if (strcmp16(block.getElementName(&len), manifest16.string()) == 0) {
1500 if (validateAttr(manifestPath, finalResTable, block, NULL, "package",
1501 packageIdentChars, true) != ATTR_OKAY) {
1502 hasErrors = true;
1503 }
1504 if (validateAttr(manifestPath, finalResTable, block, RESOURCES_ANDROID_NAMESPACE,
1505 "sharedUserId", packageIdentChars, false) != ATTR_OKAY) {
1506 hasErrors = true;
1507 }
1508 } else if (strcmp16(block.getElementName(&len), permission16.string()) == 0
1509 || strcmp16(block.getElementName(&len), permission_group16.string()) == 0) {
1510 const bool isGroup = strcmp16(block.getElementName(&len),
1511 permission_group16.string()) == 0;
1512 if (validateAttr(manifestPath, finalResTable, block, RESOURCES_ANDROID_NAMESPACE,
1513 "name", isGroup ? packageIdentCharsWithTheStupid
1514 : packageIdentChars, true) != ATTR_OKAY) {
1515 hasErrors = true;
1516 }
1517 SourcePos srcPos(manifestPath, block.getLineNumber());
1518 sp<AaptSymbols> syms;
1519 if (!isGroup) {
1520 syms = permissionSymbols;
1521 if (syms == NULL) {
1522 sp<AaptSymbols> symbols =
1523 assets->getSymbolsFor(String8("Manifest"));
1524 syms = permissionSymbols = symbols->addNestedSymbol(
1525 String8("permission"), srcPos);
1526 }
1527 } else {
1528 syms = permissionGroupSymbols;
1529 if (syms == NULL) {
1530 sp<AaptSymbols> symbols =
1531 assets->getSymbolsFor(String8("Manifest"));
1532 syms = permissionGroupSymbols = symbols->addNestedSymbol(
1533 String8("permission_group"), srcPos);
1534 }
1535 }
1536 size_t len;
1537 ssize_t index = block.indexOfAttribute(RESOURCES_ANDROID_NAMESPACE, "name");
1538 const uint16_t* id = block.getAttributeStringValue(index, &len);
1539 if (id == NULL) {
1540 fprintf(stderr, "%s:%d: missing name attribute in element <%s>.\n",
1541 manifestPath.string(), block.getLineNumber(),
1542 String8(block.getElementName(&len)).string());
1543 hasErrors = true;
1544 break;
1545 }
1546 String8 idStr(id);
1547 char* p = idStr.lockBuffer(idStr.size());
1548 char* e = p + idStr.size();
1549 bool begins_with_digit = true; // init to true so an empty string fails
1550 while (e > p) {
1551 e--;
1552 if (*e >= '0' && *e <= '9') {
1553 begins_with_digit = true;
1554 continue;
1555 }
1556 if ((*e >= 'a' && *e <= 'z') ||
1557 (*e >= 'A' && *e <= 'Z') ||
1558 (*e == '_')) {
1559 begins_with_digit = false;
1560 continue;
1561 }
1562 if (isGroup && (*e == '-')) {
1563 *e = '_';
1564 begins_with_digit = false;
1565 continue;
1566 }
1567 e++;
1568 break;
1569 }
1570 idStr.unlockBuffer();
1571 // verify that we stopped because we hit a period or
1572 // the beginning of the string, and that the
1573 // identifier didn't begin with a digit.
1574 if (begins_with_digit || (e != p && *(e-1) != '.')) {
1575 fprintf(stderr,
1576 "%s:%d: Permission name <%s> is not a valid Java symbol\n",
1577 manifestPath.string(), block.getLineNumber(), idStr.string());
1578 hasErrors = true;
1579 }
1580 syms->addStringSymbol(String8(e), idStr, srcPos);
1581 const uint16_t* cmt = block.getComment(&len);
1582 if (cmt != NULL && *cmt != 0) {
1583 //printf("Comment of %s: %s\n", String8(e).string(),
1584 // String8(cmt).string());
1585 syms->appendComment(String8(e), String16(cmt), srcPos);
1586 } else {
1587 //printf("No comment for %s\n", String8(e).string());
1588 }
1589 syms->makeSymbolPublic(String8(e), srcPos);
1590 } else if (strcmp16(block.getElementName(&len), uses_permission16.string()) == 0) {
1591 if (validateAttr(manifestPath, finalResTable, block, RESOURCES_ANDROID_NAMESPACE,
1592 "name", packageIdentChars, true) != ATTR_OKAY) {
1593 hasErrors = true;
1594 }
1595 } else if (strcmp16(block.getElementName(&len), instrumentation16.string()) == 0) {
1596 if (validateAttr(manifestPath, finalResTable, block, RESOURCES_ANDROID_NAMESPACE,
1597 "name", classIdentChars, true) != ATTR_OKAY) {
1598 hasErrors = true;
1599 }
1600 if (validateAttr(manifestPath, finalResTable, block,
1601 RESOURCES_ANDROID_NAMESPACE, "targetPackage",
1602 packageIdentChars, true) != ATTR_OKAY) {
1603 hasErrors = true;
1604 }
1605 } else if (strcmp16(block.getElementName(&len), application16.string()) == 0) {
1606 if (validateAttr(manifestPath, finalResTable, block, RESOURCES_ANDROID_NAMESPACE,
1607 "name", classIdentChars, false) != ATTR_OKAY) {
1608 hasErrors = true;
1609 }
1610 if (validateAttr(manifestPath, finalResTable, block,
1611 RESOURCES_ANDROID_NAMESPACE, "permission",
1612 packageIdentChars, false) != ATTR_OKAY) {
1613 hasErrors = true;
1614 }
1615 if (validateAttr(manifestPath, finalResTable, block,
1616 RESOURCES_ANDROID_NAMESPACE, "process",
1617 processIdentChars, false) != ATTR_OKAY) {
1618 hasErrors = true;
1619 }
1620 if (validateAttr(manifestPath, finalResTable, block,
1621 RESOURCES_ANDROID_NAMESPACE, "taskAffinity",
1622 processIdentChars, false) != ATTR_OKAY) {
1623 hasErrors = true;
1624 }
1625 } else if (strcmp16(block.getElementName(&len), provider16.string()) == 0) {
1626 if (validateAttr(manifestPath, finalResTable, block, RESOURCES_ANDROID_NAMESPACE,
1627 "name", classIdentChars, true) != ATTR_OKAY) {
1628 hasErrors = true;
1629 }
1630 if (validateAttr(manifestPath, finalResTable, block,
1631 RESOURCES_ANDROID_NAMESPACE, "authorities",
1632 authoritiesIdentChars, true) != ATTR_OKAY) {
1633 hasErrors = true;
1634 }
1635 if (validateAttr(manifestPath, finalResTable, block,
1636 RESOURCES_ANDROID_NAMESPACE, "permission",
1637 packageIdentChars, false) != ATTR_OKAY) {
1638 hasErrors = true;
1639 }
1640 if (validateAttr(manifestPath, finalResTable, block,
1641 RESOURCES_ANDROID_NAMESPACE, "process",
1642 processIdentChars, false) != ATTR_OKAY) {
1643 hasErrors = true;
1644 }
1645 } else if (strcmp16(block.getElementName(&len), service16.string()) == 0
1646 || strcmp16(block.getElementName(&len), receiver16.string()) == 0
1647 || strcmp16(block.getElementName(&len), activity16.string()) == 0) {
1648 if (validateAttr(manifestPath, finalResTable, block, RESOURCES_ANDROID_NAMESPACE,
1649 "name", classIdentChars, true) != ATTR_OKAY) {
1650 hasErrors = true;
1651 }
1652 if (validateAttr(manifestPath, finalResTable, block,
1653 RESOURCES_ANDROID_NAMESPACE, "permission",
1654 packageIdentChars, false) != ATTR_OKAY) {
1655 hasErrors = true;
1656 }
1657 if (validateAttr(manifestPath, finalResTable, block,
1658 RESOURCES_ANDROID_NAMESPACE, "process",
1659 processIdentChars, false) != ATTR_OKAY) {
1660 hasErrors = true;
1661 }
1662 if (validateAttr(manifestPath, finalResTable, block,
1663 RESOURCES_ANDROID_NAMESPACE, "taskAffinity",
1664 processIdentChars, false) != ATTR_OKAY) {
1665 hasErrors = true;
1666 }
1667 } else if (strcmp16(block.getElementName(&len), action16.string()) == 0
1668 || strcmp16(block.getElementName(&len), category16.string()) == 0) {
1669 if (validateAttr(manifestPath, finalResTable, block,
1670 RESOURCES_ANDROID_NAMESPACE, "name",
1671 packageIdentChars, true) != ATTR_OKAY) {
1672 hasErrors = true;
1673 }
1674 } else if (strcmp16(block.getElementName(&len), data16.string()) == 0) {
1675 if (validateAttr(manifestPath, finalResTable, block,
1676 RESOURCES_ANDROID_NAMESPACE, "mimeType",
1677 typeIdentChars, true) != ATTR_OKAY) {
1678 hasErrors = true;
1679 }
1680 if (validateAttr(manifestPath, finalResTable, block,
1681 RESOURCES_ANDROID_NAMESPACE, "scheme",
1682 schemeIdentChars, true) != ATTR_OKAY) {
1683 hasErrors = true;
1684 }
Adam Lesinskid3edfde2014-08-08 17:32:44 -07001685 } else if (strcmp16(block.getElementName(&len), feature_group16.string()) == 0) {
1686 int depth = 1;
1687 while ((code=block.next()) != ResXMLTree::END_DOCUMENT
1688 && code > ResXMLTree::BAD_DOCUMENT) {
1689 if (code == ResXMLTree::START_TAG) {
1690 depth++;
1691 if (strcmp16(block.getElementName(&len), uses_feature16.string()) == 0) {
1692 ssize_t idx = block.indexOfAttribute(
1693 RESOURCES_ANDROID_NAMESPACE, "required");
1694 if (idx < 0) {
1695 continue;
1696 }
1697
1698 int32_t data = block.getAttributeData(idx);
1699 if (data == 0) {
1700 fprintf(stderr, "%s:%d: Tag <uses-feature> can not have "
1701 "android:required=\"false\" when inside a "
1702 "<feature-group> tag.\n",
1703 manifestPath.string(), block.getLineNumber());
1704 hasErrors = true;
1705 }
1706 }
1707 } else if (code == ResXMLTree::END_TAG) {
1708 depth--;
1709 if (depth == 0) {
1710 break;
1711 }
1712 }
1713 }
Adam Lesinski282e1812014-01-23 18:17:42 -08001714 }
1715 }
1716 }
1717
Adam Lesinskid3edfde2014-08-08 17:32:44 -07001718 if (hasErrors) {
1719 return UNKNOWN_ERROR;
1720 }
1721
Adam Lesinski282e1812014-01-23 18:17:42 -08001722 if (resFile != NULL) {
1723 // These resources are now considered to be a part of the included
1724 // resources, for others to reference.
1725 err = assets->addIncludedResources(resFile);
1726 if (err < NO_ERROR) {
1727 fprintf(stderr, "ERROR: Unable to parse generated resources, aborting.\n");
1728 return err;
1729 }
1730 }
1731
1732 return err;
1733}
1734
1735static const char* getIndentSpace(int indent)
1736{
1737static const char whitespace[] =
1738" ";
1739
1740 return whitespace + sizeof(whitespace) - 1 - indent*4;
1741}
1742
1743static String8 flattenSymbol(const String8& symbol) {
1744 String8 result(symbol);
1745 ssize_t first;
1746 if ((first = symbol.find(":", 0)) >= 0
1747 || (first = symbol.find(".", 0)) >= 0) {
1748 size_t size = symbol.size();
1749 char* buf = result.lockBuffer(size);
1750 for (size_t i = first; i < size; i++) {
1751 if (buf[i] == ':' || buf[i] == '.') {
1752 buf[i] = '_';
1753 }
1754 }
1755 result.unlockBuffer(size);
1756 }
1757 return result;
1758}
1759
1760static String8 getSymbolPackage(const String8& symbol, const sp<AaptAssets>& assets, bool pub) {
1761 ssize_t colon = symbol.find(":", 0);
1762 if (colon >= 0) {
1763 return String8(symbol.string(), colon);
1764 }
1765 return pub ? assets->getPackage() : assets->getSymbolsPrivatePackage();
1766}
1767
1768static String8 getSymbolName(const String8& symbol) {
1769 ssize_t colon = symbol.find(":", 0);
1770 if (colon >= 0) {
1771 return String8(symbol.string() + colon + 1);
1772 }
1773 return symbol;
1774}
1775
1776static String16 getAttributeComment(const sp<AaptAssets>& assets,
1777 const String8& name,
1778 String16* outTypeComment = NULL)
1779{
1780 sp<AaptSymbols> asym = assets->getSymbolsFor(String8("R"));
1781 if (asym != NULL) {
1782 //printf("Got R symbols!\n");
1783 asym = asym->getNestedSymbols().valueFor(String8("attr"));
1784 if (asym != NULL) {
1785 //printf("Got attrs symbols! comment %s=%s\n",
1786 // name.string(), String8(asym->getComment(name)).string());
1787 if (outTypeComment != NULL) {
1788 *outTypeComment = asym->getTypeComment(name);
1789 }
1790 return asym->getComment(name);
1791 }
1792 }
1793 return String16();
1794}
1795
1796static status_t writeLayoutClasses(
1797 FILE* fp, const sp<AaptAssets>& assets,
Adam Lesinskie8e91922014-08-06 17:41:08 -07001798 const sp<AaptSymbols>& symbols, int indent, bool includePrivate, bool nonConstantId)
Adam Lesinski282e1812014-01-23 18:17:42 -08001799{
1800 const char* indentStr = getIndentSpace(indent);
1801 if (!includePrivate) {
1802 fprintf(fp, "%s/** @doconly */\n", indentStr);
1803 }
1804 fprintf(fp, "%spublic static final class styleable {\n", indentStr);
1805 indent++;
1806
1807 String16 attr16("attr");
1808 String16 package16(assets->getPackage());
1809
1810 indentStr = getIndentSpace(indent);
1811 bool hasErrors = false;
1812
1813 size_t i;
1814 size_t N = symbols->getNestedSymbols().size();
1815 for (i=0; i<N; i++) {
1816 sp<AaptSymbols> nsymbols = symbols->getNestedSymbols().valueAt(i);
1817 String8 realClassName(symbols->getNestedSymbols().keyAt(i));
1818 String8 nclassName(flattenSymbol(realClassName));
1819
1820 SortedVector<uint32_t> idents;
1821 Vector<uint32_t> origOrder;
1822 Vector<bool> publicFlags;
1823
1824 size_t a;
1825 size_t NA = nsymbols->getSymbols().size();
1826 for (a=0; a<NA; a++) {
1827 const AaptSymbolEntry& sym(nsymbols->getSymbols().valueAt(a));
1828 int32_t code = sym.typeCode == AaptSymbolEntry::TYPE_INT32
1829 ? sym.int32Val : 0;
1830 bool isPublic = true;
1831 if (code == 0) {
1832 String16 name16(sym.name);
1833 uint32_t typeSpecFlags;
1834 code = assets->getIncludedResources().identifierForName(
1835 name16.string(), name16.size(),
1836 attr16.string(), attr16.size(),
1837 package16.string(), package16.size(), &typeSpecFlags);
1838 if (code == 0) {
1839 fprintf(stderr, "ERROR: In <declare-styleable> %s, unable to find attribute %s\n",
1840 nclassName.string(), sym.name.string());
1841 hasErrors = true;
1842 }
1843 isPublic = (typeSpecFlags&ResTable_typeSpec::SPEC_PUBLIC) != 0;
1844 }
1845 idents.add(code);
1846 origOrder.add(code);
1847 publicFlags.add(isPublic);
1848 }
1849
1850 NA = idents.size();
1851
Adam Lesinski282e1812014-01-23 18:17:42 -08001852 String16 comment = symbols->getComment(realClassName);
Jeff Browneb490d62014-06-06 19:43:42 -07001853 AnnotationProcessor ann;
Adam Lesinski282e1812014-01-23 18:17:42 -08001854 fprintf(fp, "%s/** ", indentStr);
1855 if (comment.size() > 0) {
1856 String8 cmt(comment);
Jeff Browneb490d62014-06-06 19:43:42 -07001857 ann.preprocessComment(cmt);
Adam Lesinski282e1812014-01-23 18:17:42 -08001858 fprintf(fp, "%s\n", cmt.string());
Adam Lesinski282e1812014-01-23 18:17:42 -08001859 } else {
1860 fprintf(fp, "Attributes that can be used with a %s.\n", nclassName.string());
1861 }
1862 bool hasTable = false;
1863 for (a=0; a<NA; a++) {
1864 ssize_t pos = idents.indexOf(origOrder.itemAt(a));
1865 if (pos >= 0) {
1866 if (!hasTable) {
1867 hasTable = true;
1868 fprintf(fp,
1869 "%s <p>Includes the following attributes:</p>\n"
1870 "%s <table>\n"
1871 "%s <colgroup align=\"left\" />\n"
1872 "%s <colgroup align=\"left\" />\n"
1873 "%s <tr><th>Attribute</th><th>Description</th></tr>\n",
1874 indentStr,
1875 indentStr,
1876 indentStr,
1877 indentStr,
1878 indentStr);
1879 }
1880 const AaptSymbolEntry& sym = nsymbols->getSymbols().valueAt(a);
1881 if (!publicFlags.itemAt(a) && !includePrivate) {
1882 continue;
1883 }
1884 String8 name8(sym.name);
1885 String16 comment(sym.comment);
1886 if (comment.size() <= 0) {
1887 comment = getAttributeComment(assets, name8);
1888 }
1889 if (comment.size() > 0) {
1890 const char16_t* p = comment.string();
1891 while (*p != 0 && *p != '.') {
1892 if (*p == '{') {
1893 while (*p != 0 && *p != '}') {
1894 p++;
1895 }
1896 } else {
1897 p++;
1898 }
1899 }
1900 if (*p == '.') {
1901 p++;
1902 }
1903 comment = String16(comment.string(), p-comment.string());
1904 }
1905 fprintf(fp, "%s <tr><td><code>{@link #%s_%s %s:%s}</code></td><td>%s</td></tr>\n",
1906 indentStr, nclassName.string(),
1907 flattenSymbol(name8).string(),
1908 getSymbolPackage(name8, assets, true).string(),
1909 getSymbolName(name8).string(),
1910 String8(comment).string());
1911 }
1912 }
1913 if (hasTable) {
1914 fprintf(fp, "%s </table>\n", indentStr);
1915 }
1916 for (a=0; a<NA; a++) {
1917 ssize_t pos = idents.indexOf(origOrder.itemAt(a));
1918 if (pos >= 0) {
1919 const AaptSymbolEntry& sym = nsymbols->getSymbols().valueAt(a);
1920 if (!publicFlags.itemAt(a) && !includePrivate) {
1921 continue;
1922 }
1923 fprintf(fp, "%s @see #%s_%s\n",
1924 indentStr, nclassName.string(),
1925 flattenSymbol(sym.name).string());
1926 }
1927 }
1928 fprintf(fp, "%s */\n", getIndentSpace(indent));
1929
Jeff Browneb490d62014-06-06 19:43:42 -07001930 ann.printAnnotations(fp, indentStr);
Adam Lesinski282e1812014-01-23 18:17:42 -08001931
1932 fprintf(fp,
1933 "%spublic static final int[] %s = {\n"
1934 "%s",
1935 indentStr, nclassName.string(),
1936 getIndentSpace(indent+1));
1937
1938 for (a=0; a<NA; a++) {
1939 if (a != 0) {
1940 if ((a&3) == 0) {
1941 fprintf(fp, ",\n%s", getIndentSpace(indent+1));
1942 } else {
1943 fprintf(fp, ", ");
1944 }
1945 }
1946 fprintf(fp, "0x%08x", idents[a]);
1947 }
1948
1949 fprintf(fp, "\n%s};\n", indentStr);
1950
1951 for (a=0; a<NA; a++) {
1952 ssize_t pos = idents.indexOf(origOrder.itemAt(a));
1953 if (pos >= 0) {
1954 const AaptSymbolEntry& sym = nsymbols->getSymbols().valueAt(a);
1955 if (!publicFlags.itemAt(a) && !includePrivate) {
1956 continue;
1957 }
1958 String8 name8(sym.name);
1959 String16 comment(sym.comment);
1960 String16 typeComment;
1961 if (comment.size() <= 0) {
1962 comment = getAttributeComment(assets, name8, &typeComment);
1963 } else {
1964 getAttributeComment(assets, name8, &typeComment);
1965 }
1966
1967 uint32_t typeSpecFlags = 0;
1968 String16 name16(sym.name);
1969 assets->getIncludedResources().identifierForName(
1970 name16.string(), name16.size(),
1971 attr16.string(), attr16.size(),
1972 package16.string(), package16.size(), &typeSpecFlags);
1973 //printf("%s:%s/%s: 0x%08x\n", String8(package16).string(),
1974 // String8(attr16).string(), String8(name16).string(), typeSpecFlags);
1975 const bool pub = (typeSpecFlags&ResTable_typeSpec::SPEC_PUBLIC) != 0;
Jeff Browneb490d62014-06-06 19:43:42 -07001976
1977 AnnotationProcessor ann;
Adam Lesinski282e1812014-01-23 18:17:42 -08001978 fprintf(fp, "%s/**\n", indentStr);
1979 if (comment.size() > 0) {
1980 String8 cmt(comment);
Jeff Browneb490d62014-06-06 19:43:42 -07001981 ann.preprocessComment(cmt);
Adam Lesinski282e1812014-01-23 18:17:42 -08001982 fprintf(fp, "%s <p>\n%s @attr description\n", indentStr, indentStr);
1983 fprintf(fp, "%s %s\n", indentStr, cmt.string());
Adam Lesinski282e1812014-01-23 18:17:42 -08001984 } else {
1985 fprintf(fp,
1986 "%s <p>This symbol is the offset where the {@link %s.R.attr#%s}\n"
1987 "%s attribute's value can be found in the {@link #%s} array.\n",
1988 indentStr,
1989 getSymbolPackage(name8, assets, pub).string(),
1990 getSymbolName(name8).string(),
1991 indentStr, nclassName.string());
1992 }
1993 if (typeComment.size() > 0) {
1994 String8 cmt(typeComment);
Jeff Browneb490d62014-06-06 19:43:42 -07001995 ann.preprocessComment(cmt);
Adam Lesinski282e1812014-01-23 18:17:42 -08001996 fprintf(fp, "\n\n%s %s\n", indentStr, cmt.string());
Adam Lesinski282e1812014-01-23 18:17:42 -08001997 }
1998 if (comment.size() > 0) {
1999 if (pub) {
2000 fprintf(fp,
2001 "%s <p>This corresponds to the global attribute\n"
2002 "%s resource symbol {@link %s.R.attr#%s}.\n",
2003 indentStr, indentStr,
2004 getSymbolPackage(name8, assets, true).string(),
2005 getSymbolName(name8).string());
2006 } else {
2007 fprintf(fp,
2008 "%s <p>This is a private symbol.\n", indentStr);
2009 }
2010 }
2011 fprintf(fp, "%s @attr name %s:%s\n", indentStr,
2012 getSymbolPackage(name8, assets, pub).string(),
2013 getSymbolName(name8).string());
2014 fprintf(fp, "%s*/\n", indentStr);
Jeff Browneb490d62014-06-06 19:43:42 -07002015 ann.printAnnotations(fp, indentStr);
Adam Lesinskie8e91922014-08-06 17:41:08 -07002016
2017 const char * id_format = nonConstantId ?
2018 "%spublic static int %s_%s = %d;\n" :
2019 "%spublic static final int %s_%s = %d;\n";
2020
Adam Lesinski282e1812014-01-23 18:17:42 -08002021 fprintf(fp,
Adam Lesinskie8e91922014-08-06 17:41:08 -07002022 id_format,
Adam Lesinski282e1812014-01-23 18:17:42 -08002023 indentStr, nclassName.string(),
2024 flattenSymbol(name8).string(), (int)pos);
2025 }
2026 }
2027 }
2028
2029 indent--;
2030 fprintf(fp, "%s};\n", getIndentSpace(indent));
2031 return hasErrors ? UNKNOWN_ERROR : NO_ERROR;
2032}
2033
2034static status_t writeTextLayoutClasses(
2035 FILE* fp, const sp<AaptAssets>& assets,
2036 const sp<AaptSymbols>& symbols, bool includePrivate)
2037{
2038 String16 attr16("attr");
2039 String16 package16(assets->getPackage());
2040
2041 bool hasErrors = false;
2042
2043 size_t i;
2044 size_t N = symbols->getNestedSymbols().size();
2045 for (i=0; i<N; i++) {
2046 sp<AaptSymbols> nsymbols = symbols->getNestedSymbols().valueAt(i);
2047 String8 realClassName(symbols->getNestedSymbols().keyAt(i));
2048 String8 nclassName(flattenSymbol(realClassName));
2049
2050 SortedVector<uint32_t> idents;
2051 Vector<uint32_t> origOrder;
2052 Vector<bool> publicFlags;
2053
2054 size_t a;
2055 size_t NA = nsymbols->getSymbols().size();
2056 for (a=0; a<NA; a++) {
2057 const AaptSymbolEntry& sym(nsymbols->getSymbols().valueAt(a));
2058 int32_t code = sym.typeCode == AaptSymbolEntry::TYPE_INT32
2059 ? sym.int32Val : 0;
2060 bool isPublic = true;
2061 if (code == 0) {
2062 String16 name16(sym.name);
2063 uint32_t typeSpecFlags;
2064 code = assets->getIncludedResources().identifierForName(
2065 name16.string(), name16.size(),
2066 attr16.string(), attr16.size(),
2067 package16.string(), package16.size(), &typeSpecFlags);
2068 if (code == 0) {
2069 fprintf(stderr, "ERROR: In <declare-styleable> %s, unable to find attribute %s\n",
2070 nclassName.string(), sym.name.string());
2071 hasErrors = true;
2072 }
2073 isPublic = (typeSpecFlags&ResTable_typeSpec::SPEC_PUBLIC) != 0;
2074 }
2075 idents.add(code);
2076 origOrder.add(code);
2077 publicFlags.add(isPublic);
2078 }
2079
2080 NA = idents.size();
2081
2082 fprintf(fp, "int[] styleable %s {", nclassName.string());
2083
2084 for (a=0; a<NA; a++) {
2085 if (a != 0) {
2086 fprintf(fp, ",");
2087 }
2088 fprintf(fp, " 0x%08x", idents[a]);
2089 }
2090
2091 fprintf(fp, " }\n");
2092
2093 for (a=0; a<NA; a++) {
2094 ssize_t pos = idents.indexOf(origOrder.itemAt(a));
2095 if (pos >= 0) {
2096 const AaptSymbolEntry& sym = nsymbols->getSymbols().valueAt(a);
2097 if (!publicFlags.itemAt(a) && !includePrivate) {
2098 continue;
2099 }
2100 String8 name8(sym.name);
2101 String16 comment(sym.comment);
2102 String16 typeComment;
2103 if (comment.size() <= 0) {
2104 comment = getAttributeComment(assets, name8, &typeComment);
2105 } else {
2106 getAttributeComment(assets, name8, &typeComment);
2107 }
2108
2109 uint32_t typeSpecFlags = 0;
2110 String16 name16(sym.name);
2111 assets->getIncludedResources().identifierForName(
2112 name16.string(), name16.size(),
2113 attr16.string(), attr16.size(),
2114 package16.string(), package16.size(), &typeSpecFlags);
2115 //printf("%s:%s/%s: 0x%08x\n", String8(package16).string(),
2116 // String8(attr16).string(), String8(name16).string(), typeSpecFlags);
2117 const bool pub = (typeSpecFlags&ResTable_typeSpec::SPEC_PUBLIC) != 0;
2118
2119 fprintf(fp,
2120 "int styleable %s_%s %d\n",
2121 nclassName.string(),
2122 flattenSymbol(name8).string(), (int)pos);
2123 }
2124 }
2125 }
2126
2127 return hasErrors ? UNKNOWN_ERROR : NO_ERROR;
2128}
2129
2130static status_t writeSymbolClass(
2131 FILE* fp, const sp<AaptAssets>& assets, bool includePrivate,
2132 const sp<AaptSymbols>& symbols, const String8& className, int indent,
2133 bool nonConstantId)
2134{
2135 fprintf(fp, "%spublic %sfinal class %s {\n",
2136 getIndentSpace(indent),
2137 indent != 0 ? "static " : "", className.string());
2138 indent++;
2139
2140 size_t i;
2141 status_t err = NO_ERROR;
2142
2143 const char * id_format = nonConstantId ?
2144 "%spublic static int %s=0x%08x;\n" :
2145 "%spublic static final int %s=0x%08x;\n";
2146
2147 size_t N = symbols->getSymbols().size();
2148 for (i=0; i<N; i++) {
2149 const AaptSymbolEntry& sym = symbols->getSymbols().valueAt(i);
2150 if (sym.typeCode != AaptSymbolEntry::TYPE_INT32) {
2151 continue;
2152 }
2153 if (!assets->isJavaSymbol(sym, includePrivate)) {
2154 continue;
2155 }
2156 String8 name8(sym.name);
2157 String16 comment(sym.comment);
2158 bool haveComment = false;
Jeff Browneb490d62014-06-06 19:43:42 -07002159 AnnotationProcessor ann;
Adam Lesinski282e1812014-01-23 18:17:42 -08002160 if (comment.size() > 0) {
2161 haveComment = true;
2162 String8 cmt(comment);
Jeff Browneb490d62014-06-06 19:43:42 -07002163 ann.preprocessComment(cmt);
Adam Lesinski282e1812014-01-23 18:17:42 -08002164 fprintf(fp,
2165 "%s/** %s\n",
2166 getIndentSpace(indent), cmt.string());
Adam Lesinski282e1812014-01-23 18:17:42 -08002167 } else if (sym.isPublic && !includePrivate) {
2168 sym.sourcePos.warning("No comment for public symbol %s:%s/%s",
2169 assets->getPackage().string(), className.string(),
2170 String8(sym.name).string());
2171 }
2172 String16 typeComment(sym.typeComment);
2173 if (typeComment.size() > 0) {
2174 String8 cmt(typeComment);
Jeff Browneb490d62014-06-06 19:43:42 -07002175 ann.preprocessComment(cmt);
Adam Lesinski282e1812014-01-23 18:17:42 -08002176 if (!haveComment) {
2177 haveComment = true;
2178 fprintf(fp,
2179 "%s/** %s\n", getIndentSpace(indent), cmt.string());
2180 } else {
2181 fprintf(fp,
2182 "%s %s\n", getIndentSpace(indent), cmt.string());
2183 }
Adam Lesinski282e1812014-01-23 18:17:42 -08002184 }
2185 if (haveComment) {
2186 fprintf(fp,"%s */\n", getIndentSpace(indent));
2187 }
Jeff Browneb490d62014-06-06 19:43:42 -07002188 ann.printAnnotations(fp, getIndentSpace(indent));
Adam Lesinski282e1812014-01-23 18:17:42 -08002189 fprintf(fp, id_format,
2190 getIndentSpace(indent),
2191 flattenSymbol(name8).string(), (int)sym.int32Val);
2192 }
2193
2194 for (i=0; i<N; i++) {
2195 const AaptSymbolEntry& sym = symbols->getSymbols().valueAt(i);
2196 if (sym.typeCode != AaptSymbolEntry::TYPE_STRING) {
2197 continue;
2198 }
2199 if (!assets->isJavaSymbol(sym, includePrivate)) {
2200 continue;
2201 }
2202 String8 name8(sym.name);
2203 String16 comment(sym.comment);
Jeff Browneb490d62014-06-06 19:43:42 -07002204 AnnotationProcessor ann;
Adam Lesinski282e1812014-01-23 18:17:42 -08002205 if (comment.size() > 0) {
2206 String8 cmt(comment);
Jeff Browneb490d62014-06-06 19:43:42 -07002207 ann.preprocessComment(cmt);
Adam Lesinski282e1812014-01-23 18:17:42 -08002208 fprintf(fp,
2209 "%s/** %s\n"
2210 "%s */\n",
2211 getIndentSpace(indent), cmt.string(),
2212 getIndentSpace(indent));
Adam Lesinski282e1812014-01-23 18:17:42 -08002213 } else if (sym.isPublic && !includePrivate) {
2214 sym.sourcePos.warning("No comment for public symbol %s:%s/%s",
2215 assets->getPackage().string(), className.string(),
2216 String8(sym.name).string());
2217 }
Jeff Browneb490d62014-06-06 19:43:42 -07002218 ann.printAnnotations(fp, getIndentSpace(indent));
Adam Lesinski282e1812014-01-23 18:17:42 -08002219 fprintf(fp, "%spublic static final String %s=\"%s\";\n",
2220 getIndentSpace(indent),
2221 flattenSymbol(name8).string(), sym.stringVal.string());
2222 }
2223
2224 sp<AaptSymbols> styleableSymbols;
2225
2226 N = symbols->getNestedSymbols().size();
2227 for (i=0; i<N; i++) {
2228 sp<AaptSymbols> nsymbols = symbols->getNestedSymbols().valueAt(i);
2229 String8 nclassName(symbols->getNestedSymbols().keyAt(i));
2230 if (nclassName == "styleable") {
2231 styleableSymbols = nsymbols;
2232 } else {
2233 err = writeSymbolClass(fp, assets, includePrivate, nsymbols, nclassName, indent, nonConstantId);
2234 }
2235 if (err != NO_ERROR) {
2236 return err;
2237 }
2238 }
2239
2240 if (styleableSymbols != NULL) {
Adam Lesinskie8e91922014-08-06 17:41:08 -07002241 err = writeLayoutClasses(fp, assets, styleableSymbols, indent, includePrivate, nonConstantId);
Adam Lesinski282e1812014-01-23 18:17:42 -08002242 if (err != NO_ERROR) {
2243 return err;
2244 }
2245 }
2246
2247 indent--;
2248 fprintf(fp, "%s}\n", getIndentSpace(indent));
2249 return NO_ERROR;
2250}
2251
2252static status_t writeTextSymbolClass(
2253 FILE* fp, const sp<AaptAssets>& assets, bool includePrivate,
2254 const sp<AaptSymbols>& symbols, const String8& className)
2255{
2256 size_t i;
2257 status_t err = NO_ERROR;
2258
2259 size_t N = symbols->getSymbols().size();
2260 for (i=0; i<N; i++) {
2261 const AaptSymbolEntry& sym = symbols->getSymbols().valueAt(i);
2262 if (sym.typeCode != AaptSymbolEntry::TYPE_INT32) {
2263 continue;
2264 }
2265
2266 if (!assets->isJavaSymbol(sym, includePrivate)) {
2267 continue;
2268 }
2269
2270 String8 name8(sym.name);
2271 fprintf(fp, "int %s %s 0x%08x\n",
2272 className.string(),
2273 flattenSymbol(name8).string(), (int)sym.int32Val);
2274 }
2275
2276 N = symbols->getNestedSymbols().size();
2277 for (i=0; i<N; i++) {
2278 sp<AaptSymbols> nsymbols = symbols->getNestedSymbols().valueAt(i);
2279 String8 nclassName(symbols->getNestedSymbols().keyAt(i));
2280 if (nclassName == "styleable") {
2281 err = writeTextLayoutClasses(fp, assets, nsymbols, includePrivate);
2282 } else {
2283 err = writeTextSymbolClass(fp, assets, includePrivate, nsymbols, nclassName);
2284 }
2285 if (err != NO_ERROR) {
2286 return err;
2287 }
2288 }
2289
2290 return NO_ERROR;
2291}
2292
2293status_t writeResourceSymbols(Bundle* bundle, const sp<AaptAssets>& assets,
2294 const String8& package, bool includePrivate)
2295{
2296 if (!bundle->getRClassDir()) {
2297 return NO_ERROR;
2298 }
2299
2300 const char* textSymbolsDest = bundle->getOutputTextSymbols();
2301
2302 String8 R("R");
2303 const size_t N = assets->getSymbols().size();
2304 for (size_t i=0; i<N; i++) {
2305 sp<AaptSymbols> symbols = assets->getSymbols().valueAt(i);
2306 String8 className(assets->getSymbols().keyAt(i));
2307 String8 dest(bundle->getRClassDir());
2308
2309 if (bundle->getMakePackageDirs()) {
2310 String8 pkg(package);
2311 const char* last = pkg.string();
2312 const char* s = last-1;
2313 do {
2314 s++;
2315 if (s > last && (*s == '.' || *s == 0)) {
2316 String8 part(last, s-last);
2317 dest.appendPath(part);
2318#ifdef HAVE_MS_C_RUNTIME
2319 _mkdir(dest.string());
2320#else
2321 mkdir(dest.string(), S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP);
2322#endif
2323 last = s+1;
2324 }
2325 } while (*s);
2326 }
2327 dest.appendPath(className);
2328 dest.append(".java");
2329 FILE* fp = fopen(dest.string(), "w+");
2330 if (fp == NULL) {
2331 fprintf(stderr, "ERROR: Unable to open class file %s: %s\n",
2332 dest.string(), strerror(errno));
2333 return UNKNOWN_ERROR;
2334 }
2335 if (bundle->getVerbose()) {
2336 printf(" Writing symbols for class %s.\n", className.string());
2337 }
2338
2339 fprintf(fp,
2340 "/* AUTO-GENERATED FILE. DO NOT MODIFY.\n"
2341 " *\n"
2342 " * This class was automatically generated by the\n"
2343 " * aapt tool from the resource data it found. It\n"
2344 " * should not be modified by hand.\n"
2345 " */\n"
2346 "\n"
2347 "package %s;\n\n", package.string());
2348
2349 status_t err = writeSymbolClass(fp, assets, includePrivate, symbols,
2350 className, 0, bundle->getNonConstantId());
Elliott Hughesb30296b2013-10-29 15:25:52 -07002351 fclose(fp);
Adam Lesinski282e1812014-01-23 18:17:42 -08002352 if (err != NO_ERROR) {
2353 return err;
2354 }
Adam Lesinski282e1812014-01-23 18:17:42 -08002355
2356 if (textSymbolsDest != NULL && R == className) {
2357 String8 textDest(textSymbolsDest);
2358 textDest.appendPath(className);
2359 textDest.append(".txt");
2360
2361 FILE* fp = fopen(textDest.string(), "w+");
2362 if (fp == NULL) {
2363 fprintf(stderr, "ERROR: Unable to open text symbol file %s: %s\n",
2364 textDest.string(), strerror(errno));
2365 return UNKNOWN_ERROR;
2366 }
2367 if (bundle->getVerbose()) {
2368 printf(" Writing text symbols for class %s.\n", className.string());
2369 }
2370
2371 status_t err = writeTextSymbolClass(fp, assets, includePrivate, symbols,
2372 className);
Elliott Hughesb30296b2013-10-29 15:25:52 -07002373 fclose(fp);
Adam Lesinski282e1812014-01-23 18:17:42 -08002374 if (err != NO_ERROR) {
2375 return err;
2376 }
Adam Lesinski282e1812014-01-23 18:17:42 -08002377 }
2378
2379 // If we were asked to generate a dependency file, we'll go ahead and add this R.java
2380 // as a target in the dependency file right next to it.
2381 if (bundle->getGenDependencies() && R == className) {
2382 // Add this R.java to the dependency file
2383 String8 dependencyFile(bundle->getRClassDir());
2384 dependencyFile.appendPath("R.java.d");
2385
2386 FILE *fp = fopen(dependencyFile.string(), "a");
2387 fprintf(fp,"%s \\\n", dest.string());
2388 fclose(fp);
2389 }
2390 }
2391
2392 return NO_ERROR;
2393}
2394
2395
2396class ProguardKeepSet
2397{
2398public:
2399 // { rule --> { file locations } }
2400 KeyedVector<String8, SortedVector<String8> > rules;
2401
2402 void add(const String8& rule, const String8& where);
2403};
2404
2405void ProguardKeepSet::add(const String8& rule, const String8& where)
2406{
2407 ssize_t index = rules.indexOfKey(rule);
2408 if (index < 0) {
2409 index = rules.add(rule, SortedVector<String8>());
2410 }
2411 rules.editValueAt(index).add(where);
2412}
2413
2414void
2415addProguardKeepRule(ProguardKeepSet* keep, const String8& inClassName,
2416 const char* pkg, const String8& srcName, int line)
2417{
2418 String8 className(inClassName);
2419 if (pkg != NULL) {
2420 // asdf --> package.asdf
2421 // .asdf .a.b --> package.asdf package.a.b
2422 // asdf.adsf --> asdf.asdf
2423 const char* p = className.string();
2424 const char* q = strchr(p, '.');
2425 if (p == q) {
2426 className = pkg;
2427 className.append(inClassName);
2428 } else if (q == NULL) {
2429 className = pkg;
2430 className.append(".");
2431 className.append(inClassName);
2432 }
2433 }
2434
2435 String8 rule("-keep class ");
2436 rule += className;
2437 rule += " { <init>(...); }";
2438
2439 String8 location("view ");
2440 location += srcName;
2441 char lineno[20];
2442 sprintf(lineno, ":%d", line);
2443 location += lineno;
2444
2445 keep->add(rule, location);
2446}
2447
2448void
2449addProguardKeepMethodRule(ProguardKeepSet* keep, const String8& memberName,
2450 const char* pkg, const String8& srcName, int line)
2451{
2452 String8 rule("-keepclassmembers class * { *** ");
2453 rule += memberName;
2454 rule += "(...); }";
2455
2456 String8 location("onClick ");
2457 location += srcName;
2458 char lineno[20];
2459 sprintf(lineno, ":%d", line);
2460 location += lineno;
2461
2462 keep->add(rule, location);
2463}
2464
2465status_t
2466writeProguardForAndroidManifest(ProguardKeepSet* keep, const sp<AaptAssets>& assets)
2467{
2468 status_t err;
2469 ResXMLTree tree;
2470 size_t len;
2471 ResXMLTree::event_code_t code;
2472 int depth = 0;
2473 bool inApplication = false;
2474 String8 error;
2475 sp<AaptGroup> assGroup;
2476 sp<AaptFile> assFile;
2477 String8 pkg;
2478
2479 // First, look for a package file to parse. This is required to
2480 // be able to generate the resource information.
2481 assGroup = assets->getFiles().valueFor(String8("AndroidManifest.xml"));
2482 if (assGroup == NULL) {
2483 fprintf(stderr, "ERROR: No AndroidManifest.xml file found.\n");
2484 return -1;
2485 }
2486
2487 if (assGroup->getFiles().size() != 1) {
2488 fprintf(stderr, "warning: Multiple AndroidManifest.xml files found, using %s\n",
2489 assGroup->getFiles().valueAt(0)->getPrintableSource().string());
2490 }
2491
2492 assFile = assGroup->getFiles().valueAt(0);
2493
2494 err = parseXMLResource(assFile, &tree);
2495 if (err != NO_ERROR) {
2496 return err;
2497 }
2498
2499 tree.restart();
2500
2501 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
2502 if (code == ResXMLTree::END_TAG) {
2503 if (/* name == "Application" && */ depth == 2) {
2504 inApplication = false;
2505 }
2506 depth--;
2507 continue;
2508 }
2509 if (code != ResXMLTree::START_TAG) {
2510 continue;
2511 }
2512 depth++;
2513 String8 tag(tree.getElementName(&len));
2514 // printf("Depth %d tag %s\n", depth, tag.string());
2515 bool keepTag = false;
2516 if (depth == 1) {
2517 if (tag != "manifest") {
2518 fprintf(stderr, "ERROR: manifest does not start with <manifest> tag\n");
2519 return -1;
2520 }
2521 pkg = getAttribute(tree, NULL, "package", NULL);
2522 } else if (depth == 2) {
2523 if (tag == "application") {
2524 inApplication = true;
2525 keepTag = true;
2526
2527 String8 agent = getAttribute(tree, "http://schemas.android.com/apk/res/android",
2528 "backupAgent", &error);
2529 if (agent.length() > 0) {
2530 addProguardKeepRule(keep, agent, pkg.string(),
2531 assFile->getPrintableSource(), tree.getLineNumber());
2532 }
2533 } else if (tag == "instrumentation") {
2534 keepTag = true;
2535 }
2536 }
2537 if (!keepTag && inApplication && depth == 3) {
2538 if (tag == "activity" || tag == "service" || tag == "receiver" || tag == "provider") {
2539 keepTag = true;
2540 }
2541 }
2542 if (keepTag) {
2543 String8 name = getAttribute(tree, "http://schemas.android.com/apk/res/android",
2544 "name", &error);
2545 if (error != "") {
2546 fprintf(stderr, "ERROR: %s\n", error.string());
2547 return -1;
2548 }
2549 if (name.length() > 0) {
2550 addProguardKeepRule(keep, name, pkg.string(),
2551 assFile->getPrintableSource(), tree.getLineNumber());
2552 }
2553 }
2554 }
2555
2556 return NO_ERROR;
2557}
2558
2559struct NamespaceAttributePair {
2560 const char* ns;
2561 const char* attr;
2562
2563 NamespaceAttributePair(const char* n, const char* a) : ns(n), attr(a) {}
2564 NamespaceAttributePair() : ns(NULL), attr(NULL) {}
2565};
2566
2567status_t
2568writeProguardForXml(ProguardKeepSet* keep, const sp<AaptFile>& layoutFile,
Adam Lesinski9cf4b4a2014-04-25 11:36:02 -07002569 const Vector<String8>& startTags, const KeyedVector<String8, Vector<NamespaceAttributePair> >* tagAttrPairs)
Adam Lesinski282e1812014-01-23 18:17:42 -08002570{
2571 status_t err;
2572 ResXMLTree tree;
2573 size_t len;
2574 ResXMLTree::event_code_t code;
2575
2576 err = parseXMLResource(layoutFile, &tree);
2577 if (err != NO_ERROR) {
2578 return err;
2579 }
2580
2581 tree.restart();
2582
Adam Lesinski9cf4b4a2014-04-25 11:36:02 -07002583 if (!startTags.isEmpty()) {
Adam Lesinski282e1812014-01-23 18:17:42 -08002584 bool haveStart = false;
2585 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
2586 if (code != ResXMLTree::START_TAG) {
2587 continue;
2588 }
2589 String8 tag(tree.getElementName(&len));
Adam Lesinski9cf4b4a2014-04-25 11:36:02 -07002590 const size_t numStartTags = startTags.size();
2591 for (size_t i = 0; i < numStartTags; i++) {
2592 if (tag == startTags[i]) {
2593 haveStart = true;
2594 }
Adam Lesinski282e1812014-01-23 18:17:42 -08002595 }
2596 break;
2597 }
2598 if (!haveStart) {
2599 return NO_ERROR;
2600 }
2601 }
2602
2603 while ((code=tree.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
2604 if (code != ResXMLTree::START_TAG) {
2605 continue;
2606 }
2607 String8 tag(tree.getElementName(&len));
2608
2609 // If there is no '.', we'll assume that it's one of the built in names.
2610 if (strchr(tag.string(), '.')) {
2611 addProguardKeepRule(keep, tag, NULL,
2612 layoutFile->getPrintableSource(), tree.getLineNumber());
2613 } else if (tagAttrPairs != NULL) {
2614 ssize_t tagIndex = tagAttrPairs->indexOfKey(tag);
2615 if (tagIndex >= 0) {
2616 const Vector<NamespaceAttributePair>& nsAttrVector = tagAttrPairs->valueAt(tagIndex);
2617 for (size_t i = 0; i < nsAttrVector.size(); i++) {
2618 const NamespaceAttributePair& nsAttr = nsAttrVector[i];
2619
2620 ssize_t attrIndex = tree.indexOfAttribute(nsAttr.ns, nsAttr.attr);
2621 if (attrIndex < 0) {
2622 // fprintf(stderr, "%s:%d: <%s> does not have attribute %s:%s.\n",
2623 // layoutFile->getPrintableSource().string(), tree.getLineNumber(),
2624 // tag.string(), nsAttr.ns, nsAttr.attr);
2625 } else {
2626 size_t len;
2627 addProguardKeepRule(keep,
2628 String8(tree.getAttributeStringValue(attrIndex, &len)), NULL,
2629 layoutFile->getPrintableSource(), tree.getLineNumber());
2630 }
2631 }
2632 }
2633 }
2634 ssize_t attrIndex = tree.indexOfAttribute(RESOURCES_ANDROID_NAMESPACE, "onClick");
2635 if (attrIndex >= 0) {
2636 size_t len;
2637 addProguardKeepMethodRule(keep,
2638 String8(tree.getAttributeStringValue(attrIndex, &len)), NULL,
2639 layoutFile->getPrintableSource(), tree.getLineNumber());
2640 }
2641 }
2642
2643 return NO_ERROR;
2644}
2645
2646static void addTagAttrPair(KeyedVector<String8, Vector<NamespaceAttributePair> >* dest,
2647 const char* tag, const char* ns, const char* attr) {
2648 String8 tagStr(tag);
2649 ssize_t index = dest->indexOfKey(tagStr);
2650
2651 if (index < 0) {
2652 Vector<NamespaceAttributePair> vector;
2653 vector.add(NamespaceAttributePair(ns, attr));
2654 dest->add(tagStr, vector);
2655 } else {
2656 dest->editValueAt(index).add(NamespaceAttributePair(ns, attr));
2657 }
2658}
2659
2660status_t
2661writeProguardForLayouts(ProguardKeepSet* keep, const sp<AaptAssets>& assets)
2662{
2663 status_t err;
2664
2665 // tag:attribute pairs that should be checked in layout files.
2666 KeyedVector<String8, Vector<NamespaceAttributePair> > kLayoutTagAttrPairs;
2667 addTagAttrPair(&kLayoutTagAttrPairs, "view", NULL, "class");
2668 addTagAttrPair(&kLayoutTagAttrPairs, "fragment", NULL, "class");
2669 addTagAttrPair(&kLayoutTagAttrPairs, "fragment", RESOURCES_ANDROID_NAMESPACE, "name");
2670
2671 // tag:attribute pairs that should be checked in xml files.
2672 KeyedVector<String8, Vector<NamespaceAttributePair> > kXmlTagAttrPairs;
2673 addTagAttrPair(&kXmlTagAttrPairs, "PreferenceScreen", RESOURCES_ANDROID_NAMESPACE, "fragment");
2674 addTagAttrPair(&kXmlTagAttrPairs, "header", RESOURCES_ANDROID_NAMESPACE, "fragment");
2675
2676 const Vector<sp<AaptDir> >& dirs = assets->resDirs();
2677 const size_t K = dirs.size();
2678 for (size_t k=0; k<K; k++) {
2679 const sp<AaptDir>& d = dirs.itemAt(k);
2680 const String8& dirName = d->getLeaf();
Adam Lesinski9cf4b4a2014-04-25 11:36:02 -07002681 Vector<String8> startTags;
Adam Lesinski282e1812014-01-23 18:17:42 -08002682 const char* startTag = NULL;
2683 const KeyedVector<String8, Vector<NamespaceAttributePair> >* tagAttrPairs = NULL;
2684 if ((dirName == String8("layout")) || (strncmp(dirName.string(), "layout-", 7) == 0)) {
2685 tagAttrPairs = &kLayoutTagAttrPairs;
2686 } else if ((dirName == String8("xml")) || (strncmp(dirName.string(), "xml-", 4) == 0)) {
Adam Lesinski9cf4b4a2014-04-25 11:36:02 -07002687 startTags.add(String8("PreferenceScreen"));
2688 startTags.add(String8("preference-headers"));
Adam Lesinski282e1812014-01-23 18:17:42 -08002689 tagAttrPairs = &kXmlTagAttrPairs;
2690 } else if ((dirName == String8("menu")) || (strncmp(dirName.string(), "menu-", 5) == 0)) {
Adam Lesinski9cf4b4a2014-04-25 11:36:02 -07002691 startTags.add(String8("menu"));
Adam Lesinski282e1812014-01-23 18:17:42 -08002692 tagAttrPairs = NULL;
2693 } else {
2694 continue;
2695 }
2696
2697 const KeyedVector<String8,sp<AaptGroup> > groups = d->getFiles();
2698 const size_t N = groups.size();
2699 for (size_t i=0; i<N; i++) {
2700 const sp<AaptGroup>& group = groups.valueAt(i);
2701 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files = group->getFiles();
2702 const size_t M = files.size();
2703 for (size_t j=0; j<M; j++) {
Adam Lesinski9cf4b4a2014-04-25 11:36:02 -07002704 err = writeProguardForXml(keep, files.valueAt(j), startTags, tagAttrPairs);
Adam Lesinski282e1812014-01-23 18:17:42 -08002705 if (err < 0) {
2706 return err;
2707 }
2708 }
2709 }
2710 }
2711 // Handle the overlays
2712 sp<AaptAssets> overlay = assets->getOverlay();
2713 if (overlay.get()) {
2714 return writeProguardForLayouts(keep, overlay);
2715 }
2716
2717 return NO_ERROR;
2718}
2719
2720status_t
2721writeProguardFile(Bundle* bundle, const sp<AaptAssets>& assets)
2722{
2723 status_t err = -1;
2724
2725 if (!bundle->getProguardFile()) {
2726 return NO_ERROR;
2727 }
2728
2729 ProguardKeepSet keep;
2730
2731 err = writeProguardForAndroidManifest(&keep, assets);
2732 if (err < 0) {
2733 return err;
2734 }
2735
2736 err = writeProguardForLayouts(&keep, assets);
2737 if (err < 0) {
2738 return err;
2739 }
2740
2741 FILE* fp = fopen(bundle->getProguardFile(), "w+");
2742 if (fp == NULL) {
2743 fprintf(stderr, "ERROR: Unable to open class file %s: %s\n",
2744 bundle->getProguardFile(), strerror(errno));
2745 return UNKNOWN_ERROR;
2746 }
2747
2748 const KeyedVector<String8, SortedVector<String8> >& rules = keep.rules;
2749 const size_t N = rules.size();
2750 for (size_t i=0; i<N; i++) {
2751 const SortedVector<String8>& locations = rules.valueAt(i);
2752 const size_t M = locations.size();
2753 for (size_t j=0; j<M; j++) {
2754 fprintf(fp, "# %s\n", locations.itemAt(j).string());
2755 }
2756 fprintf(fp, "%s\n\n", rules.keyAt(i).string());
2757 }
2758 fclose(fp);
2759
2760 return err;
2761}
2762
2763// Loops through the string paths and writes them to the file pointer
2764// Each file path is written on its own line with a terminating backslash.
2765status_t writePathsToFile(const sp<FilePathStore>& files, FILE* fp)
2766{
2767 status_t deps = -1;
2768 for (size_t file_i = 0; file_i < files->size(); ++file_i) {
2769 // Add the full file path to the dependency file
2770 fprintf(fp, "%s \\\n", files->itemAt(file_i).string());
2771 deps++;
2772 }
2773 return deps;
2774}
2775
2776status_t
2777writeDependencyPreReqs(Bundle* bundle, const sp<AaptAssets>& assets, FILE* fp, bool includeRaw)
2778{
2779 status_t deps = -1;
2780 deps += writePathsToFile(assets->getFullResPaths(), fp);
2781 if (includeRaw) {
2782 deps += writePathsToFile(assets->getFullAssetPaths(), fp);
2783 }
2784 return deps;
2785}