blob: d20c601a0c7726dcc561f17ef78156fccdb0c066 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001//
2// Copyright 2006 The Android Open Source Project
3//
4// Some global defines that don't really merit their own header.
5//
6#ifndef __MAIN_H
7#define __MAIN_H
8
Mathias Agopian3b4062e2009-05-31 19:13:00 -07009#include <utils/Log.h>
10#include <utils/threads.h>
11#include <utils/List.h>
12#include <utils/Errors.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080013#include "Bundle.h"
14#include "AaptAssets.h"
Mathias Agopian55e3d602009-06-05 14:56:35 -070015#include "ZipFile.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080016
Josiah Gaskin8a39da82011-06-06 17:00:35 -070017
18/* Benchmarking Flag */
19//#define BENCHMARK 1
20
21#if BENCHMARK
22 #include <time.h>
23#endif /* BENCHMARK */
24
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025extern int doVersion(Bundle* bundle);
26extern int doList(Bundle* bundle);
27extern int doDump(Bundle* bundle);
28extern int doAdd(Bundle* bundle);
29extern int doRemove(Bundle* bundle);
30extern int doPackage(Bundle* bundle);
Josiah Gaskin8a39da82011-06-06 17:00:35 -070031extern int doCrunch(Bundle* bundle);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032
33extern int calcPercent(long uncompressedLen, long compressedLen);
34
35extern android::status_t writeAPK(Bundle* bundle,
36 const sp<AaptAssets>& assets,
37 const android::String8& outputFile);
38
Josiah Gaskin8a39da82011-06-06 17:00:35 -070039extern android::status_t updatePreProcessedCache(Bundle* bundle);
40
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041extern android::status_t buildResources(Bundle* bundle,
42 const sp<AaptAssets>& assets);
43
44extern android::status_t writeResourceSymbols(Bundle* bundle,
45 const sp<AaptAssets>& assets, const String8& pkgName, bool includePrivate);
46
Joe Onorato1553c822009-08-30 13:36:22 -070047extern android::status_t writeProguardFile(Bundle* bundle, const sp<AaptAssets>& assets);
48
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049extern bool isValidResourceType(const String8& type);
50
51ssize_t processAssets(Bundle* bundle, ZipFile* zip, const sp<AaptAssets>& assets);
52
53extern status_t filterResources(Bundle* bundle, const sp<AaptAssets>& assets);
54
55int dumpResources(Bundle* bundle);
56
Joe Onorato1553c822009-08-30 13:36:22 -070057String8 getAttribute(const ResXMLTree& tree, const char* ns,
58 const char* attr, String8* outError);
59
Josiah Gaskin03589cc2011-06-27 16:26:02 -070060status_t writeDependencyPreReqs(Bundle* bundle, const sp<AaptAssets>& assets,
61 FILE* fp, bool includeRaw);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062#endif // __MAIN_H