PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: eucjpprober.py Size: 3.66 KB
/lib/python3.6/site-packages/chardet/eucjpprober.py

######################## BEGIN LICENSE BLOCK ########################
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is
# Netscape Communications Corporation.
# Portions created by the Initial Developer are Copyright (C) 1998
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
#   Mark Pilgrim - port to Python
#
# 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.
#
# 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.
#
# 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 #########################

from .enums import ProbingState, MachineState
from .mbcharsetprober import MultiByteCharSetProber
from .codingstatemachine import CodingStateMachine
from .chardistribution import EUCJPDistributionAnalysis
from .jpcntx import EUCJPContextAnalysis
from .mbcssm import EUCJP_SM_MODEL


class EUCJPProber(MultiByteCharSetProber):
    def __init__(self):
        super(EUCJPProber, self).__init__()
        self.coding_sm = CodingStateMachine(EUCJP_SM_MODEL)
        self.distribution_analyzer = EUCJPDistributionAnalysis()
        self.context_analyzer = EUCJPContextAnalysis()
        self.reset()

    def reset(self):
        super(EUCJPProber, self).reset()
        self.context_analyzer.reset()

    @property
    def charset_name(self):
        return "EUC-JP"

    @property
    def language(self):
        return "Japanese"

    def feed(self, byte_str):
        for i in range(len(byte_str)):
            # PY3K: byte_str is a byte array, so byte_str[i] is an int, not a byte
            coding_state = self.coding_sm.next_state(byte_str[i])
            if coding_state == MachineState.ERROR:
                self.logger.debug('%s %s prober hit error at byte %s',
                                  self.charset_name, self.language, i)
                self._state = ProbingState.NOT_ME
                break
            elif coding_state == MachineState.ITS_ME:
                self._state = ProbingState.FOUND_IT
                break
            elif coding_state == MachineState.START:
                char_len = self.coding_sm.get_current_charlen()
                if i == 0:
                    self._last_char[1] = byte_str[0]
                    self.context_analyzer.feed(self._last_char, char_len)
                    self.distribution_analyzer.feed(self._last_char, char_len)
                else:
                    self.context_analyzer.feed(byte_str[i - 1:i + 1],
                                                char_len)
                    self.distribution_analyzer.feed(byte_str[i - 1:i + 1],
                                                     char_len)

        self._last_char[0] = byte_str[-1]

        if self.state == ProbingState.DETECTING:
            if (self.context_analyzer.got_enough_data() and
               (self.get_confidence() > self.SHORTCUT_THRESHOLD)):
                self._state = ProbingState.FOUND_IT

        return self.state

    def get_confidence(self):
        context_conf = self.context_analyzer.get_confidence()
        distrib_conf = self.distribution_analyzer.get_confidence()
        return max(context_conf, distrib_conf)

Directory Contents

Dirs: 2 × Files: 39

Name Size Perms Modified Actions
cli DIR
- drwxr-xr-x 2025-03-30 04:21:31
Edit Download
- drwxr-xr-x 2025-03-30 04:21:31
Edit Download
30.52 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
1.72 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
9.19 KB lrw-r--r-- 2017-04-11 19:52:09
Edit Download
3.70 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
4.99 KB lrw-r--r-- 2017-06-08 14:21:53
Edit Download
3.51 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
1.11 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
1.81 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
1.62 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
3.86 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
10.26 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
3.66 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
13.23 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
1.71 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
30.88 KB lrw-r--r-- 2017-04-11 20:48:55
Edit Download
1.71 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
20.23 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
1.71 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
13.51 KB lrw-r--r-- 2017-06-08 14:21:53
Edit Download
25.17 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
19.18 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
12.54 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
17.53 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
12.39 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
11.08 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
12.30 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
11.03 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
10.84 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
5.24 KB lrw-r--r-- 2017-06-08 14:21:53
Edit Download
3.33 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
1.96 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
24.88 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
5.52 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
3.46 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
3.69 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
12.19 KB lrw-r--r-- 2017-06-08 14:32:38
Edit Download
2.70 KB lrw-r--r-- 2017-04-11 17:51:33
Edit Download
242 B lrw-r--r-- 2017-06-08 14:32:13
Edit Download
1.52 KB lrw-r--r-- 2017-04-12 18:41:25
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI