You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.9 KiB

13 years ago
######################## BEGIN LICENSE BLOCK ########################
# The Original Code is Mozilla Universal charset detector code.
11 years ago
#
13 years ago
# The Initial Developer of the Original Code is
# Netscape Communications Corporation.
# Portions created by the Initial Developer are Copyright (C) 2001
# the Initial Developer. All Rights Reserved.
11 years ago
#
13 years ago
# Contributor(s):
# Mark Pilgrim - port to Python
# Shy Shalom - original C code
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
11 years ago
#
13 years ago
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
11 years ago
#
13 years ago
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
# 02110-1301 USA
######################### END LICENSE BLOCK #########################
11 years ago
from . import constants
import re
13 years ago
class CharSetProber:
def __init__(self):
pass
11 years ago
13 years ago
def reset(self):
self._mState = constants.eDetecting
11 years ago
13 years ago
def get_charset_name(self):
return None
def feed(self, aBuf):
pass
def get_state(self):
return self._mState
def get_confidence(self):
return 0.0
def filter_high_bit_only(self, aBuf):
11 years ago
aBuf = re.sub(b'([\x00-\x7F])+', b' ', aBuf)
13 years ago
return aBuf
11 years ago
13 years ago
def filter_without_english_letters(self, aBuf):
11 years ago
aBuf = re.sub(b'([A-Za-z])+', b' ', aBuf)
13 years ago
return aBuf
11 years ago
13 years ago
def filter_with_english_letters(self, aBuf):
# TODO
return aBuf