]> git.saurik.com Git - android/aapt.git/blob - Bundle.h
auto import from //branches/cupcake/...@132569
[android/aapt.git] / Bundle.h
1 //
2 // Copyright 2006 The Android Open Source Project
3 //
4 // State bundle. Used to pass around stuff like command-line args.
5 //
6 #ifndef __BUNDLE_H
7 #define __BUNDLE_H
8
9 #include <stdlib.h>
10 #include <utils.h> // android
11 #include <utils/String8.h>
12 #include <utils/Vector.h>
13
14 /*
15 * Things we can do.
16 */
17 typedef enum Command {
18 kCommandUnknown = 0,
19 kCommandVersion,
20 kCommandList,
21 kCommandDump,
22 kCommandAdd,
23 kCommandRemove,
24 kCommandPackage,
25 } Command;
26
27 /*
28 * Bundle of goodies, including everything specified on the command line.
29 */
30 class Bundle {
31 public:
32 Bundle(void)
33 : mCmd(kCommandUnknown), mVerbose(false), mAndroidList(false),
34 mForce(false), mGrayscaleTolerance(0), mMakePackageDirs(false),
35 mUpdate(false), mExtending(false),
36 mRequireLocalization(false), mPseudolocalize(false),
37 mCompressionMethod(0), mOutputAPKFile(NULL),
38 mAssetSourceDir(NULL),
39 mAndroidManifestFile(NULL), mPublicOutputFile(NULL),
40 mRClassDir(NULL), mResourceIntermediatesDir(NULL),
41 mArgc(0), mArgv(NULL)
42 {}
43 ~Bundle(void) {}
44
45 /*
46 * Set the command value. Returns "false" if it was previously set.
47 */
48 Command getCommand(void) const { return mCmd; }
49 void setCommand(Command cmd) { mCmd = cmd; }
50
51 /*
52 * Command modifiers. Not all modifiers are appropriate for all
53 * commands.
54 */
55 bool getVerbose(void) const { return mVerbose; }
56 void setVerbose(bool val) { mVerbose = val; }
57 bool getAndroidList(void) const { return mAndroidList; }
58 void setAndroidList(bool val) { mAndroidList = val; }
59 bool getForce(void) const { return mForce; }
60 void setForce(bool val) { mForce = val; }
61 void setGrayscaleTolerance(int val) { mGrayscaleTolerance = val; }
62 int getGrayscaleTolerance() { return mGrayscaleTolerance; }
63 bool getMakePackageDirs(void) const { return mMakePackageDirs; }
64 void setMakePackageDirs(bool val) { mMakePackageDirs = val; }
65 bool getUpdate(void) const { return mUpdate; }
66 void setUpdate(bool val) { mUpdate = val; }
67 bool getExtending(void) const { return mExtending; }
68 void setExtending(bool val) { mExtending = val; }
69 bool getRequireLocalization(void) const { return mRequireLocalization; }
70 void setRequireLocalization(bool val) { mRequireLocalization = val; }
71 bool getPseudolocalize(void) const { return mPseudolocalize; }
72 void setPseudolocalize(bool val) { mPseudolocalize = val; }
73 int getCompressionMethod(void) const { return mCompressionMethod; }
74 void setCompressionMethod(int val) { mCompressionMethod = val; }
75 const char* getOutputAPKFile() const { return mOutputAPKFile; }
76 void setOutputAPKFile(const char* val) { mOutputAPKFile = val; }
77
78 /*
79 * Input options.
80 */
81 const char* getAssetSourceDir() const { return mAssetSourceDir; }
82 void setAssetSourceDir(const char* dir) { mAssetSourceDir = dir; }
83 const android::Vector<const char*>& getResourceSourceDirs() const { return mResourceSourceDirs; }
84 void addResourceSourceDir(const char* dir) { mResourceSourceDirs.insertAt(dir,0); }
85 const char* getAndroidManifestFile() const { return mAndroidManifestFile; }
86 void setAndroidManifestFile(const char* file) { mAndroidManifestFile = file; }
87 const char* getPublicOutputFile() const { return mPublicOutputFile; }
88 void setPublicOutputFile(const char* file) { mPublicOutputFile = file; }
89 const char* getRClassDir() const { return mRClassDir; }
90 void setRClassDir(const char* dir) { mRClassDir = dir; }
91 const char* getConfigurations() const { return mConfigurations.size() > 0 ? mConfigurations.string() : NULL; }
92 void addConfigurations(const char* val) { if (mConfigurations.size() > 0) { mConfigurations.append(","); mConfigurations.append(val); } else { mConfigurations = val; } }
93 const char* getResourceIntermediatesDir() const { return mResourceIntermediatesDir; }
94 void setResourceIntermediatesDir(const char* dir) { mResourceIntermediatesDir = dir; }
95 const android::Vector<const char*>& getPackageIncludes() const { return mPackageIncludes; }
96 void addPackageInclude(const char* file) { mPackageIncludes.add(file); }
97 const android::Vector<const char*>& getJarFiles() const { return mJarFiles; }
98 void addJarFile(const char* file) { mJarFiles.add(file); }
99 const android::Vector<const char*>& getNoCompressExtensions() const { return mNoCompressExtensions; }
100 void addNoCompressExtension(const char* ext) { mNoCompressExtensions.add(ext); }
101
102 /*
103 * Set and get the file specification.
104 *
105 * Note this does NOT make a copy of argv.
106 */
107 void setFileSpec(char* const argv[], int argc) {
108 mArgc = argc;
109 mArgv = argv;
110 }
111 int getFileSpecCount(void) const { return mArgc; }
112 const char* getFileSpecEntry(int idx) const { return mArgv[idx]; }
113 void eatArgs(int n) {
114 if (n > mArgc) n = mArgc;
115 mArgv += n;
116 mArgc -= n;
117 }
118
119 #if 0
120 /*
121 * Package count. Nothing to do with anything else here; this is
122 * just a convenient place to stuff it so we don't have to pass it
123 * around everywhere.
124 */
125 int getPackageCount(void) const { return mPackageCount; }
126 void setPackageCount(int val) { mPackageCount = val; }
127 #endif
128
129 private:
130 /* commands & modifiers */
131 Command mCmd;
132 bool mVerbose;
133 bool mAndroidList;
134 bool mForce;
135 int mGrayscaleTolerance;
136 bool mMakePackageDirs;
137 bool mUpdate;
138 bool mExtending;
139 bool mRequireLocalization;
140 bool mPseudolocalize;
141 int mCompressionMethod;
142 const char* mOutputAPKFile;
143 const char* mAssetSourceDir;
144 const char* mAndroidManifestFile;
145 const char* mPublicOutputFile;
146 const char* mRClassDir;
147 const char* mResourceIntermediatesDir;
148 android::String8 mConfigurations;
149 android::Vector<const char*> mPackageIncludes;
150 android::Vector<const char*> mJarFiles;
151 android::Vector<const char*> mNoCompressExtensions;
152 android::Vector<const char*> mResourceSourceDirs;
153
154 /* file specification */
155 int mArgc;
156 char* const* mArgv;
157
158 #if 0
159 /* misc stuff */
160 int mPackageCount;
161 #endif
162 };
163
164 #endif // __BUNDLE_H