]>
git.saurik.com Git - android/aapt.git/blob - Main.cpp
2 // Copyright 2006 The Android Open Source Project
4 // Android Asset Packaging Tool main entry point.
10 #include <utils/threads.h>
11 #include <utils/List.h>
12 #include <utils/Errors.h>
18 using namespace android
;
20 static const char* gProgName
= "aapt";
23 * When running under Cygwin on Windows, this will convert slash-based
24 * paths into back-slash-based ones. Otherwise the ApptAssets file comparisons
25 * fail later as they use back-slash separators under Windows.
27 * This operates in-place on the path string.
29 void convertPath(char *path
) {
30 if (path
!= NULL
&& OS_PATH_SEPARATOR
!= '/') {
31 for (; *path
; path
++) {
33 *path
= OS_PATH_SEPARATOR
;
44 fprintf(stderr
, "Android Asset Packaging Tool\n\n");
45 fprintf(stderr
, "Usage:\n");
47 " %s l[ist] [-v] [-a] file.{zip,jar,apk}\n"
48 " List contents of Zip-compatible archive.\n\n", gProgName
);
50 " %s d[ump] [--values] WHAT file.{apk} [asset [asset ...]]\n"
51 " badging Print the label and icon for the app declared in APK.\n"
52 " permissions Print the permissions from the APK.\n"
53 " resources Print the resource table from the APK.\n"
54 " configurations Print the configurations in the APK.\n"
55 " xmltree Print the compiled xmls in the given assets.\n"
56 " xmlstrings Print the strings of the given compiled xml assets.\n\n", gProgName
);
58 " %s p[ackage] [-d][-f][-m][-u][-v][-x][-z][-M AndroidManifest.xml] \\\n"
59 " [-0 extension [-0 extension ...]] [-g tolerance] [-j jarfile] \\\n"
60 " [--min-sdk-version VAL] [--target-sdk-version VAL] \\\n"
61 " [--max-sdk-version VAL] [--app-version VAL] \\\n"
62 " [--app-version-name TEXT] [--custom-package VAL] [--utf16] \\\n"
63 " [--auto-add-overlay] \\\n"
64 " [-I base-package [-I base-package ...]] \\\n"
65 " [-A asset-source-dir] [-G class-list-file] [-P public-definitions-file] \\\n"
66 " [-S resource-sources [-S resource-sources ...]] "
67 " [-F apk-file] [-J R-file-dir] \\\n"
68 " [raw-files-dir [raw-files-dir] ...]\n"
70 " Package the android resources. It will read assets and resources that are\n"
71 " supplied with the -M -A -S or raw-files-dir arguments. The -J -P -F and -R\n"
72 " options control which files are output.\n\n"
75 " %s r[emove] [-v] file.{zip,jar,apk} file1 [file2 ...]\n"
76 " Delete specified files from Zip-compatible archive.\n\n",
79 " %s a[dd] [-v] file.{zip,jar,apk} file1 [file2 ...]\n"
80 " Add specified files to Zip-compatible archive.\n\n", gProgName
);
83 " Print program version.\n\n", gProgName
);
86 " -a print Android-specific data (resources, manifest) when listing\n"
87 " -c specify which configurations to include. The default is all\n"
88 " configurations. The value of the parameter should be a comma\n"
89 " separated list of configuration values. Locales should be specified\n"
90 " as either a language or language-region pair. Some examples:\n"
94 " If you put the special locale, zz_ZZ on the list, it will perform\n"
95 " pseudolocalization on the default locale, modifying all of the\n"
96 " strings so you can look for strings that missed the\n"
97 " internationalization process. For example:\n"
99 " -d one or more device assets to include, separated by commas\n"
100 " -f force overwrite of existing files\n"
101 " -g specify a pixel tolerance to force images to grayscale, default 0\n"
102 " -j specify a jar or zip file containing classes to include\n"
103 " -k junk path of file(s) added\n"
104 " -m make package directories under location specified by -J\n"
106 " -p pseudolocalize the default configuration\n"
108 " -u update existing packages (add new, replace older, remove deleted files)\n"
109 " -v verbose output\n"
110 " -x create extending (non-application) resource IDs\n"
111 " -z require localization of resource attributes marked with\n"
112 " localization=\"suggested\"\n"
113 " -A additional directory in which to find raw asset files\n"
114 " -G A file to output proguard options into.\n"
115 " -F specify the apk file to output\n"
116 " -I add an existing package to base include set\n"
117 " -J specify where to output R.java resource constant definitions\n"
118 " -M specify full path to AndroidManifest.xml to include in zip\n"
119 " -P specify where to output public resource definitions\n"
120 " -S directory in which to find resources. Multiple directories will be scanned\n"
121 " and the first match found (left to right) will take precedence.\n"
122 " -0 specifies an additional extension for which such files will not\n"
123 " be stored compressed in the .apk. An empty string means to not\n"
124 " compress any files at all.\n"
125 " --min-sdk-version\n"
126 " inserts android:minSdkVersion in to manifest. If the version is 7 or\n"
127 " higher, the default encoding for resources will be in UTF-8.\n"
128 " --target-sdk-version\n"
129 " inserts android:targetSdkVersion in to manifest.\n"
130 " --max-sdk-version\n"
131 " inserts android:maxSdkVersion in to manifest.\n"
133 " when used with \"dump resources\" also includes resource values.\n"
135 " inserts android:versionCode in to manifest.\n"
137 " inserts android:versionName in to manifest.\n"
138 " --custom-package\n"
139 " generates R.java into a different package.\n"
140 " --auto-add-overlay\n"
141 " Automatically add resources that are only in overlays.\n"
143 " changes default encoding for resources to UTF-16. Only useful when API\n"
144 " level is set to 7 or higher where the default encoding is UTF-8.\n");
148 * Dispatch the command.
150 int handleCommand(Bundle
* bundle
)
152 //printf("--- command %d (verbose=%d force=%d):\n",
153 // bundle->getCommand(), bundle->getVerbose(), bundle->getForce());
154 //for (int i = 0; i < bundle->getFileSpecCount(); i++)
155 // printf(" %d: '%s'\n", i, bundle->getFileSpecEntry(i));
157 switch (bundle
->getCommand()) {
158 case kCommandVersion
: return doVersion(bundle
);
159 case kCommandList
: return doList(bundle
);
160 case kCommandDump
: return doDump(bundle
);
161 case kCommandAdd
: return doAdd(bundle
);
162 case kCommandRemove
: return doRemove(bundle
);
163 case kCommandPackage
: return doPackage(bundle
);
165 fprintf(stderr
, "%s: requested command not yet supported\n", gProgName
);
173 int main(int argc
, char* const argv
[])
175 char *prog
= argv
[0];
177 bool wantUsage
= false;
178 int result
= 1; // pessimistically assume an error.
181 /* default to compression */
182 bundle
.setCompressionMethod(ZipEntry::kCompressDeflated
);
189 if (argv
[1][0] == 'v')
190 bundle
.setCommand(kCommandVersion
);
191 else if (argv
[1][0] == 'd')
192 bundle
.setCommand(kCommandDump
);
193 else if (argv
[1][0] == 'l')
194 bundle
.setCommand(kCommandList
);
195 else if (argv
[1][0] == 'a')
196 bundle
.setCommand(kCommandAdd
);
197 else if (argv
[1][0] == 'r')
198 bundle
.setCommand(kCommandRemove
);
199 else if (argv
[1][0] == 'p')
200 bundle
.setCommand(kCommandPackage
);
202 fprintf(stderr
, "ERROR: Unknown command '%s'\n", argv
[1]);
210 * Pull out flags. We support "-fv" and "-f -v".
212 while (argc
&& argv
[0][0] == '-') {
214 const char* cp
= argv
[0] +1;
216 while (*cp
!= '\0') {
219 bundle
.setVerbose(true);
222 bundle
.setAndroidList(true);
228 fprintf(stderr
, "ERROR: No argument supplied for '-c' option\n");
232 bundle
.addConfigurations(argv
[0]);
235 bundle
.setForce(true);
241 fprintf(stderr
, "ERROR: No argument supplied for '-g' option\n");
245 tolerance
= atoi(argv
[0]);
246 bundle
.setGrayscaleTolerance(tolerance
);
247 printf("%s: Images with deviation <= %d will be forced to grayscale.\n", prog
, tolerance
);
250 bundle
.setJunkPath(true);
253 bundle
.setMakePackageDirs(true);
257 bundle
.setPseudolocalize(true);
261 bundle
.setUpdate(true);
264 bundle
.setExtending(true);
267 bundle
.setRequireLocalization(true);
273 fprintf(stderr
, "ERROR: No argument supplied for '-j' option\n");
277 convertPath(argv
[0]);
278 bundle
.addJarFile(argv
[0]);
284 fprintf(stderr
, "ERROR: No argument supplied for '-A' option\n");
288 convertPath(argv
[0]);
289 bundle
.setAssetSourceDir(argv
[0]);
295 fprintf(stderr
, "ERROR: No argument supplied for '-G' option\n");
299 convertPath(argv
[0]);
300 bundle
.setProguardFile(argv
[0]);
306 fprintf(stderr
, "ERROR: No argument supplied for '-I' option\n");
310 convertPath(argv
[0]);
311 bundle
.addPackageInclude(argv
[0]);
317 fprintf(stderr
, "ERROR: No argument supplied for '-F' option\n");
321 convertPath(argv
[0]);
322 bundle
.setOutputAPKFile(argv
[0]);
328 fprintf(stderr
, "ERROR: No argument supplied for '-J' option\n");
332 convertPath(argv
[0]);
333 bundle
.setRClassDir(argv
[0]);
339 fprintf(stderr
, "ERROR: No argument supplied for '-M' option\n");
343 convertPath(argv
[0]);
344 bundle
.setAndroidManifestFile(argv
[0]);
350 fprintf(stderr
, "ERROR: No argument supplied for '-P' option\n");
354 convertPath(argv
[0]);
355 bundle
.setPublicOutputFile(argv
[0]);
361 fprintf(stderr
, "ERROR: No argument supplied for '-S' option\n");
365 convertPath(argv
[0]);
366 bundle
.addResourceSourceDir(argv
[0]);
372 fprintf(stderr
, "ERROR: No argument supplied for '-e' option\n");
376 if (argv
[0][0] != 0) {
377 bundle
.addNoCompressExtension(argv
[0]);
379 bundle
.setCompressionMethod(ZipEntry::kCompressStored
);
383 if (strcmp(cp
, "-min-sdk-version") == 0) {
387 fprintf(stderr
, "ERROR: No argument supplied for '--min-sdk-version' option\n");
391 bundle
.setMinSdkVersion(argv
[0]);
392 } else if (strcmp(cp
, "-target-sdk-version") == 0) {
396 fprintf(stderr
, "ERROR: No argument supplied for '--target-sdk-version' option\n");
400 bundle
.setTargetSdkVersion(argv
[0]);
401 } else if (strcmp(cp
, "-max-sdk-version") == 0) {
405 fprintf(stderr
, "ERROR: No argument supplied for '--max-sdk-version' option\n");
409 bundle
.setMaxSdkVersion(argv
[0]);
410 } else if (strcmp(cp
, "-version-code") == 0) {
414 fprintf(stderr
, "ERROR: No argument supplied for '--version-code' option\n");
418 bundle
.setVersionCode(argv
[0]);
419 } else if (strcmp(cp
, "-version-name") == 0) {
423 fprintf(stderr
, "ERROR: No argument supplied for '--version-name' option\n");
427 bundle
.setVersionName(argv
[0]);
428 } else if (strcmp(cp
, "-values") == 0) {
429 bundle
.setValues(true);
430 } else if (strcmp(cp
, "-custom-package") == 0) {
434 fprintf(stderr
, "ERROR: No argument supplied for '--custom-package' option\n");
438 bundle
.setCustomPackage(argv
[0]);
439 } else if (strcmp(cp
, "-utf16") == 0) {
440 bundle
.setEncodingSpecified(true);
441 bundle
.setUTF8(false);
442 } else if (strcmp(cp
, "-rename-manifest-package") == 0) {
446 fprintf(stderr
, "ERROR: No argument supplied for '--rename-manifest-package' option\n");
450 bundle
.setManifestPackageNameOverride(argv
[0]);
451 } else if (strcmp(cp
, "-auto-add-overlay") == 0) {
452 bundle
.setAutoAddOverlay(true);
454 fprintf(stderr
, "ERROR: Unknown option '-%s'\n", cp
);
458 cp
+= strlen(cp
) - 1;
461 fprintf(stderr
, "ERROR: Unknown flag '-%c'\n", *cp
);
473 * We're past the flags. The rest all goes straight in.
475 bundle
.setFileSpec(argv
, argc
);
477 result
= handleCommand(&bundle
);
485 //printf("--> returning %d\n", result);