Hacked By AnonymousFox
3
��X � @ s( d dl Z ddlmZ G dd� de�ZdS )� N� )�MachineStatec @ sD e Zd ZdZdd� Zdd� Zdd� Zdd � Zd
d� Ze dd
� �Z
dS )�CodingStateMachinea�
A state machine to verify a byte sequence for a particular encoding. For
each byte the detector receives, it will feed that byte to every active
state machine available, one byte at a time. The state machine changes its
state based on its previous state and the byte it receives. There are 3
states in a state machine that are of interest to an auto-detector:
START state: This is the state to start with, or a legal byte sequence
(i.e. a valid code point) for character has been identified.
ME state: This indicates that the state machine identified a byte sequence
that is specific to the charset it is designed for and that
there is no other possible encoding which can contain this byte
sequence. This will to lead to an immediate positive answer for
the detector.
ERROR state: This indicates the state machine identified an illegal byte
sequence for that encoding. This will lead to an immediate
negative answer for this encoding. Detector will exclude this
encoding from consideration from here on.
c C s0 || _ d| _d| _d | _tjt�| _| j� d S )Nr ) �_model�_curr_byte_pos�_curr_char_len�_curr_state�loggingZ getLogger�__name__Zlogger�reset)�selfZsm� r
�(/usr/lib/python3.6/codingstatemachine.py�__init__7 s zCodingStateMachine.__init__c C s t j| _d S )N)r �STARTr )r r
r
r r ? s zCodingStateMachine.resetc C sh | j d | }| jtjkr0d| _| j d | | _| j| j d | }| j d | | _| jd7 _| jS )NZclass_tabler Zchar_len_tableZclass_factorZstate_tabler )r r r r r r )r �cZ
byte_classZ
curr_stater
r
r �
next_stateB s zCodingStateMachine.next_statec C s | j S )N)r )r r
r
r �get_current_charlenP s z&CodingStateMachine.get_current_charlenc C s
| j d S )N�name)r )r r
r
r �get_coding_state_machineS s z+CodingStateMachine.get_coding_state_machinec C s
| j d S )N�language)r )r r
r
r r V s zCodingStateMachine.languageN)r
�
__module__�__qualname__�__doc__r r r r r �propertyr r
r
r
r r ! s r )r Zenumsr �objectr r
r
r
r �<module> s
Hacked By AnonymousFox1.0, Coded By AnonymousFox