B
    \'                 @   s   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 yddl	m
Z W n ek
rd   d	ZY nX ejfd
dZejfddZG dd dejZejdddZejdddZejdddZG dd dejZeeej< eed< d	S )   )colspecs)ischema_names   )types)
expression)	operators    )UUIDNc             C   s   | | |S )zA synonym for the :meth:`.ARRAY.Comparator.any` method.

    This method is legacy and is here for backwards-compatibility.

    .. seealso::

        :func:`.expression.any_`

    )any)otherarrexproperator r   Clib/python3.7/site-packages/sqlalchemy/dialects/postgresql/array.pyAny   s    r   c             C   s   | | |S )zA synonym for the :meth:`.ARRAY.Comparator.all` method.

    This method is legacy and is here for backwards-compatibility.

    .. seealso::

        :func:`.expression.all_`

    )all)r   r   r   r   r   r   All#   s    r   c                   s8   e Zd ZdZd Z fddZd
ddZddd	Z  ZS )arrayab  A PostgreSQL ARRAY literal.

    This is used to produce ARRAY literals in SQL expressions, e.g.::

        from sqlalchemy.dialects.postgresql import array
        from sqlalchemy.dialects import postgresql
        from sqlalchemy import select, func

        stmt = select([
                        array([1,2]) + array([3,4,5])
                    ])

        print stmt.compile(dialect=postgresql.dialect())

    Produces the SQL::

        SELECT ARRAY[%(param_1)s, %(param_2)s] ||
            ARRAY[%(param_3)s, %(param_4)s, %(param_5)s]) AS anon_1

    An instance of :class:`.array` will always have the datatype
    :class:`.ARRAY`.  The "inner" type of the array is inferred from
    the values present, unless the ``type_`` keyword argument is passed::

        array(['foo', 'bar'], type_=CHAR)

    .. seealso::

        :class:`.postgresql.ARRAY`

    c                s"   t t| j|| t| j| _d S )N)superr   __init__ARRAYtype)selfZclauseskw)	__class__r   r   r   T   s    zarray.__init__FNc                sR   |s t jkr4t|tsttjd | jddS t fdd|D S d S )NT)Z_compared_to_operatortype_Z_compared_to_typeuniquec                s   g | ]}j  |d dqS )T)_assume_scalarr   )_bind_param).0o)r   r   r   r   r   
<listcomp>i   s   z%array._bind_param.<locals>.<listcomp>)	r   getitem
isinstanceintAssertionErrorr   ZBindParameterr   r   )r   r   objr   r   r   )r   r   r   r   r   X   s    zarray._bind_paramc             C   s&   |t jt jt jfkrt| S | S d S )N)r   Zany_opZall_opr"   r   ZGrouping)r   Zagainstr   r   r   
self_groupp   s    
zarray.self_group)FN)N)	__name__
__module____qualname____doc__Z__visit_name__r   r   r'   __classcell__r   r   )r   r   r   1   s
   
r   z@>   )Z
precedencez<@z&&c               @   sj   e Zd ZdZG dd dejjZeZdddZe	dd	 Z
e	d
d Zdd Zdd Zdd Zdd ZdS )r   a  PostgreSQL ARRAY type.

    .. versionchanged:: 1.1 The :class:`.postgresql.ARRAY` type is now
       a subclass of the core :class:`.types.ARRAY` type.

    The :class:`.postgresql.ARRAY` type is constructed in the same way
    as the core :class:`.types.ARRAY` type; a member type is required, and a
    number of dimensions is recommended if the type is to be used for more
    than one dimension::

        from sqlalchemy.dialects import postgresql

        mytable = Table("mytable", metadata,
                Column("data", postgresql.ARRAY(Integer, dimensions=2))
            )

    The :class:`.postgresql.ARRAY` type provides all operations defined on the
    core :class:`.types.ARRAY` type, including support for "dimensions",
    indexed access, and simple matching such as
    :meth:`.types.ARRAY.Comparator.any` and
    :meth:`.types.ARRAY.Comparator.all`.  :class:`.postgresql.ARRAY` class also
    provides PostgreSQL-specific methods for containment operations, including
    :meth:`.postgresql.ARRAY.Comparator.contains`
    :meth:`.postgresql.ARRAY.Comparator.contained_by`, and
    :meth:`.postgresql.ARRAY.Comparator.overlap`, e.g.::

        mytable.c.data.contains([1, 2])

    The :class:`.postgresql.ARRAY` type may not be supported on all
    PostgreSQL DBAPIs; it is currently known to work on psycopg2 only.

    Additionally, the :class:`.postgresql.ARRAY` type does not work directly in
    conjunction with the :class:`.ENUM` type.  For a workaround, see the
    special type at :ref:`postgresql_array_of_enum`.

    .. seealso::

        :class:`.types.ARRAY` - base array type

        :class:`.postgresql.array` - produces a literal array value.

    c               @   s(   e Zd ZdZdd Zdd Zdd ZdS )	zARRAY.Comparatora$  Define comparison operations for :class:`.ARRAY`.

        Note that these operations are in addition to those provided
        by the base :class:`.types.ARRAY.Comparator` class, including
        :meth:`.types.ARRAY.Comparator.any` and
        :meth:`.types.ARRAY.Comparator.all`.

        c             K   s   | j t|tjdS )zBoolean expression.  Test if elements are a superset of the
            elements of the argument array expression.
            )result_type)operateCONTAINSsqltypesBoolean)r   r   kwargsr   r   r   contains   s    zARRAY.Comparator.containsc             C   s   | j t|tjdS )zBoolean expression.  Test if elements are a proper subset of the
            elements of the argument array expression.
            )r.   )r/   CONTAINED_BYr1   r2   )r   r   r   r   r   contained_by   s    zARRAY.Comparator.contained_byc             C   s   | j t|tjdS )zuBoolean expression.  Test if array has elements in common with
            an argument array expression.
            )r.   )r/   OVERLAPr1   r2   )r   r   r   r   r   overlap   s    zARRAY.Comparator.overlapN)r(   r)   r*   r+   r4   r6   r8   r   r   r   r   
Comparator   s   	r9   FNc             C   s>   t |trtdt |tr"| }|| _|| _|| _|| _dS )aP  Construct an ARRAY.

        E.g.::

          Column('myarray', ARRAY(Integer))

        Arguments are:

        :param item_type: The data type of items of this array. Note that
          dimensionality is irrelevant here, so multi-dimensional arrays like
          ``INTEGER[][]``, are constructed as ``ARRAY(Integer)``, not as
          ``ARRAY(ARRAY(Integer))`` or such.

        :param as_tuple=False: Specify whether return results
          should be converted to tuples from lists. DBAPIs such
          as psycopg2 return lists by default. When tuples are
          returned, the results are hashable.

        :param dimensions: if non-None, the ARRAY will assume a fixed
         number of dimensions.  This will cause the DDL emitted for this
         ARRAY to include the exact number of bracket clauses ``[]``,
         and will also optimize the performance of the type overall.
         Note that PG arrays are always implicitly "non-dimensioned",
         meaning they can store any number of dimensions no matter how
         they were declared.

        :param zero_indexes=False: when True, index values will be converted
         between Python zero-based and PostgreSQL one-based indexes, e.g.
         a value of one will be added to all index values before passing
         to the database.

         .. versionadded:: 0.9.5


        zUDo not nest ARRAY types; ARRAY(basetype) handles multi-dimensional arrays of basetypeN)r#   r   
ValueErrorr   	item_typeas_tuple
dimensionszero_indexes)r   r;   r<   r=   r>   r   r   r   r      s    &

zARRAY.__init__c             C   s   | j S )N)r<   )r   r   r   r   hashable   s    zARRAY.hashablec             C   s   t S )N)list)r   r   r   r   python_type  s    zARRAY.python_typec             C   s   ||kS )Nr   )r   xyr   r   r   compare_values  s    zARRAY.compare_valuesc                sz   d krt |}dks6d krZ|r6t|d t tfsZrP fdd|D S  |S n  fdd|D S d S )Nr   r   c             3   s   | ]} |V  qd S )Nr   )r   rB   )itemprocr   r   	<genexpr>  s    z$ARRAY._proc_array.<locals>.<genexpr>c             3   s.   | ]&} |d k	rd nd  V  qd S )Nr   )_proc_array)r   rB   )
collectiondimrE   r   r   r   rF     s   )r@   r#   tuple)r   ZarrrE   rI   rH   r   )rH   rI   rE   r   r   rG   	  s    
zARRAY._proc_arrayc                s$   j ||  fdd}|S )Nc                s"   | d kr| S  |  jtS d S )N)rG   r=   r@   )value)	item_procr   r   r   process+  s    z%ARRAY.bind_processor.<locals>.process)r;   dialect_implbind_processor)r   dialectrM   r   )rL   r   r   rO   &  s    zARRAY.bind_processorc                s&   j |||  fdd}|S )Nc                s,   | d kr| S  |  jjr"tntS d S )N)rG   r=   r<   rJ   r@   )rK   )rL   r   r   r   rM   :  s    z'ARRAY.result_processor.<locals>.process)r;   rN   result_processor)r   rP   ZcoltyperM   r   )rL   r   r   rQ   5  s    zARRAY.result_processor)FNF)r(   r)   r*   r+   r1   r   r9   Zcomparator_factoryr   propertyr?   rA   rD   rG   rO   rQ   r   r   r   r   r   ~   s   +
1r   Z_array)baser   r    r   r1   Zsqlr   r   Zuuidr	   Z_python_UUIDImportErroreqr   r   ZTupler   Z	custom_opr0   r5   r7   r   r   r   r   r   <module>   s$   
F K
