ó
    Ñ]j�4  ã                  óú   • S SK Jr  S SKrS SKJr  S SKJr  S SKJr  S SKJr  SSKJr  SS	KJ	r	  SS
KJ
r
  SSKJr  SSKJr  SSKJr  \R                  (       a  SSKJr  SSKJr   " S S\R(                  \	   5      rg)é    )ÚannotationsN)ÚAny)ÚOptional)ÚType)ÚUnioné   )ÚConnectionPoolEntry)ÚPool)ÚPoolProxiedConnection)ÚPoolResetStateé   )Úevent)Úutil)ÚEngine)ÚDBAPIConnectionc                  óž  • \ rS rSrSrSr\r\R                  " S5      \
      SS j5       5       r\
      SS j5       r      SS	 jr      SS
 jr        SS jr      SS jr\R$                  " SSS/S 5              SS j5       r        SS jr        SS jr      SS jr      SS jrSS jrSrg)Ú
PoolEventsé   az  Available events for :class:`_pool.Pool`.

The methods here define the name of an event as well
as the names of members that are passed to listener
functions.

When using an :class:`.Engine` object created via :func:`_sa.create_engine`
(or indirectly via :func:`.create_async_engine`), :class:`.PoolEvents`
listeners are expected to be registered in terms of the :class:`.Engine`,
which will direct the listeners to the :class:`.Pool` contained within::

    from sqlalchemy import create_engine
    from sqlalchemy import event

    engine = create_engine("postgresql+psycopg2://scott:tiger@localhost/test")


    @event.listens_for(engine, "checkout")
    def my_on_checkout(dbapi_conn, connection_rec, connection_proxy):
        "handle an on checkout event"

:class:`.PoolEvents` may also be registered with the :class:`_pool.Pool`
class, with the :class:`.Engine` class, as well as with instances of
:class:`_pool.Pool`.

.. tip::

    Registering :class:`.PoolEvents` with the :class:`.Engine`, if present,
    is recommended since the :meth:`.Engine.dispose` method will carry
    along event listeners from the old pool to the new pool.

ÚSomeEngineOrPoolzsqlalchemy.enginec                ó¬  • [         R                  (       d$  [        R                  R                  R
                  n[        U[        5      (       a0  [        UW5      (       a  [        $ [        U[        5      (       d   eU$ [        UW5      (       a  UR                  $ [        U[        5      (       a  U$ [        US5      (       a  UR                  5         g g )NÚ_no_async_engine_events)ÚtypingÚTYPE_CHECKINGr   Ú	preloadedÚenginer   Ú
isinstanceÚtypeÚ
issubclassr
   ÚpoolÚhasattrr   )ÚclsÚtargetÚ
identifierr   s       ÚS/home/mande/repo/quber/.venv/lib/python3.13/site-packages/sqlalchemy/pool/events.pyÚ_accept_withÚPoolEvents._accept_with@   sŸ   € ô ×#×#Ü—^‘^×*Ñ*×1Ñ1ˆFä�fœd×#Ñ#Ü˜& &×)Ñ)Ü�ä! &¬$×/Ñ/Ð/Ð/Ø�Ü˜ ×'Ñ'Ø—;‘;ÐÜ˜¤×%Ñ%ØˆMÜ�VÐ6×7Ñ7Ø×*Ñ*Õ,àó    c                óx   • UR                   nUR                  SUR                  5        UR                  " S0 UD6  g )NÚasyncio© )Údispatch_targetÚ
setdefaultÚ_is_asyncioÚbase_listen)r!   Ú	event_keyÚkwr"   s       r$   Ú_listenÚPoolEvents._listenY   s4   € ð ×*Ñ*ˆà
�‰�i ×!3Ñ!3Ô4à×ÒÑ# Ó#r'   Údbapi_connectionÚconnection_recordc                ó   • g)a×  Called at the moment a particular DBAPI connection is first
created for a given :class:`_pool.Pool`.

This event allows one to capture the point directly after which
the DBAPI module-level ``.connect()`` method has been used in order
to produce a new DBAPI connection.

:param dbapi_connection: a DBAPI connection.
 The :attr:`.ConnectionPoolEntry.dbapi_connection` attribute.

:param connection_record: the :class:`.ConnectionPoolEntry` managing
 the DBAPI connection.

Nr*   ©Úselfr3   r4   s      r$   ÚconnectÚPoolEvents.connecte   ó   � r'   c                ó   • g)a™  Called exactly once for the first time a DBAPI connection is
checked out from a particular :class:`_pool.Pool`.

The rationale for :meth:`_events.PoolEvents.first_connect`
is to determine
information about a particular series of database connections based
on the settings used for all connections.  Since a particular
:class:`_pool.Pool`
refers to a single "creator" function (which in terms
of a :class:`_engine.Engine`
refers to the URL and connection options used),
it is typically valid to make observations about a single connection
that can be safely assumed to be valid about all subsequent
connections, such as the database version, the server and client
encoding settings, collation settings, and many others.

:param dbapi_connection: a DBAPI connection.
 The :attr:`.ConnectionPoolEntry.dbapi_connection` attribute.

:param connection_record: the :class:`.ConnectionPoolEntry` managing
 the DBAPI connection.

Nr*   r6   s      r$   Úfirst_connectÚPoolEvents.first_connecty   r:   r'   c                ó   • g)a  Called when a connection is retrieved from the Pool.

:param dbapi_connection: a DBAPI connection.
 The :attr:`.ConnectionPoolEntry.dbapi_connection` attribute.

:param connection_record: the :class:`.ConnectionPoolEntry` managing
 the DBAPI connection.

:param connection_proxy: the :class:`.PoolProxiedConnection` object
  which will proxy the public interface of the DBAPI connection for the
  lifespan of the checkout.

If you raise a :class:`~sqlalchemy.exc.DisconnectionError`, the current
connection will be disposed and a fresh connection retrieved.
Processing of all checkout listeners will abort and restart
using the new connection.

.. seealso:: :meth:`_events.ConnectionEvents.engine_connect`
   - a similar event
   which occurs upon creation of a new :class:`_engine.Connection`.

Nr*   )r7   r3   r4   Úconnection_proxys       r$   ÚcheckoutÚPoolEvents.checkout–   r:   r'   c                ó   • g)a¶  Called when a connection returns to the pool.

Note that the connection may be closed, and may be None if the
connection has been invalidated.  ``checkin`` will not be called
for detached connections.  (They do not return to the pool.)

:param dbapi_connection: a DBAPI connection.
 The :attr:`.ConnectionPoolEntry.dbapi_connection` attribute.

:param connection_record: the :class:`.ConnectionPoolEntry` managing
 the DBAPI connection.

Nr*   r6   s      r$   ÚcheckinÚPoolEvents.checkin³   r:   r'   z2.0c                ó
   • U U4$ )Nr*   )r3   r4   Úreset_states      r$   Ú<lambda>ÚPoolEvents.<lambda>É   s   € ØØñB
r'   c                ó   • g)a‡  Called before the "reset" action occurs for a pooled connection.

This event represents
when the ``rollback()`` method is called on the DBAPI connection
before it is returned to the pool or discarded.
A custom "reset" strategy may be implemented using this event hook,
which may also be combined with disabling the default "reset"
behavior using the :paramref:`_pool.Pool.reset_on_return` parameter.

The primary difference between the :meth:`_events.PoolEvents.reset` and
:meth:`_events.PoolEvents.checkin` events are that
:meth:`_events.PoolEvents.reset` is called not just for pooled
connections that are being returned to the pool, but also for
connections that were detached using the
:meth:`_engine.Connection.detach` method as well as asyncio connections
that are being discarded due to garbage collection taking place on
connections before the connection was checked in.

Note that the event **is not** invoked for connections that were
invalidated using :meth:`_engine.Connection.invalidate`.    These
events may be intercepted using the :meth:`.PoolEvents.soft_invalidate`
and :meth:`.PoolEvents.invalidate` event hooks, and all "connection
close" events may be intercepted using :meth:`.PoolEvents.close`.

The :meth:`_events.PoolEvents.reset` event is usually followed by the
:meth:`_events.PoolEvents.checkin` event, except in those
cases where the connection is discarded immediately after reset.

:param dbapi_connection: a DBAPI connection.
 The :attr:`.ConnectionPoolEntry.dbapi_connection` attribute.

:param connection_record: the :class:`.ConnectionPoolEntry` managing
 the DBAPI connection.

:param reset_state: :class:`.PoolResetState` instance which provides
 information about the circumstances under which the connection
 is being reset.

 .. versionadded:: 2.0

.. seealso::

    :ref:`pool_reset_on_return`

    :meth:`_events.ConnectionEvents.rollback`

    :meth:`_events.ConnectionEvents.commit`

Nr*   )r7   r3   r4   rF   s       r$   ÚresetÚPoolEvents.resetÆ   r:   r'   c                ó   • g)a±  Called when a DBAPI connection is to be "invalidated".

This event is called any time the
:meth:`.ConnectionPoolEntry.invalidate` method is invoked, either from
API usage or via "auto-invalidation", without the ``soft`` flag.

The event occurs before a final attempt to call ``.close()`` on the
connection occurs.

:param dbapi_connection: a DBAPI connection.
 The :attr:`.ConnectionPoolEntry.dbapi_connection` attribute.

:param connection_record: the :class:`.ConnectionPoolEntry` managing
 the DBAPI connection.

:param exception: the exception object corresponding to the reason
 for this invalidation, if any.  May be ``None``.

.. seealso::

    :ref:`pool_connection_invalidation`

Nr*   ©r7   r3   r4   Ú	exceptions       r$   Ú
invalidateÚPoolEvents.invalidate  r:   r'   c                ó   • g)aÞ  Called when a DBAPI connection is to be "soft invalidated".

This event is called any time the
:meth:`.ConnectionPoolEntry.invalidate`
method is invoked with the ``soft`` flag.

Soft invalidation refers to when the connection record that tracks
this connection will force a reconnect after the current connection
is checked in.   It does not actively close the dbapi_connection
at the point at which it is called.

:param dbapi_connection: a DBAPI connection.
 The :attr:`.ConnectionPoolEntry.dbapi_connection` attribute.

:param connection_record: the :class:`.ConnectionPoolEntry` managing
 the DBAPI connection.

:param exception: the exception object corresponding to the reason
 for this invalidation, if any.  May be ``None``.

Nr*   rM   s       r$   Úsoft_invalidateÚPoolEvents.soft_invalidate$  r:   r'   c                ó   • g)am  Called when a DBAPI connection is closed.

The event is emitted before the close occurs.

The close of a connection can fail; typically this is because
the connection is already closed.  If the close operation fails,
the connection is discarded.

The :meth:`.close` event corresponds to a connection that's still
associated with the pool. To intercept close events for detached
connections use :meth:`.close_detached`.

:param dbapi_connection: a DBAPI connection.
 The :attr:`.ConnectionPoolEntry.dbapi_connection` attribute.

:param connection_record: the :class:`.ConnectionPoolEntry` managing
 the DBAPI connection.

Nr*   r6   s      r$   ÚcloseÚPoolEvents.close@  r:   r'   c                ó   • g)a~  Called when a DBAPI connection is "detached" from a pool.

This event is emitted after the detach occurs.  The connection
is no longer associated with the given connection record.

:param dbapi_connection: a DBAPI connection.
 The :attr:`.ConnectionPoolEntry.dbapi_connection` attribute.

:param connection_record: the :class:`.ConnectionPoolEntry` managing
 the DBAPI connection.

Nr*   r6   s      r$   ÚdetachÚPoolEvents.detachY  r:   r'   c                ó   • g)al  Called when a detached DBAPI connection is closed.

The event is emitted before the close occurs.

The close of a connection can fail; typically this is because
the connection is already closed.  If the close operation fails,
the connection is discarded.

:param dbapi_connection: a DBAPI connection.
 The :attr:`.ConnectionPoolEntry.dbapi_connection` attribute.

Nr*   )r7   r3   s     r$   Úclose_detachedÚPoolEvents.close_detachedk  r:   r'   r*   N)r"   z-Union[Pool, Type[Pool], Engine, Type[Engine]]r#   ÚstrÚreturnz!Optional[Union[Pool, Type[Pool]]])r/   zevent._EventKey[Pool]r0   r   r^   ÚNone)r3   r   r4   r	   r^   r_   )r3   r   r4   r	   r?   r   r^   r_   )r3   zOptional[DBAPIConnection]r4   r	   r^   r_   )r3   r   r4   r	   rF   r   r^   r_   )r3   r   r4   r	   rN   zOptional[BaseException]r^   r_   )r3   r   r^   r_   )Ú__name__Ú
__module__Ú__qualname__Ú__firstlineno__Ú__doc__Ú_target_class_docr
   Ú_dispatch_targetr   Úpreload_moduleÚclassmethodr%   r1   r8   r<   r@   rC   r   Ú_legacy_signaturerJ   rO   rR   rU   rX   r[   Ú__static_attributes__r*   r'   r$   r   r      s
  † ñðB +ÐØÐà	×ÒÐ,Ó-Øðà=ðð ðð 
+ó	ó ó .ðð. ð	$à(ð	$ð ð	$ð 
ó		$ó ð	$ðà)ðð /ðð 
ô	ð(à)ðð /ðð 
ô	ð:à)ðð /ðð 0ð	ð
 
ôð:à3ðð /ðð 
ô	ð& ×ÒØØ	Ð0Ð1ñ	
óð6à)ð6ð /ð6ð $ð	6ð
 
ó6óð6ðpà)ðð /ðð +ð	ð
 
ôð<à)ðð /ðð +ð	ð
 
ôð8à)ðð /ðð 
ô	ð2à)ðð /ðð 
ô	÷$r'   r   )Ú
__future__r   r   r   r   r   r   Úbaser	   r
   r   r   Ú r   r   r   r   r   Úengine.interfacesr   ÚEventsr   r*   r'   r$   Ú<module>rp      sQ   ðõ #ã Ý Ý Ý Ý å %Ý Ý 'Ý  Ý Ý à	××ÝÝ3ô\�—‘˜dÑ#õ \r'   