]>
git.saurik.com Git - android/aapt.git/blob - Main.cpp
ee0dbad49a6d5916e6262a3adcc3d7ad58594fb9
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
[])
150 bool wantUsage
= false;
151 int result
= 1; // pessimistically assume an error.
153 /* default to compression */
154 bundle
.setCompressionMethod(ZipEntry::kCompressDeflated
);
161 if (argv
[1][0] == 'v')
162 bundle
.setCommand(kCommandVersion
);
163 else if (argv
[1][0] == 'd')
164 bundle
.setCommand(kCommandDump
);
165 else if (argv
[1][0] == 'l')
166 bundle
.setCommand(kCommandList
);
167 else if (argv
[1][0] == 'a')
168 bundle
.setCommand(kCommandAdd
);
169 else if (argv
[1][0] == 'r')
170 bundle
.setCommand(kCommandRemove
);
171 else if (argv
[1][0] == 'p')
172 bundle
.setCommand(kCommandPackage
);
174 fprintf(stderr
, "ERROR: Unknown command '%s'\n", argv
[1]);
182 * Pull out flags. We support "-fv" and "-f -v".
184 while (argc
&& argv
[0][0] == '-') {
186 const char* cp
= argv
[0] +1;
188 while (*cp
!= '\0') {
191 bundle
.setVerbose(true);
194 bundle
.setAndroidList(true);
200 fprintf(stderr
, "ERROR: No argument supplied for '-c' option\n");
204 bundle
.addConfigurations(argv
[0]);
207 bundle
.setForce(true);
213 fprintf(stderr
, "ERROR: No argument supplied for '-g' option\n");
217 bundle
.setGrayscaleTolerance(atoi(argv
[0]));
220 bundle
.setMakePackageDirs(true);
224 bundle
.setPseudolocalize(true);
228 bundle
.setUpdate(true);
231 bundle
.setExtending(true);
234 bundle
.setRequireLocalization(true);
240 fprintf(stderr
, "ERROR: No argument supplied for '-j' option\n");
244 convertPath(argv
[0]);
245 bundle
.addJarFile(argv
[0]);
251 fprintf(stderr
, "ERROR: No argument supplied for '-A' option\n");
255 convertPath(argv
[0]);
256 bundle
.setAssetSourceDir(argv
[0]);
262 fprintf(stderr
, "ERROR: No argument supplied for '-I' option\n");
266 convertPath(argv
[0]);
267 bundle
.addPackageInclude(argv
[0]);
273 fprintf(stderr
, "ERROR: No argument supplied for '-F' option\n");
277 convertPath(argv
[0]);
278 bundle
.setOutputAPKFile(argv
[0]);
284 fprintf(stderr
, "ERROR: No argument supplied for '-J' option\n");
288 convertPath(argv
[0]);
289 bundle
.setRClassDir(argv
[0]);
295 fprintf(stderr
, "ERROR: No argument supplied for '-M' option\n");
299 convertPath(argv
[0]);
300 bundle
.setAndroidManifestFile(argv
[0]);
306 fprintf(stderr
, "ERROR: No argument supplied for '-P' option\n");
310 convertPath(argv
[0]);
311 bundle
.setPublicOutputFile(argv
[0]);
317 fprintf(stderr
, "ERROR: No argument supplied for '-S' option\n");
321 convertPath(argv
[0]);
322 bundle
.addResourceSourceDir(argv
[0]);
328 fprintf(stderr
, "ERROR: No argument supplied for '-e' option\n");
332 if (argv
[0][0] != 0) {
333 bundle
.addNoCompressExtension(argv
[0]);
335 bundle
.setCompressionMethod(ZipEntry::kCompressStored
);
339 fprintf(stderr
, "ERROR: Unknown flag '-%c'\n", *cp
);
351 * We're past the flags. The rest all goes straight in.
353 bundle
.setFileSpec(argv
, argc
);
355 result
= handleCommand(&bundle
);
363 //printf("--> returning %d\n", result);