Ë
    ÷ÿæi¨  ã                  óD  — d dl mZ d dlmZmZmZ ddlmZ ddlm	Z	m
Z
 ddlmZ eeg ef   eegef   eeegef   eeeegef   f   Z G d„ d«      Zdd	„Zdd
„Zdd„Zdd„Z e«       e_        	 ddd„Z e
de«      Z e
de«      Z e
de«      Z e
de«      Z e
de«      Zy)é    )Úannotations)ÚUnionÚCallableÚAnyé   )ÚParseException)ÚcolÚreplaced_by_pep8)ÚParseResultsc                  ó&   — e Zd ZdZdd„Zdd„Zd„ Zy)ÚOnlyOncezˆ
    Wrapper for parse actions, to ensure they are only called once.
    Note: parse action signature must include all 3 arguments.
    c                ó8   — ddl m}  ||«      | _        d| _        y )Nr   )Ú_trim_arityF)Úcorer   ÚcallableÚcalled)ÚselfÚmethod_callr   s      úf/Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/pyparsing/actions.pyÚ__init__zOnlyOnce.__init__   s   € Ý%á# KÓ0ˆŒØˆ�ó    c                ól   — | j                   s| j                  |||«      }d| _         |S t        ||d«      ‚)NTz.OnlyOnce obj called multiple times w/out reset)r   r   r   )r   ÚsÚlÚtÚresultss        r   Ú__call__zOnlyOnce.__call__   s7   € Ø�{Š{Ø—m‘m A q¨!Ó,ˆGØˆDŒKØˆNÜ˜Q Ð#SÓTÐTr   c                ó   — d| _         y)zK
        Allow the associated parse action to be called once more.
        FN)r   )r   s    r   ÚresetzOnlyOnce.reset&   s   € ð
 ˆ�r   N)r   z'Callable[[str, int, ParseResults], Any]ÚreturnÚNone)r   Ústrr   Úintr   r   r    r   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   r   © r   r   r   r      s   „ ñó
óUór   r   c                ó   ‡ — dˆ fd„}|S )zt
    Helper method for defining parse actions that require matching at
    a specific column in the input text.
    c                óD   •— t        || «      ‰k7  rt        | |d‰› �«      ‚y )Nzmatched token not at column )r	   r   )ÚstrgÚlocnÚtoksÚns      €r   Ú
verify_colz%match_only_at_col.<locals>.verify_col4   s-   ø€ Üˆt�T‹?˜aÒÜ   tÐ/KÈAÈ3Ð-OÓPÐPð  r   )r+   r"   r,   r#   r-   r   r    r!   r(   )r.   r/   s   ` r   Úmatch_only_at_colr0   .   s   ø€ õQð Ðr   c                ó   ‡ — ˆ fd„S )aÜ  
    Helper method for common parse actions that simply return
    a literal value.  Especially useful when used with
    :meth:`~ParserElement.transform_string`.

    Example:

    .. doctest::

       >>> num = Word(nums).set_parse_action(lambda toks: int(toks[0]))
       >>> na = one_of("N/A NA").set_parse_action(replace_with(math.nan))
       >>> term = na | num

       >>> term[1, ...].parse_string("324 234 N/A 234")
       ParseResults([324, 234, nan, 234], {})
    c                ó
   •— ‰gS )Nr(   )r   r   r   Úrepl_strs      €r   Ú<lambda>zreplace_with.<locals>.<lambda>L   s   ø€ ˜H™:r   r(   )r3   s   `r   Úreplace_withr5   ;   s   ø€ ó" &Ð%r   c                ó   — |d   dd S )a   
    Helper parse action for removing quotation marks from parsed
    quoted strings, that use a single character for quoting. For parsing
    strings that may have multiple characters, use the :class:`QuotedString`
    class.

    Example:

    .. doctest::

       >>> # by default, quotation marks are included in parsed results
       >>> quoted_string.parse_string("'Now is the Winter of our Discontent'")
       ParseResults(["'Now is the Winter of our Discontent'"], {})

       >>> # use remove_quotes to strip quotation marks from parsed results
       >>> dequoted = quoted_string().set_parse_action(remove_quotes)
       >>> dequoted.parse_string("'Now is the Winter of our Discontent'")
       ParseResults(['Now is the Winter of our Discontent'], {})
    r   r   éÿÿÿÿr(   )r   r   r   s      r   Úremove_quotesr8   O   s   € ð( ˆQ‰4��"ˆ:Ðr   c                 ó~   ‡— g Š| r‰j                  | «       n‰j                  |j                  «       «       dˆfd„}|S )aï  
    Helper to create a validating parse action to be used with start
    tags created with :class:`make_xml_tags` or
    :class:`make_html_tags`. Use ``with_attribute`` to qualify
    a starting tag with a required attribute value, to avoid false
    matches on common tags such as ``<TD>`` or ``<DIV>``.

    Call ``with_attribute`` with a series of attribute names and
    values. Specify the list of filter attributes names and values as:

    - keyword arguments, as in ``(align="right")``, or
    - as an explicit dict with ``**`` operator, when an attribute
      name is also a Python reserved word, as in ``**{"class":"Customer", "align":"right"}``
    - a list of name-value tuples, as in ``(("ns1:class", "Customer"), ("ns2:align", "right"))``

    For attribute names with a namespace prefix, you must use the second
    form.  Attribute names are matched insensitive to upper/lower case.

    If just testing for ``class`` (with or without a namespace), use
    :class:`with_class`.

    To verify that the attribute exists, but without specifying a value,
    pass ``with_attribute.ANY_VALUE`` as the value.

    The next two examples use the following input data and tag parsers:

    .. testcode::

       html = '''
           <div>
           Some text
           <div type="grid">1 4 0 1 0</div>
           <div type="graph">1,3 2,3 1,1</div>
           <div>this has no type</div>
           </div>
       '''
       div,div_end = make_html_tags("div")

    Only match div tag having a type attribute with value "grid":

    .. testcode::

       div_grid = div().set_parse_action(with_attribute(type="grid"))
       grid_expr = div_grid + SkipTo(div | div_end)("body")
       for grid_header in grid_expr.search_string(html):
           print(grid_header.body)

    prints:

    .. testoutput::

       1 4 0 1 0

    Construct a match with any div tag having a type attribute,
    regardless of the value:

    .. testcode::

       div_any_type = div().set_parse_action(
           with_attribute(type=with_attribute.ANY_VALUE)
       )
       div_expr = div_any_type + SkipTo(div | div_end)("body")
       for div_header in div_expr.search_string(html):
           print(div_header.body)

    prints:

    .. testoutput::

       1 4 0 1 0
       1,3 2,3 1,1
    c                ó¬   •— ‰D ]N  \  }}||vrt        | |d|›�«      ‚|t        j                  k7  sŒ.||   |k7  sŒ7t        | |d|›d||   ›d|›�«      ‚ y )Nzno matching attribute z
attribute z has value z
, must be )r   Úwith_attributeÚ	ANY_VALUE)r   r   ÚtokensÚattrNameÚ	attrValueÚ
attrs_lists        €r   Úpazwith_attribute.<locals>.paµ   s|   ø€ Û#-ÑˆH�iØ˜vÑ%Ü$ Q¨Ð-CÀHÀ<Ð+PÓQÐQØœN×4Ñ4Ó4¸ÀÑ9IÈYÓ9VÜ$ØØØ   ¨K¸¸xÑ8HÐ7KÈ:ÐV_ÐUbÐcóð ñ	 $.r   )r   r"   r   r#   r=   r   r    r!   )ÚextendÚitems)ÚargsÚ	attr_dictrA   r@   s      @r   r;   r;   f   s=   ø€ ðR )+€JÙØ×Ñ˜$Õà×Ñ˜)Ÿ/™/Ó+Ô,õ	ð €Ir   c                ó.   — |r|› d�nd}t        di || i¤ŽS )a  
    Simplified version of :meth:`with_attribute` when
    matching on a div class - made difficult because ``class`` is
    a reserved word in Python.

    Using similar input data to the :meth:`with_attribute` examples:

    .. testcode::

       html = '''
           <div>
           Some text
           <div class="grid">1 4 0 1 0</div>
           <div class="graph">1,3 2,3 1,1</div>
           <div>this &lt;div&gt; has no class</div>
           </div>
       '''
       div,div_end = make_html_tags("div")

    Only match div tag having the "grid" class:

    .. testcode::

       div_grid = div().set_parse_action(with_class("grid"))
       grid_expr = div_grid + SkipTo(div | div_end)("body")
       for grid_header in grid_expr.search_string(html):
           print(grid_header.body)

    prints:

    .. testoutput::

       1 4 0 1 0

    Construct a match with any div tag having a class attribute,
    regardless of the value:

    .. testcode::

       div_any_type = div().set_parse_action(
           with_class(withAttribute.ANY_VALUE)
       )
       div_expr = div_any_type + SkipTo(div | div_end)("body")
       for div_header in div_expr.search_string(html):
           print(div_header.body)

    prints:

    .. testoutput::

       1 4 0 1 0
       1,3 2,3 1,1
    z:classÚclassr(   )r;   )Ú	classnameÚ	namespaceÚ	classattrs      r   Ú
with_classrK   Ç   s(   € ñl )2�9�+˜VÑ$°w€IÜÑ3˜Y¨	Ð2Ñ3Ð3r   ÚreplaceWithÚremoveQuotesÚwithAttributeÚ	withClassÚmatchOnlyAtColN)r.   r#   r    ÚParseAction)r3   r   r    rQ   )r   r"   r   r#   r   r   r    r   )rD   ztuple[str, str]r    rQ   )Ú )rH   r"   rI   r"   r    rQ   )Ú
__future__r   Útypingr   r   r   Ú
exceptionsr   Úutilr	   r
   r   r   r#   r"   rQ   r   r0   r5   r8   r;   Úobjectr<   rK   rL   rM   rN   rO   rP   r(   r   r   Ú<module>rX      sÞ   ðå "ç 'Ñ 'å &ß 'Ý !ð ØˆR�ˆWÑØˆlˆ^˜SÐ Ñ!Øˆc�<Ð  #Ð%Ñ&Øˆc�3˜Ð% sÐ*Ñ+ð-ñ€÷ñ ó6
ó&ó(ó.Zñz "›8€Ô Ø qô74ñx ˜}¨lÓ;€Ù °Ó>€Ù  °.ÓA€Ù˜[¨*Ó5€	Ù!Ð"2Ð4EÓF�r   