X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/d38cd880626e1508ffec8d891a8e61b8f5c8cb7d..337efd6a727a249be478c824dbff5e11e98fee4e:/ResourceTable.cpp diff --git a/ResourceTable.cpp b/ResourceTable.cpp index 85665e0..a2f085a 100644 --- a/ResourceTable.cpp +++ b/ResourceTable.cpp @@ -13,7 +13,6 @@ #include #define NOISY(x) //x -#define NOISY_REF(x) //x status_t compileXmlFile(const sp& assets, const sp& target, @@ -1934,7 +1933,7 @@ bool ResourceTable::stringToValue(Res_value* outValue, StringPool* pool, // information we have already processed that string! outValue->size = sizeof(Res_value); outValue->res0 = 0; - outValue->dataType = Res_value::TYPE_STRING; + outValue->dataType = outValue->TYPE_STRING; outValue->data = 0; finalStr = str; } @@ -1943,7 +1942,7 @@ bool ResourceTable::stringToValue(Res_value* outValue, StringPool* pool, return false; } - if (outValue->dataType == Res_value::TYPE_STRING) { + if (outValue->dataType == outValue->TYPE_STRING) { // Should do better merging styles. if (pool) { if (style != NULL && style->size() > 0) { @@ -2528,10 +2527,11 @@ status_t ResourceTable::flatten(Bundle* bundle, const sp& dest) const size_t N = mOrderedPackages.size(); size_t pi; + bool useUTF8 = !bundle->getWantUTF16() && bundle->isMinSdkAtLeast(SDK_FROYO); + // Iterate through all data, collecting all values (strings, // references, etc). - StringPool valueStrings = StringPool(false, bundle->getUTF8()); - ResourceConfigReferences configRefs; + StringPool valueStrings = StringPool(false, useUTF8); for (pi=0; pi p = mOrderedPackages.itemAt(pi); if (p->getTypes().size() == 0) { @@ -2539,8 +2539,8 @@ status_t ResourceTable::flatten(Bundle* bundle, const sp& dest) continue; } - StringPool typeStrings = StringPool(false, bundle->getUTF8()); - StringPool keyStrings = StringPool(false, bundle->getUTF8()); + StringPool typeStrings = StringPool(false, useUTF8); + StringPool keyStrings = StringPool(false, useUTF8); const size_t N = p->getOrderedTypes().size(); for (size_t ti=0; ti& dest) if (err != NO_ERROR) { return err; } - if (e->getType() == Entry::TYPE_ITEM) { - const Item* item = e->getItem(); - if (item != NULL) { - uint32_t poolIndex = item->parsedValue.data; - configRefs.add(poolIndex, config); - } - } } } } @@ -2587,70 +2580,6 @@ status_t ResourceTable::flatten(Bundle* bundle, const sp& dest) p->setKeyStrings(keyStrings.createStringBlock()); } - NOISY_REF(configRefs.dump();) - - // Trim all entries in config tables that are not roots for that string. - // i.e., rely on the resource system to grab the string from the more - // generic pool during runtime to save space. - for (pi=0; pi p = mOrderedPackages.itemAt(pi); - if (p->getTypes().size() == 0) { - // Empty, skip! - continue; - } - const size_t TN = p->getOrderedTypes().size(); - for (size_t ti=0; ti t = p->getOrderedTypes().itemAt(ti); - if (t == NULL) { - continue; - } - size_t CN = t->getOrderedConfigs().size(); - for (size_t ci=0; ci c = t->getOrderedConfigs().itemAt(ci); - if (c == NULL) { - continue; - } - DefaultKeyedVector > newEntries; - size_t EN = c->getEntries().size(); - for (size_t ei=0; eigetEntries().keyAt(ei); - if (!filter.match(config)) { - continue; - } - sp e = c->getEntries().valueAt(ei); - if (e == NULL) { - continue; - } - if (e->getType() == Entry::TYPE_ITEM) { - const Item* item = e->getItem(); - if (item != NULL) { - uint32_t poolIndex = item->parsedValue.data; - if (!configRefs.isRoot(poolIndex, config)) { - NOISY_REF( - printf(" ConfigRef %d: removing ", poolIndex); - DEBUG_LANG(config) - printf("\n"); - ) - c->removeEntryAt(ei); - t->removeUniqueConfig(config); - --ei; --EN; - } - } - } - } - if (EN == 0) { - // We removed all the entries from a config, so remove the - // config itself. - NOISY_REF( - printf(" ConfigRef REMOVED ENTIRE CONFIG\n"); - ) - t->removeOrderedConfigAt(ci); - --ci; --CN; - } - } - } - } - ssize_t strAmt = 0; // Now build the array of package chunks. @@ -3805,95 +3734,3 @@ bool ResourceTable::getItemValue( } return res; } - -#define DEBUG_LANG(x) printf("lang=%c%c cnt=%c%c ", \ - (x).language[0] ? (x).language[0] : '-', \ - (x).language[1] ? (x).language[1] : '-', \ - (x).country[0] ? (x).country[0] : '-', \ - (x).country[1] ? (x).country[1] : '-'); - -status_t ResourceConfigReferences::add(uint32_t id, const ResTable_config& config) -{ - ssize_t index = mRoots.indexOfKey(id); - if (index < 0) { - index = mRoots.add(id, Vector()); - } - Vector& configRoots = mRoots.editValueFor(id); - - if (!configRoots.isEmpty()) { - ssize_t NR = configRoots.size(); - for (int ri=0; rimatch(config)) { - // more generic - NOISY_REF( - printf(" ConfigRef %d: remove ", id); - DEBUG_LANG(current) - printf("\n"); - ) - configRoots.removeItemsAt(ri); - --ri; --NR; - } - } - } - NOISY_REF( - printf(" ConfigRef %d: add ", id); - DEBUG_LANG(config) - printf("\n"); - ) - ResTable_config *configCopy = (ResTable_config*)malloc(sizeof(ResTable_config)); - memcpy(configCopy, &config, sizeof(ResTable_config)); - configRoots.add(configCopy); - - return NO_ERROR; -} - -void ResourceConfigReferences::dump() -{ - printf("ResourceConfigReferences\n"); - const ssize_t NR = mRoots.size(); - for (int ri=0; ri& configRoots = mRoots.valueAt(ri); - printf(" String %d\n", mRoots.keyAt(ri)); - const ssize_t NC = configRoots.size(); - for (int ci=0; ci& configRoots = mRoots.editValueFor(id); - const ssize_t NR = configRoots.size(); - for (int ri = 0; rimatch(config)) { - return true; - } - } - return false; -} - -ResourceConfigReferences::~ResourceConfigReferences() -{ - const ssize_t NR = mRoots.size(); - for (int ri=0; ri configRoots = mRoots.editValueAt(ri); - const ssize_t NC = configRoots.size(); - for (int ci=0; ci(configRoots[ci]); - free(config); - } - } -}