KDECore
JapaneseGroupProber.h
Go to the documentation of this file.00001 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 00002 /* -*- C++ -*- 00003 * Copyright (C) 1998 <developer@mozilla.org> 00004 * 00005 * 00006 * Permission is hereby granted, free of charge, to any person obtaining 00007 * a copy of this software and associated documentation files (the 00008 * "Software"), to deal in the Software without restriction, including 00009 * without limitation the rights to use, copy, modify, merge, publish, 00010 * distribute, sublicense, and/or sell copies of the Software, and to 00011 * permit persons to whom the Software is furnished to do so, subject to 00012 * the following conditions: 00013 * 00014 * The above copyright notice and this permission notice shall be included 00015 * in all copies or substantial portions of the Software. 00016 * 00017 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 00018 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 00019 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 00020 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 00021 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 00022 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 00023 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 00024 */ 00025 00026 #ifndef JAPANESEGROUPPROBER_H 00027 #define JAPANESEGROUPPROBER_H 00028 00029 #include "nsCharSetProber.h" 00030 #include "UnicodeGroupProber.h" 00031 #include "nsSJISProber.h" 00032 #include "nsEUCJPProber.h" 00033 00034 #define JP_NUM_OF_PROBERS 3 00035 namespace kencodingprober { 00036 class KDE_NO_EXPORT JapaneseGroupProber: public nsCharSetProber { 00037 public: 00038 JapaneseGroupProber(); 00039 virtual ~JapaneseGroupProber(); 00040 nsProbingState HandleData(const char* aBuf, unsigned int aLen); 00041 const char* GetCharSetName(); 00042 nsProbingState GetState(void) {return mState;}; 00043 void Reset(void); 00044 float GetConfidence(void); 00045 void SetOpion() {}; 00046 00047 #ifdef DEBUG_PROBE 00048 void DumpStatus(); 00049 #endif 00050 00051 protected: 00052 nsProbingState mState; 00053 nsCharSetProber* mProbers[JP_NUM_OF_PROBERS]; 00054 bool mIsActive[JP_NUM_OF_PROBERS]; 00055 int mBestGuess; 00056 unsigned int mActiveNum; 00057 }; 00058 } 00059 #endif /* JAPANESEGROUPPROBER_H */ 00060