Blame src/nsSBCharSetProber.cpp

Packit 67f6e7
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
Packit 67f6e7
/* ***** BEGIN LICENSE BLOCK *****
Packit 67f6e7
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
Packit 67f6e7
 *
Packit 67f6e7
 * The contents of this file are subject to the Mozilla Public License Version
Packit 67f6e7
 * 1.1 (the "License"); you may not use this file except in compliance with
Packit 67f6e7
 * the License. You may obtain a copy of the License at
Packit 67f6e7
 * http://www.mozilla.org/MPL/
Packit 67f6e7
 *
Packit 67f6e7
 * Software distributed under the License is distributed on an "AS IS" basis,
Packit 67f6e7
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
Packit 67f6e7
 * for the specific language governing rights and limitations under the
Packit 67f6e7
 * License.
Packit 67f6e7
 *
Packit 67f6e7
 * The Original Code is Mozilla Universal charset detector code.
Packit 67f6e7
 *
Packit 67f6e7
 * The Initial Developer of the Original Code is
Packit 67f6e7
 * Netscape Communications Corporation.
Packit 67f6e7
 * Portions created by the Initial Developer are Copyright (C) 2001
Packit 67f6e7
 * the Initial Developer. All Rights Reserved.
Packit 67f6e7
 *
Packit 67f6e7
 * Contributor(s):
Packit 67f6e7
 *          Shy Shalom <shooshX@gmail.com>
Packit 67f6e7
 *
Packit 67f6e7
 * Alternatively, the contents of this file may be used under the terms of
Packit 67f6e7
 * either the GNU General Public License Version 2 or later (the "GPL"), or
Packit 67f6e7
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
Packit 67f6e7
 * in which case the provisions of the GPL or the LGPL are applicable instead
Packit 67f6e7
 * of those above. If you wish to allow use of your version of this file only
Packit 67f6e7
 * under the terms of either the GPL or the LGPL, and not to allow others to
Packit 67f6e7
 * use your version of this file under the terms of the MPL, indicate your
Packit 67f6e7
 * decision by deleting the provisions above and replace them with the notice
Packit 67f6e7
 * and other provisions required by the GPL or the LGPL. If you do not delete
Packit 67f6e7
 * the provisions above, a recipient may use your version of this file under
Packit 67f6e7
 * the terms of any one of the MPL, the GPL or the LGPL.
Packit 67f6e7
 *
Packit 67f6e7
 * ***** END LICENSE BLOCK ***** */
Packit 67f6e7
#include <stdio.h>
Packit 67f6e7
#include "nsSBCharSetProber.h"
Packit 67f6e7
Packit 67f6e7
nsProbingState nsSingleByteCharSetProber::HandleData(const char* aBuf, PRUint32 aLen)
Packit 67f6e7
{
Packit 67f6e7
  unsigned char order;
Packit 67f6e7
Packit 67f6e7
  for (PRUint32 i = 0; i < aLen; i++)
Packit 67f6e7
  {
Packit 67f6e7
    order = mModel->charToOrderMap[(unsigned char)aBuf[i]];
Packit 67f6e7
Packit 67f6e7
    if (order < SYMBOL_CAT_ORDER)
Packit 67f6e7
      mTotalChar++;
Packit 67f6e7
    if (order < SAMPLE_SIZE)
Packit 67f6e7
    {
Packit 67f6e7
        mFreqChar++;
Packit 67f6e7
Packit 67f6e7
      if (mLastOrder < SAMPLE_SIZE)
Packit 67f6e7
      {
Packit 67f6e7
        mTotalSeqs++;
Packit 67f6e7
        if (!mReversed)
Packit 67f6e7
          ++(mSeqCounters[mModel->precedenceMatrix[mLastOrder*SAMPLE_SIZE+order]]);
Packit 67f6e7
        else // reverse the order of the letters in the lookup
Packit 67f6e7
          ++(mSeqCounters[mModel->precedenceMatrix[order*SAMPLE_SIZE+mLastOrder]]);
Packit 67f6e7
      }
Packit 67f6e7
    }
Packit 67f6e7
    mLastOrder = order;
Packit 67f6e7
  }
Packit 67f6e7
Packit 67f6e7
  if (mState == eDetecting)
Packit 67f6e7
    if (mTotalSeqs > SB_ENOUGH_REL_THRESHOLD)
Packit 67f6e7
    {
Packit 67f6e7
      float cf = GetConfidence();
Packit 67f6e7
      if (cf > POSITIVE_SHORTCUT_THRESHOLD)
Packit 67f6e7
        mState = eFoundIt;
Packit 67f6e7
      else if (cf < NEGATIVE_SHORTCUT_THRESHOLD)
Packit 67f6e7
        mState = eNotMe;
Packit 67f6e7
    }
Packit 67f6e7
Packit 67f6e7
  return mState;
Packit 67f6e7
}
Packit 67f6e7
Packit 67f6e7
void  nsSingleByteCharSetProber::Reset(void)
Packit 67f6e7
{
Packit 67f6e7
  mState = eDetecting;
Packit 67f6e7
  mLastOrder = 255;
Packit 67f6e7
  for (PRUint32 i = 0; i < NUMBER_OF_SEQ_CAT; i++)
Packit 67f6e7
    mSeqCounters[i] = 0;
Packit 67f6e7
  mTotalSeqs = 0;
Packit 67f6e7
  mTotalChar = 0;
Packit 67f6e7
  mFreqChar = 0;
Packit 67f6e7
}
Packit 67f6e7
Packit 67f6e7
//#define NEGATIVE_APPROACH 1
Packit 67f6e7
Packit 67f6e7
float nsSingleByteCharSetProber::GetConfidence(void)
Packit 67f6e7
{
Packit 67f6e7
#ifdef NEGATIVE_APPROACH
Packit 67f6e7
  if (mTotalSeqs > 0)
Packit 67f6e7
    if (mTotalSeqs > mSeqCounters[NEGATIVE_CAT]*10 )
Packit 67f6e7
      return ((float)(mTotalSeqs - mSeqCounters[NEGATIVE_CAT]*10))/mTotalSeqs * mFreqChar / mTotalChar;
Packit 67f6e7
  return (float)0.01;
Packit 67f6e7
#else  //POSITIVE_APPROACH
Packit 67f6e7
  float r;
Packit 67f6e7
Packit 67f6e7
  if (mTotalSeqs > 0) {
Packit 67f6e7
    r = ((float)1.0) * mSeqCounters[POSITIVE_CAT] / mTotalSeqs / mModel->mTypicalPositiveRatio;
Packit 67f6e7
    r = r*mFreqChar/mTotalChar;
Packit 67f6e7
    if (r >= (float)1.00)
Packit 67f6e7
      r = (float)0.99;
Packit 67f6e7
    return r;
Packit 67f6e7
  }
Packit 67f6e7
  return (float)0.01;
Packit 67f6e7
#endif
Packit 67f6e7
}
Packit 67f6e7
Packit 67f6e7
const char* nsSingleByteCharSetProber::GetCharSetName() 
Packit 67f6e7
{
Packit 67f6e7
  if (!mNameProber)
Packit 67f6e7
    return mModel->charsetName;
Packit 67f6e7
  return mNameProber->GetCharSetName();
Packit 67f6e7
}
Packit 67f6e7
Packit 67f6e7
#ifdef DEBUG_chardet
Packit 67f6e7
void nsSingleByteCharSetProber::DumpStatus()
Packit 67f6e7
{
Packit 67f6e7
  printf("  SBCS: %1.3f [%s]\r\n", GetConfidence(), GetCharSetName());
Packit 67f6e7
}
Packit 67f6e7
#endif