|
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/. */ |
|
5 |
|
6 #ifndef nsEUCTWProber_h__ |
|
7 #define nsEUCTWProber_h__ |
|
8 |
|
9 #include "nsCharSetProber.h" |
|
10 #include "nsCodingStateMachine.h" |
|
11 #include "CharDistribution.h" |
|
12 |
|
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); |
|
25 |
|
26 protected: |
|
27 void GetDistribution(uint32_t aCharLen, const char* aStr); |
|
28 |
|
29 nsCodingStateMachine* mCodingSM; |
|
30 nsProbingState mState; |
|
31 |
|
32 //EUCTWContextAnalysis mContextAnalyser; |
|
33 EUCTWDistributionAnalysis mDistributionAnalyser; |
|
34 char mLastChar[2]; |
|
35 bool mIsPreferredLanguage; |
|
36 |
|
37 }; |
|
38 |
|
39 |
|
40 #endif /* nsEUCTWProber_h__ */ |
|
41 |