| 34 | |
| 35 | |
| 36 | class EUCJPProber(MultiByteCharSetProber): |
| 37 | def __init__(self): |
| 38 | super(EUCJPProber, self).__init__() |
| 39 | self.coding_sm = CodingStateMachine(EUCJP_SM_MODEL) |
| 40 | self.distribution_analyzer = EUCJPDistributionAnalysis() |
| 41 | self.context_analyzer = EUCJPContextAnalysis() |
| 42 | self.reset() |
| 43 | |
| 44 | def reset(self): |
| 45 | super(EUCJPProber, self).reset() |
| 46 | self.context_analyzer.reset() |
| 47 | |
| 48 | @property |
| 49 | def charset_name(self): |
| 50 | return "EUC-JP" |
| 51 | |
| 52 | @property |
| 53 | def language(self): |
| 54 | return "Japanese" |
| 55 | |
| 56 | def feed(self, byte_str): |
| 57 | for i in range(len(byte_str)): |
| 58 | # PY3K: byte_str is a byte array, so byte_str[i] is an int, not a byte |
| 59 | coding_state = self.coding_sm.next_state(byte_str[i]) |
| 60 | if coding_state == MachineState.ERROR: |
| 61 | self.logger.debug('%s %s prober hit error at byte %s', |
| 62 | self.charset_name, self.language, i) |
| 63 | self._state = ProbingState.NOT_ME |
| 64 | break |
| 65 | elif coding_state == MachineState.ITS_ME: |
| 66 | self._state = ProbingState.FOUND_IT |
| 67 | break |
| 68 | elif coding_state == MachineState.START: |
| 69 | char_len = self.coding_sm.get_current_charlen() |
| 70 | if i == 0: |
| 71 | self._last_char[1] = byte_str[0] |
| 72 | self.context_analyzer.feed(self._last_char, char_len) |
| 73 | self.distribution_analyzer.feed(self._last_char, char_len) |
| 74 | else: |
| 75 | self.context_analyzer.feed(byte_str[i - 1:i + 1], |
| 76 | char_len) |
| 77 | self.distribution_analyzer.feed(byte_str[i - 1:i + 1], |
| 78 | char_len) |
| 79 | |
| 80 | self._last_char[0] = byte_str[-1] |
| 81 | |
| 82 | if self.state == ProbingState.DETECTING: |
| 83 | if (self.context_analyzer.got_enough_data() and |
| 84 | (self.get_confidence() > self.SHORTCUT_THRESHOLD)): |
| 85 | self._state = ProbingState.FOUND_IT |
| 86 | |
| 87 | return self.state |
| 88 | |
| 89 | def get_confidence(self): |
| 90 | context_conf = self.context_analyzer.get_confidence() |
| 91 | distrib_conf = self.distribution_analyzer.get_confidence() |
| 92 | return max(context_conf, distrib_conf) |
no outgoing calls
no test coverage detected
searching dependent graphs…