TurboSplit.php 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827
  1. <?php
  2. namespace App\Tools;
  3. require_once __DIR__.'/../../public/app/public/casesuf.inc';
  4. use App\Models\UserDict;
  5. use App\Models\WordPart;
  6. use Illuminate\Support\Facades\Cache;
  7. use Illuminate\Support\Facades\Log;
  8. class TurboSplit
  9. {
  10. protected $options = [
  11. 'express' => false,
  12. 'c_threshhold' => 0.8,
  13. 'w_threshhold' => 0.8,
  14. 'forward' => true,
  15. 'sandhi_advance' => false,
  16. 'lookup_declension' => true,
  17. 'timeout' => 1000, // 超时放弃
  18. /**快速查字典-不去尾 */
  19. ];
  20. protected $started_at = null;
  21. protected $node = [];
  22. protected $path = [];
  23. protected $isDebug = false;
  24. // 当前搜索路径信心指数,如果过低,马上终止这个路径的搜索
  25. protected $currPathCf;
  26. // 结果数组
  27. protected $result = [];
  28. // 过程中最大结果数量
  29. protected $MAX_RESULT = 100;
  30. // 返回值最大结果数量
  31. protected $MAX_RESULT2 = 8;
  32. // 最大递归深度
  33. protected $MAX_DEEP = 16;
  34. // 连音规则表
  35. protected $sandhi = [
  36. ['a' => '', 'b' => '', 'c' => '', 'len' => 0, 'adj_len' => 0, 'advance' => false, 'cf' => 1.0],
  37. ['a' => 'a', 'b' => 'a', 'c' => 'ā', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.99999],
  38. ['a' => 'ā', 'b' => 'ā', 'c' => 'ā', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  39. ['a' => 'a', 'b' => 'ā', 'c' => 'ā', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  40. ['a' => 'ā', 'b' => 'a', 'c' => 'ā', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  41. ['a' => 'a', 'b' => 'e', 'c' => 'e', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  42. ['a' => 'a', 'b' => 'i', 'c' => 'i', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  43. ['a' => 'a', 'b' => 'o', 'c' => 'o', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  44. ['a' => 'a', 'b' => 'u', 'c' => 'o', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  45. ['a' => 'u', 'b' => 'a', 'c' => 'o', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  46. ['a' => 'u', 'b' => 'u', 'c' => 'ū', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  47. ['a' => 'a', 'b' => 'u', 'c' => 'u', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  48. ['a' => 'a', 'b' => 'ī', 'c' => 'ī', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  49. ['a' => 'a', 'b' => 'ū', 'c' => 'ū', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  50. ['a' => 'a', 'b' => 'i', 'c' => 'e', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  51. ['a' => 'e', 'b' => 'a', 'c' => 'e', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  52. ['a' => 'i', 'b' => 'i', 'c' => 'ī', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  53. ['a' => 'i', 'b' => 'e', 'c' => 'e', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  54. ['a' => 'i', 'b' => 'a', 'c' => 'ya', 'len' => 2, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  55. ['a' => 'a', 'b' => 'atth', 'c' => 'atth', 'len' => 4, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  56. ['a' => 'taṃ', 'b' => 'n', 'c' => 'tann', 'len' => 4, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  57. ['a' => '[ṃ]', 'b' => 'api', 'c' => 'mpi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  58. ['a' => '[ṃ]', 'b' => 'eva', 'c' => 'meva', 'len' => 4, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  59. ['a' => '[o]', 'b' => 'iva', 'c' => 'ova', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  60. ['a' => 'o', 'b' => 'a', 'c' => 'o', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  61. ['a' => 'a', 'b' => 'ādi', 'c' => 'ādi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  62. ['a' => 'a[ānaṃ]', 'b' => 'a', 'c' => 'ānama', 'len' => 5, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  63. ['a' => 'a', 'b' => 'iti', 'c' => 'āti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  64. ['a' => '[ṃ]', 'b' => 'ca', 'c' => 'ñca', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  65. ['a' => '[ṃ]', 'b' => 'iti', 'c' => 'nti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  66. ['a' => '[ṃ]', 'b' => 'a', 'c' => 'ma', 'len' => 2, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  67. ['a' => 'ṃ', 'b' => 'a', 'c' => 'm', 'len' => 1, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  68. ['a' => '[ṃ]', 'b' => 'ā', 'c' => 'mā', 'len' => 2, 'adj_len' => 0, 'advance' => false, 'cf' => 0.8],
  69. ['a' => 'ṃ', 'b' => 'ā', 'c' => 'mā', 'len' => 2, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9],
  70. ['a' => '[ṃ]', 'b' => 'u', 'c' => 'mu', 'len' => 2, 'adj_len' => 0, 'advance' => false, 'cf' => 0.8],
  71. ['a' => '[ṃ]', 'b' => 'h', 'c' => 'ñh', 'len' => 2, 'adj_len' => 0, 'advance' => false, 'cf' => 0.8],
  72. ['a' => 'ā', 'b' => '[ṃ]', 'c' => 'am', 'len' => 2, 'adj_len' => 0, 'advance' => false, 'cf' => 0.8],
  73. ['a' => 'a', 'b' => '[ṃ]', 'c' => 'am', 'len' => 2, 'adj_len' => 0, 'advance' => false, 'cf' => 0.8],
  74. ['a' => 'ī', 'b' => '[ṃ]', 'c' => 'im', 'len' => 2, 'adj_len' => 0, 'advance' => false, 'cf' => 0.8],
  75. ['a' => 'ati', 'b' => 'tabba', 'c' => 'atabba', 'len' => 6, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  76. ['a' => 'ati', 'b' => 'tabba', 'c' => 'itabba', 'len' => 6, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  77. ['a' => 'iti', 'b' => 'a', 'c' => 'icca', 'len' => 4, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  78. ['a' => 'uṃ', 'b' => 'a', 'c' => 'uma', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  79. ['a' => 'u[ūnaṃ]', 'b' => 'a', 'c' => 'ūnama', 'len' => 5, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  80. ['a' => 'ī[īnaṃ]', 'b' => 'a', 'c' => 'īnama', 'len' => 5, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  81. ['a' => 'su', 'b' => 'a', 'c' => 'sva', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  82. ['a' => 'ā', 'b' => 'iti', 'c' => 'āti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  83. ['a' => 'a', 'b' => 'iti', 'c' => 'āti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.99999],
  84. ['a' => 'e', 'b' => 'iti', 'c' => 'eti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.99999],
  85. ['a' => 'ī', 'b' => 'iti', 'c' => 'īti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  86. ['a' => 'i', 'b' => 'iti', 'c' => 'īti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.99999],
  87. ['a' => 'o', 'b' => 'iti', 'c' => 'oti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.99999],
  88. ['a' => 'ū', 'b' => 'iti', 'c' => 'ūti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  89. ['a' => 'u', 'b' => 'iti', 'c' => 'ūti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.99999],
  90. ['a' => 'ṃ', 'b' => 'iti', 'c' => 'nti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.99999],
  91. ['a' => 'ṃ', 'b' => 'ca', 'c' => 'ñca', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 1.0],
  92. ['a' => 'ṃ', 'b' => 'cāti', 'c' => 'ñcāti', 'len' => 5, 'adj_len' => 0, 'advance' => false, 'cf' => 1.0],
  93. ['a' => 'ṃ', 'b' => 'cet', 'c' => 'ñcet', 'len' => 4, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  94. ['a' => 'ṃ', 'b' => 'ev', 'c' => 'mev', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.99999],
  95. ['a' => 'a', 'b' => 'a', 'c' => 'a', 'len' => 1, 'adj_len' => -1, 'advance' => true, 'cf' => 0.99],
  96. ['a' => 'ī', 'b' => '', 'c' => 'i', 'len' => 1, 'adj_len' => 0, 'advance' => true, 'cf' => 0.9],
  97. ];
  98. protected $sandhi2 = [
  99. ['a' => 'ṃ', 'b' => 'ca', 'c' => 'ñca', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 1.0],
  100. ['a' => 'ṃ', 'b' => 'hi', 'c' => 'ñhi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 1.0],
  101. ['a' => 'ena', 'b' => 'iti', 'c' => 'enāti', 'len' => 5, 'adj_len' => 0, 'advance' => false, 'cf' => 1.0],
  102. ['a' => 'a', 'b' => 'iti', 'c' => 'āti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9],
  103. ['a' => 'ā', 'b' => 'iti', 'c' => 'āti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.6],
  104. ['a' => 'e', 'b' => 'iti', 'c' => 'eti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9],
  105. ['a' => 'i', 'b' => 'iti', 'c' => 'īti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9],
  106. ['a' => 'o', 'b' => 'iti', 'c' => 'oti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9],
  107. ['a' => 'u', 'b' => 'iti', 'c' => 'ūti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9],
  108. ['a' => 'ṃ', 'b' => 'iti', 'c' => 'nti', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9],
  109. ['a' => 'ī', 'b' => 'eva', 'c' => 'iyeva', 'len' => 5, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9],
  110. ['a' => 'ī', 'b' => 'eva', 'c' => 'īyeva', 'len' => 5, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  111. ['a' => 'u', 'b' => 'eva', 'c' => 'uyeva', 'len' => 5, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  112. ['a' => 'ṃ', 'b' => 'eva', 'c' => 'ṃyeva', 'len' => 5, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  113. ['a' => 'i', 'b' => 'eva', 'c' => 'yeva', 'len' => 4, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  114. ['a' => 'o', 'b' => 'eva', 'c' => 'ova', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  115. ['a' => 'ṃ', 'b' => 'eva', 'c' => 'meva', 'len' => 4, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  116. ['a' => 'u', 'b' => 'eva', 'c' => 'veva', 'len' => 4, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  117. ['a' => 'a', 'b' => 'eva', 'c' => 'eva', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  118. ['a' => 'e', 'b' => 'eva', 'c' => 'eva', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  119. ['a' => 'a', 'b' => 'api', 'c' => 'āpi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  120. ['a' => 'ā', 'b' => 'api', 'c' => 'āpi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  121. ['a' => 'e', 'b' => 'api', 'c' => 'epi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  122. ['a' => 'i', 'b' => 'api', 'c' => 'īpi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  123. ['a' => 'ī', 'b' => 'api', 'c' => 'īpi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  124. ['a' => 'o', 'b' => 'api', 'c' => 'opi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  125. ['a' => 'u', 'b' => 'api', 'c' => 'ūpi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  126. ['a' => 'ū', 'b' => 'api', 'c' => 'ūpi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  127. ['a' => 'u', 'b' => 'api', 'c' => 'upi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  128. ['a' => 'ṃ', 'b' => 'api', 'c' => 'mpi', 'len' => 3, 'adj_len' => 0, 'advance' => false, 'cf' => 0.9999],
  129. ];
  130. /**
  131. * Create a new class instance.
  132. *
  133. * @return void
  134. */
  135. public function __construct($options = [])
  136. {
  137. for ($i = 0; $i < $this->MAX_DEEP; $i++) {
  138. array_push($this->path, ['', 0]);
  139. }
  140. foreach ($options as $key => $value) {
  141. $this->options[$key] = $value;
  142. }
  143. }
  144. /**
  145. * 从双元音处切开
  146. *
  147. * @param string $word
  148. * @return array
  149. */
  150. public function splitDiphthong($word)
  151. {
  152. // diphthong table双元音表
  153. $search = ['aa', 'ae', 'ai', 'ao', 'au', 'aā', 'aī', 'aū', 'ea', 'ee', 'ei', 'eo', 'eu', 'eā', 'eī', 'eū', 'ia', 'ie', 'ii', 'io', 'iu', 'iā', 'iī', 'iū', 'oa', 'oe', 'oi', 'oo', 'ou', 'oā', 'oī', 'oū', 'ua', 'ue', 'ui', 'uo', 'uu', 'uā', 'uī', 'uū', 'āa', 'āe', 'āi', 'āo', 'āu', 'āā', 'āī', 'āū', 'īa', 'īe', 'īi', 'īo', 'īu', 'īā', 'īī', 'īū', 'ūa', 'ūe', 'ūi', 'ūo', 'ūu', 'ūā', 'ūī', 'ūū'];
  154. $replace = ['a-a', 'a-e', 'a-i', 'a-o', 'a-u', 'a-ā', 'a-ī', 'a-ū', 'e-a', 'e-e', 'e-i', 'e-o', 'e-u', 'e-ā', 'e-ī', 'e-ū', 'i-a', 'i-e', 'i-i', 'i-o', 'i-u', 'i-ā', 'i-ī', 'i-ū', 'o-a', 'o-e', 'o-i', 'o-o', 'o-u', 'o-ā', 'o-ī', 'o-ū', 'u-a', 'u-e', 'u-i', 'u-o', 'u-u', 'u-ā', 'u-ī', 'u-ū', 'ā-a', 'ā-e', 'ā-i', 'ā-o', 'ā-u', 'ā-ā', 'ā-ī', 'ā-ū', 'ī-a', 'ī-e', 'ī-i', 'ī-o', 'ī-u', 'ī-ā', 'ī-ī', 'ī-ū', 'ū-a', 'ū-e', 'ū-i', 'ū-o', 'ū-u', 'ū-ā', 'ū-ī', 'ū-ū'];
  155. // 将双元音拆开
  156. // step 1 : split at diphthong . ~aa~ -> ~a-a~
  157. $word1 = str_replace($search, $replace, $word);
  158. // 按连字符拆开处理
  159. $arrword = str_getcsv($word1, '-');
  160. return $arrword;
  161. }
  162. /**
  163. * 查询单词是否存在于词干表
  164. * 如果存在,返回单词权重
  165. * 如果不存在,变格后返回权重和语尾长度
  166. *
  167. * @param string $word
  168. * @return array(int $wordWeight, int $endingLength)
  169. */
  170. public function dict_lookup($word)
  171. {
  172. global $case; // 语尾表
  173. if (strlen($word) <= 1) {
  174. return [0, 0];
  175. }
  176. $search = $word;
  177. // 获取单词权重
  178. $weight = Cache::remember(
  179. 'palicanon/wordpart/weight/'.$search,
  180. config('mint.cache.expire'),
  181. function () use ($search) {
  182. return WordPart::where('word', $search)->value('weight');
  183. }
  184. );
  185. if ($weight) {
  186. // 找到
  187. $this->log($search.'='.$weight);
  188. return [$weight, 0];
  189. } else {
  190. // 没找到
  191. if ($this->options['lookup_declension']) {
  192. return [0, 0];
  193. }
  194. // 去除尾查
  195. $newWord = [];
  196. for ($row = 0; $row < count($case); $row++) {
  197. $len = mb_strlen($case[$row][1], 'UTF-8');
  198. $end = mb_substr($search, 0 - $len, null, 'UTF-8');
  199. if ($end == $case[$row][1]) {
  200. $base = mb_substr($search, 0, mb_strlen($search, 'UTF-8') - $len, 'UTF-8').$case[$row][0];
  201. if ($base != $search) {
  202. $newWord[$base] = mb_strlen($case[$row][1], 'UTF-8');
  203. }
  204. }
  205. }
  206. // 找到权重最高的base
  207. $base_weight = 0;
  208. $len = 0;
  209. foreach ($newWord as $x => $x_len) {
  210. $weight = Cache::remember(
  211. 'palicanon/wordpart/weight/'.$x,
  212. config('mint.cache.expire'),
  213. function () use ($x) {
  214. return WordPart::where('word', $x)->value('weight');
  215. }
  216. );
  217. if ($weight) {
  218. if ($weight > $base_weight) {
  219. $base_weight = $weight;
  220. $len = $x_len;
  221. }
  222. }
  223. }
  224. return [$base_weight, $len];
  225. }
  226. }
  227. /**
  228. * 查找某个单词是否在现有词典出现
  229. * 返回信心指数
  230. * look up single word in dictionary vocabulary
  231. * return the confidence value
  232. */
  233. public function isExist($word, $adj_len = 0)
  234. {
  235. $this->log("正在查询:{$word}");
  236. $isFound = false;
  237. $count = 0;
  238. $wordPart = Cache::remember(
  239. "turbosplit/part/{$word}",
  240. config('mint.cache.expire'),
  241. function () use ($word) {
  242. return implode(',', $this->dict_lookup($word));
  243. }
  244. );
  245. $arrWordPart = explode(',', $wordPart);
  246. $word_count = $arrWordPart[0];
  247. if (isset($arrWordPart[1])) {
  248. $case_len = $arrWordPart[1];
  249. } else {
  250. $case_len = 0;
  251. Log::error('wordPart error value='.$wordPart);
  252. }
  253. if ($word_count > 0) {
  254. $this->log("查到:{$word}:{$word_count}个");
  255. $isFound = true;
  256. $count = $word_count + 1;
  257. }
  258. // fomular of confidence value 信心值计算公式
  259. if ($isFound) {
  260. $cf = Cache::remember(
  261. 'turbosplit/confidence/'.$word,
  262. config('mint.cache.expire'),
  263. function () use ($word, $count, $case_len) {
  264. $len = mb_strlen($word, 'UTF-8') - $case_len;
  265. $len_correct = 1.2;
  266. $count2 = 1.1 + pow($count, 1.18);
  267. $conf_num = pow(1 / $count2, pow(($len - 0.5), $len_correct));
  268. return round(1 / (1 + 640 * $conf_num), 9);
  269. }
  270. );
  271. return $cf;
  272. } else {
  273. return -1;
  274. }
  275. }
  276. /**
  277. * 判断是否超时
  278. *
  279. * @return bool
  280. */
  281. private function isTimeOut()
  282. {
  283. if ($this->started_at) {
  284. $time = time() - $this->started_at;
  285. if ($time > $this->options['timeout']) {
  286. Log::warning('split timeout');
  287. return true;
  288. }
  289. }
  290. return false;
  291. }
  292. /**
  293. * 核心拆分函数
  294. *
  295. * @param array $node word to be look up 要查询的词
  296. * @param int $deep 当前递归深度
  297. * @param bool $forward 搜索方向 true 正向 false 反向
  298. * @param bool $express=true, 快速查询
  299. * @param int $adj_len=0 长度校正系数
  300. * @param int $c_threshhold 信心指数阈值
  301. * @return void
  302. */
  303. private function split(&$node, $deep = 0, $express = false, $adj_len = 0, $c_threshhold = 0.8, $w_threshhold = 0.8, $forward = true, $sandhi_advance = false)
  304. {
  305. $strWord = $node['remain'];
  306. $this->log("spliting word={$strWord} deep={$deep}");
  307. $output = [];
  308. // currPathCf是当前搜索路径信心指数,如果过低,马上终止这个路径的搜索
  309. if ($deep == 0) {
  310. $this->currPathCf = 1;
  311. }
  312. // 达到最大搜索深度,返回
  313. if ($deep >= $this->MAX_DEEP) {
  314. return;
  315. }
  316. // 直接找到
  317. $confidence = $this->isExist($strWord, $adj_len);
  318. if ($confidence > $c_threshhold) {
  319. array_push($output, [$strWord, '', $confidence]);
  320. if (isset($node['sum_cf'])) {
  321. $parent_sum_cf = $node['sum_cf'];
  322. } else {
  323. $parent_sum_cf = 1;
  324. }
  325. $sum_cf = $parent_sum_cf * $confidence;
  326. $node['children'][] = ['word' => $strWord, 'remain' => '', 'cf' => $confidence, 'sum_cf' => $sum_cf];
  327. $this->log("直接找到{$strWord}-{$confidence}");
  328. } elseif (mb_strlen($strWord, 'UTF-8') < 6) {
  329. // 按照语尾查询
  330. $search = "[{$strWord}]";
  331. $confidence = $this->isExist($search);
  332. $this->log("查询:{$search}-信心指数{$confidence}");
  333. if ($confidence > $c_threshhold) {
  334. array_push($output, [$search, '', $confidence]);
  335. if (isset($node['sum_cf'])) {
  336. $parent_sum_cf = $node['sum_cf'];
  337. } else {
  338. $parent_sum_cf = 1;
  339. }
  340. $sum_cf = $parent_sum_cf * $confidence;
  341. $node['children'][] = ['word' => $search, 'remain' => '', 'cf' => $confidence, 'sum_cf' => $sum_cf];
  342. $this->log("直接找到{$strWord}-{$confidence}");
  343. }
  344. }
  345. // 如果开头有双辅音,去掉第一个辅音。因为巴利语中没有以双辅音开头的单词。
  346. $doubleword = 'kkggccjjṭṭḍḍttddppbb';
  347. if (mb_strlen($strWord, 'UTF-8') > 2) {
  348. $left2 = mb_substr($strWord, 0, 2, 'UTF-8');
  349. if (mb_strpos($doubleword, $left2, 0, 'UTF-8') !== false) {
  350. $strWord = mb_substr($strWord, 1, null, 'UTF-8');
  351. }
  352. }
  353. $len = mb_strlen($strWord, 'UTF-8');
  354. if ($len > 2) {
  355. if ($forward) {
  356. // 正向切
  357. $this->log('正向切');
  358. for ($i = $len; $i > 1; $i--) {
  359. if ($this->isTimeOut()) {
  360. Log::warning('line '.__LINE__);
  361. return;
  362. }
  363. // 应用连音规则切分单词
  364. foreach ($this->sandhi as $key => $row) {
  365. if ($sandhi_advance == false && $row['advance'] == true) {
  366. // continue;
  367. }
  368. if (mb_substr($strWord, $i - $row['len'], $row['len'], 'UTF-8') == $row['c']) {
  369. $str1 = mb_substr($strWord, 0, $i - $row['len'], 'UTF-8').$row['a'];
  370. $str2 = $row['b'].mb_substr($strWord, $i, null, 'UTF-8');
  371. $confidence = $this->isExist($str1, $adj_len) * $row['cf'];
  372. if ($confidence > $c_threshhold) {
  373. // 信心指数大于预设的阈值,插入
  374. array_push($output, [$str1, $str2, $confidence, $row['adj_len']]);
  375. if (isset($node['sum_cf'])) {
  376. $parent_sum_cf = $node['sum_cf'];
  377. } else {
  378. $parent_sum_cf = 1;
  379. }
  380. $sum_cf = $parent_sum_cf * $confidence;
  381. if ($sum_cf > $c_threshhold) {
  382. $node['children'][] = [
  383. 'word' => $str1,
  384. 'remain' => $str2,
  385. 'cf' => $confidence,
  386. 'sum_cf' => $sum_cf,
  387. 'children' => [],
  388. ];
  389. }
  390. $this->log("插入结构数组:{$str1} 剩余{$str2} 应用:{$row['a']}-{$row['b']}-{$row['c']}");
  391. if ($express) {
  392. break;
  393. }
  394. }
  395. }
  396. }
  397. }
  398. } else {
  399. // 反向切
  400. for ($i = 1; $i < $len - 1; $i++) {
  401. foreach ($this->sandhi as $key => $row) {
  402. if ($this->isTimeOut()) {
  403. Log::warning('line '.__LINE__);
  404. return;
  405. }
  406. if ($sandhi_advance == false && $row['advance'] == true) {
  407. // continue;
  408. }
  409. if (mb_substr($strWord, $i, $row['len'], 'UTF-8') == $row['c']) {
  410. $str1 = mb_substr($strWord, 0, $i, 'UTF-8').$row['a'];
  411. $str2 = $row['b'].mb_substr($strWord, $i + $row['len'], null, 'UTF-8');
  412. $confidence = $this->isExist($str2, $adj_len) * $row['cf'];
  413. if ($confidence > $c_threshhold) {
  414. array_push($output, [$str2, $str1, $confidence, $row['adj_len']]);
  415. if (isset($node['sum_cf'])) {
  416. $parent_sum_cf = $node['sum_cf'];
  417. } else {
  418. $parent_sum_cf = 1;
  419. }
  420. $sum_cf = $parent_sum_cf * $confidence;
  421. if ($sum_cf > $c_threshhold) {
  422. $node['children'][] = [
  423. 'word' => $str2,
  424. 'remain' => $str1,
  425. 'cf' => $confidence,
  426. 'sum_cf' => $sum_cf,
  427. 'children' => [],
  428. ];
  429. }
  430. $this->log("将此次结果插入结果数组:剩余={$str2}");
  431. if ($express) {
  432. break;
  433. }
  434. }
  435. }
  436. }
  437. }
  438. }
  439. }
  440. $word = '';
  441. $this->log('结果数组个数:'.count($output));
  442. // print_r($node);
  443. // 遍历children
  444. foreach ($node['children'] as $key => $child) {
  445. if ($this->isTimeOut()) {
  446. Log::warning('line '.__LINE__);
  447. return;
  448. }
  449. // code...
  450. if (isset($child) && ! empty($child['remain'])) {
  451. $this->split($node['children'][$key], ($deep + 1), $express, $adj_len, $c_threshhold, $w_threshhold, $forward, $sandhi_advance);
  452. }
  453. }
  454. }
  455. /**
  456. * 遍历树状结构,获取结果
  457. */
  458. private function get_result($node, &$path)
  459. {
  460. // code...
  461. $path[] = $node['word'];
  462. if (isset($node['children']) && count($node['children']) > 0) {
  463. foreach ($node['children'] as $key => $value) {
  464. $this->get_result($value, $path);
  465. }
  466. } else {
  467. if (empty($node['remain'])) {
  468. $factors = trim(implode('+', $path), '+');
  469. $this->result[$factors] = $node['sum_cf'];
  470. } else {
  471. }
  472. }
  473. array_pop($path);
  474. }
  475. /**
  476. * 颠倒词序
  477. */
  478. public function word_reverse($word)
  479. {
  480. $reverse = [];
  481. $newword = explode('+', $word);
  482. $len = count($newword);
  483. if ($len > 0) {
  484. for ($i = $len - 1; $i >= 0; $i--) {
  485. // code...
  486. $reverse[] = $newword[$i];
  487. }
  488. $output = implode('+', $reverse);
  489. return $output;
  490. } else {
  491. return $word;
  492. }
  493. }
  494. /**
  495. * 拆分后的处理
  496. */
  497. public function split2($word)
  498. {
  499. $input = explode('+', $word);
  500. $newword = [];
  501. foreach ($input as $value) {
  502. // 去掉带小括号的调试信息
  503. $word = strstr($value, '(', true);
  504. if ($word == false) {
  505. $word = $value;
  506. }
  507. if (mb_strlen($word, 'UTF-8') > 4) {
  508. // 先看有没有中文意思
  509. // $this->log("先看有没有中文意思");
  510. if (UserDict::where('word', $word)->where('mean', '<>', '')->where('language', '<>', 'my')->exists()) {
  511. $newword[] = $word;
  512. } else {
  513. // $this->log("如果没有查巴缅替换拆分");
  514. // 如果没有查巴缅替换拆分
  515. if (UserDict::where('word', $word)->where('dict_id', '61f23efb-b526-4a8e-999e-076965034e60')->exists()) {
  516. $pmPart = explode('+', UserDict::where('word', $word)->where('dict_id', '61f23efb-b526-4a8e-999e-076965034e60')->value('factors'));
  517. foreach ($pmPart as $pm) {
  518. // code...
  519. $newword[] = $pm;
  520. }
  521. } else {
  522. // $this->log("如果没有查规则变形");
  523. // 如果没有查规则变形
  524. if (UserDict::where('word', $word)->where('source', '_SYS_REGULAR_')->exists()) {
  525. $rglPart = explode('+', UserDict::where('word', $word)->where('source', '_SYS_REGULAR_')->value('factors'));
  526. // 看巴缅有没有第一部分
  527. // $this->log("看巴缅有没有第一部分");
  528. if (UserDict::where('word', $rglPart[0])->where('dict_id', '61f23efb-b526-4a8e-999e-076965034e60')->exists()) {
  529. $pmPart = explode('+', UserDict::where('word', $rglPart[0])->where('dict_id', '61f23efb-b526-4a8e-999e-076965034e60')->value('factors'));
  530. foreach ($pmPart as $pm) {
  531. // code...
  532. $newword[] = $pm;
  533. }
  534. } else {
  535. // 没有
  536. $newword[] = $rglPart[0];
  537. }
  538. $newword[] = $rglPart[1];
  539. } else {
  540. // 还没有就认命了
  541. // $this->log("还没有就认命了");
  542. $newword[] = $word;
  543. }
  544. }
  545. }
  546. } else {
  547. $newword[] = $word;
  548. }
  549. }
  550. return implode('+', $newword);
  551. }
  552. /**
  553. * 预处理连音词
  554. */
  555. public function splitSandhi($word)
  556. {
  557. $newWord = '';
  558. $firstWord = $word;
  559. do {
  560. $isFound = false;
  561. foreach ($this->sandhi2 as $key => $sandhi) {
  562. // code...
  563. $len = $sandhi['len'];
  564. $end = mb_substr($firstWord, 0 - $len, null, 'UTF-8');
  565. if ($end == $sandhi['c']) {
  566. $word1 = mb_substr($firstWord, 0, mb_strlen($firstWord, 'UTF-8') - $len, 'UTF-8').$sandhi['a'];
  567. $word2 = $sandhi['b'];
  568. $newWord = $word2.'-'.$newWord;
  569. $firstWord = $word1;
  570. $isFound = true;
  571. break;
  572. }
  573. }
  574. } while ($isFound);
  575. $newWord = $firstWord.'-'.$newWord;
  576. return mb_substr($newWord, 0, -1, 'UTF-8');
  577. }
  578. /**
  579. * 切分函数
  580. *
  581. * @param string $word 需要切分的单词
  582. * @return array
  583. */
  584. public function splitA($word)
  585. {
  586. $this->started_at = time();
  587. $caseman = new CaseMan;
  588. $output = [];
  589. // 预处理连音词
  590. $word1 = $this->splitSandhi($word);
  591. // 处理双元音
  592. $this->log('处理双元音');
  593. $arrword = $this->splitDiphthong($word1);
  594. if (count($arrword) > 1) {
  595. array_push($output, [
  596. 'word' => $word,
  597. 'type' => '.un.',
  598. 'grammar' => '',
  599. 'parent' => '',
  600. 'factors' => implode('+', $arrword),
  601. 'confidence' => 0.9999,
  602. ]);
  603. }
  604. foreach ($arrword as $oneword) {
  605. if (mb_strlen($oneword) < 5) {
  606. continue;
  607. }
  608. $this->result = []; // 清空递归程序的输出容器
  609. $node = ['word' => '', 'remain' => $oneword, 'children' => []];
  610. if (mb_strlen($oneword) > 35) {
  611. // 长词使用快速切分 正向切分 不使用少见sandi规则
  612. $this->split($node, 0, true, 0.8, 0.9, 0, true, false);
  613. $min_result = 1;
  614. } else {
  615. $this->split($node, 0, false, 0.8, 0.9, 0, true, false);
  616. $min_result = 2;
  617. }
  618. $path = [];
  619. $this->log($node);
  620. $this->get_result($node, $path);
  621. $this->log('正向切分结束 结果数量'.count($this->result));
  622. if (count($this->result) < $min_result) {
  623. // 有效结果过少
  624. $node = ['word' => '', 'remain' => $oneword, 'children' => []];
  625. $this->split($node, 0, false, 0.2, 0.8, 0, true, true);
  626. $this->log('有效结果过少 再次正切'.count($this->result));
  627. if (count($this->result) < 2) {
  628. $node = ['word' => '', 'remain' => $oneword, 'children' => []];
  629. $this->split($node, 0, false, 0.2, 0.8, 0, false, true);
  630. $this->log('有效结果过少 再次反切:结果数量'.count($this->result));
  631. }
  632. }
  633. $this->log("{$oneword}:".count($this->result));
  634. if (count($this->result) > 0) {
  635. arsort($this->result); // 按信心指数升序排序
  636. $iCount = 0;
  637. foreach ($this->result as $row => $value) {
  638. $factors = $row;
  639. if (strpos($row, ']+') !== false) {
  640. $type = '.un.';
  641. $factors = \str_replace(['+[ṃ]+', '[ṃ]+'], 'ṃ+', $row);
  642. } else {
  643. $type = '.cp.';
  644. }
  645. $newword = ['word' => $oneword, 'type' => $type, 'grammar' => '', 'parent' => '', 'factors' => $factors, 'confidence' => $value];
  646. array_push($output, $newword);
  647. if ($iCount == 0) {
  648. // 对于最优结果进行处理 找到base
  649. $wordWithType = ['word' => $oneword, 'type' => '', 'grammar' => '', 'parent' => '', 'factors' => $factors, 'confidence' => $value];
  650. $this->log('查找base');
  651. $factors = explode('+', $row);
  652. $endOfFactor = end($factors);
  653. if (strpos($endOfFactor, '[') !== false) {
  654. if (count($factors) >= 2) {
  655. $endOfFactor = $factors[count($factors) - 2];
  656. }
  657. }
  658. $this->log('结尾词:'.$endOfFactor);
  659. // 猜测单词的base
  660. $parents = $caseman->WordToBase($oneword, 1, false);
  661. // 找到结尾单词的base
  662. $end_parents = $caseman->WordToBase($endOfFactor);
  663. if (count($parents) > 0) {
  664. foreach ($parents as $base => $case) {
  665. // code...
  666. if (count($end_parents) > 0) {
  667. foreach ($end_parents as $base2 => $case2) {
  668. if (\mb_substr($base2, -2) === \mb_substr($base, -2)) {
  669. $this->log("{$base} ok");
  670. foreach ($case as $value) {
  671. // code...
  672. foreach ($case2 as $value2) {
  673. // 验证语法信息是否正确
  674. if (
  675. $value['type'] == $value2['type'] &&
  676. substr($value['grammar'], 0, 3) === substr($value2['grammar'], 0, 3) &&
  677. $value['confidence'] > 0.5
  678. ) {
  679. $wordWithType['type'] = $value['type'];
  680. $wordWithType['grammar'] = $value['grammar'];
  681. $wordWithType['factors'] = $value['factors'];
  682. $wordWithType['parent'] = $base;
  683. $wordWithType['confidence'] = $value2['confidence'];
  684. $this->log("word:{$wordWithType['word']} ; type:{$wordWithType['type']}; grammar:{$wordWithType['grammar']};parent:{$wordWithType['parent']}");
  685. array_push($output, $wordWithType);
  686. }
  687. }
  688. }
  689. }
  690. }
  691. } else {
  692. foreach ($case as $value) {
  693. $wordWithType['type'] = $value['type'];
  694. $wordWithType['grammar'] = $value['grammar'];
  695. $wordWithType['factors'] = $value['factors'];
  696. $wordWithType['parent'] = $base;
  697. $wordWithType['confidence'] = 0.1;
  698. array_push($output, $wordWithType);
  699. }
  700. }
  701. }
  702. }
  703. }
  704. // 后处理 进一步切分没有意思的长词
  705. $this->log('后处理 进一步切分没有意思的长词');
  706. $new = $this->split2($row);
  707. if ($new !== $row) {
  708. $newword['factors'] = $new;
  709. array_push($output, $newword);
  710. // 再处理一次
  711. $new2 = $this->split2($new);
  712. if ($new2 !== $new) {
  713. $newword['factors'] = $new2;
  714. array_push($output, $newword);
  715. }
  716. }
  717. $iCount++;
  718. if ($iCount > $this->MAX_RESULT2) {
  719. break;
  720. }
  721. }
  722. } else {
  723. $this->log("{$oneword} 切分失败");
  724. $this->log('猜测可能的格位');
  725. // 猜测单词的base
  726. $wordWithType = ['word' => $oneword, 'type' => '', 'grammar' => '', 'parent' => '', 'factors' => '', 'confidence' => 0];
  727. $parents = $caseman->WordToBase($oneword, 1, false);
  728. foreach ($parents as $base => $case) {
  729. foreach ($case as $value) {
  730. $wordWithType['type'] = $value['type'];
  731. $wordWithType['grammar'] = $value['grammar'];
  732. $wordWithType['factors'] = $value['factors'];
  733. $wordWithType['parent'] = $base;
  734. $wordWithType['confidence'] = $value['confidence'];
  735. $this->log("word:{$wordWithType['word']} ; type:{$wordWithType['type']}; grammar:{$wordWithType['grammar']};parent:{$wordWithType['parent']}");
  736. array_push($output, $wordWithType);
  737. }
  738. }
  739. }
  740. }
  741. return $output;
  742. }
  743. public function setting($param = null) {}
  744. public function getResult()
  745. {
  746. return $this->result;
  747. }
  748. public function debug($debug)
  749. {
  750. $this->isDebug = $debug;
  751. }
  752. private function log($message)
  753. {
  754. if ($this->isDebug) {
  755. Log::info($message);
  756. }
  757. }
  758. private function pushResult($word, $cf)
  759. {
  760. array_push($this->result, [$word => $cf]);
  761. }
  762. }