KCodecs

UnicodeGroupProber.h
1/* -*- C++ -*-
2 SPDX-FileCopyrightText: 2008 Wang Kai <wkai@gmail.com>
3
4 SPDX-License-Identifier: MIT
5*/
6
7#ifndef UNICODEGROUPPROBER_H
8#define UNICODEGROUPPROBER_H
9
10#include "nsCharSetProber.h"
11#include "nsCodingStateMachine.h"
12
13#define NUM_OF_UNICODE_CHARSETS 3
14namespace kencodingprober
15{
16class KCODECS_NO_EXPORT UnicodeGroupProber : public nsCharSetProber
17{
18public:
19 UnicodeGroupProber(void);
20 ~UnicodeGroupProber(void) override;
21 nsProbingState HandleData(const char *aBuf, unsigned int aLen) override;
22 const char *GetCharSetName() override
23 {
24 return mDetectedCharset;
25 }
26 nsProbingState GetState(void) override
27 {
28 return mState;
29 }
30 void Reset(void) override;
31 float GetConfidence() override;
32 void SetOpion() override
33 {
34 }
35#ifdef DEBUG_PROBE
36 void DumpStatus() override;
37#endif
38
39protected:
40 void GetDistribution(unsigned int aCharLen, const char *aStr);
41
42 nsCodingStateMachine *mCodingSM[NUM_OF_UNICODE_CHARSETS];
43 unsigned int mActiveSM;
44 nsProbingState mState;
45 const char *mDetectedCharset;
46};
47}
48#endif /* UNICODEGROUPPROBER_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.