]> git.saurik.com Git - android/aapt.git/blame - Bundle.h
am 8cfd3c01: am e05184f2: Merge "Output proguard keep flags for fragment classes...
[android/aapt.git] / Bundle.h
CommitLineData
a534180c
TAOSP
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>
79e5d372
MA
10#include <utils/Log.h>
11#include <utils/threads.h>
12#include <utils/List.h>
13#include <utils/Errors.h>
a534180c
TAOSP
14#include <utils/String8.h>
15#include <utils/Vector.h>
16
17/*
18 * Things we can do.
19 */
20typedef enum Command {
21 kCommandUnknown = 0,
22 kCommandVersion,
23 kCommandList,
24 kCommandDump,
25 kCommandAdd,
26 kCommandRemove,
27 kCommandPackage,
28} Command;
29
30/*
31 * Bundle of goodies, including everything specified on the command line.
32 */
33class Bundle {
34public:
35 Bundle(void)
36 : mCmd(kCommandUnknown), mVerbose(false), mAndroidList(false),
37 mForce(false), mGrayscaleTolerance(0), mMakePackageDirs(false),
38 mUpdate(false), mExtending(false),
39 mRequireLocalization(false), mPseudolocalize(false),
5af43148 40 mWantUTF16(false), mValues(false),
af945cf3
DH
41 mCompressionMethod(0), mOutputAPKFile(NULL),
42 mManifestPackageNameOverride(NULL), mInstrumentationPackageNameOverride(NULL),
636d3b70 43 mAutoAddOverlay(false), mAssetSourceDir(NULL), mProguardFile(NULL),
a534180c 44 mAndroidManifestFile(NULL), mPublicOutputFile(NULL),
5af43148 45 mRClassDir(NULL), mResourceIntermediatesDir(NULL), mManifestMinSdkVersion(NULL),
53288885 46 mMinSdkVersion(NULL), mTargetSdkVersion(NULL), mMaxSdkVersion(NULL),
fa19db5e 47 mVersionCode(NULL), mVersionName(NULL), mCustomPackage(NULL),
13c6cfa0 48 mMaxResVersion(NULL),
a534180c
TAOSP
49 mArgc(0), mArgv(NULL)
50 {}
51 ~Bundle(void) {}
52
53 /*
54 * Set the command value. Returns "false" if it was previously set.
55 */
56 Command getCommand(void) const { return mCmd; }
57 void setCommand(Command cmd) { mCmd = cmd; }
58
59 /*
60 * Command modifiers. Not all modifiers are appropriate for all
61 * commands.
62 */
63 bool getVerbose(void) const { return mVerbose; }
64 void setVerbose(bool val) { mVerbose = val; }
65 bool getAndroidList(void) const { return mAndroidList; }
66 void setAndroidList(bool val) { mAndroidList = val; }
67 bool getForce(void) const { return mForce; }
68 void setForce(bool val) { mForce = val; }
69 void setGrayscaleTolerance(int val) { mGrayscaleTolerance = val; }
70 int getGrayscaleTolerance() { return mGrayscaleTolerance; }
71 bool getMakePackageDirs(void) const { return mMakePackageDirs; }
72 void setMakePackageDirs(bool val) { mMakePackageDirs = val; }
73 bool getUpdate(void) const { return mUpdate; }
74 void setUpdate(bool val) { mUpdate = val; }
75 bool getExtending(void) const { return mExtending; }
76 void setExtending(bool val) { mExtending = val; }
77 bool getRequireLocalization(void) const { return mRequireLocalization; }
78 void setRequireLocalization(bool val) { mRequireLocalization = val; }
79 bool getPseudolocalize(void) const { return mPseudolocalize; }
80 void setPseudolocalize(bool val) { mPseudolocalize = val; }
5af43148
KR
81 bool getWantUTF16(void) const { return mWantUTF16; }
82 void setWantUTF16(bool val) { mWantUTF16 = val; }
7751daa4
DH
83 bool getValues(void) const { return mValues; }
84 void setValues(bool val) { mValues = val; }
a534180c
TAOSP
85 int getCompressionMethod(void) const { return mCompressionMethod; }
86 void setCompressionMethod(int val) { mCompressionMethod = val; }
1e8883fc
DZ
87 bool getJunkPath(void) const { return mJunkPath; }
88 void setJunkPath(bool val) { mJunkPath = val; }
a534180c
TAOSP
89 const char* getOutputAPKFile() const { return mOutputAPKFile; }
90 void setOutputAPKFile(const char* val) { mOutputAPKFile = val; }
094e8965
JH
91 const char* getManifestPackageNameOverride() const { return mManifestPackageNameOverride; }
92 void setManifestPackageNameOverride(const char * val) { mManifestPackageNameOverride = val; }
af945cf3
DH
93 const char* getInstrumentationPackageNameOverride() const { return mInstrumentationPackageNameOverride; }
94 void setInstrumentationPackageNameOverride(const char * val) { mInstrumentationPackageNameOverride = val; }
636d3b70
XD
95 bool getAutoAddOverlay() { return mAutoAddOverlay; }
96 void setAutoAddOverlay(bool val) { mAutoAddOverlay = val; }
a534180c 97
1e8883fc
DZ
98 /*
99 * Input options.
a534180c
TAOSP
100 */
101 const char* getAssetSourceDir() const { return mAssetSourceDir; }
102 void setAssetSourceDir(const char* dir) { mAssetSourceDir = dir; }
6648ff78
JO
103 const char* getProguardFile() const { return mProguardFile; }
104 void setProguardFile(const char* file) { mProguardFile = file; }
a534180c
TAOSP
105 const android::Vector<const char*>& getResourceSourceDirs() const { return mResourceSourceDirs; }
106 void addResourceSourceDir(const char* dir) { mResourceSourceDirs.insertAt(dir,0); }
107 const char* getAndroidManifestFile() const { return mAndroidManifestFile; }
108 void setAndroidManifestFile(const char* file) { mAndroidManifestFile = file; }
109 const char* getPublicOutputFile() const { return mPublicOutputFile; }
110 void setPublicOutputFile(const char* file) { mPublicOutputFile = file; }
111 const char* getRClassDir() const { return mRClassDir; }
112 void setRClassDir(const char* dir) { mRClassDir = dir; }
113 const char* getConfigurations() const { return mConfigurations.size() > 0 ? mConfigurations.string() : NULL; }
114 void addConfigurations(const char* val) { if (mConfigurations.size() > 0) { mConfigurations.append(","); mConfigurations.append(val); } else { mConfigurations = val; } }
115 const char* getResourceIntermediatesDir() const { return mResourceIntermediatesDir; }
116 void setResourceIntermediatesDir(const char* dir) { mResourceIntermediatesDir = dir; }
117 const android::Vector<const char*>& getPackageIncludes() const { return mPackageIncludes; }
118 void addPackageInclude(const char* file) { mPackageIncludes.add(file); }
119 const android::Vector<const char*>& getJarFiles() const { return mJarFiles; }
120 void addJarFile(const char* file) { mJarFiles.add(file); }
121 const android::Vector<const char*>& getNoCompressExtensions() const { return mNoCompressExtensions; }
122 void addNoCompressExtension(const char* ext) { mNoCompressExtensions.add(ext); }
123
5af43148
KR
124 const char* getManifestMinSdkVersion() const { return mManifestMinSdkVersion; }
125 void setManifestMinSdkVersion(const char* val) { mManifestMinSdkVersion = val; }
7e486e33 126 const char* getMinSdkVersion() const { return mMinSdkVersion; }
5af43148 127 void setMinSdkVersion(const char* val) { mMinSdkVersion = val; }
7e486e33
DH
128 const char* getTargetSdkVersion() const { return mTargetSdkVersion; }
129 void setTargetSdkVersion(const char* val) { mTargetSdkVersion = val; }
130 const char* getMaxSdkVersion() const { return mMaxSdkVersion; }
131 void setMaxSdkVersion(const char* val) { mMaxSdkVersion = val; }
132 const char* getVersionCode() const { return mVersionCode; }
133 void setVersionCode(const char* val) { mVersionCode = val; }
134 const char* getVersionName() const { return mVersionName; }
135 void setVersionName(const char* val) { mVersionName = val; }
fa19db5e
XD
136 const char* getCustomPackage() const { return mCustomPackage; }
137 void setCustomPackage(const char* val) { mCustomPackage = val; }
13c6cfa0
FK
138 const char* getMaxResVersion() const { return mMaxResVersion; }
139 void setMaxResVersion(const char * val) { mMaxResVersion = val; }
1e8883fc 140
a534180c
TAOSP
141 /*
142 * Set and get the file specification.
143 *
144 * Note this does NOT make a copy of argv.
145 */
146 void setFileSpec(char* const argv[], int argc) {
147 mArgc = argc;
148 mArgv = argv;
149 }
150 int getFileSpecCount(void) const { return mArgc; }
151 const char* getFileSpecEntry(int idx) const { return mArgv[idx]; }
152 void eatArgs(int n) {
153 if (n > mArgc) n = mArgc;
154 mArgv += n;
155 mArgc -= n;
156 }
157
158#if 0
159 /*
160 * Package count. Nothing to do with anything else here; this is
161 * just a convenient place to stuff it so we don't have to pass it
162 * around everywhere.
163 */
164 int getPackageCount(void) const { return mPackageCount; }
165 void setPackageCount(int val) { mPackageCount = val; }
166#endif
167
1bad9d29
KR
168 /* Certain features may only be available on a specific SDK level or
169 * above. SDK levels that have a non-numeric identifier are assumed
170 * to be newer than any SDK level that has a number designated.
5af43148 171 */
1bad9d29 172 bool isMinSdkAtLeast(int desired) {
5af43148
KR
173 /* If the application specifies a minSdkVersion in the manifest
174 * then use that. Otherwise, check what the user specified on
175 * the command line. If neither, it's not available since
176 * the minimum SDK version is assumed to be 1.
177 */
178 const char *minVer;
179 if (mManifestMinSdkVersion != NULL) {
180 minVer = mManifestMinSdkVersion;
181 } else if (mMinSdkVersion != NULL) {
182 minVer = mMinSdkVersion;
183 } else {
184 return false;
185 }
186
187 char *end;
188 int minSdkNum = (int)strtol(minVer, &end, 0);
189 if (*end == '\0') {
1bad9d29 190 if (minSdkNum < desired) {
5af43148
KR
191 return false;
192 }
193 }
194 return true;
195 }
196
a534180c
TAOSP
197private:
198 /* commands & modifiers */
199 Command mCmd;
200 bool mVerbose;
201 bool mAndroidList;
202 bool mForce;
203 int mGrayscaleTolerance;
204 bool mMakePackageDirs;
205 bool mUpdate;
206 bool mExtending;
207 bool mRequireLocalization;
208 bool mPseudolocalize;
5af43148 209 bool mWantUTF16;
7751daa4 210 bool mValues;
a534180c 211 int mCompressionMethod;
1e8883fc 212 bool mJunkPath;
a534180c 213 const char* mOutputAPKFile;
094e8965 214 const char* mManifestPackageNameOverride;
af945cf3 215 const char* mInstrumentationPackageNameOverride;
636d3b70 216 bool mAutoAddOverlay;
a534180c 217 const char* mAssetSourceDir;
6648ff78 218 const char* mProguardFile;
a534180c
TAOSP
219 const char* mAndroidManifestFile;
220 const char* mPublicOutputFile;
221 const char* mRClassDir;
222 const char* mResourceIntermediatesDir;
223 android::String8 mConfigurations;
224 android::Vector<const char*> mPackageIncludes;
225 android::Vector<const char*> mJarFiles;
226 android::Vector<const char*> mNoCompressExtensions;
227 android::Vector<const char*> mResourceSourceDirs;
1e8883fc 228
5af43148 229 const char* mManifestMinSdkVersion;
7e486e33
DH
230 const char* mMinSdkVersion;
231 const char* mTargetSdkVersion;
232 const char* mMaxSdkVersion;
233 const char* mVersionCode;
234 const char* mVersionName;
fa19db5e 235 const char* mCustomPackage;
13c6cfa0 236 const char* mMaxResVersion;
1e8883fc 237
a534180c
TAOSP
238 /* file specification */
239 int mArgc;
240 char* const* mArgv;
241
242#if 0
243 /* misc stuff */
244 int mPackageCount;
245#endif
7dc0cd41 246
a534180c
TAOSP
247};
248
249#endif // __BUNDLE_H