
    Pi,                        d dl mZ d dlZd dlmZ  G d d          Z G d d          ZdZd	Ze	d
k    rej
                            ej
                            e                    Zej
                            ed          Zej
                            ed          Z ee          Z eed          5 Ze                    e           ddd           dS # 1 swxY w Y   dS dS )    )TemplateN)IOc                   8    e Zd ZddZdee         ddfdZd ZdS )	ASTCodeGenerator
_c_ast.cfgc                 \    || _         d |                     |          D             | _        dS )zIInitialize the code generator from a configuration
        file.
        c                 4    g | ]\  }}t          ||          S  )NodeCfg).0namecontentss      f/home/jaya/work/projects/VOICE-AGENT/VIET/agent-env/lib/python3.11/site-packages/pycparser/_ast_gen.py
<listcomp>z-ASTCodeGenerator.__init__.<locals>.<listcomp>   s6     
 
 
 x D(##
 
 
    N)cfg_filenameparse_cfgfilenode_cfg)selfr   s     r   __init__zASTCodeGenerator.__init__   s>     )
 
$($6$6|$D$D
 
 
r   filereturnNc                     t          t                                        | j                  }|t          z  }| j        D ]}||                                dz   z  }|                    |           dS )z2Generates the code into file, an open file buffer.)r   z

N)r   _PROLOGUE_COMMENT
substituter   _PROLOGUE_CODEr   generate_sourcewrite)r   r   srcr   s       r   generatezASTCodeGenerator.generate    so    ())44$BS4TT~ 	7 	7H8++--66CC

3r   c           	   #     K   t          |d          5 }|D ]}|                                }|r|                    d          r.|                    d          }|                    d          }|                    d          }|dk     s||k    s||k    rt	          d| d| d	          |d
|         }||dz   |         }|rd |                    d          D             ng }	||	fV  	 d
d
d
           d
S # 1 swxY w Y   d
S )z`Parse the configuration file and yield pairs of
        (name, contents) for each node.
        r#:[]   zInvalid line in :

Nc                 6    g | ]}|                                 S r
   )strip)r   vs     r   r   z2ASTCodeGenerator.parse_cfgfile.<locals>.<listcomp>;   s     ===17799===r   ,)openr+   
startswithfindRuntimeErrorsplit)
r   filenameflinecolon_i
lbracket_i
rbracket_ir   valvallists
             r   r   zASTCodeGenerator.parse_cfgfile*   s      (C   	$A $ $zz|| ts33 ))C..!YYs^^
!YYs^^
Q;;*"7"7:;S;S&'O('O'Ot'O'O'OPPPHWH~:>J67ADL==ciinn===="Gm####$	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$ 	$s   CC::C>C>)r   )__name__
__module____qualname__r   r   strr    r   r
   r   r   r   r      s]        
 
 
 
RW     $ $ $ $ $r   r   c                   6    e Zd ZdZd Zd Zd Zd Zd Zd Z	dS )	r   zNode configuration.

    name: node name
    contents: a list of contents - attributes and child nodes
    See comment at the top of the configuration file for details.
    c                    || _         g | _        g | _        g | _        g | _        |D ]}|                    d          }| j                            |           |                    d          r| j                            |           a|                    d          r| j                            |           | j                            |           d S )N*z**)r   all_entriesattrchild	seq_childrstripappendendswith)r   r   r   entryclean_entrys        r   r   zNodeCfg.__init__G   s    		
 		( 		(E,,s++K##K000~~d## (%%k2222$$ (
!!+....	  ''''		( 		(r   c                     |                                  }|d|                                 z   z  }|d|                                 z   z  }|d|                                 z   z  }|S )Nr)   )	_gen_init_gen_children	_gen_iter_gen_attr_namesr   r   s     r   r   zNodeCfg.generate_sourceY   se    nntd((****tdnn&&&&td**,,,,
r   c                    d| j          d}| j        rJd                    | j                  }d                    d | j        D                       }|dz  }d| d}nd}d	}|d
| dz  }|d| dz  }| j        dgz   D ]}|d| d| dz  }|S )Nzclass z(Node):
, c              3   "   K   | ]
}d | d V  dS )'Nr
   )r   es     r   	<genexpr>z$NodeCfg._gen_init.<locals>.<genexpr>e   s*      AA1h!hhhAAAAAAr   z, 'coord', '__weakref__'z(self, z, coord=None)z'coord', '__weakref__'z(self, coord=None)z    __slots__ = (z)
z    def __init__r(   coordz        self.z = r)   )r   rB   join)r   r   argsslotsarglistr   s         r   rL   zNodeCfg._gen_init`   s    +ty+++ 	+99T-..DIIAA0@AAAAAE//E3333GG,E*G-5----.'....$y0 	5 	5D4444D4444CC
r   c                     d}| j         rF|dz  }| j        D ]}|d| dz  }|d| d| dz  }| j        D ]}|d| d	z  }|d
| dz  }|dz  }n|dz  }|S )Nz    def children(self):
z        nodelist = []
        if self. is not None:
z            nodelist.append(("z", self.z))
z'        for i, child in enumerate(self.	 or []):
z            nodelist.append((f"z[{i}]", child))
z        return tuple(nodelist)
z        return ()
rB   rD   rE   r   r   rD   rE   s       r   rM   zNodeCfg._gen_childrent   s    ) 	),,C S S@%@@@@RRRuRRRR!^ X X	VVVVVWWWWW55CC((C
r   c                     d}| j         rH| j        D ]}|d| dz  }|d| dz  }| j        D ]}|d| dz  }|dz  }| j        s| j        s|d	z  }n|d	z  }|S )
Nz    def __iter__(self):
r]   r^   z            yield self.r)   z        for child in (self.r_   z            yield child
z        return
        yield
r`   ra   s       r   rN   zNodeCfg._gen_iter   s    ) 	: ; ;@%@@@@:::::!^ 3 3	JYJJJJ22J >$. >== 99C
r   c                 Z    dd                     d | j        D                       z   dz   }|S )Nz    attr_names = ( c              3       K   | ]	}|d V  
dS )rR   Nr
   )r   nms     r   rV   z*NodeCfg._gen_attr_names.<locals>.<genexpr>   s(      ,M,MR[[[,M,M,M,M,M,Mr   ))rX   rC   rP   s     r   rO   zNodeCfg._gen_attr_names   s4    "RWW,M,M49,M,M,M%M%MMPSS
r   N)
r;   r<   r=   __doc__r   r   rL   rM   rN   rO   r
   r   r   r   r   ?   sx         ( ( ($    (  (  *    r   r   a  #-----------------------------------------------------------------
# ** ATTENTION **
# This code was automatically generated from _c_ast.cfg
#
# Do not modify it directly. Modify the configuration file and
# run the generator again.
# ** ** *** ** **
#
# pycparser: c_ast.py
#
# AST Node classes.
#
# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------

ae  
import sys
from typing import Any, ClassVar, IO, Optional

def _repr(obj):
    """
    Get the representation of an object, with dedicated pprint-like format for lists.
    """
    if isinstance(obj, list):
        return '[' + (',\n '.join((_repr(e).replace('\n', '\n ') for e in obj))) + '\n]'
    else:
        return repr(obj)

class Node:
    __slots__ = ()
    """ Abstract base class for AST nodes.
    """
    attr_names: ClassVar[tuple[str, ...]] = ()
    coord: Optional[Any]
    def __repr__(self):
        """ Generates a python representation of the current node
        """
        result = self.__class__.__name__ + '('

        indent = ''
        separator = ''
        for name in self.__slots__[:-2]:
            result += separator
            result += indent
            result += name + '=' + (_repr(getattr(self, name)).replace('\n', '\n  ' + (' ' * (len(name) + len(self.__class__.__name__)))))

            separator = ','
            indent = '\n ' + (' ' * len(self.__class__.__name__))

        result += indent + ')'

        return result

    def children(self):
        """ A sequence of all children that are Nodes
        """
        pass

    def show(
        self,
        buf: IO[str] = sys.stdout,
        offset: int = 0,
        attrnames: bool = False,
        showemptyattrs: bool = True,
        nodenames: bool = False,
        showcoord: bool = False,
        _my_node_name: Optional[str] = None,
    ):
        """ Pretty print the Node and all its attributes and
            children (recursively) to a buffer.

            buf:
                Open IO buffer into which the Node is printed.

            offset:
                Initial offset (amount of leading spaces)

            attrnames:
                True if you want to see the attribute names in
                name=value pairs. False to only see the values.

            showemptyattrs:
                False if you want to suppress printing empty attributes.

            nodenames:
                True if you want to see the actual node names
                within their parents.

            showcoord:
                Do you want the coordinates of each Node to be
                displayed.
        """
        lead = ' ' * offset
        if nodenames and _my_node_name is not None:
            buf.write(lead + self.__class__.__name__+ ' <' + _my_node_name + '>: ')
        else:
            buf.write(lead + self.__class__.__name__+ ': ')

        if self.attr_names:
            def is_empty(v):
                v is None or (hasattr(v, '__len__') and len(v) == 0)
            nvlist = [(n, getattr(self,n)) for n in self.attr_names \
                        if showemptyattrs or not is_empty(getattr(self,n))]
            if attrnames:
                attrstr = ', '.join(f'{name}={value}' for name, value in nvlist)
            else:
                attrstr = ', '.join(f'{value}' for _, value in nvlist)
            buf.write(attrstr)

        if showcoord:
            buf.write(f' (at {self.coord})')
        buf.write('\n')

        for (child_name, child) in self.children():
            child.show(
                buf,
                offset=offset + 2,
                attrnames=attrnames,
                showemptyattrs=showemptyattrs,
                nodenames=nodenames,
                showcoord=showcoord,
                _my_node_name=child_name)


class NodeVisitor:
    """ A base NodeVisitor class for visiting c_ast nodes.
        Subclass it and define your own visit_XXX methods, where
        XXX is the class name you want to visit with these
        methods.

        For example:

        class ConstantVisitor(NodeVisitor):
            def __init__(self):
                self.values = []

            def visit_Constant(self, node):
                self.values.append(node.value)

        Creates a list of values of all the constant nodes
        encountered below the given node. To use it:

        cv = ConstantVisitor()
        cv.visit(node)

        Notes:

        *   generic_visit() will be called for AST nodes for which
            no visit_XXX method was defined.
        *   The children of nodes for which a visit_XXX was
            defined will not be visited - if you need this, call
            generic_visit() on the node.
            You can use:
                NodeVisitor.generic_visit(self, node)
        *   Modeled after Python's own AST visiting facilities
            (the ast module of Python 3.0)
    """

    _method_cache = None

    def visit(self, node: Node):
        """ Visit a node.
        """

        if self._method_cache is None:
            self._method_cache = {}

        visitor = self._method_cache.get(node.__class__.__name__, None)
        if visitor is None:
            method = 'visit_' + node.__class__.__name__
            visitor = getattr(self, method, self.generic_visit)
            self._method_cache[node.__class__.__name__] = visitor

        return visitor(node)

    def generic_visit(self, node: Node):
        """ Called if no explicit visitor function exists for a
            node. Implements preorder visiting of the node.
        """
        for _, c in node.children():
            self.visit(c)

__main__r   zc_ast.pyw)stringr   ostypingr   r   r   r   r   r;   pathdirnameabspath__file__base_dirrX   cfg_pathout_pathast_genr.   outr    r
   r   r   <module>rw      s          				      '$ '$ '$ '$ '$ '$ '$ '$T` ` ` ` ` ` ` `F "gT zwrwx8899Hw||Hl33Hw||Hj11Hx((G	h		                   s   4CCC