AlkantarClanX12

Your IP : 52.14.252.16


Current Path : /opt/alt/python33/lib64/python3.3/lib2to3/pgen2/__pycache__/
Upload File :
Current File : //opt/alt/python33/lib64/python3.3/lib2to3/pgen2/__pycache__/conv.cpython-33.pyo

�
��f�%c@sEdZddlZddlmZmZGdd�dej�ZdS(u�Convert graminit.[ch] spit out by pgen to Python code.

Pgen is the Python parser generator.  It is useful to quickly create a
parser from a grammar file in Python's grammar notation.  But I don't
want my parsers to be written in C (yet), so I'm translating the
parsing tables to Python data structures and writing a Python parse
engine.

Note that the token numbers are constants determined by the standard
Python tokenizer.  The standard token module defines these numbers and
their names (the names are not used much).  The token numbers are
hardcoded into the Python tokenizer and into pgen.  A Python
implementation of the Python tokenizer is also available, in the
standard tokenize module.

On the other hand, symbol numbers (representing the grammar's
non-terminals) are assigned by pgen based on the actual grammar
input.

Note: this module is pretty much obsolete; the pgen module generates
equivalent grammar tables directly from the Grammar.txt input file
without having to invoke the Python pgen C program.

iN(ugrammarutokencBsJ|EeZdZdZdd�Zdd�Zdd�Zdd	�Zd
S(u	Converteru2Grammar subclass that reads classic pgen output files.

    The run() method reads the tables as produced by the pgen parser
    generator, typically contained in two C files, graminit.h and
    graminit.c.  The other methods are for internal use only.

    See the base class for more documentation.

    cCs(|j|�|j|�|j�dS(u<Load the grammar tables from the text files written by pgen.N(uparse_graminit_huparse_graminit_cu
finish_off(uselfu
graminit_hu
graminit_c((u7/opt/alt/python33/lib64/python3.3/lib2to3/pgen2/conv.pyurun/s

u
Converter.runc	Csyt|�}Wn=tk
rO}ztd||f�dSWYdd}~XnXi|_i|_d}x�|D]�}|d7}tjd|�}|r�|j�r�td|||j�f�qo|j	�\}}t
|�}||j|<||j|<qoWdS(	u�Parse the .h file written by pgen.  (Internal)

        This file is a sequence of #define statements defining the
        nonterminals of the grammar as numbers.  We build two tables
        mapping the numbers to names and back.

        uCan't open %s: %sNiiu^#define\s+(\w+)\s+(\d+)$u%s(%s): can't parse %sFT(uopenuIOErroruprintuFalseu
symbol2numberu
number2symbolureumatchustripugroupsuintuTrue(	uselfufilenameufuerrulinenoulineumousymbolunumber((u7/opt/alt/python33/lib64/python3.3/lib2to3/pgen2/conv.pyuparse_graminit_h5s&		


uConverter.parse_graminit_hc!Cs�yt|�}Wn=tk
rO}ztd||f�dSWYdd}~XnXd}|dt|�}}|dt|�}}|dt|�}}i}g}x|jd�r�x|jd�r�tjd|�}tt	t
|j���\}	}
}g}xqt|�D]c}
|dt|�}}tjd|�}tt	t
|j���\}}|j
||f�qW|dt|�}}|||	|
f<|dt|�}}q�Wtjd|�}tt	t
|j���\}}g}x~t|�D]p}
|dt|�}}tjd	|�}tt	t
|j���\}}	}
||	|
f}|j
|�qW|j
|�|dt|�}}|dt|�}}q�W||_i}tjd
|�}t
|jd��}x@t|�D]2}|dt|�}}tjd|�}|jd�}tt	t
|jdd
dd���\}}}}||}|dt|�}}tjd|�}i}t|jd��}x`t|�D]R\}}t|�}x7td�D])}|d|>@r�d||d|<q�q�Wq�W||f||<q�W|dt|�}}||_g}|dt|�}}tjd|�}t
|jd��}x�t|�D]�}|dt|�}}tjd|�}|j�\}}t
|�}|dkrd}nt|�}|j
||f�q�W|dt|�}}||_|dt|�}}|dt|�}}tjd|�}t
|jd��}|dt|�}}|dt|�}}tjd|�}t
|jd��}|dt|�}}tjd|�}t
|jd��} | |_|dt|�}}y|dt|�}}Wntk
r|YnXdS(u�Parse the .c file written by pgen.  (Internal)

        The file looks as follows.  The first two lines are always this:

        #include "pgenheaders.h"
        #include "grammar.h"

        After that come four blocks:

        1) one or more state definitions
        2) a table defining dfas
        3) a table defining labels
        4) a struct defining the grammar

        A state definition has the following form:
        - one or more arc arrays, each of the form:
          static arc arcs_<n>_<m>[<k>] = {
                  {<i>, <j>},
                  ...
          };
        - followed by a state array, of the form:
          static state states_<s>[<t>] = {
                  {<k>, arcs_<n>_<m>},
                  ...
          };

        uCan't open %s: %sNiiustatic arc u)static arc arcs_(\d+)_(\d+)\[(\d+)\] = {$u\s+{(\d+), (\d+)},$u'static state states_(\d+)\[(\d+)\] = {$u\s+{(\d+), arcs_(\d+)_(\d+)},$ustatic dfa dfas\[(\d+)\] = {$u0\s+{(\d+), "(\w+)", (\d+), (\d+), states_(\d+),$iiiiu\s+("(?:\\\d\d\d)*")},$iu!static label labels\[(\d+)\] = {$u\s+{(\d+), (0|"\w+")},$u0u
\s+(\d+),$u\s+{(\d+), labels},$u	\s+(\d+)$F(uopenuIOErroruprintuFalseunextu
startswithureumatchulistumapuintugroupsurangeuappendustatesugroupuevalu	enumerateuordudfasuNoneulabelsustartu
StopIteration(!uselfufilenameufuerrulinenoulineuallarcsustatesumounumukuarcsu_uiujusutustateudfasundfasusymbolunumberuxuyuzufirstu	rawbitsetucubyteulabelsunlabelsustart((u7/opt/alt/python33/lib64/python3.3/lib2to3/pgen2/conv.pyuparse_graminit_cTs�		$!!$
			3
				
uConverter.parse_graminit_ccCs�i|_i|_xjt|j�D]Y\}\}}|tjkr_|dk	r_||j|<q"|dkr"||j|<q"q"WdS(u1Create additional useful structures.  (Internal).N(ukeywordsutokensu	enumerateulabelsutokenuNAMEuNone(uselfuilabelutypeuvalue((u7/opt/alt/python33/lib64/python3.3/lib2to3/pgen2/conv.pyu
finish_off�s		"uConverter.finish_offN(u__name__u
__module__u__qualname__u__doc__urunuparse_graminit_huparse_graminit_cu
finish_off(u
__locals__((u7/opt/alt/python33/lib64/python3.3/lib2to3/pgen2/conv.pyu	Converter$s
	�u	Converter(u__doc__ureupgen2ugrammarutokenuGrammaru	Converter(((u7/opt/alt/python33/lib64/python3.3/lib2to3/pgen2/conv.pyu<module>s