]> git.saurik.com Git - android/aapt.git/blame - Bundle.h
am a1d08886: Merge "Only output proguard keep for nonempty attribute name in the...
[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),
7751daa4 40 mValues(false),
a534180c 41 mCompressionMethod(0), mOutputAPKFile(NULL),
6648ff78 42 mAssetSourceDir(NULL), mProguardFile(NULL),
a534180c
TAOSP
43 mAndroidManifestFile(NULL), mPublicOutputFile(NULL),
44 mRClassDir(NULL), mResourceIntermediatesDir(NULL),
53288885 45 mMinSdkVersion(NULL), mTargetSdkVersion(NULL), mMaxSdkVersion(NULL),
fa19db5e 46 mVersionCode(NULL), mVersionName(NULL), mCustomPackage(NULL),
a534180c
TAOSP
47 mArgc(0), mArgv(NULL)
48 {}
49 ~Bundle(void) {}
50
51 /*
52 * Set the command value. Returns "false" if it was previously set.
53 */
54 Command getCommand(void) const { return mCmd; }
55 void setCommand(Command cmd) { mCmd = cmd; }
56
57 /*
58 * Command modifiers. Not all modifiers are appropriate for all
59 * commands.
60 */
61 bool getVerbose(void) const { return mVerbose; }
62 void setVerbose(bool val) { mVerbose = val; }
63 bool getAndroidList(void) const { return mAndroidList; }
64 void setAndroidList(bool val) { mAndroidList = val; }
65 bool getForce(void) const { return mForce; }
66 void setForce(bool val) { mForce = val; }
67 void setGrayscaleTolerance(int val) { mGrayscaleTolerance = val; }
68 int getGrayscaleTolerance() { return mGrayscaleTolerance; }
69 bool getMakePackageDirs(void) const { return mMakePackageDirs; }
70 void setMakePackageDirs(bool val) { mMakePackageDirs = val; }
71 bool getUpdate(void) const { return mUpdate; }
72 void setUpdate(bool val) { mUpdate = val; }
73 bool getExtending(void) const { return mExtending; }
74 void setExtending(bool val) { mExtending = val; }
75 bool getRequireLocalization(void) const { return mRequireLocalization; }
76 void setRequireLocalization(bool val) { mRequireLocalization = val; }
77 bool getPseudolocalize(void) const { return mPseudolocalize; }
78 void setPseudolocalize(bool val) { mPseudolocalize = val; }
7751daa4
DH
79 bool getValues(void) const { return mValues; }
80 void setValues(bool val) { mValues = val; }
a534180c
TAOSP
81 int getCompressionMethod(void) const { return mCompressionMethod; }
82 void setCompressionMethod(int val) { mCompressionMethod = val; }
5c71c5c3
DZ
83 bool getJunkPath(void) const { return mJunkPath; }
84 void setJunkPath(bool val) { mJunkPath = val; }
a534180c
TAOSP
85 const char* getOutputAPKFile() const { return mOutputAPKFile; }
86 void setOutputAPKFile(const char* val) { mOutputAPKFile = val; }
87
5c71c5c3
DZ
88 /*
89 * Input options.
a534180c
TAOSP
90 */
91 const char* getAssetSourceDir() const { return mAssetSourceDir; }
92 void setAssetSourceDir(const char* dir) { mAssetSourceDir = dir; }
6648ff78
JO
93 const char* getProguardFile() const { return mProguardFile; }
94 void setProguardFile(const char* file) { mProguardFile = file; }
a534180c
TAOSP
95 const android::Vector<const char*>& getResourceSourceDirs() const { return mResourceSourceDirs; }
96 void addResourceSourceDir(const char* dir) { mResourceSourceDirs.insertAt(dir,0); }
97 const char* getAndroidManifestFile() const { return mAndroidManifestFile; }
98 void setAndroidManifestFile(const char* file) { mAndroidManifestFile = file; }
99 const char* getPublicOutputFile() const { return mPublicOutputFile; }
100 void setPublicOutputFile(const char* file) { mPublicOutputFile = file; }
101 const char* getRClassDir() const { return mRClassDir; }
102 void setRClassDir(const char* dir) { mRClassDir = dir; }
103 const char* getConfigurations() const { return mConfigurations.size() > 0 ? mConfigurations.string() : NULL; }
104 void addConfigurations(const char* val) { if (mConfigurations.size() > 0) { mConfigurations.append(","); mConfigurations.append(val); } else { mConfigurations = val; } }
105 const char* getResourceIntermediatesDir() const { return mResourceIntermediatesDir; }
106 void setResourceIntermediatesDir(const char* dir) { mResourceIntermediatesDir = dir; }
107 const android::Vector<const char*>& getPackageIncludes() const { return mPackageIncludes; }
108 void addPackageInclude(const char* file) { mPackageIncludes.add(file); }
109 const android::Vector<const char*>& getJarFiles() const { return mJarFiles; }
110 void addJarFile(const char* file) { mJarFiles.add(file); }
111 const android::Vector<const char*>& getNoCompressExtensions() const { return mNoCompressExtensions; }
112 void addNoCompressExtension(const char* ext) { mNoCompressExtensions.add(ext); }
113
7e486e33
DH
114 const char* getMinSdkVersion() const { return mMinSdkVersion; }
115 void setMinSdkVersion(const char* val) { mMinSdkVersion = val; }
116 const char* getTargetSdkVersion() const { return mTargetSdkVersion; }
117 void setTargetSdkVersion(const char* val) { mTargetSdkVersion = val; }
118 const char* getMaxSdkVersion() const { return mMaxSdkVersion; }
119 void setMaxSdkVersion(const char* val) { mMaxSdkVersion = val; }
120 const char* getVersionCode() const { return mVersionCode; }
121 void setVersionCode(const char* val) { mVersionCode = val; }
122 const char* getVersionName() const { return mVersionName; }
123 void setVersionName(const char* val) { mVersionName = val; }
fa19db5e
XD
124 const char* getCustomPackage() const { return mCustomPackage; }
125 void setCustomPackage(const char* val) { mCustomPackage = val; }
5c71c5c3 126
a534180c
TAOSP
127 /*
128 * Set and get the file specification.
129 *
130 * Note this does NOT make a copy of argv.
131 */
132 void setFileSpec(char* const argv[], int argc) {
133 mArgc = argc;
134 mArgv = argv;
135 }
136 int getFileSpecCount(void) const { return mArgc; }
137 const char* getFileSpecEntry(int idx) const { return mArgv[idx]; }
138 void eatArgs(int n) {
139 if (n > mArgc) n = mArgc;
140 mArgv += n;
141 mArgc -= n;
142 }
143
144#if 0
145 /*
146 * Package count. Nothing to do with anything else here; this is
147 * just a convenient place to stuff it so we don't have to pass it
148 * around everywhere.
149 */
150 int getPackageCount(void) const { return mPackageCount; }
151 void setPackageCount(int val) { mPackageCount = val; }
152#endif
153
154private:
155 /* commands & modifiers */
156 Command mCmd;
157 bool mVerbose;
158 bool mAndroidList;
159 bool mForce;
160 int mGrayscaleTolerance;
161 bool mMakePackageDirs;
162 bool mUpdate;
163 bool mExtending;
164 bool mRequireLocalization;
165 bool mPseudolocalize;
7751daa4 166 bool mValues;
a534180c 167 int mCompressionMethod;
5c71c5c3 168 bool mJunkPath;
a534180c
TAOSP
169 const char* mOutputAPKFile;
170 const char* mAssetSourceDir;
6648ff78 171 const char* mProguardFile;
a534180c
TAOSP
172 const char* mAndroidManifestFile;
173 const char* mPublicOutputFile;
174 const char* mRClassDir;
175 const char* mResourceIntermediatesDir;
176 android::String8 mConfigurations;
177 android::Vector<const char*> mPackageIncludes;
178 android::Vector<const char*> mJarFiles;
179 android::Vector<const char*> mNoCompressExtensions;
180 android::Vector<const char*> mResourceSourceDirs;
5c71c5c3 181
7e486e33
DH
182 const char* mMinSdkVersion;
183 const char* mTargetSdkVersion;
184 const char* mMaxSdkVersion;
185 const char* mVersionCode;
186 const char* mVersionName;
fa19db5e 187 const char* mCustomPackage;
5c71c5c3 188
a534180c
TAOSP
189 /* file specification */
190 int mArgc;
191 char* const* mArgv;
192
193#if 0
194 /* misc stuff */
195 int mPackageCount;
196#endif
197};
198
199#endif // __BUNDLE_H