nsSBCSGroupProber.cpp 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4. *
  5. * The contents of this file are subject to the Mozilla Public License Version
  6. * 1.1 (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. * http://www.mozilla.org/MPL/
  9. *
  10. * Software distributed under the License is distributed on an "AS IS" basis,
  11. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. * for the specific language governing rights and limitations under the
  13. * License.
  14. *
  15. * The Original Code is Mozilla Universal charset detector code.
  16. *
  17. * The Initial Developer of the Original Code is
  18. * Netscape Communications Corporation.
  19. * Portions created by the Initial Developer are Copyright (C) 2001
  20. * the Initial Developer. All Rights Reserved.
  21. *
  22. * Contributor(s):
  23. * Shy Shalom <shooshX@gmail.com>
  24. *
  25. * Alternatively, the contents of this file may be used under the terms of
  26. * either the GNU General Public License Version 2 or later (the "GPL"), or
  27. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28. * in which case the provisions of the GPL or the LGPL are applicable instead
  29. * of those above. If you wish to allow use of your version of this file only
  30. * under the terms of either the GPL or the LGPL, and not to allow others to
  31. * use your version of this file under the terms of the MPL, indicate your
  32. * decision by deleting the provisions above and replace them with the notice
  33. * and other provisions required by the GPL or the LGPL. If you do not delete
  34. * the provisions above, a recipient may use your version of this file under
  35. * the terms of any one of the MPL, the GPL or the LGPL.
  36. *
  37. * ***** END LICENSE BLOCK ***** */
  38. #include <stdio.h>
  39. #include "prmem.h"
  40. #include "nsSBCharSetProber.h"
  41. #include "nsSBCSGroupProber.h"
  42. #include "nsHebrewProber.h"
  43. nsSBCSGroupProber::nsSBCSGroupProber()
  44. {
  45. mProbers[0] = new nsSingleByteCharSetProber(&Win1251RussianModel);
  46. mProbers[1] = new nsSingleByteCharSetProber(&Koi8rRussianModel);
  47. mProbers[2] = new nsSingleByteCharSetProber(&Latin5RussianModel);
  48. mProbers[3] = new nsSingleByteCharSetProber(&MacCyrillicRussianModel);
  49. mProbers[4] = new nsSingleByteCharSetProber(&Ibm866RussianModel);
  50. mProbers[5] = new nsSingleByteCharSetProber(&Ibm855RussianModel);
  51. mProbers[6] = new nsSingleByteCharSetProber(&Iso_8859_7GreekModel);
  52. mProbers[7] = new nsSingleByteCharSetProber(&Windows_1253GreekModel);
  53. mProbers[8] = new nsSingleByteCharSetProber(&Latin5BulgarianModel);
  54. mProbers[9] = new nsSingleByteCharSetProber(&Win1251BulgarianModel);
  55. nsHebrewProber *hebprober = new nsHebrewProber();
  56. // Notice: Any change in these indexes - 10,11,12 must be reflected
  57. // in the code below as well.
  58. mProbers[10] = hebprober;
  59. mProbers[11] = new nsSingleByteCharSetProber(&Win1255Model, PR_FALSE, hebprober); // Logical Hebrew
  60. mProbers[12] = new nsSingleByteCharSetProber(&Win1255Model, PR_TRUE, hebprober); // Visual Hebrew
  61. // Tell the Hebrew prober about the logical and visual probers
  62. if (mProbers[10] && mProbers[11] && mProbers[12]) // all are not null
  63. {
  64. hebprober->SetModelProbers(mProbers[11], mProbers[12]);
  65. }
  66. else // One or more is null. avoid any Hebrew probing, null them all
  67. {
  68. for (PRUint32 i = 10; i <= 12; ++i)
  69. {
  70. delete mProbers[i];
  71. mProbers[i] = 0;
  72. }
  73. }
  74. mProbers[13] = new nsSingleByteCharSetProber(&Tis_620ThaiModel);
  75. mProbers[14] = new nsSingleByteCharSetProber(&Iso_8859_11ThaiModel);
  76. mProbers[15] = new nsSingleByteCharSetProber(&Iso_8859_1FrenchModel);
  77. mProbers[16] = new nsSingleByteCharSetProber(&Iso_8859_15FrenchModel);
  78. mProbers[17] = new nsSingleByteCharSetProber(&Windows_1252FrenchModel);
  79. mProbers[18] = new nsSingleByteCharSetProber(&Iso_8859_1SpanishModel);
  80. mProbers[19] = new nsSingleByteCharSetProber(&Iso_8859_15SpanishModel);
  81. mProbers[20] = new nsSingleByteCharSetProber(&Windows_1252SpanishModel);
  82. mProbers[21] = new nsSingleByteCharSetProber(&Iso_8859_2HungarianModel);
  83. mProbers[22] = new nsSingleByteCharSetProber(&Windows_1250HungarianModel);
  84. mProbers[23] = new nsSingleByteCharSetProber(&Iso_8859_1GermanModel);
  85. mProbers[24] = new nsSingleByteCharSetProber(&Windows_1252GermanModel);
  86. mProbers[25] = new nsSingleByteCharSetProber(&Iso_8859_3EsperantoModel);
  87. mProbers[26] = new nsSingleByteCharSetProber(&Iso_8859_3TurkishModel);
  88. mProbers[27] = new nsSingleByteCharSetProber(&Iso_8859_9TurkishModel);
  89. mProbers[28] = new nsSingleByteCharSetProber(&Iso_8859_6ArabicModel);
  90. mProbers[29] = new nsSingleByteCharSetProber(&Windows_1256ArabicModel);
  91. mProbers[30] = new nsSingleByteCharSetProber(&VisciiVietnameseModel);
  92. mProbers[31] = new nsSingleByteCharSetProber(&Windows_1258VietnameseModel);
  93. mProbers[32] = new nsSingleByteCharSetProber(&Iso_8859_15DanishModel);
  94. mProbers[33] = new nsSingleByteCharSetProber(&Iso_8859_1DanishModel);
  95. mProbers[34] = new nsSingleByteCharSetProber(&Windows_1252DanishModel);
  96. Reset();
  97. }
  98. nsSBCSGroupProber::~nsSBCSGroupProber()
  99. {
  100. for (PRUint32 i = 0; i < NUM_OF_SBCS_PROBERS; i++)
  101. {
  102. delete mProbers[i];
  103. }
  104. }
  105. const char* nsSBCSGroupProber::GetCharSetName()
  106. {
  107. //if we have no answer yet
  108. if (mBestGuess == -1)
  109. {
  110. GetConfidence();
  111. //no charset seems positive
  112. if (mBestGuess == -1)
  113. //we will use default.
  114. mBestGuess = 0;
  115. }
  116. return mProbers[mBestGuess]->GetCharSetName();
  117. }
  118. void nsSBCSGroupProber::Reset(void)
  119. {
  120. mActiveNum = 0;
  121. for (PRUint32 i = 0; i < NUM_OF_SBCS_PROBERS; i++)
  122. {
  123. if (mProbers[i]) // not null
  124. {
  125. mProbers[i]->Reset();
  126. mIsActive[i] = PR_TRUE;
  127. ++mActiveNum;
  128. }
  129. else
  130. mIsActive[i] = PR_FALSE;
  131. }
  132. mBestGuess = -1;
  133. mState = eDetecting;
  134. }
  135. nsProbingState nsSBCSGroupProber::HandleData(const char* aBuf, PRUint32 aLen)
  136. {
  137. nsProbingState st;
  138. PRUint32 i;
  139. char *newBuf1 = 0;
  140. PRUint32 newLen1 = 0;
  141. //apply filter to original buffer, and we got new buffer back
  142. //depend on what script it is, we will feed them the new buffer
  143. //we got after applying proper filter
  144. //this is done without any consideration to KeepEnglishLetters
  145. //of each prober since as of now, there are no probers here which
  146. //recognize languages with English characters.
  147. if (!FilterWithoutEnglishLetters(aBuf, aLen, &newBuf1, newLen1))
  148. goto done;
  149. if (newLen1 == 0)
  150. goto done; // Nothing to see here, move on.
  151. for (i = 0; i < NUM_OF_SBCS_PROBERS; i++)
  152. {
  153. if (!mIsActive[i])
  154. continue;
  155. st = mProbers[i]->HandleData(newBuf1, newLen1);
  156. if (st == eFoundIt)
  157. {
  158. mBestGuess = i;
  159. mState = eFoundIt;
  160. break;
  161. }
  162. else if (st == eNotMe)
  163. {
  164. mIsActive[i] = PR_FALSE;
  165. mActiveNum--;
  166. if (mActiveNum <= 0)
  167. {
  168. mState = eNotMe;
  169. break;
  170. }
  171. }
  172. }
  173. done:
  174. PR_FREEIF(newBuf1);
  175. return mState;
  176. }
  177. float nsSBCSGroupProber::GetConfidence(void)
  178. {
  179. PRUint32 i;
  180. float bestConf = 0.0, cf;
  181. switch (mState)
  182. {
  183. case eFoundIt:
  184. return (float)0.99; //sure yes
  185. case eNotMe:
  186. return (float)0.01; //sure no
  187. default:
  188. for (i = 0; i < NUM_OF_SBCS_PROBERS; i++)
  189. {
  190. if (!mIsActive[i])
  191. continue;
  192. cf = mProbers[i]->GetConfidence();
  193. if (bestConf < cf)
  194. {
  195. bestConf = cf;
  196. mBestGuess = i;
  197. }
  198. }
  199. }
  200. return bestConf;
  201. }
  202. #ifdef DEBUG_chardet
  203. void nsSBCSGroupProber::DumpStatus()
  204. {
  205. PRUint32 i;
  206. float cf;
  207. cf = GetConfidence();
  208. printf(" SBCS Group Prober --------begin status \r\n");
  209. for (i = 0; i < NUM_OF_SBCS_PROBERS; i++)
  210. {
  211. if (!mIsActive[i])
  212. printf(" inactive: [%s] (i.e. confidence is too low).\r\n", mProbers[i]->GetCharSetName());
  213. else
  214. mProbers[i]->DumpStatus();
  215. }
  216. printf(" SBCS Group found best match [%s] confidence %f.\r\n",
  217. mProbers[mBestGuess]->GetCharSetName(), cf);
  218. }
  219. #endif