KCodecs

nsEUCJPProber.h
1/* -*- C++ -*-
2 SPDX-FileCopyrightText: 1998 Netscape Communications Corporation <developer@mozilla.org>
3
4 SPDX-License-Identifier: MIT
5*/
6
7// for S-JIS encoding, observe characteristic:
8// 1, kana character (or hankaku?) often have high frequency of appearance
9// 2, kana character often exist in group
10// 3, certain combination of kana is never used in japanese language
11
12#ifndef nsEUCJPProber_h__
13#define nsEUCJPProber_h__
14
15#include "CharDistribution.h"
16#include "JpCntx.h"
17#include "nsCharSetProber.h"
18#include "nsCodingStateMachine.h"
19namespace kencodingprober
20{
21class KCODECS_NO_EXPORT nsEUCJPProber : public nsCharSetProber
22{
23public:
24 nsEUCJPProber(void)
25 {
26 mCodingSM = new nsCodingStateMachine(&EUCJPSMModel);
27 Reset();
28 }
29 ~nsEUCJPProber(void) override
30 {
31 delete mCodingSM;
32 }
33 nsProbingState HandleData(const char *aBuf, unsigned int aLen) override;
34 const char *GetCharSetName() override
35 {
36 return "EUC-JP";
37 }
38 nsProbingState GetState(void) override
39 {
40 return mState;
41 }
42 void Reset(void) override;
43 float GetConfidence(void) override;
44 void SetOpion() override
45 {
46 }
47
48protected:
49 nsCodingStateMachine *mCodingSM;
50 nsProbingState mState;
51
52 EUCJPContextAnalysis mContextAnalyser;
53 EUCJPDistributionAnalysis mDistributionAnalyser;
54
55 char mLastChar[2];
56};
57}
58
59#endif /* nsEUCJPProber_h__ */
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:20:47 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.