+
    i^/                        R t ^ RIHt ^ RIHt ^ RIHt ^ RIHt ^ RIHt ^ RIHt ^ RIH	t	 ^ RIH
t
 ^R	IHt ^R
IHt ^RIHt ]'       d   ^RIHt ^RIHt R.t]	! R4      t ! R R]],          4      tR# )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                     a  ] tR t^tRt]! ]]! 4       4      t]RRR3R V 3R lllt	RR R llt
R R	 ltR
 R ltR R ltR R ltRtV ;t# )r   zA property generator. The generated property describes an object
attribute that corresponds to an :class:`_types.Indexable`
column.

.. seealso::

    :mod:`sqlalchemy.ext.indexable`

NTc               0    V ^8  d   QhRRRRRRRRR	R
RR
/# )   	attr_namestrindexzUnion[int, str]defaultr   datatypezOptional[Callable[[], Any]]mutableboolonebased )formats   "rC:\Users\petid\OneDrive\Desktop\Maestro\MAESTRO\maestro-backend\venv\Lib\site-packages\sqlalchemy/ext/indexable.py__annotate__index_property.__annotate__  sF     1! 1!1! 1! 	1!
 .1! 1! 1!    c                  <a V'       d<   \         SV `  V P                  V P                  V P                  V P
                  4       M&\         SV `  V P                  RRV P
                  4       Wn        SV n        W0n        \        S\        4      pT;'       d    TpVe   W@n        MV'       d   V3R lV n        M\        V n        W`n        R# )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                 R   < \        S^,           4       U u. uF  p RNK  	  up # u up i )   N)range)xr   s    r   <lambda>)index_property.__init__.<locals>.<lambda>6  s"    uUQY7G(H7G!7G(H(Hs   $)super__init__fgetfsetfdelexprr   r   r   
isinstanceintr   dictr   )	selfr   r   r   r   r   r   
is_numeric	__class__s	   &&f&&&& r   r*   index_property.__init__  s    @ GTYY		499diiHGTYYdDII>"
s+
**($M H $ r!   c                    V ^8  d   QhRRRR/# )r   errzOptional[BaseException]returnr   r   )r   s   "r   r   r    ;  s        !8  B  r!   c                	|    V P                   V P                  8X  d   \        V P                  4      VhV P                   # N)r   _NO_DEFAULT_ARGUMENTAttributeErrorr   )r2   r7   s   &&r   _fget_defaultindex_property._fget_default;  s/    <<4444 0c9<<r!   c                    V ^8  d   QhRRRR/# )r   _index_property__instancer   r8   r   r   )r   s   "r   r   r    A  s     
 
s 
r 
r!   c                	    V P                   p\        W4      pVf   V P                  4       #  W0P                  ,          pV#   \        \
        3 d   pT P                  T4      u R p?# R p?ii ; ir:   )r   getattrr=   r   KeyError
IndexError)r2   r@   r   column_valuevaluer7   s   &&    r   r+   index_property.fgetA  sj    NN	z5%%''	 ,E L *% 	+%%c**	+s   A A-A("A-(A-c               $    V ^8  d   QhRRRRRR/# )r   instancer   rF   r   r8   Noner   )r   s   "r   r   r    M  s!     	/ 	/S 	/ 	/ 	/r!   c                	   V P                   p\        WR 4      pVf   V P                  4       p\        WV4       W$V P                  &   \        WV4       V\        V4      P                  P                  9   d   \        W4       R # R # r:   )	r   rB   r   setattrr   r
   mapperattrsr   )r2   rI   rF   r   rE   s   &&&  r   r,   index_property.fsetM  sn    NN	xD9==?LH6#(TZZ \2)00666(. 7r!   c                    V ^8  d   QhRRRR/# )r   rI   r   r8   rJ   r   )r   s   "r   r   r    X  s     / /S /T /r!   c                	    V P                   p\        W4      pVf   \        V P                   4      h W0P                   \	        WV4       \        W4       R #   \         d   p\        T P                   4      ThR p?ii ; ir:   )r   rB   r<   r   rL   r   rC   )r2   rI   r   rE   r7   s   &&   r   r-   index_property.fdelX  sp    NN	x3 00	/ZZ( H6(.	  	: 0c9	:s   A A="A88A=c                    V ^8  d   QhRRRR/# )r   modelr   r8   z5Union[_HasClauseElement[_T], SQLColumnExpression[_T]]r   )r   s   "r   r   r    e  s      	>r!   c                	    \        WP                  4      pV P                  pV P                  '       d
   V^,          pW#,          # )r$   )rB   r   r   r   )r2   rT   columnr   s   &&  r   r.   index_property.expre  s5     /

===QJE}r!   )r   r   r   r   r   r:   )__name__
__module____qualname____firstlineno____doc__r   r   objectr;   r*   r=   r+   r,   r-   r.   __static_attributes____classcell__)r4   s   @r   r   r      sP      FH- +041! 1!f 
	// r!   N)r\   
__future__r   typingr   r   r   r   r   r   r	    r
   
ext.hybridr   orm.attributesr   sqlr   sql._typingr   __all__r   r   r   r!   r   <module>rh      s^   Yv #          ( *)/ 
T]q_R( qr!   