123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- #include <stdio.h>
- #include "nsMBCSGroupProber.h"
- #include "nsUniversalDetector.h"
- #if defined(DEBUG_chardet) || defined(DEBUG_jgmyers)
- const char *ProberName[] =
- {
- "UTF-8",
- "SJIS",
- "EUC-JP",
- "GB18030",
- "EUC-KR",
- "Big5",
- "EUC-TW",
- };
- #endif
- nsMBCSGroupProber::nsMBCSGroupProber(PRUint32 aLanguageFilter)
- {
- for (PRUint32 i = 0; i < NUM_OF_PROBERS; i++)
- mProbers[i] = nsnull;
- mProbers[0] = new nsUTF8Prober();
- if (aLanguageFilter & NS_FILTER_JAPANESE)
- {
- mProbers[1] = new nsSJISProber(aLanguageFilter == NS_FILTER_JAPANESE);
- mProbers[2] = new nsEUCJPProber(aLanguageFilter == NS_FILTER_JAPANESE);
- }
- if (aLanguageFilter & NS_FILTER_CHINESE_SIMPLIFIED)
- mProbers[3] = new nsGB18030Prober(aLanguageFilter == NS_FILTER_CHINESE_SIMPLIFIED);
- if (aLanguageFilter & NS_FILTER_KOREAN)
- mProbers[4] = new nsEUCKRProber(aLanguageFilter == NS_FILTER_KOREAN);
- if (aLanguageFilter & NS_FILTER_CHINESE_TRADITIONAL)
- {
- mProbers[5] = new nsBig5Prober(aLanguageFilter == NS_FILTER_CHINESE_TRADITIONAL);
- mProbers[6] = new nsEUCTWProber(aLanguageFilter == NS_FILTER_CHINESE_TRADITIONAL);
- }
- Reset();
- }
- nsMBCSGroupProber::~nsMBCSGroupProber()
- {
- for (PRUint32 i = 0; i < NUM_OF_PROBERS; i++)
- {
- delete mProbers[i];
- }
- }
- const char* nsMBCSGroupProber::GetCharSetName()
- {
- if (mBestGuess == -1)
- {
- GetConfidence();
- if (mBestGuess == -1)
- mBestGuess = 0;
- }
- return mProbers[mBestGuess]->GetCharSetName();
- }
- void nsMBCSGroupProber::Reset(void)
- {
- mActiveNum = 0;
- for (PRUint32 i = 0; i < NUM_OF_PROBERS; i++)
- {
- if (mProbers[i])
- {
- mProbers[i]->Reset();
- mIsActive[i] = PR_TRUE;
- ++mActiveNum;
- }
- else
- mIsActive[i] = PR_FALSE;
- }
- mBestGuess = -1;
- mState = eDetecting;
- mKeepNext = 0;
- }
- nsProbingState nsMBCSGroupProber::HandleData(const char* aBuf, PRUint32 aLen)
- {
- nsProbingState st;
- PRUint32 start = 0;
- PRUint32 keepNext = mKeepNext;
-
- for (PRUint32 pos = 0; pos < aLen; ++pos)
- {
- if (aBuf[pos] & 0x80)
- {
- if (!keepNext)
- start = pos;
- keepNext = 2;
- }
- else if (keepNext)
- {
- if (--keepNext == 0)
- {
- for (PRUint32 i = 0; i < NUM_OF_PROBERS; i++)
- {
- if (!mIsActive[i])
- continue;
- st = mProbers[i]->HandleData(aBuf + start, pos + 1 - start);
- if (st == eFoundIt)
- {
- mBestGuess = i;
- mState = eFoundIt;
- return mState;
- }
- }
- }
- }
- }
- if (keepNext) {
- for (PRUint32 i = 0; i < NUM_OF_PROBERS; i++)
- {
- if (!mIsActive[i])
- continue;
- st = mProbers[i]->HandleData(aBuf + start, aLen - start);
- if (st == eFoundIt)
- {
- mBestGuess = i;
- mState = eFoundIt;
- return mState;
- }
- }
- }
- mKeepNext = keepNext;
- return mState;
- }
- float nsMBCSGroupProber::GetConfidence(void)
- {
- PRUint32 i;
- float bestConf = 0.0, cf;
- switch (mState)
- {
- case eFoundIt:
- return (float)0.99;
- case eNotMe:
- return (float)0.01;
- default:
- for (i = 0; i < NUM_OF_PROBERS; i++)
- {
- if (!mIsActive[i])
- continue;
- cf = mProbers[i]->GetConfidence();
- if (bestConf < cf)
- {
- bestConf = cf;
- mBestGuess = i;
- }
- }
- }
- return bestConf;
- }
- #ifdef DEBUG_chardet
- void nsMBCSGroupProber::DumpStatus()
- {
- PRUint32 i;
- float cf;
-
- GetConfidence();
- for (i = 0; i < NUM_OF_PROBERS; i++)
- {
- if (!mIsActive[i])
- printf(" MBCS inactive: [%s] (confidence is too low).\r\n", ProberName[i]);
- else
- {
- cf = mProbers[i]->GetConfidence();
- printf(" MBCS %1.3f: [%s]\r\n", cf, ProberName[i]);
- }
- }
- }
- #endif
- #ifdef DEBUG_jgmyers
- void nsMBCSGroupProber::GetDetectorState(nsUniversalDetector::DetectorState (&states)[nsUniversalDetector::NumDetectors], PRUint32 &offset)
- {
- for (PRUint32 i = 0; i < NUM_OF_PROBERS; ++i) {
- states[offset].name = ProberName[i];
- states[offset].isActive = mIsActive[i];
- states[offset].confidence = mIsActive[i] ? mProbers[i]->GetConfidence() : 0.0;
- ++offset;
- }
- }
- #endif
|