1######################## BEGIN LICENSE BLOCK ######################## 
    2# The Original Code is Mozilla Universal charset detector code. 
    3# 
    4# The Initial Developer of the Original Code is 
    5# Netscape Communications Corporation. 
    6# Portions created by the Initial Developer are Copyright (C) 2001 
    7# the Initial Developer. All Rights Reserved. 
    8# 
    9# Contributor(s): 
    10#   Mark Pilgrim - port to Python 
    11#   Shy Shalom - original C code 
    12#   Proofpoint, Inc. 
    13# 
    14# This library is free software; you can redistribute it and/or 
    15# modify it under the terms of the GNU Lesser General Public 
    16# License as published by the Free Software Foundation; either 
    17# version 2.1 of the License, or (at your option) any later version. 
    18# 
    19# This library is distributed in the hope that it will be useful, 
    20# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    21# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
    22# Lesser General Public License for more details. 
    23# 
    24# You should have received a copy of the GNU Lesser General Public 
    25# License along with this library; if not, write to the Free Software 
    26# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 
    27# 02110-1301  USA 
    28######################### END LICENSE BLOCK ######################### 
    29 
    30from .big5prober import Big5Prober 
    31from .charsetgroupprober import CharSetGroupProber 
    32from .cp949prober import CP949Prober 
    33from .enums import LanguageFilter 
    34from .eucjpprober import EUCJPProber 
    35from .euckrprober import EUCKRProber 
    36from .euctwprober import EUCTWProber 
    37from .gb2312prober import GB2312Prober 
    38from .johabprober import JOHABProber 
    39from .sjisprober import SJISProber 
    40from .utf8prober import UTF8Prober 
    41 
    42 
    43class MBCSGroupProber(CharSetGroupProber): 
    44    def __init__(self, lang_filter: LanguageFilter = LanguageFilter.NONE) -> None: 
    45        super().__init__(lang_filter=lang_filter) 
    46        self.probers = [ 
    47            UTF8Prober(), 
    48            SJISProber(), 
    49            EUCJPProber(), 
    50            GB2312Prober(), 
    51            EUCKRProber(), 
    52            CP949Prober(), 
    53            Big5Prober(), 
    54            EUCTWProber(), 
    55            JOHABProber(), 
    56        ] 
    57        self.reset()