compressed_translation.cpp 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. /*************************************************************************/
  2. /* compressed_translation.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 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. List<StringName> keys;
  43. p_from->get_message_list(&keys);
  44. int size = Math::larger_prime(keys.size());
  45. Vector<Vector<Pair<int, CharString> > > buckets;
  46. Vector<Map<uint32_t, int> > table;
  47. Vector<uint32_t> hfunc_table;
  48. Vector<_PHashTranslationCmp> compressed;
  49. table.resize(size);
  50. hfunc_table.resize(size);
  51. buckets.resize(size);
  52. compressed.resize(keys.size());
  53. int idx = 0;
  54. int total_compression_size = 0;
  55. for (List<StringName>::Element *E = keys.front(); E; E = E->next()) {
  56. //hash string
  57. CharString cs = E->get().operator String().utf8();
  58. uint32_t h = hash(0, cs.get_data());
  59. Pair<int, CharString> p;
  60. p.first = idx;
  61. p.second = cs;
  62. buckets.write[h % size].push_back(p);
  63. //compress string
  64. CharString src_s = p_from->get_message(E->get()).operator String().utf8();
  65. _PHashTranslationCmp ps;
  66. ps.orig_len = src_s.size();
  67. ps.offset = total_compression_size;
  68. if (ps.orig_len != 0) {
  69. CharString dst_s;
  70. dst_s.resize(src_s.size());
  71. int ret = smaz_compress(src_s.get_data(), src_s.size(), dst_s.ptrw(), src_s.size());
  72. if (ret >= src_s.size()) {
  73. //if compressed is larger than original, just use original
  74. ps.orig_len = src_s.size();
  75. ps.compressed = src_s;
  76. } else {
  77. dst_s.resize(ret);
  78. //ps.orig_len=;
  79. ps.compressed = dst_s;
  80. }
  81. } else {
  82. ps.orig_len = 1;
  83. ps.compressed.resize(1);
  84. ps.compressed[0] = 0;
  85. }
  86. compressed.write[idx] = ps;
  87. total_compression_size += ps.compressed.size();
  88. idx++;
  89. }
  90. int bucket_table_size = 0;
  91. for (int i = 0; i < size; i++) {
  92. const Vector<Pair<int, CharString> > &b = buckets[i];
  93. Map<uint32_t, int> &t = table.write[i];
  94. if (b.size() == 0)
  95. continue;
  96. int d = 1;
  97. int item = 0;
  98. while (item < b.size()) {
  99. uint32_t slot = hash(d, b[item].second.get_data());
  100. if (t.has(slot)) {
  101. item = 0;
  102. d++;
  103. t.clear();
  104. } else {
  105. t[slot] = b[item].first;
  106. item++;
  107. }
  108. }
  109. hfunc_table.write[i] = d;
  110. bucket_table_size += 2 + b.size() * 4;
  111. }
  112. ERR_FAIL_COND(bucket_table_size == 0);
  113. hash_table.resize(size);
  114. bucket_table.resize(bucket_table_size);
  115. PoolVector<int>::Write htwb = hash_table.write();
  116. PoolVector<int>::Write btwb = bucket_table.write();
  117. uint32_t *htw = (uint32_t *)&htwb[0];
  118. uint32_t *btw = (uint32_t *)&btwb[0];
  119. int btindex = 0;
  120. for (int i = 0; i < size; i++) {
  121. const Map<uint32_t, int> &t = table[i];
  122. if (t.size() == 0) {
  123. htw[i] = 0xFFFFFFFF; //nothing
  124. continue;
  125. }
  126. htw[i] = btindex;
  127. btw[btindex++] = t.size();
  128. btw[btindex++] = hfunc_table[i];
  129. for (Map<uint32_t, int>::Element *E = t.front(); E; E = E->next()) {
  130. btw[btindex++] = E->key();
  131. btw[btindex++] = compressed[E->get()].offset;
  132. btw[btindex++] = compressed[E->get()].compressed.size();
  133. btw[btindex++] = compressed[E->get()].orig_len;
  134. }
  135. }
  136. strings.resize(total_compression_size);
  137. PoolVector<uint8_t>::Write cw = strings.write();
  138. for (int i = 0; i < compressed.size(); i++) {
  139. memcpy(&cw[compressed[i].offset], compressed[i].compressed.get_data(), compressed[i].compressed.size());
  140. }
  141. ERR_FAIL_COND(btindex != bucket_table_size);
  142. set_locale(p_from->get_locale());
  143. #endif
  144. }
  145. bool PHashTranslation::_set(const StringName &p_name, const Variant &p_value) {
  146. String name = p_name.operator String();
  147. if (name == "hash_table") {
  148. hash_table = p_value;
  149. } else if (name == "bucket_table") {
  150. bucket_table = p_value;
  151. } else if (name == "strings") {
  152. strings = p_value;
  153. } else if (name == "load_from") {
  154. generate(p_value);
  155. } else
  156. return false;
  157. return true;
  158. }
  159. bool PHashTranslation::_get(const StringName &p_name, Variant &r_ret) const {
  160. String name = p_name.operator String();
  161. if (name == "hash_table")
  162. r_ret = hash_table;
  163. else if (name == "bucket_table")
  164. r_ret = bucket_table;
  165. else if (name == "strings")
  166. r_ret = strings;
  167. else
  168. return false;
  169. return true;
  170. }
  171. StringName PHashTranslation::get_message(const StringName &p_src_text) const {
  172. int htsize = hash_table.size();
  173. if (htsize == 0)
  174. return StringName();
  175. CharString str = p_src_text.operator String().utf8();
  176. uint32_t h = hash(0, str.get_data());
  177. PoolVector<int>::Read htr = hash_table.read();
  178. const uint32_t *htptr = (const uint32_t *)&htr[0];
  179. PoolVector<int>::Read btr = bucket_table.read();
  180. const uint32_t *btptr = (const uint32_t *)&btr[0];
  181. PoolVector<uint8_t>::Read sr = strings.read();
  182. const char *sptr = (const char *)&sr[0];
  183. uint32_t p = htptr[h % htsize];
  184. if (p == 0xFFFFFFFF) {
  185. return StringName(); //nothing
  186. }
  187. const Bucket &bucket = *(const Bucket *)&btptr[p];
  188. h = hash(bucket.func, str.get_data());
  189. int idx = -1;
  190. for (int i = 0; i < bucket.size; i++) {
  191. if (bucket.elem[i].key == h) {
  192. idx = i;
  193. break;
  194. }
  195. }
  196. if (idx == -1) {
  197. return StringName();
  198. }
  199. if (bucket.elem[idx].comp_size == bucket.elem[idx].uncomp_size) {
  200. String rstr;
  201. rstr.parse_utf8(&sptr[bucket.elem[idx].str_offset], bucket.elem[idx].uncomp_size);
  202. return rstr;
  203. } else {
  204. CharString uncomp;
  205. uncomp.resize(bucket.elem[idx].uncomp_size + 1);
  206. smaz_decompress(&sptr[bucket.elem[idx].str_offset], bucket.elem[idx].comp_size, uncomp.ptrw(), bucket.elem[idx].uncomp_size);
  207. String rstr;
  208. rstr.parse_utf8(uncomp.get_data());
  209. return rstr;
  210. }
  211. }
  212. void PHashTranslation::_get_property_list(List<PropertyInfo> *p_list) const {
  213. p_list->push_back(PropertyInfo(Variant::POOL_INT_ARRAY, "hash_table"));
  214. p_list->push_back(PropertyInfo(Variant::POOL_INT_ARRAY, "bucket_table"));
  215. p_list->push_back(PropertyInfo(Variant::POOL_BYTE_ARRAY, "strings"));
  216. p_list->push_back(PropertyInfo(Variant::OBJECT, "load_from", PROPERTY_HINT_RESOURCE_TYPE, "Translation", PROPERTY_USAGE_EDITOR));
  217. }
  218. void PHashTranslation::_bind_methods() {
  219. ClassDB::bind_method(D_METHOD("generate", "from"), &PHashTranslation::generate);
  220. }
  221. PHashTranslation::PHashTranslation() {
  222. }