Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsEUCTWProber_h__
7 #define nsEUCTWProber_h__
9 #include "nsCharSetProber.h"
10 #include "nsCodingStateMachine.h"
11 #include "CharDistribution.h"
13 class nsEUCTWProber: public nsCharSetProber {
14 public:
15 nsEUCTWProber(bool aIsPreferredLanguage)
16 :mIsPreferredLanguage(aIsPreferredLanguage)
17 {mCodingSM = new nsCodingStateMachine(&EUCTWSMModel);
18 Reset();}
19 virtual ~nsEUCTWProber(void){delete mCodingSM;}
20 nsProbingState HandleData(const char* aBuf, uint32_t aLen);
21 const char* GetCharSetName() {return "x-euc-tw";}
22 nsProbingState GetState(void) {return mState;}
23 void Reset(void);
24 float GetConfidence(void);
26 protected:
27 void GetDistribution(uint32_t aCharLen, const char* aStr);
29 nsCodingStateMachine* mCodingSM;
30 nsProbingState mState;
32 //EUCTWContextAnalysis mContextAnalyser;
33 EUCTWDistributionAnalysis mDistributionAnalyser;
34 char mLastChar[2];
35 bool mIsPreferredLanguage;
37 };
40 #endif /* nsEUCTWProber_h__ */