]>
git.saurik.com Git - android/aapt.git/blob - StringPool.cpp
2 // Copyright 2006 The Android Open Source Project
4 // Build resource files from raw assets.
7 #include "StringPool.h"
9 #include <utils/ByteOrder.h>
13 void strcpy16_htod(uint16_t* dst
, const uint16_t* src
)
16 char16_t s
= htods(*src
);
23 void printStringPool(const ResStringPool
* pool
)
25 const size_t NS
= pool
->size();
26 for (size_t s
=0; s
<NS
; s
++) {
28 const char *str
= (const char*)pool
->string8At(s
, &len
);
30 str
= String8(pool
->stringAt(s
, &len
)).string();
33 printf("String #%zd: %s\n", s
, str
);
37 StringPool::StringPool(bool sorted
, bool utf8
)
38 : mSorted(sorted
), mUTF8(utf8
), mValues(-1), mIdents(-1)
42 ssize_t
StringPool::add(const String16
& value
, bool mergeDuplicates
)
44 return add(String16(), value
, mergeDuplicates
);
47 ssize_t
StringPool::add(const String16
& value
, const Vector
<entry_style_span
>& spans
)
49 ssize_t res
= add(String16(), value
, false);
51 addStyleSpans(res
, spans
);
56 ssize_t
StringPool::add(const String16
& ident
, const String16
& value
,
59 if (ident
.size() > 0) {
60 ssize_t idx
= mIdents
.valueFor(ident
);
62 fprintf(stderr
, "ERROR: Duplicate string identifier %s\n",
63 String8(mEntries
[idx
].value
).string());
68 ssize_t vidx
= mValues
.indexOfKey(value
);
69 ssize_t pos
= vidx
>= 0 ? mValues
.valueAt(vidx
) : -1;
70 ssize_t eidx
= pos
>= 0 ? mEntryArray
.itemAt(pos
) : -1;
72 eidx
= mEntries
.add(entry(value
));
74 fprintf(stderr
, "Failure adding string %s\n", String8(value
).string());
79 const bool first
= vidx
< 0;
80 if (first
|| !mergeDuplicates
) {
81 pos
= mEntryArray
.add(eidx
);
83 vidx
= mValues
.add(value
, pos
);
84 const size_t N
= mEntryArrayToValues
.size();
85 for (size_t i
=0; i
<N
; i
++) {
86 size_t& e
= mEntryArrayToValues
.editItemAt(i
);
87 if ((ssize_t
)e
>= vidx
) {
92 mEntryArrayToValues
.add(vidx
);
94 entry
& ent
= mEntries
.editItemAt(eidx
);
99 if (ident
.size() > 0) {
100 mIdents
.add(ident
, vidx
);
103 NOISY(printf("Adding string %s to pool: pos=%d eidx=%d vidx=%d\n",
104 String8(value
).string(), pos
, eidx
, vidx
));
109 status_t
StringPool::addStyleSpan(size_t idx
, const String16
& name
,
110 uint32_t start
, uint32_t end
)
112 entry_style_span span
;
114 span
.span
.firstChar
= start
;
115 span
.span
.lastChar
= end
;
116 return addStyleSpan(idx
, span
);
119 status_t
StringPool::addStyleSpans(size_t idx
, const Vector
<entry_style_span
>& spans
)
121 const size_t N
=spans
.size();
122 for (size_t i
=0; i
<N
; i
++) {
123 status_t err
= addStyleSpan(idx
, spans
[i
]);
124 if (err
!= NO_ERROR
) {
131 status_t
StringPool::addStyleSpan(size_t idx
, const entry_style_span
& span
)
133 LOG_ALWAYS_FATAL_IF(mSorted
, "Can't use styles with sorted string pools.");
135 // Place blank entries in the span array up to this index.
136 while (mEntryStyleArray
.size() <= idx
) {
137 mEntryStyleArray
.add();
140 entry_style
& style
= mEntryStyleArray
.editItemAt(idx
);
141 style
.spans
.add(span
);
145 size_t StringPool::size() const
147 return mSorted
? mValues
.size() : mEntryArray
.size();
150 const StringPool::entry
& StringPool::entryAt(size_t idx
) const
153 return mEntries
[mEntryArray
[idx
]];
155 return mEntries
[mEntryArray
[mValues
.valueAt(idx
)]];
159 size_t StringPool::countIdentifiers() const
161 return mIdents
.size();
164 sp
<AaptFile
> StringPool::createStringBlock()
166 sp
<AaptFile
> pool
= new AaptFile(String8(), AaptGroupEntry(),
168 status_t err
= writeStringBlock(pool
);
169 return err
== NO_ERROR
? pool
: NULL
;
172 #define ENCODE_LENGTH(str, chrsz, strSize) \
174 size_t maxMask = 1 << ((chrsz*8)-1); \
175 size_t maxSize = maxMask-1; \
176 if (strSize > maxSize) { \
177 *str++ = maxMask | ((strSize>>(chrsz*8))&maxSize); \
182 status_t
StringPool::writeStringBlock(const sp
<AaptFile
>& pool
)
184 // Allow appending. Sorry this is a little wacky.
185 if (pool
->getSize() > 0) {
186 sp
<AaptFile
> block
= createStringBlock();
188 return UNKNOWN_ERROR
;
190 ssize_t res
= pool
->writeData(block
->getData(), block
->getSize());
191 return (res
>= 0) ? (status_t
)NO_ERROR
: res
;
194 // First we need to add all style span names to the string pool.
195 // We do this now (instead of when the span is added) so that these
196 // will appear at the end of the pool, not disrupting the order
197 // our client placed their own strings in it.
199 const size_t STYLES
= mEntryStyleArray
.size();
202 for (i
=0; i
<STYLES
; i
++) {
203 entry_style
& style
= mEntryStyleArray
.editItemAt(i
);
204 const size_t N
= style
.spans
.size();
205 for (size_t i
=0; i
<N
; i
++) {
206 entry_style_span
& span
= style
.spans
.editItemAt(i
);
207 ssize_t idx
= add(span
.name
, true);
209 fprintf(stderr
, "Error adding span for style tag '%s'\n",
210 String8(span
.name
).string());
213 span
.span
.name
.index
= (uint32_t)idx
;
217 const size_t ENTRIES
= size();
219 // Now build the pool of unique strings.
221 const size_t STRINGS
= mEntries
.size();
222 const size_t preSize
= sizeof(ResStringPool_header
)
223 + (sizeof(uint32_t)*ENTRIES
)
224 + (sizeof(uint32_t)*STYLES
);
225 if (pool
->editData(preSize
) == NULL
) {
226 fprintf(stderr
, "ERROR: Out of memory for string pool\n");
230 const size_t charSize
= mUTF8
? sizeof(uint8_t) : sizeof(char16_t);
233 for (i
=0; i
<STRINGS
; i
++) {
234 entry
& ent
= mEntries
.editItemAt(i
);
235 const size_t strSize
= (ent
.value
.size());
236 const size_t lenSize
= strSize
> (size_t)(1<<((charSize
*8)-1))-1 ?
237 charSize
*2 : charSize
;
241 encStr
= String8(ent
.value
);
244 const size_t encSize
= mUTF8
? encStr
.size() : 0;
245 const size_t encLenSize
= mUTF8
?
246 (encSize
> (size_t)(1<<((charSize
*8)-1))-1 ?
247 charSize
*2 : charSize
) : 0;
251 const size_t totalSize
= lenSize
+ encLenSize
+
252 ((mUTF8
? encSize
: strSize
)+1)*charSize
;
254 void* dat
= (void*)pool
->editData(preSize
+ strPos
+ totalSize
);
256 fprintf(stderr
, "ERROR: Out of memory for string pool\n");
259 dat
= (uint8_t*)dat
+ preSize
+ strPos
;
261 uint8_t* strings
= (uint8_t*)dat
;
263 ENCODE_LENGTH(strings
, sizeof(uint8_t), strSize
)
265 ENCODE_LENGTH(strings
, sizeof(uint8_t), encSize
)
267 strncpy((char*)strings
, encStr
, encSize
+1);
269 uint16_t* strings
= (uint16_t*)dat
;
271 ENCODE_LENGTH(strings
, sizeof(uint16_t), strSize
)
273 strcpy16_htod(strings
, ent
.value
);
279 // Pad ending string position up to a uint32_t boundary.
282 size_t padPos
= ((strPos
+3)&~0x3);
283 uint8_t* dat
= (uint8_t*)pool
->editData(preSize
+ padPos
);
285 fprintf(stderr
, "ERROR: Out of memory padding string pool\n");
288 memset(dat
+preSize
+strPos
, 0, padPos
-strPos
);
292 // Build the pool of style spans.
294 size_t styPos
= strPos
;
295 for (i
=0; i
<STYLES
; i
++) {
296 entry_style
& ent
= mEntryStyleArray
.editItemAt(i
);
297 const size_t N
= ent
.spans
.size();
298 const size_t totalSize
= (N
*sizeof(ResStringPool_span
))
299 + sizeof(ResStringPool_ref
);
301 ent
.offset
= styPos
-strPos
;
302 uint8_t* dat
= (uint8_t*)pool
->editData(preSize
+ styPos
+ totalSize
);
304 fprintf(stderr
, "ERROR: Out of memory for string styles\n");
307 ResStringPool_span
* span
= (ResStringPool_span
*)(dat
+preSize
+styPos
);
308 for (size_t i
=0; i
<N
; i
++) {
309 span
->name
.index
= htodl(ent
.spans
[i
].span
.name
.index
);
310 span
->firstChar
= htodl(ent
.spans
[i
].span
.firstChar
);
311 span
->lastChar
= htodl(ent
.spans
[i
].span
.lastChar
);
314 span
->name
.index
= htodl(ResStringPool_span::END
);
320 // Add full terminator at the end (when reading we validate that
321 // the end of the pool is fully terminated to simplify error
323 size_t extra
= sizeof(ResStringPool_span
)-sizeof(ResStringPool_ref
);
324 uint8_t* dat
= (uint8_t*)pool
->editData(preSize
+ styPos
+ extra
);
326 fprintf(stderr
, "ERROR: Out of memory for string styles\n");
329 uint32_t* p
= (uint32_t*)(dat
+preSize
+styPos
);
331 *p
++ = htodl(ResStringPool_span::END
);
332 extra
-= sizeof(uint32_t);
339 ResStringPool_header
* header
=
340 (ResStringPool_header
*)pool
->padData(sizeof(uint32_t));
341 if (header
== NULL
) {
342 fprintf(stderr
, "ERROR: Out of memory for string pool\n");
345 memset(header
, 0, sizeof(*header
));
346 header
->header
.type
= htods(RES_STRING_POOL_TYPE
);
347 header
->header
.headerSize
= htods(sizeof(*header
));
348 header
->header
.size
= htodl(pool
->getSize());
349 header
->stringCount
= htodl(ENTRIES
);
350 header
->styleCount
= htodl(STYLES
);
352 header
->flags
|= htodl(ResStringPool_header::SORTED_FLAG
);
355 header
->flags
|= htodl(ResStringPool_header::UTF8_FLAG
);
357 header
->stringsStart
= htodl(preSize
);
358 header
->stylesStart
= htodl(STYLES
> 0 ? (preSize
+strPos
) : 0);
360 // Write string index array.
362 uint32_t* index
= (uint32_t*)(header
+1);
364 for (i
=0; i
<ENTRIES
; i
++) {
365 entry
& ent
= const_cast<entry
&>(entryAt(i
));
368 *index
++ = htodl(ent
.offset
);
371 for (i
=0; i
<ENTRIES
; i
++) {
372 entry
& ent
= mEntries
.editItemAt(mEntryArray
[i
]);
373 *index
++ = htodl(ent
.offset
);
374 NOISY(printf("Writing entry #%d: \"%s\" ent=%d off=%d\n", i
,
375 String8(ent
.value
).string(),
376 mEntryArray
[i
], ent
.offset
));
380 // Write style index array.
383 for (i
=0; i
<STYLES
; i
++) {
384 LOG_ALWAYS_FATAL("Shouldn't be here!");
387 for (i
=0; i
<STYLES
; i
++) {
388 *index
++ = htodl(mEntryStyleArray
[i
].offset
);
395 ssize_t
StringPool::offsetForString(const String16
& val
) const
397 const Vector
<size_t>* indices
= offsetsForString(val
);
398 ssize_t res
= indices
!= NULL
&& indices
->size() > 0 ? indices
->itemAt(0) : -1;
399 NOISY(printf("Offset for string %s: %d (%s)\n", String8(val
).string(), res
,
400 res
>= 0 ? String8(mEntries
[mEntryArray
[res
]].value
).string() : String8()));
404 const Vector
<size_t>* StringPool::offsetsForString(const String16
& val
) const
406 ssize_t pos
= mValues
.valueFor(val
);
410 return &mEntries
[mEntryArray
[pos
]].indices
;