12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #include "nsEUCTWProber.h"
- void nsEUCTWProber::Reset(void)
- {
- mCodingSM->Reset();
- mState = eDetecting;
- mDistributionAnalyser.Reset(mIsPreferredLanguage);
-
- }
- nsProbingState nsEUCTWProber::HandleData(const char* aBuf, PRUint32 aLen)
- {
- nsSMState codingState;
- for (PRUint32 i = 0; i < aLen; i++)
- {
- codingState = mCodingSM->NextState(aBuf[i]);
- if (codingState == eItsMe)
- {
- mState = eFoundIt;
- break;
- }
- if (codingState == eStart)
- {
- PRUint32 charLen = mCodingSM->GetCurrentCharLen();
- if (i == 0)
- {
- mLastChar[1] = aBuf[0];
- mDistributionAnalyser.HandleOneChar(mLastChar, charLen);
- }
- else
- mDistributionAnalyser.HandleOneChar(aBuf+i-1, charLen);
- }
- }
- mLastChar[0] = aBuf[aLen-1];
- if (mState == eDetecting)
- if (mDistributionAnalyser.GotEnoughData() && GetConfidence() > SHORTCUT_THRESHOLD)
- mState = eFoundIt;
- return mState;
- }
- float nsEUCTWProber::GetConfidence(void)
- {
- float distribCf = mDistributionAnalyser.GetConfidence();
- return (float)distribCf;
- }
|