
    4YshF#              	          d dl Z d dlZd dlmZ ddlmZmZmZmZ ddl	m
Z  G d dej                  ej                  ej                  ej                  ej                         Z eej$                        Z e j(                  dez   d	z         Z G d
 de      Z G d de      Z G d de      Z G d de      Z G d de      Zy)    N)Optional   )collinelineno_collapse_string_to_ranges)pyparsing_unicodec                       e Zd Zy)ExceptionWordUnicodeN)__name__
__module____qualname__     t/var/www/sten-cake5-migrate2.hellocrow.space/lexinfo-master/env/lib/python3.12/site-packages/pyparsing/exceptions.pyr   r      s    r   r   z([z
]{1,16})|.c                       e Zd ZdZ	 	 	 ddededee   fdZedd       Z	e
d        Zed	efd
       Zed	efd       Zed	efd       Zed	efd       Zd	efdZd Zdddded	efdZdd	efdZeZy)ParseBaseExceptionz7base exception class for all parsing runtime exceptionsNpstrlocmsgc                     || _         ||| _        d| _        n|| _        || _        |x| _        | _        |||f| _        y )N )r   r   r   parser_elementparserElementargs)selfr   r   r   elems        r   __init__zParseBaseException.__init__   sJ     ;DHDIDHDI377d03$	r   c                 ~   ddl }ddlm} |t        j                         }g }t        | t              r?|j                  | j                         |j                  d| j                  dz
  z  dz          |j                  dj                  t        |       j                  |              |dkD  r|j                  | j                  |      }t               }t!        || d       D ]H  \  }}|d   }	|	j"                  j%                  d	d      }
t        |
|      r|	j&                  j(                  d
vrMt+        |
      |v r[|j-                  t+        |
             t        |
      }|j                  dj                  |j.                  |j                  |
             n|
At        |
      }|j                  dj                  |j.                  |j                               nF|	j&                  }|j(                  dv r|j                  dj                  |j(                               |dz  }|rI n dj1                  |      S )a  
        Method to take an exception and translate the Python internal traceback into a list
        of the pyparsing expressions that caused the exception to be raised.

        Parameters:

        - exc - exception raised during parsing (need not be a ParseException, in support
          of Python exceptions that might be raised in a parse action)
        - depth (default=16) - number of levels back in the stack trace to list expression
          and function names; if None, the full stack trace names will be listed; if 0, only
          the failing input line, marker, and exception string will be shown

        Returns a multi-line string listing the ParserElements and/or function names in the
        exception's stack trace.
        r   Nr   )ParserElement ^z{}: {})contextr   )	parseImpl_parseNoCachez
{}.{} - {}z{}.{})wrapperz<module>z{}
)inspectcorer    sysgetrecursionlimit
isinstancer   appendr   columnformattyper   getinnerframes__traceback__set	enumeratef_localsgetf_codeco_nameidaddr   join)excdepthr(   r    retcallersseenifffrmf_self	self_typecodes                r   explain_exceptionz$ParseBaseException.explain_exception)   s   " 	'=))+Ec-.JJsxx JJscjj1n-34

8??49#5#5s;<19,,S->->,NG5D"7E67#34 2e))&$7fm4zz))1OO &zT) HHRZ( $VIJJ$++%00)2D2Df ' $VIJJw~~i.B.BIDVDVWX ::D||'>> JJt{{4<<89
?B yy~r   c                 h     | |j                   |j                  |j                  |j                        S )z
        internal factory method to simplify creating one type of ParseException
        from another - avoids having __init__ signature conflicts among subclasses
        )r   r   r   r   )clspes     r   _from_exceptionz"ParseBaseException._from_exceptionk   s'     277BFFBFFB,<,<==r   returnc                 B    t        | j                  | j                        S )zG
        Return the line of text where the exception occurred.
        )r   r   r   r   s    r   r   zParseBaseException.lines   s    
 DHHdii((r   c                 B    t        | j                  | j                        S )zV
        Return the 1-based line number of text where the exception occurred.
        )r   r   r   rN   s    r   r   zParseBaseException.linenoz   s    
 dhh		**r   c                 B    t        | j                  | j                        S z]
        Return the 1-based column on the line of text where the exception occurred.
        r   r   r   rN   s    r   r   zParseBaseException.col       
 488TYY''r   c                 B    t        | j                  | j                        S rQ   rR   rN   s    r   r.   zParseBaseException.column   rS   r   c                    | j                   r| j                  t        | j                         k\  rd}n|t        j	                  | j                   | j                        }||j                  d      }n&| j                   | j                  | j                  dz    }d|z  j                  dd      }nd}dj                  | j                  || j                  | j                  | j                        S )	Nz, found end of textr   r   z
, found %rz\\\r   z%{}{}  (at char {}), (line:{}, col:{}))r   r   len_exception_word_extractormatchgroupreplacer/   r   r   r.   )r   foundstrfound_matchfounds       r   __str__zParseBaseException.__str__   s    99xx3tyy>)0 8==diiR*'--a0E IIdhhA>E(5099%FH6==HHh$++t{{
 	
r   c                     t        |       S N)strrN   s    r   __repr__zParseBaseException.__repr__   s    4yr   z>!<)markerStringmarker_stringc                    ||n|}| j                   }| j                  dz
  }|rdj                  |d| |||d f      }|j                         S )z
        Extracts the exception line from the input string, and marks
        the location of the exception with a special symbol.
        Nr   r   )r   r.   r;   strip)r   re   rd   line_strline_columns        r   mark_input_linez"ParseBaseException.mark_input_line   s^    
 )6(A}|99kkAoww,;'x7MNH ~~r   c                 &    | j                  | |      S )a  
        Method to translate the Python internal traceback into a list
        of the pyparsing expressions that caused the exception to be raised.

        Parameters:

        - depth (default=16) - number of levels back in the stack trace to list expression
          and function names; if None, the full stack trace names will be listed; if 0, only
          the failing input line, marker, and exception string will be shown

        Returns a multi-line string listing the ParserElements and/or function names in the
        exception's stack trace.

        Example::

            expr = pp.Word(pp.nums) * 3
            try:
                expr.parse_string("123 456 A789")
            except pp.ParseException as pe:
                print(pe.explain(depth=0))

        prints::

            123 456 A789
                    ^
            ParseException: Expected W:(0-9), found 'A'  (at char 8), (line:1, col:9)

        Note: the diagnostic output will include string representations of the expressions
        that failed to parse. These representations will be more helpful if you use `set_name` to
        give identifiable names to your expressions. Otherwise they will use the default string
        forms, which may be cryptic to read.

        Note: pyparsing's default truncation of exception tracebacks may also truncate the
        stack of expressions that are displayed in the ``explain`` output. To get the full listing
        of parser expressions, you may have to set ``ParserElement.verbose_stacktrace = True``
        )rG   )r   r=   s     r   explainzParseBaseException.explain   s    J %%dE22r   )r   NN)   ra   )r   r   r   __doc__rb   intr   r   staticmethodrG   classmethodrK   propertyr   r   r   r.   r_   rc   rj   rl   markInputliner   r   r   r   r      s
   A !%% % c]	%" ? ?B > > )c ) ) + + + (S ( ( ( ( (
 
$   S  SV  %33 %3N $Mr   r   c                       e Zd ZdZy)ParseExceptionaq  
    Exception thrown when a parse expression doesn't match the input string

    Example::

        try:
            Word(nums).set_name("integer").parse_string("ABC")
        except ParseException as pe:
            print(pe)
            print("column: {}".format(pe.column))

    prints::

       Expected integer (at char 0), (line:1, col:1)
        column: 1

    Nr   r   r   rn   r   r   r   ru   ru      s    r   ru   c                       e Zd ZdZy)ParseFatalExceptionzu
    User-throwable exception thrown when inconsistent parse content
    is found; stops all parsing immediately
    Nrv   r   r   r   rx   rx      s    r   rx   c                       e Zd ZdZy)ParseSyntaxExceptionz
    Just like :class:`ParseFatalException`, but thrown internally
    when an :class:`ErrorStop<And._ErrorStop>` ('-' operator) indicates
    that parsing is to stop immediately because an unbacktrackable
    syntax error has been found.
    Nrv   r   r   r   rz   rz      s    r   rz   c                   "    e Zd ZdZd ZdefdZy)RecursiveGrammarExceptionz
    Exception thrown by :class:`ParserElement.validate` if the
    grammar could be left-recursive; parser may need to enable
    left recursion using :class:`ParserElement.enable_left_recursion<ParserElement.enable_left_recursion>`
    c                     || _         y ra   )parseElementTrace)r   parseElementLists     r   r   z"RecursiveGrammarException.__init__  s
    !1r   rL   c                 8    dj                  | j                        S )NzRecursiveGrammarException: {})r/   r~   rN   s    r   r_   z!RecursiveGrammarException.__str__
  s    .55d6L6LMMr   N)r   r   r   rn   r   rb   r_   r   r   r   r|   r|      s    2N Nr   r|   )rer*   typingr   utilr   r   r   r   unicoder	   ppuLatin1LatinALatinBGreekCyrillicr   	alphanums_extract_alphanumscompilerX   	Exceptionr   ru   rx   rz   r|   r   r   r   <module>r      s    
 
  ? ? -	3::szz3::syy#,, 	 00D0N0NO &BJJt.@'@<'OP F$ F$R' (, . N	 Nr   