compressed_translation.cpp 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. /*************************************************************************/
  2. /* compressed_translation.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "compressed_translation.h"
  31. #include "core/pair.h"
  32. extern "C" {
  33. #include "thirdparty/misc/smaz.h"
  34. }
  35. struct _PHashTranslationCmp {
  36. int orig_len;
  37. CharString compressed;
  38. int offset;
  39. };
  40. void PHashTranslation::generate(const Ref<Translation> &p_from) {
  41. #ifdef TOOLS_ENABLED
  42. ERR_FAIL_COND(p_from.is_null());
  43. List<StringName> keys;
  44. p_from->get_message_list(&keys);
  45. int size = Math::larger_prime(keys.size());
  46. Vector<Vector<Pair<int, CharString> > > buckets;
  47. Vector<Map<uint32_t, int> > table;
  48. Vector<uint32_t> hfunc_table;
  49. Vector<_PHashTranslationCmp> compressed;
  50. table.resize(size);
  51. hfunc_table.resize(size);
  52. buckets.resize(size);
  53. compressed.resize(keys.size());
  54. int idx = 0;
  55. int total_compression_size = 0;
  56. for (List<StringName>::Element *E = keys.front(); E; E = E->next()) {
  57. //hash string
  58. CharString cs = E->get().operator String().utf8();
  59. uint32_t h = hash(0, cs.get_data());
  60. Pair<int, CharString> p;
  61. p.first = idx;
  62. p.second = cs;
  63. buckets.write[h % size].push_back(p);
  64. //compress string
  65. CharString src_s = p_from->get_message(E->get()).operator String().utf8();
  66. _PHashTranslationCmp ps;
  67. ps.orig_len = src_s.size();
  68. ps.offset = total_compression_size;
  69. if (ps.orig_len != 0) {
  70. CharString dst_s;
  71. dst_s.resize(src_s.size());
  72. int ret = smaz_compress(src_s.get_data(), src_s.size(), dst_s.ptrw(), src_s.size());
  73. if (ret >= src_s.size()) {
  74. //if compressed is larger than original, just use original
  75. ps.orig_len = src_s.size();
  76. ps.compressed = src_s;
  77. } else {
  78. dst_s.resize(ret);
  79. //ps.orig_len=;
  80. ps.compressed = dst_s;
  81. }
  82. } else {
  83. ps.orig_len = 1;
  84. ps.compressed.resize(1);
  85. ps.compressed[0] = 0;
  86. }
  87. compressed.write[idx] = ps;
  88. total_compression_size += ps.compressed.size();
  89. idx++;
  90. }
  91. int bucket_table_size = 0;
  92. for (int i = 0; i < size; i++) {
  93. const Vector<Pair<int, CharString> > &b = buckets[i];
  94. Map<uint32_t, int> &t = table.write[i];
  95. if (b.size() == 0)
  96. continue;
  97. int d = 1;
  98. int item = 0;
  99. while (item < b.size()) {
  100. uint32_t slot = hash(d, b[item].second.get_data());
  101. if (t.has(slot)) {
  102. item = 0;
  103. d++;
  104. t.clear();
  105. } else {
  106. t[slot] = b[item].first;
  107. item++;
  108. }
  109. }
  110. hfunc_table.write[i] = d;
  111. bucket_table_size += 2 + b.size() * 4;
  112. }
  113. ERR_FAIL_COND(bucket_table_size == 0);
  114. hash_table.resize(size);
  115. bucket_table.resize(bucket_table_size);
  116. PoolVector<int>::Write htwb = hash_table.write();
  117. PoolVector<int>::Write btwb = bucket_table.write();
  118. uint32_t *htw = (uint32_t *)&htwb[0];
  119. uint32_t *btw = (uint32_t *)&btwb[0];
  120. int btindex = 0;
  121. for (int i = 0; i < size; i++) {
  122. const Map<uint32_t, int> &t = table[i];
  123. if (t.size() == 0) {
  124. htw[i] = 0xFFFFFFFF; //nothing
  125. continue;
  126. }
  127. htw[i] = btindex;
  128. btw[btindex++] = t.size();
  129. btw[btindex++] = hfunc_table[i];
  130. for (Map<uint32_t, int>::Element *E = t.front(); E; E = E->next()) {
  131. btw[btindex++] = E->key();
  132. btw[btindex++] = compressed[E->get()].offset;
  133. btw[btindex++] = compressed[E->get()].compressed.size();
  134. btw[btindex++] = compressed[E->get()].orig_len;
  135. }
  136. }
  137. strings.resize(total_compression_size);
  138. PoolVector<uint8_t>::Write cw = strings.write();
  139. for (int i = 0; i < compressed.size(); i++) {
  140. memcpy(&cw[compressed[i].offset], compressed[i].compressed.get_data(), compressed[i].compressed.size());
  141. }
  142. ERR_FAIL_COND(btindex != bucket_table_size);
  143. set_locale(p_from->get_locale());
  144. #endif
  145. }
  146. bool PHashTranslation::_set(const StringName &p_name, const Variant &p_value) {
  147. String name = p_name.operator String();
  148. if (name == "hash_table") {
  149. hash_table = p_value;
  150. } else if (name == "bucket_table") {
  151. bucket_table = p_value;
  152. } else if (name == "strings") {
  153. strings = p_value;
  154. } else if (name == "load_from") {
  155. generate(p_value);
  156. } else
  157. return false;
  158. return true;
  159. }
  160. bool PHashTranslation::_get(const StringName &p_name, Variant &r_ret) const {
  161. String name = p_name.operator String();
  162. if (name == "hash_table")
  163. r_ret = hash_table;
  164. else if (name == "bucket_table")
  165. r_ret = bucket_table;
  166. else if (name == "strings")
  167. r_ret = strings;
  168. else
  169. return false;
  170. return true;
  171. }
  172. StringName PHashTranslation::get_message(const StringName &p_src_text) const {
  173. int htsize = hash_table.size();
  174. if (htsize == 0)
  175. return StringName();
  176. CharString str = p_src_text.operator String().utf8();
  177. uint32_t h = hash(0, str.get_data());
  178. PoolVector<int>::Read htr = hash_table.read();
  179. const uint32_t *htptr = (const uint32_t *)&htr[0];
  180. PoolVector<int>::Read btr = bucket_table.read();
  181. const uint32_t *btptr = (const uint32_t *)&btr[0];
  182. PoolVector<uint8_t>::Read sr = strings.read();
  183. const char *sptr = (const char *)&sr[0];
  184. uint32_t p = htptr[h % htsize];
  185. if (p == 0xFFFFFFFF) {
  186. return StringName(); //nothing
  187. }
  188. const Bucket &bucket = *(const Bucket *)&btptr[p];
  189. h = hash(bucket.func, str.get_data());
  190. int idx = -1;
  191. for (int i = 0; i < bucket.size; i++) {
  192. if (bucket.elem[i].key == h) {
  193. idx = i;
  194. break;
  195. }
  196. }
  197. if (idx == -1) {
  198. return StringName();
  199. }
  200. if (bucket.elem[idx].comp_size == bucket.elem[idx].uncomp_size) {
  201. String rstr;
  202. rstr.parse_utf8(&sptr[bucket.elem[idx].str_offset], bucket.elem[idx].uncomp_size);
  203. return rstr;
  204. } else {
  205. CharString uncomp;
  206. uncomp.resize(bucket.elem[idx].uncomp_size + 1);
  207. smaz_decompress(&sptr[bucket.elem[idx].str_offset], bucket.elem[idx].comp_size, uncomp.ptrw(), bucket.elem[idx].uncomp_size);
  208. String rstr;
  209. rstr.parse_utf8(uncomp.get_data());
  210. return rstr;
  211. }
  212. }
  213. void PHashTranslation::_get_property_list(List<PropertyInfo> *p_list) const {
  214. p_list->push_back(PropertyInfo(Variant::POOL_INT_ARRAY, "hash_table"));
  215. p_list->push_back(PropertyInfo(Variant::POOL_INT_ARRAY, "bucket_table"));
  216. p_list->push_back(PropertyInfo(Variant::POOL_BYTE_ARRAY, "strings"));
  217. p_list->push_back(PropertyInfo(Variant::OBJECT, "load_from", PROPERTY_HINT_RESOURCE_TYPE, "Translation", PROPERTY_USAGE_EDITOR));
  218. }
  219. void PHashTranslation::_bind_methods() {
  220. ClassDB::bind_method(D_METHOD("generate", "from"), &PHashTranslation::generate);
  221. }
  222. PHashTranslation::PHashTranslation() {
  223. }