blob: 16050b2711c3a65d1a9d6b44fc5b5a4391021acd [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001//
2// Copyright 2006 The Android Open Source Project
3//
4// Build resource files from raw assets.
5//
6
7#ifndef STRING_POOL_H
8#define STRING_POOL_H
9
10#include "Main.h"
11#include "AaptAssets.h"
12
Mathias Agopianb13b9bd2012-02-17 18:27:36 -080013#include <androidfw/ResourceTypes.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080014#include <utils/String16.h>
15#include <utils/TextOutput.h>
Jeff Brown8a9cfcc2012-03-16 15:24:32 -070016#include <utils/TypeHelpers.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080017
18#include <sys/types.h>
19#include <sys/stat.h>
20#include <fcntl.h>
21#include <ctype.h>
22#include <errno.h>
23
Elliott Hughesee15e152012-09-09 14:45:32 -070024#include <libexpat/expat.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025
26using namespace android;
27
28#define PRINT_STRING_METRICS 0
29
30void strcpy16_htod(uint16_t* dst, const uint16_t* src);
31
32void printStringPool(const ResStringPool* pool);
33
34/**
35 * The StringPool class is used as an intermediate representation for
36 * generating the string pool resource data structure that can be parsed with
37 * ResStringPool in include/utils/ResourceTypes.h.
38 */
39class StringPool
40{
41public:
42 struct entry {
43 entry() : offset(0) { }
Dianne Hackborn6c997a92012-01-31 11:27:43 -080044 entry(const String16& _value) : value(_value), offset(0), hasStyles(false) { }
45 entry(const entry& o) : value(o.value), offset(o.offset),
46 hasStyles(o.hasStyles), indices(o.indices),
47 configTypeName(o.configTypeName), configs(o.configs) { }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048
49 String16 value;
50 size_t offset;
Dianne Hackborn6c997a92012-01-31 11:27:43 -080051 bool hasStyles;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 Vector<size_t> indices;
Dianne Hackborn6c997a92012-01-31 11:27:43 -080053 String8 configTypeName;
54 Vector<ResTable_config> configs;
55
56 String8 makeConfigsString() const;
57
58 int compare(const entry& o) const;
59
60 inline bool operator<(const entry& o) const { return compare(o) < 0; }
61 inline bool operator<=(const entry& o) const { return compare(o) <= 0; }
62 inline bool operator==(const entry& o) const { return compare(o) == 0; }
63 inline bool operator!=(const entry& o) const { return compare(o) != 0; }
64 inline bool operator>=(const entry& o) const { return compare(o) >= 0; }
65 inline bool operator>(const entry& o) const { return compare(o) > 0; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066 };
67
68 struct entry_style_span {
69 String16 name;
70 ResStringPool_span span;
71 };
72
73 struct entry_style {
74 entry_style() : offset(0) { }
75
76 entry_style(const entry_style& o) : offset(o.offset), spans(o.spans) { }
77
78 size_t offset;
79 Vector<entry_style_span> spans;
80 };
81
82 /**
Kenny Root19138462009-12-04 09:38:48 -080083 * If 'utf8' is true, strings will be encoded with UTF-8 instead of
84 * left in Java's native UTF-16.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 */
Jeff Brown345b7eb2012-03-16 15:25:17 -070086 explicit StringPool(bool utf8 = false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087
88 /**
89 * Add a new string to the pool. If mergeDuplicates is true, thenif
90 * the string already exists the existing entry for it will be used;
91 * otherwise, or if the value doesn't already exist, a new entry is
92 * created.
93 *
Jeff Brown345b7eb2012-03-16 15:25:17 -070094 * Returns the index in the entry array of the new string entry.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095 */
Dianne Hackborn6c997a92012-01-31 11:27:43 -080096 ssize_t add(const String16& value, bool mergeDuplicates = false,
97 const String8* configTypeName = NULL, const ResTable_config* config = NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098
Dianne Hackborn6c997a92012-01-31 11:27:43 -080099 ssize_t add(const String16& value, const Vector<entry_style_span>& spans,
100 const String8* configTypeName = NULL, const ResTable_config* config = NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 status_t addStyleSpan(size_t idx, const String16& name,
103 uint32_t start, uint32_t end);
104 status_t addStyleSpans(size_t idx, const Vector<entry_style_span>& spans);
105 status_t addStyleSpan(size_t idx, const entry_style_span& span);
106
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800107 // Sort the contents of the string block by the configuration associated
108 // with each item. After doing this you can use mapOriginalPosToNewPos()
Jeff Brown345b7eb2012-03-16 15:25:17 -0700109 // to find out the new position given the position originally returned by
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800110 // add().
111 void sortByConfig();
112
113 // For use after sortByConfig() to map from the original position of
114 // a string to its new sorted position.
115 size_t mapOriginalPosToNewPos(size_t originalPos) const {
116 return mOriginalPosToNewPos.itemAt(originalPos);
117 }
118
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119 sp<AaptFile> createStringBlock();
120
121 status_t writeStringBlock(const sp<AaptFile>& pool);
122
123 /**
124 * Find out an offset in the pool for a particular string. If the string
125 * pool is sorted, this can not be called until after createStringBlock()
126 * or writeStringBlock() has been called
127 * (which determines the offsets). In the case of a string that appears
128 * multiple times in the pool, the first offset will be returned. Returns
129 * -1 if the string does not exist.
130 */
131 ssize_t offsetForString(const String16& val) const;
132
133 /**
134 * Find all of the offsets in the pool for a particular string. If the
135 * string pool is sorted, this can not be called until after
136 * createStringBlock() or writeStringBlock() has been called
137 * (which determines the offsets). Returns NULL if the string does not exist.
138 */
139 const Vector<size_t>* offsetsForString(const String16& val) const;
140
141private:
Jeff Brownc9fd9262012-03-16 19:25:20 -0700142 static int config_sort(void* state, const void* lhs, const void* rhs);
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800143
Kenny Root19138462009-12-04 09:38:48 -0800144 const bool mUTF8;
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800145
146 // The following data structures represent the actual structures
147 // that will be generated for the final string pool.
148
149 // Raw array of unique strings, in some arbitrary order. This is the
150 // actual strings that appear in the final string pool, in the order
151 // that they will be written.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 Vector<entry> mEntries;
153 // Array of indices into mEntries, in the order they were
154 // added to the pool. This can be different than mEntries
155 // if the same string was added multiple times (it will appear
156 // once in mEntries, with multiple occurrences in this array).
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800157 // This is the lookup array that will be written for finding
158 // the string for each offset/position in the string pool.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 Vector<size_t> mEntryArray;
160 // Optional style span information associated with each index of
161 // mEntryArray.
162 Vector<entry_style> mEntryStyleArray;
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800163
164 // The following data structures are used for book-keeping as the
165 // string pool is constructed.
166
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 // Unique set of all the strings added to the pool, mapped to
168 // the first index of mEntryArray where the value was added.
169 DefaultKeyedVector<String16, ssize_t> mValues;
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800170 // This array maps from the original position a string was placed at
171 // in mEntryArray to its new position after being sorted with sortByConfig().
172 Vector<size_t> mOriginalPosToNewPos;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800173};
174
Jeff Brown8a9cfcc2012-03-16 15:24:32 -0700175// The entry types are trivially movable because all fields they contain, including
176// the vectors and strings, are trivially movable.
177namespace android {
178 ANDROID_TRIVIAL_MOVE_TRAIT(StringPool::entry);
179 ANDROID_TRIVIAL_MOVE_TRAIT(StringPool::entry_style_span);
180 ANDROID_TRIVIAL_MOVE_TRAIT(StringPool::entry_style);
181};
182
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183#endif
184