
    dh=                       U d Z ddlmZ ddlZddlZddlZddlZddlZddl	m
Z
mZmZ ddlmZmZmZ ddlmZ ddlmZ ddlmZ dd	lmZ dd
lmZ ddlmZmZmZmZm Z m!Z! ddl"m#Z#m$Z$m%Z%m&Z&m'Z' ddl(m)Z)m*Z*m+Z+ ddl,m-Z- ddl.m/Z/m0Z0 ddl1m2Z2 e#r*ee3e$f   ee4e$f   z  Z5de6d<   ee3   ee4   z  Z7de6d<   ddl8m9Z9 e3e:e;e4e<e=e>e0j~                  eee ej                  ee!eAj                  eCj                  hZDde6d<   eEeFeGeHeIe
eehZJde6d<   d9dZKd:dZLd;dZMd<dZNd=dZOd>dZP e&d       ZQd?d!ZRd@d"ZS e&d#      ZTe4d$	 	 	 	 	 dAd%ZU G d& d'e/j                        ZWe#rdBd(ZXn
 G d) d*      ZX e&d+      ZYdCd,ZZ e[       Z\dDd-Z]dEd.Z^ ej                  d/0       G d1 d2             Z` e&d3d45      Za e&d6      Zb G d7 d8e%eaebf         Zcy)FzBucket of reusable internal utilities.

This should be reduced as much as possible with functions only used in one place, moved to that place.
    )annotationsN)OrderedDictdefaultdictdeque)CallableIterableMapping)Set)deepcopy)cached_property)	Parameter)zip_longest)BuiltinFunctionTypeCodeTypeFunctionTypeGeneratorType
LambdaType
ModuleType)TYPE_CHECKINGAnyGenericTypeVaroverload)	TypeAlias	TypeGuard
deprecated)PydanticDeprecatedSince211   )_repr_typing_extra)import_cached_base_modelr   MappingIntStrAnyAbstractSetIntStr   )	BaseModelzset[type[Any]]IMMUTABLE_NON_COLLECTIONS_TYPESBUILTIN_COLLECTIONSc                Z    | j                   t        j                  t        j                  fv S )aZ  Return whether the parameter accepts a positional argument.

    ```python {test="skip" lint="skip"}
    def func(a, /, b, *, c):
        pass

    params = inspect.signature(func).parameters
    can_be_positional(params['a'])
    #> True
    can_be_positional(params['b'])
    #> True
    can_be_positional(params['c'])
    #> False
    ```
    )kindr   POSITIONAL_ONLYPOSITIONAL_OR_KEYWORD)params    L/var/www/zara/venv/lib/python3.12/site-packages/pydantic/_internal/_utils.pycan_be_positionalr.   I   s$      ::)33Y5T5TUUU    c           	     V    t        | t        t        t        t        t
        t        f      S N)
isinstancelisttupleset	frozensetr   r   vs    r-   sequence_liker9   \   s    a$sI}eLMMr/   c                :    	 t        | |      S # t        $ r Y yw xY wNF)r2   	TypeError)oclass_or_tuples     r-   lenient_isinstancer?   `   s&    !^,, s    	c                    	 t        | t              xr t        | |      S # t        $ r t        | t        j
                        rY y w xY wr;   )r2   type
issubclassr<   r    WithArgsTypes)clsr>   s     r-   lenient_issubclassrE   g   sE    #t$HC)HH c=667s     #AAc                :    t               }t        | |      xr | |uS )zReturns true if cls is a _proper_ subclass of BaseModel, and provides proper type-checking,
    unlike raw calls to lenient_issubclass.
    )r!   rE   )rD   r%   s     r-   is_model_classrG   p   s#     )*Ic9-F#Y2FFr/   c                R    | j                         xr t        j                  |        S )zChecks that a string is a valid identifier and not a Python keyword.
    :param identifier: The identifier to test.
    :return: True if the identifier is valid.
    )isidentifierkeyword	iskeyword)
identifiers    r-   is_valid_identifierrM   y   s&    
 ""$JW->->z-J)JJr/   KeyTypec                    | j                         }|D ]Y  }|j                         D ]D  \  }}||v r6t        ||   t              r#t        |t              rt	        ||   |      ||<   @|||<   F [ |S r1   )copyitemsr2   dictdeep_update)mappingupdating_mappingsupdated_mappingupdating_mappingkr8   s         r-   rS   rS      s    llnO- '$**, 	'DAqO#
?13Et(LQ[\]_cQd%01CQ%G"%&"		'' r/   c                |    | j                  |j                         D ci c]  \  }}|	|| c}}       y c c}}w r1   )updaterQ   )rT   rZ   rX   r8   s       r-   update_not_noner[      s.    NNV\\^ETQq}AqDEFEs   
8
8
T)name_factoryc                   g }g }| D ]E  } ||      }||vr#|j                  |       |j                  |       2|||j                  |      <   G |S )zMake a list unique while maintaining order.
    We update the list if another one with the same name is set
    (e.g. model validator overridden in subclass).
    )appendindex)
input_listr]   resultresult_namesr8   v_names         r-   unique_listre      sd     F L 3a%'MM!12F<%%f-.3 Mr/   c                      e Zd ZdZdZddZddZddZddZddZ	e
ddd       Zedd	       Ze
dd
       Zedd       ZddZy)
ValueItemszOClass for more convenient calculation of excluded or included fields on values.)_items_typec                    | j                  |      }t        |t        t        f      r| j	                  |t        |            }|| _        y r1   )_coerce_itemsr2   r3   r4   _normalize_indexeslenrh   )selfvaluerQ   s      r-   __init__zValueItems.__init__   s=    ""5)edE]+++E3u:>E(-r/   c                V    | j                  | j                  j                  |            S )zWCheck if item is fully excluded.

        :param item: key or index of a value
        )is_truerh   getrn   items     r-   is_excludedzValueItems.is_excluded   s     
 ||DKKOOD122r/   c                    || j                   v S )z`Check if value is contained in self._items.

        :param item: key or index of value
        rh   rt   s     r-   is_includedzValueItems.is_included   s    
 t{{""r/   c                b    | j                   j                  |      }| j                  |      s|S dS )z:param e: key or index of element on value
        :return: raw values for element if self._items is dict and contain needed element
        N)rh   rs   rr   )rn   eru   s      r-   for_elementzValueItems.for_element   s,     {{q!<<-t747r/   c                   i }d}|j                         D ]  \  }}t        |t              s<t        |t              s,| j	                  |      st        d| d|j                         |dk(  r| j                  |      }it        |t              st        d      |dk  r||z   n|}| j                  ||j                  |            ||<    |s|S | j	                  |      r$t        |      D ]  }|j                  |d        |S t        |      D ];  }|j                  |i       }| j	                  |      r'| j                  ||      ||<   = |S )a]  :param items: dict or set of indexes which will be normalized
        :param v_length: length of sequence indexes of which will be

        >>> self._normalize_indexes({0: True, -2: True, -1: True}, 4)
        {0: True, 2: True, 3: True}
        >>> self._normalize_indexes({'__all__': True}, 4)
        {0: True, 1: True, 2: True, 3: True}
        Nz,Unexpected type of exclude value for index "z" __all__zExcluding fields from a sequence of sub-models or dicts must be performed index-wise: expected integer keys or keyword "__all__"r   .)rQ   r2   r	   AbstractSetrr   r<   	__class___coerce_valueintmergers   range
setdefault)	rn   rQ   v_lengthnormalized_items	all_itemsir8   normalized_inormalized_items	            r-   rl   zValueItems._normalize_indexes   sh    24	KKM 	_DAqq'*jK.HDLLYZO"NqcQSTUT_T_S` abbI~ ..q1	a%A  ,-q58a<aL-1ZZ;K;O;OP\;]-^\*	_ ##<<	"8_ 4 ++As34##x 	MA.99!R@O<<0&*jjO&L #	M  r/   c                   | j                  |      }| j                  |      }||S | j                  |      s||S | j                  |      r|r|S |S |r,|D cg c]	  }||v s| c}|D cg c]	  }||v s| c}z   }n!t        |      |D cg c]	  }||vs| c}z   }i }|D ]<  }| j                  |j	                  |      |j	                  |      |      }|8|||<   > |S c c}w c c}w c c}w )aH  Merge a `base` item with an `override` item.

        Both `base` and `override` are converted to dictionaries if possible.
        Sets are converted to dictionaries with the sets entries as keys and
        Ellipsis as values.

        Each key-value pair existing in `base` is merged with `override`,
        while the rest of the key-value pairs are updated recursively with this function.

        Merging takes place based on the "union" of keys if `intersect` is
        set to `False` (default) and on the intersection of keys if
        `intersect` is set to `True`.
        )	intersect)r   rr   r3   r   rs   )rD   baseoverrider   rX   
merge_keysmergedmerged_items           r-   r   zValueItems.merge   s	    $$X.  &K;;tO;;x $42(2 %);Q(]!;(>`QVW[_V_q>``Jd(&LQatmq&LLJ') 	(A))DHHQKaI)VK&'q		(
  <>`&Ls$   	C'#C'-	C,7C,	C1C1c                    t        | t              r	 | S t        | t              rt        j	                  | d      } | S t        | dd      }t        d|       )N.r   z???z!Unexpected type of exclude value )r2   r	   r   rR   fromkeysgetattrr<   )rQ   
class_names     r-   rk   zValueItems._coerce_items  s\    eW%  {+MM%-E  !U;J?
|LMMr/   c                N    || j                  |      r|S | j                  |      S r1   )rr   rk   )rD   ro   s     r-   r   zValueItems._coerce_value$  s(    =CKK.L  ''r/   c                    | du xs | du S )NT. r7   s    r-   rr   zValueItems.is_true*  s    Dy$AH$r/   c                     d | j                   fgS r1   rx   rn   s    r-   __repr_args__zValueItems.__repr_args__.  s    t{{#$$r/   N)ro   r   rQ   $AbstractSetIntStr | MappingIntStrAnyreturnNone)ru   r   r   bool)r{   z	int | strr   z+AbstractSetIntStr | MappingIntStrAny | None)rQ   r"   r   r   r   zdict[int | str, Any])F)r   r   r   r   r   r   r   r   )rQ   r   r   r"   )ro   r   r   r   r8   r   r   r   )r   z_repr.ReprArgs)__name__
__module____qualname____doc__	__slots__rp   rv   ry   r|   rl   classmethodr   staticmethodrk   r   rr   r   r   r/   r-   rg   rg      sz    Y#I.3#8# J # #J   ( (
 % %%r/   rg   c                     y r1   r   name	get_values     r-   LazyClassAttributer   4  s    r/   c                  2    e Zd ZdZddZedd       ZddZy)	r   zA descriptor exposing an attribute only accessible on a class (hidden from instances).

        The attribute is lazily computed and cached during the first access.
        c                     || _         || _        y r1   r   )rn   r   r   s      r-   rp   zLazyClassAttribute.__init__>  s    DI&DNr/   c                "    | j                         S r1   )r   r   s    r-   ro   zLazyClassAttribute.valueB  s    >>##r/   c                h    || j                   S t        | j                  d|j                  d      )Nz attribute of z is class-only)ro   AttributeErrorr   r   )rn   instanceowners      r-   __get__zLazyClassAttribute.__get__F  s4    zz! DII=u~~>PP^!_``r/   N)r   strr   zCallable[[], Any]r   r   )r   r   )r   r   r   z	type[Any]r   r   )r   r   r   r   rp   r   ro   r   r   r/   r-   r   r   8  s&    	
	' 
	$ 
	$	ar/   r   Objc                    | j                   }|t        v r| S 	 | s"|t        v r|t        u r| S | j	                         S t        |       S # t
        t        t        f$ r Y t        |       S w xY w)zReturn type as is for immutable built-in types
    Use obj.copy() for built-in empty collections
    Use copy.deepcopy() for non-empty collections and unknown objects.
    )	r   r&   r'   r4   rP   r<   
ValueErrorRuntimeErrorr   )objobj_types     r-   smart_deepcopyr   O  st    
 }}H22
x#66"e+3;;
 C=	 z<0 C=	s   A A A('A(c                D    t        | |t              D ]  \  }}||us y y)a  Check that the items of `left` are the same objects as those in `right`.

    >>> a, b = object(), object()
    >>> all_identical([a, b, a], [a, b, a])
    True
    >>> all_identical([a, b, [a]], [a, b, [a]])  # new list object, while "equal" is not "identical"
    False
    )	fillvalueFT)r   	_SENTINEL)leftright	left_item
right_items       r-   all_identicalr   e  s1     "-T5I!N 	:J& r/   c                    | | S |S )zTReturn the first argument if it is not `None`, otherwise return the second argument.r   )abs     r-   get_first_not_noner   t  s    1$1$r/   T)frozenc                  6    e Zd ZU dZdZded<   ddZerd	dZyy)
SafeGetItemProxyzWrapper redirecting `__getitem__` to `get` with a sentinel value as default

    This makes is safe to use in `operator.itemgetter` when some keys may be missing
    )wrappedzMapping[str, Any]r   c               B    | j                   j                  |t              S r1   )r   rs   r   rn   keys     r-   __getitem__zSafeGetItemProxy.__getitem__  s    ||Y//r/   c               8    | j                   j                  |      S r1   )r   __contains__r   s     r-   r   zSafeGetItemProxy.__contains__  s    <<,,S11r/   N)r   r   r   r   )r   r   r   r   )	r   r   r   r   r   __annotations__r   r   r   r   r/   r-   r   r   y  s(     I0 	2 r/   r   _ModelTr%   )bound_RTc                  ^    e Zd ZdZd	dZed
d       Ze edd      dd              ZddZy)deprecated_instance_propertya  A decorator exposing the decorated class method as a property, with a warning on instance access.

    This decorator takes a class method defined on the `BaseModel` class and transforms it into
    an attribute. The attribute can be accessed on both the class and instances of the class. If accessed
    via an instance, a deprecation warning is emitted stating that instance access will be removed in V3.
    c                   || _         y r1   )fget)rn   r   s     r-   rp   z%deprecated_instance_property.__init__  s	    	r/   c                     y r1   r   rn   r   objtypes      r-   r   z$deprecated_instance_property.__get__  s    FIr/   zAccessing this attribute on the instance is deprecated, and will be removed in Pydantic V3. Instead, you should access this attribute from the model class.N)categoryc                     y r1   r   r   s      r-   r   z$deprecated_instance_property.__get__  s	     JMr/   c                   |it         j                  dk\  r| j                  j                  n| j                  j                  j                  }t        j                  d|dt        d        | j                  j                  ||             S )N)   
   zAccessing the zi attribute on the instance is deprecated. Instead, you should access this attribute from the model class.r$   )r   
stacklevel)	sysversion_infor   r   __func__warningswarnr   r   )rn   r   r   	attr_names       r-   r   z$deprecated_instance_property.__get__  s     ##w. 		""YY''00  MM  .R R3	 4tyy  7355r/   )r   zCallable[[type[_ModelT]], _RT]r   r   )r   r   r   type[_ModelT]r   r   )r   r   r   r   r   r   )r   z_ModelT | Noner   r   r   r   )r   r   r   r   rp   r   r   r   r   r/   r-   r   r     sK     I I	J
 M  M6r/   r   )r,   r   r   r   r   )r=   r   r>   z(type[Any] | tuple[type[Any], ...] | Noner   r   )rD   r   r>   r   r   r   )rD   r   r   zTypeGuard[type[BaseModel]])rL   r   r   r   )rT   dict[KeyType, Any]rU   r   r   r   )rT   zdict[Any, Any]rZ   r   r   r   )ra   zlist[T] | tuple[T, ...]r]   zCallable[[T], str]r   zlist[T])r   r   r   zCallable[[], T]r   r\   )r   r   r   r   )r   Iterable[Any]r   r   r   r   )r   r   r   r   r   r   )dr   
__future__r   _annotationsdataclassesrJ   r   r   weakrefcollectionsr   r   r   collections.abcr   r   r	   r
   r   rP   r   	functoolsr   inspectr   	itertoolsr   typesr   r   r   r   r   r   typingr   r   r   r   r   typing_extensionsr   r   r   pydanticr    r   r    _import_utilsr!   r   r   r"   r   r#   mainr%   floatcomplexr   bytesrA   NoneTyperefNotImplementedr   Ellipsisr&   r3   r5   r4   r6   rR   r'   r.   r9   r?   rE   rG   rM   rN   rS   r[   r\   re   Representationrg   r   r   r   objectr   r   r   	dataclassr   r   r   r   r   r/   r-   <module>r     s   
 3   
   7 7 7 7 .  %  ! d d A A > > / " 3")#s("3gc3h6G"GiG#.s#3k#6F#FyF 
 		KK '3  0 				' ^ 	V&NGK )
G CL (+' % 	,C%%% C%L Ka a( en& H	%
 d#2 2 $22 );
/en$677C<#8 $6r/   