2 // Copyright 2006 The Android Open Source Project
4 // State bundle. Used to pass around stuff like command-line args.
10 #include <utils.h> // android
11 #include <utils/String8.h>
12 #include <utils/Vector.h>
17 typedef enum Command
{
28 * Bundle of goodies, including everything specified on the command line.
33 : mCmd(kCommandUnknown
), mVerbose(false), mAndroidList(false),
34 mForce(false), mMakePackageDirs(false),
35 mUpdate(false), mExtending(false),
36 mRequireLocalization(false), mPseudolocalize(false),
37 mCompressionMethod(0), mOutputAPKFile(NULL
),
38 mAssetSourceDir(NULL
), mResourceSourceDir(NULL
),
39 mAndroidManifestFile(NULL
), mPublicOutputFile(NULL
),
40 mRClassDir(NULL
), mResourceIntermediatesDir(NULL
),
46 * Set the command value. Returns "false" if it was previously set.
48 Command
getCommand(void) const { return mCmd
; }
49 void setCommand(Command cmd
) { mCmd
= cmd
; }
52 * Command modifiers. Not all modifiers are appropriate for all
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 bool getMakePackageDirs(void) const { return mMakePackageDirs
; }
62 void setMakePackageDirs(bool val
) { mMakePackageDirs
= val
; }
63 bool getUpdate(void) const { return mUpdate
; }
64 void setUpdate(bool val
) { mUpdate
= val
; }
65 bool getExtending(void) const { return mExtending
; }
66 void setExtending(bool val
) { mExtending
= val
; }
67 bool getRequireLocalization(void) const { return mRequireLocalization
; }
68 void setRequireLocalization(bool val
) { mRequireLocalization
= val
; }
69 bool getPseudolocalize(void) const { return mPseudolocalize
; }
70 void setPseudolocalize(bool val
) { mPseudolocalize
= val
; }
71 int getCompressionMethod(void) const { return mCompressionMethod
; }
72 void setCompressionMethod(int val
) { mCompressionMethod
= val
; }
73 const char* getOutputAPKFile() const { return mOutputAPKFile
; }
74 void setOutputAPKFile(const char* val
) { mOutputAPKFile
= val
; }
79 const char* getAssetSourceDir() const { return mAssetSourceDir
; }
80 void setAssetSourceDir(const char* dir
) { mAssetSourceDir
= dir
; }
81 const char* getResourceSourceDir() const { return mResourceSourceDir
; }
82 void setResourceSourceDir(const char* dir
) { mResourceSourceDir
= dir
; }
83 const char* getAndroidManifestFile() const { return mAndroidManifestFile
; }
84 void setAndroidManifestFile(const char* file
) { mAndroidManifestFile
= file
; }
85 const char* getPublicOutputFile() const { return mPublicOutputFile
; }
86 void setPublicOutputFile(const char* file
) { mPublicOutputFile
= file
; }
87 const char* getRClassDir() const { return mRClassDir
; }
88 void setRClassDir(const char* dir
) { mRClassDir
= dir
; }
89 const char* getConfigurations() const { return mConfigurations
.size() > 0 ? mConfigurations
.string() : NULL
; }
90 void addConfigurations(const char* val
) { if (mConfigurations
.size() > 0) { mConfigurations
.append(","); mConfigurations
.append(val
); } else { mConfigurations
= val
; } }
91 const char* getResourceIntermediatesDir() const { return mResourceIntermediatesDir
; }
92 void setResourceIntermediatesDir(const char* dir
) { mResourceIntermediatesDir
= dir
; }
93 const android::Vector
<const char*>& getPackageIncludes() const { return mPackageIncludes
; }
94 void addPackageInclude(const char* file
) { mPackageIncludes
.add(file
); }
95 const android::Vector
<const char*>& getJarFiles() const { return mJarFiles
; }
96 void addJarFile(const char* file
) { mJarFiles
.add(file
); }
97 const android::Vector
<const char*>& getNoCompressExtensions() const { return mNoCompressExtensions
; }
98 void addNoCompressExtension(const char* ext
) { mNoCompressExtensions
.add(ext
); }
101 * Set and get the file specification.
103 * Note this does NOT make a copy of argv.
105 void setFileSpec(char* const argv
[], int argc
) {
109 int getFileSpecCount(void) const { return mArgc
; }
110 const char* getFileSpecEntry(int idx
) const { return mArgv
[idx
]; }
111 void eatArgs(int n
) {
112 if (n
> mArgc
) n
= mArgc
;
119 * Package count. Nothing to do with anything else here; this is
120 * just a convenient place to stuff it so we don't have to pass it
123 int getPackageCount(void) const { return mPackageCount
; }
124 void setPackageCount(int val
) { mPackageCount
= val
; }
128 /* commands & modifiers */
133 bool mMakePackageDirs
;
136 bool mRequireLocalization
;
137 bool mPseudolocalize
;
138 int mCompressionMethod
;
139 const char* mOutputAPKFile
;
140 const char* mAssetSourceDir
;
141 const char* mResourceSourceDir
;
142 const char* mAndroidManifestFile
;
143 const char* mPublicOutputFile
;
144 const char* mRClassDir
;
145 const char* mResourceIntermediatesDir
;
146 android::String8 mConfigurations
;
147 android::Vector
<const char*> mPackageIncludes
;
148 android::Vector
<const char*> mJarFiles
;
149 android::Vector
<const char*> mNoCompressExtensions
;
151 /* file specification */