Ë
    ðmxiò-  ã                  óÚ   — d 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 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 erd
dlmZ d
dlmZ dgZ e	d«      Z G d„ dee   «      Zy)a7  Define attributes on ORM-mapped classes that have "index" attributes for
columns with :class:`_types.Indexable` types.

"index" means the attribute is associated with an element of an
:class:`_types.Indexable` column with the predefined index to access it.
The :class:`_types.Indexable` types include types such as
:class:`_types.ARRAY`, :class:`_types.JSON` and
:class:`_postgresql.HSTORE`.



The :mod:`~sqlalchemy.ext.indexable` extension provides
:class:`_schema.Column`-like interface for any element of an
:class:`_types.Indexable` typed column. In simple cases, it can be
treated as a :class:`_schema.Column` - mapped attribute.

Synopsis
========

Given ``Person`` as a model with a primary key and JSON data field.
While this field may have any number of elements encoded within it,
we would like to refer to the element called ``name`` individually
as a dedicated attribute which behaves like a standalone column::

    from sqlalchemy import Column, JSON, Integer
    from sqlalchemy.ext.declarative import declarative_base
    from sqlalchemy.ext.indexable import index_property

    Base = declarative_base()


    class Person(Base):
        __tablename__ = "person"

        id = Column(Integer, primary_key=True)
        data = Column(JSON)

        name = index_property("data", "name")

Above, the ``name`` attribute now behaves like a mapped column.   We
can compose a new ``Person`` and set the value of ``name``::

    >>> person = Person(name="Alchemist")

The value is now accessible::

    >>> person.name
    'Alchemist'

Behind the scenes, the JSON field was initialized to a new blank dictionary
and the field was set::

    >>> person.data
    {'name': 'Alchemist'}

The field is mutable in place::

    >>> person.name = "Renamed"
    >>> person.name
    'Renamed'
    >>> person.data
    {'name': 'Renamed'}

When using :class:`.index_property`, the change that we make to the indexable
structure is also automatically tracked as history; we no longer need
to use :class:`~.mutable.MutableDict` in order to track this change
for the unit of work.

Deletions work normally as well::

    >>> del person.name
    >>> person.data
    {}

Above, deletion of ``person.name`` deletes the value from the dictionary,
but not the dictionary itself.

A missing key will produce ``AttributeError``::

    >>> person = Person()
    >>> person.name
    AttributeError: 'name'

Unless you set a default value::

    >>> class Person(Base):
    ...     __tablename__ = "person"
    ...
    ...     id = Column(Integer, primary_key=True)
    ...     data = Column(JSON)
    ...
    ...     name = index_property("data", "name", default=None)  # See default

    >>> person = Person()
    >>> print(person.name)
    None


The attributes are also accessible at the class level.
Below, we illustrate ``Person.name`` used to generate
an indexed SQL criteria::

    >>> from sqlalchemy.orm import Session
    >>> session = Session()
    >>> query = session.query(Person).filter(Person.name == "Alchemist")

The above query is equivalent to::

    >>> query = session.query(Person).filter(Person.data["name"] == "Alchemist")

Multiple :class:`.index_property` objects can be chained to produce
multiple levels of indexing::

    from sqlalchemy import Column, JSON, Integer
    from sqlalchemy.ext.declarative import declarative_base
    from sqlalchemy.ext.indexable import index_property

    Base = declarative_base()


    class Person(Base):
        __tablename__ = "person"

        id = Column(Integer, primary_key=True)
        data = Column(JSON)

        birthday = index_property("data", "birthday")
        year = index_property("birthday", "year")
        month = index_property("birthday", "month")
        day = index_property("birthday", "day")

Above, a query such as::

    q = session.query(Person).filter(Person.year == "1980")

On a PostgreSQL backend, the above query will render as:

.. sourcecode:: sql

    SELECT person.id, person.data
    FROM person
    WHERE person.data -> %(data_1)s -> %(param_1)s = %(param_2)s

Default Values
==============

:class:`.index_property` includes special behaviors for when the indexed
data structure does not exist, and a set operation is called:

* For an :class:`.index_property` that is given an integer index value,
  the default data structure will be a Python list of ``None`` values,
  at least as long as the index value; the value is then set at its
  place in the list.  This means for an index value of zero, the list
  will be initialized to ``[None]`` before setting the given value,
  and for an index value of five, the list will be initialized to
  ``[None, None, None, None, None]`` before setting the fifth element
  to the given value.   Note that an existing list is **not** extended
  in place to receive a value.

* for an :class:`.index_property` that is given any other kind of index
  value (e.g. strings usually), a Python dictionary is used as the
  default data structure.

* The default data structure can be set to any Python callable using the
  :paramref:`.index_property.datatype` parameter, overriding the previous
  rules.


Subclassing
===========

:class:`.index_property` can be subclassed, in particular for the common
use case of providing coercion of values or SQL expressions as they are
accessed.  Below is a common recipe for use with a PostgreSQL JSON type,
where we want to also include automatic casting plus ``astext()``::

    class pg_json_property(index_property):
        def __init__(self, attr_name, index, cast_type):
            super(pg_json_property, self).__init__(attr_name, index)
            self.cast_type = cast_type

        def expr(self, model):
            expr = super(pg_json_property, self).expr(model)
            return expr.astext.cast(self.cast_type)

The above subclass can be used with the PostgreSQL-specific
version of :class:`_postgresql.JSON`::

    from sqlalchemy import Column, Integer
    from sqlalchemy.ext.declarative import declarative_base
    from sqlalchemy.dialects.postgresql import JSON

    Base = declarative_base()


    class Person(Base):
        __tablename__ = "person"

        id = Column(Integer, primary_key=True)
        data = Column(JSON)

        age = pg_json_property("data", "age", Integer)

The ``age`` attribute at the instance level works as before; however
when rendering SQL, PostgreSQL's ``->>`` operator will be used
for indexed access, instead of the usual index operator of ``->``::

    >>> query = session.query(Person).filter(Person.age < 20)

The above query will render:

.. sourcecode:: sql

    SELECT person.id, person.data
    FROM person
    WHERE CAST(person.data ->> %(data_1)s AS INTEGER) < %(param_1)s

é    )Úannotations)ÚAny)ÚCallable)Úcast)ÚOptional)ÚTYPE_CHECKING)ÚTypeVar)ÚUnioné   )Úinspect)Úhybrid_property)Úflag_modified)ÚSQLColumnExpression)Ú_HasClauseElementÚindex_propertyÚ_Tc                  ó’   ‡ — e Zd ZdZ ee e«       «      Zedddf	 	 	 	 	 	 	 	 	 	 	 d
ˆ fd„Zddd„Z	dd„Z
dd„Zdd„Z	 	 	 	 dd	„Zˆ xZS )r   zÌA property generator. The generated property describes an object
    attribute that corresponds to an :class:`_types.Indexable`
    column.

    .. seealso::

        :mod:`sqlalchemy.ext.indexable`

    NTc                ó’  •‡— |r;t         ‰| �  | j                  | j                  | j                  | j
                  «       n&t         ‰| �  | j                  dd| j
                  «       || _        ‰| _        || _        t        ‰t        «      }|xr |}|�|| _        || _        y|rˆfd„| _        || _        yt        | _        || _        y)a}  Create a new :class:`.index_property`.

        :param attr_name:
            An attribute name of an `Indexable` typed column, or other
            attribute that returns an indexable structure.
        :param index:
            The index to be used for getting and setting this value.  This
            should be the Python-side index value for integers.
        :param default:
            A value which will be returned instead of `AttributeError`
            when there is not a value at given index.
        :param datatype: default datatype to use when the field is empty.
            By default, this is derived from the type of index used; a
            Python list for an integer index, or a Python dictionary for
            any other style of index.   For a list, the list will be
            initialized to a list of None values that is at least
            ``index`` elements long.
        :param mutable: if False, writes and deletes to the attribute will
            be disallowed.
        :param onebased: assume the SQL representation of this value is
            one-based; that is, the first index in SQL is 1, not zero.
        Nc                 óF   •— t        ‰dz   «      D � cg c]  } d ‘Œ c} S c c} w ©Né   )Úrange)ÚxÚindexs    €úO/home/htdocs/ttos/venv/lib/python3.12/site-packages/sqlalchemy/ext/indexable.pyú<lambda>z)index_property.__init__.<locals>.<lambda>6  s   ø€ ´u¸UÀQ¹YÓ7GÖ(H°!ªÒ(H€ ùÒ(Hs   ’	)ÚsuperÚ__init__ÚfgetÚfsetÚfdelÚexprÚ	attr_namer   ÚdefaultÚ
isinstanceÚintÚdatatypeÚdictÚonebased)	Úselfr#   r   r$   r'   Úmutabler)   Ú
is_numericÚ	__class__s	     `     €r   r   zindex_property.__init__  s­   ù€ ñ@ Ü‰GÑ˜TŸY™Y¨¯	©	°4·9±9¸d¿i¹iÕHä‰GÑ˜TŸY™Y¨¨d°D·I±IÔ>Ø"ˆŒØˆŒ
ØˆŒÜ ¤sÓ+ˆ
ØÒ* (ˆàÐØ$ˆDŒMð !ˆ�ñ	 Û H�”ð !ˆ�ô !%�”Ø ˆ�ó    c                óx   — | j                   | j                  k(  rt        | j                  «      |‚| j                   S ©N)r$   Ú_NO_DEFAULT_ARGUMENTÚAttributeErrorr#   )r*   Úerrs     r   Ú_fget_defaultzindex_property._fget_default;  s/   € Ø�<‰<˜4×4Ñ4Ò4Ü  §¡Ó0°cÐ9à—<‘<Ðr.   c                óÔ   — | j                   }t        ||«      }|€| j                  «       S 	 || j                     }|S # t        t
        f$ r}| j                  |«      cY d }~S d }~ww xY wr0   )r#   Úgetattrr4   r   ÚKeyErrorÚ
IndexError)r*   Ú_index_property__instancer#   Úcolumn_valueÚvaluer3   s         r   r   zindex_property.fgetA  sn   € Ø—N‘Nˆ	Ü˜z¨9Ó5ˆØÐØ×%Ñ%Ó'Ð'ð	Ø  §¡Ñ,ˆEð ˆLøô œ*Ð%ò 	+Ø×%Ñ% cÓ*Õ*ûð	+ús   ¬= ½A'ÁA"ÁA'Á"A'c                ó  — | j                   }t        ||d «      }|€| j                  «       }t        |||«       ||| j                  <   t        |||«       |t        |«      j                  j                  v rt        ||«       y y r0   )	r#   r6   r'   Úsetattrr   r   ÚmapperÚattrsr   )r*   Úinstancer;   r#   r:   s        r   r    zindex_property.fsetM  sx   € Ø—N‘Nˆ	Ü˜x¨°DÓ9ˆØÐØŸ=™=›?ˆLÜ�H˜i¨Ô6Ø#(ˆ�T—Z‘ZÑ Ü�˜) \Ô2Øœ Ó)×0Ñ0×6Ñ6Ñ6Ü˜( IÕ.ð 7r.   c                óþ   — | j                   }t        ||«      }|€t        | j                   «      ‚	 || j                  = t	        |||«       t        ||«       y # t        $ r}t        | j                   «      |‚d }~ww xY wr0   )r#   r6   r2   r   r=   r   r7   )r*   r@   r#   r:   r3   s        r   r!   zindex_property.fdelX  sx   € Ø—N‘Nˆ	Ü˜x¨Ó3ˆØÐÜ  §¡Ó0Ð0ð	/Ø˜TŸZ™ZÐ(ô �H˜i¨Ô6Ü˜( IÕ.øô	 ò 	:Ü  §¡Ó0°cÐ9ûð	:ús   ±A Á	A<Á!A7Á7A<c                ór   — t        || j                  «      }| j                  }| j                  r|dz  }||   S r   )r6   r#   r   r)   )r*   ÚmodelÚcolumnr   s       r   r"   zindex_property.expre  s7   € ô ˜ §¡Ó/ˆØ—
‘
ˆØ�=Š=Ø�Q‰JˆEØ�e‰}Ðr.   )r#   Ústrr   zUnion[int, str]r$   r   r'   zOptional[Callable[[], Any]]r+   Úboolr)   rF   r0   )r3   zOptional[BaseException]Úreturnr   )r9   r   rG   r   )r@   r   r;   r   rG   ÚNone)r@   r   rG   rH   )rC   r   rG   z5Union[_HasClauseElement[_T], SQLColumnExpression[_T]])Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   Úobjectr1   r   r4   r   r    r!   r"   Ú__classcell__)r-   s   @r   r   r   û   s�   ø„ ññ   ¡F£HÓ-Ðð +Ø04ØØð1!àð1!ð ð1!ð ð	1!ð
 .ð1!ð ð1!ð õ1!ôf ó
ó	/ó/ðØðà	>÷r.   N)rL   Ú
__future__r   Útypingr   r   r   r   r   r	   r
   Ú r   Ú
ext.hybridr   Úorm.attributesr   Úsqlr   Úsql._typingr   Ú__all__r   r   © r.   r   ú<module>rX      s^   ðñYõv #å Ý Ý Ý Ý  Ý Ý å Ý (Ý *áÝ)Ý/ð Ð
€áˆTƒ]€ôq�_ RÑ(õ qr.   