o
     h
                     @  s   d dl mZ d dlmZ d dlmZ ddlmZ er,ddlm	Z	 ddl
mZ ddl
mZ G d	d
 d
ejZG dd dZG dd deejjZG dd deejjZdS )    )annotations)Any)TYPE_CHECKING   )types)Dialect)_BindProcessorType)_LiteralProcessorTypec                   @  s   e Zd ZdZdS )JSONa  MySQL JSON type.

    MySQL supports JSON as of version 5.7.
    MariaDB supports JSON (as an alias for LONGTEXT) as of version 10.2.

    :class:`_mysql.JSON` is used automatically whenever the base
    :class:`_types.JSON` datatype is used against a MySQL or MariaDB backend.

    .. seealso::

        :class:`_types.JSON` - main documentation for the generic
        cross-platform JSON datatype.

    The :class:`.mysql.JSON` type supports persistence of JSON values
    as well as the core index operations provided by :class:`_types.JSON`
    datatype, by adapting the operations to render the ``JSON_EXTRACT``
    function at the database level.

    N)__name__
__module____qualname____doc__ r   r   Q/var/www/html/venv/lib/python3.10/site-packages/sqlalchemy/dialects/mysql/json.pyr
      s    r
   c                   @  s*   e Zd ZdddZdd
dZdddZdS )_FormatTypeMixinvaluer   returnstrc                 C  s   t  N)NotImplementedErrorselfr   r   r   r   _format_value-   s   z_FormatTypeMixin._format_valuedialectr   _BindProcessorType[Any]c                   s     |d fdd}|S )Nr   r   r   c                        | } r| } | S r   r   r   r   
super_procr   r   process3      
z0_FormatTypeMixin.bind_processor.<locals>.process)r   r   r   r   )string_bind_processorr   r   r!   r   r   r   bind_processor0   s   
z_FormatTypeMixin.bind_processor_LiteralProcessorType[Any]c                   s     |d fdd}|S )Nr   r   r   r   c                   r   r   r   r   r   r   r   r!   @   r"   z3_FormatTypeMixin.literal_processor.<locals>.processr   r   r   r   )string_literal_processorr$   r   r   r   literal_processor;   s   
z"_FormatTypeMixin.literal_processorNr'   )r   r   r   r   )r   r   r   r&   )r   r   r   r   r%   r)   r   r   r   r   r   ,   s    

r   c                   @     e Zd ZdddZdS )	JSONIndexTyper   r   r   r   c                 C  s"   t |trd| }|S d| }|S )Nz$[%s]z$."%s"
isinstanceint)r   r   formatted_valuer   r   r   r   J   s
   
zJSONIndexType._format_valueNr'   r   r   r   r   r   r   r   r   r+   I       r+   c                   @  r*   )	JSONPathTyper   r   r   r   c                 C  s   dd dd |D  S )Nz$%s c                 S  s&   g | ]}t |trd | nd| qS )z[%s]z."%s"r,   ).0elemr   r   r   
<listcomp>V   s    z.JSONPathType._format_value.<locals>.<listcomp>)joinr   r   r   r   r   S   s   zJSONPathType._format_valueNr'   r0   r   r   r   r   r2   R   r1   r2   N)
__future__r   typingr   r   r3   r   sqltypesengine.interfacesr   sql.type_apir   r	   r
   r   r+   r2   r   r   r   r   <module>   s   	