]>
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/ZipFile.h>
16 using namespace android
;
18 static const char* gProgName
= "aapt";
21 * When running under Cygwin on Windows, this will convert slash-based
22 * paths into back-slash-based ones. Otherwise the ApptAssets file comparisons
23 * fail later as they use back-slash separators under Windows.
25 * This operates in-place on the path string.
27 void convertPath(char *path
) {
28 if (path
!= NULL
&& OS_PATH_SEPARATOR
!= '/') {
29 for (; *path
; path
++) {
31 *path
= OS_PATH_SEPARATOR
;
42 fprintf(stderr
, "Android Asset Packaging Tool\n\n");
43 fprintf(stderr
, "Usage:\n");
45 " %s l[ist] [-v] [-a] file.{zip,jar,apk}\n"
46 " List contents of Zip-compatible archive.\n\n", gProgName
);
48 " %s d[ump] WHAT file.{apk} [asset [asset ...]]\n"
49 " badging Print the label and icon for the app declared in APK.\n"
50 " permissions Print the permissions from the APK.\n"
51 " resources Print the resource table from the APK.\n"
52 " configurations Print the configurations in the APK.\n"
53 " xmltree Print the compiled xmls in the given assets.\n"
54 " xmlstrings Print the strings of the given compiled xml assets.\n\n", gProgName
);
56 " %s p[ackage] [-d][-f][-m][-u][-v][-x][-z][-M AndroidManifest.xml] \\\n"
57 " [-0 extension [-0 extension ...]] \\\n"
58 " [-g tolerance] \\\n"
60 " [-I base-package [-I base-package ...]] \\\n"
61 " [-A asset-source-dir] [-P public-definitions-file] \\\n"
62 " [-S resource-sources [-S resource-sources ...]] "
63 " [-F apk-file] [-J R-file-dir] \\\n"
64 " [raw-files-dir [raw-files-dir] ...]\n"
66 " Package the android resources. It will read assets and resources that are\n"
67 " supplied with the -M -A -S or raw-files-dir arguments. The -J -P -F and -R\n"
68 " options control which files are output.\n\n"
71 " %s r[emove] [-v] file.{zip,jar,apk} file1 [file2 ...]\n"
72 " Delete specified files from Zip-compatible archive.\n\n",
75 " %s a[dd] [-v] file.{zip,jar,apk} file1 [file2 ...]\n"
76 " Add specified files to Zip-compatible archive.\n\n", gProgName
);
79 " Print program version.\n\n", gProgName
);
82 " -a print Android-specific data (resources, manifest) when listing\n"
83 " -c specify which configurations to include. The default is all\n"
84 " configurations. The value of the parameter should be a comma\n"
85 " separated list of configuration values. Locales should be specified\n"
86 " as either a language or language-region pair. Some examples:\n"
90 " If you put the special locale, zz_ZZ on the list, it will perform\n"
91 " pseudolocalization on the default locale, modifying all of the\n"
92 " strings so you can look for strings that missed the\n"
93 " internationalization process. For example:\n"
95 " -d one or more device assets to include, separated by commas\n"
96 " -f force overwrite of existing files\n"
97 " -g specify a pixel tolerance to force images to grayscale, default 0\n"
98 " -j specify a jar or zip file containing classes to include\n"
99 " -m make package directories under location specified by -J\n"
101 " -p pseudolocalize the default configuration\n"
103 " -u update existing packages (add new, replace older, remove deleted files)\n"
104 " -v verbose output\n"
105 " -x create extending (non-application) resource IDs\n"
106 " -z require localization of resource attributes marked with\n"
107 " localization=\"suggested\"\n"
108 " -A additional directory in which to find raw asset files\n"
109 " -F specify the apk file to output\n"
110 " -I add an existing package to base include set\n"
111 " -J specify where to output R.java resource constant definitions\n"
112 " -M specify full path to AndroidManifest.xml to include in zip\n"
113 " -P specify where to output public resource definitions\n"
114 " -S directory in which to find resources. Multiple directories will be scanned"
115 " and the first match found (left to right) will take precedence."
116 " -0 specifies an additional extension for which such files will not\n"
117 " be stored compressed in the .apk. An empty string means to not\n"
118 " compress any files at all.\n");
122 * Dispatch the command.
124 int handleCommand(Bundle
* bundle
)
126 //printf("--- command %d (verbose=%d force=%d):\n",
127 // bundle->getCommand(), bundle->getVerbose(), bundle->getForce());
128 //for (int i = 0; i < bundle->getFileSpecCount(); i++)
129 // printf(" %d: '%s'\n", i, bundle->getFileSpecEntry(i));
131 switch (bundle
->getCommand()) {
132 case kCommandVersion
: return doVersion(bundle
);
133 case kCommandList
: return doList(bundle
);
134 case kCommandDump
: return doDump(bundle
);
135 case kCommandAdd
: return doAdd(bundle
);
136 case kCommandRemove
: return doRemove(bundle
);
137 case kCommandPackage
: return doPackage(bundle
);
139 fprintf(stderr
, "%s: requested command not yet supported\n", gProgName
);
147 int main(int argc
, char* const argv
[])
149 char *prog
= argv
[0];
151 bool wantUsage
= false;
152 int result
= 1; // pessimistically assume an error.
155 /* default to compression */
156 bundle
.setCompressionMethod(ZipEntry::kCompressDeflated
);
163 if (argv
[1][0] == 'v')
164 bundle
.setCommand(kCommandVersion
);
165 else if (argv
[1][0] == 'd')
166 bundle
.setCommand(kCommandDump
);
167 else if (argv
[1][0] == 'l')
168 bundle
.setCommand(kCommandList
);
169 else if (argv
[1][0] == 'a')
170 bundle
.setCommand(kCommandAdd
);
171 else if (argv
[1][0] == 'r')
172 bundle
.setCommand(kCommandRemove
);
173 else if (argv
[1][0] == 'p')
174 bundle
.setCommand(kCommandPackage
);
176 fprintf(stderr
, "ERROR: Unknown command '%s'\n", argv
[1]);
184 * Pull out flags. We support "-fv" and "-f -v".
186 while (argc
&& argv
[0][0] == '-') {
188 const char* cp
= argv
[0] +1;
190 while (*cp
!= '\0') {
193 bundle
.setVerbose(true);
196 bundle
.setAndroidList(true);
202 fprintf(stderr
, "ERROR: No argument supplied for '-c' option\n");
206 bundle
.addConfigurations(argv
[0]);
209 bundle
.setForce(true);
215 fprintf(stderr
, "ERROR: No argument supplied for '-g' option\n");
219 tolerance
= atoi(argv
[0]);
220 bundle
.setGrayscaleTolerance(tolerance
);
221 printf("%s: Images with deviation <= %d will be forced to grayscale.\n", prog
, tolerance
);
224 bundle
.setMakePackageDirs(true);
228 bundle
.setPseudolocalize(true);
232 bundle
.setUpdate(true);
235 bundle
.setExtending(true);
238 bundle
.setRequireLocalization(true);
244 fprintf(stderr
, "ERROR: No argument supplied for '-j' option\n");
248 convertPath(argv
[0]);
249 bundle
.addJarFile(argv
[0]);
255 fprintf(stderr
, "ERROR: No argument supplied for '-A' option\n");
259 convertPath(argv
[0]);
260 bundle
.setAssetSourceDir(argv
[0]);
266 fprintf(stderr
, "ERROR: No argument supplied for '-I' option\n");
270 convertPath(argv
[0]);
271 bundle
.addPackageInclude(argv
[0]);
277 fprintf(stderr
, "ERROR: No argument supplied for '-F' option\n");
281 convertPath(argv
[0]);
282 bundle
.setOutputAPKFile(argv
[0]);
288 fprintf(stderr
, "ERROR: No argument supplied for '-J' option\n");
292 convertPath(argv
[0]);
293 bundle
.setRClassDir(argv
[0]);
299 fprintf(stderr
, "ERROR: No argument supplied for '-M' option\n");
303 convertPath(argv
[0]);
304 bundle
.setAndroidManifestFile(argv
[0]);
310 fprintf(stderr
, "ERROR: No argument supplied for '-P' option\n");
314 convertPath(argv
[0]);
315 bundle
.setPublicOutputFile(argv
[0]);
321 fprintf(stderr
, "ERROR: No argument supplied for '-S' option\n");
325 convertPath(argv
[0]);
326 bundle
.addResourceSourceDir(argv
[0]);
332 fprintf(stderr
, "ERROR: No argument supplied for '-e' option\n");
336 if (argv
[0][0] != 0) {
337 bundle
.addNoCompressExtension(argv
[0]);
339 bundle
.setCompressionMethod(ZipEntry::kCompressStored
);
343 fprintf(stderr
, "ERROR: Unknown flag '-%c'\n", *cp
);
355 * We're past the flags. The rest all goes straight in.
357 bundle
.setFileSpec(argv
, argc
);
359 result
= handleCommand(&bundle
);
367 //printf("--> returning %d\n", result);