+
     hR  c                   s    R t ^ RIt^ RIt^ RIHt ^ RIHt ^ RIHtH	t	 ^ RI
HtHt ^ RIHt  ! R R4      t ! R	 R
]4      tR# )zu
pyudev.monitor
==============

Monitor implementation.

.. moduleauthor::  Sebastian Wiesner  <lunaryorn@gmail.com>
N)partial)Thread)pipepoll)eintr_retry_callensure_byte_string)Devicec                   s   a  ] tR t^&t o RtR tR t]RR l4       t]	R 4       t
R tRR ltR	 tR
 tR tR tR tR tRR ltR tR tRtV tR# )Monitora  
A synchronous device event monitor.

A :class:`Monitor` objects connects to the udev daemon and listens for
changes to the device list.  A monitor is created by connecting to the
kernel daemon through netlink (see :meth:`from_netlink`):

>>> from pyudev import Context, Monitor
>>> context = Context()
>>> monitor = Monitor.from_netlink(context)

Once the monitor is created, you can add a filter using :meth:`filter_by()`
or :meth:`filter_by_tag()` to drop incoming events in subsystems, which are
not of interest to the application:

>>> monitor.filter_by('input')

When the monitor is eventually set up, you can either poll for events
synchronously:

>>> device = monitor.poll(timeout=3)
>>> if device:
...     print('{0.action}: {0}'.format(device))
...

Or you can monitor events asynchronously with :class:`MonitorObserver`.

To integrate into various event processing frameworks, the monitor provides
a :func:`selectable <select.select>` file description by :meth:`fileno()`.
However, do *not*  read or write directly on this file descriptor.

Instances of this class can directly be given as ``udev_monitor *`` to
functions wrapped through :mod:`ctypes`.

.. versionchanged:: 0.16
   Remove :meth:`from_socket()` which is deprecated, and even removed in
   recent udev versions.
c                sN    Wn         W n        VP                  V n        R V n        R# )FN)context_as_parameter__libudev_started)selfr   Z	monitor_p   &&&3/usr/lib/python3.14/site-packages/pyudev/monitor.py__init__ZMonitor.__init__N   s!    '((    c                s<    V P                   P                  V 4       R # N)r
   Zudev_monitor_unrefr      &r   __del__ZMonitor.__del__T   s    ((.r   c                s    VR9  d   \        RP                  V4      4      hVP                  P                  V\	        V4      4      pV'       g   \        R4      hV ! W4      # )a.  
Create a monitor by connecting to the kernel daemon through netlink.

``context`` is the :class:`Context` to use.  ``source`` is a string,
describing the event source.  Two sources are available:

``'udev'`` (the default)
  Events emitted after udev as registered and configured the device.
  This is the absolutely recommended source for applications.

``'kernel'``
  Events emitted directly after the kernel has seen the device.  The
  device has not yet been configured by udev and might not be usable
  at all.  **Never** use this, unless you know what you are doing.

Return a new :class:`Monitor` object, which is connected to the
given source.  Raise :exc:`~exceptions.ValueError`, if an invalid
source has been specified.  Raise
:exc:`~exceptions.EnvironmentError`, if the creation of the monitor
failed.
z8Invalid source: {0!r}. Must be one of "udev" or "kernel"zCould not create udev monitor)Zkerneludev)
ValueErrorZformatr
   Zudev_monitor_new_from_netlinkr   EnvironmentError)Zclsr   sourcemonitors   &&& r   from_netlinkZMonitor.from_netlinkW   sg    . ++$fVn  ""@@'/
 "#BCC7$$r   c                s    V P                   # )z|
``True``, if this monitor was started, ``False`` otherwise. Readonly.

.. seealso:: :meth:`start()`
.. versionadded:: 0.16
)r   r   r   r   startedZMonitor.startedz   s     }}r   c                s8    V P                   P                  V 4      # )z
Return the file description associated with this monitor as integer.

This is really a real file descriptor ;), which can be watched and
:func:`select.select`\ ed.
)r
   Zudev_monitor_get_fdr   r   r   filenoZMonitor.fileno   s     }}0066r   Nc                s    \        V4      pVe   \        V4      pV P                  P                  WV4       V P                  P                  V 4       R# )a  
Filter incoming events.

``subsystem`` is a byte or unicode string with the name of a
subsystem (e.g. ``'input'``).  Only events originating from the
given subsystem pass the filter and are handed to the caller.

If given, ``device_type`` is a byte or unicode string specifying the
device type.  Only devices with the given device type are propagated
to the caller.  If ``device_type`` is not given, no additional
filter for a specific device type is installed.

These filters are executed inside the kernel, and client processes
will usually not be woken up for device, that do not match these
filters.

.. versionchanged:: 0.15
   This method can also be after :meth:`start()` now.
N)r   r
   Z/udev_monitor_filter_add_match_subsystem_devtypeudev_monitor_filter_update)r   Z	subsystemZdevice_typer   r   	filter_byZMonitor.filter_by   sI    ( 'y1	",[9KEE[	
 	006r   c                s    V P                   P                  V \        V4      4       V P                   P                  V 4       R# )a  
Filter incoming events by the given ``tag``.

``tag`` is a byte or unicode string with the name of a tag.  Only
events for devices which have this tag attached pass the filter and are
handed to the caller.

Like with :meth:`filter_by` this filter is also executed inside the
kernel, so that client processes are usually not woken up for devices
without the given ``tag``.

.. udevversion:: 154

.. versionadded:: 0.9

.. versionchanged:: 0.15
   This method can also be after :meth:`start()` now.
N)r
   Z!udev_monitor_filter_add_match_tagr   r   )r   Ztag   &&r   filter_by_tagZMonitor.filter_by_tag   s1    & 	77>PQT>UV006r   c                sr    V P                   P                  V 4       V P                   P                  V 4       R# )a  
Remove any filters installed with :meth:`filter_by()` or
:meth:`filter_by_tag()` from this monitor.

.. warning::

   Up to udev 181 (and possibly even later versions) the underlying
   ``udev_monitor_filter_remove()`` seems to be broken.  If used with
   affected versions this method always raises
   :exc:`~exceptions.ValueError`.

Raise :exc:`~exceptions.EnvironmentError` if removal of installed
filters failed.

.. versionadded:: 0.15
N)r
   Zudev_monitor_filter_remover   r   r   r   remove_filterZMonitor.remove_filter   s(    " 	006006r   c                sZ    ^ RI pVP                  R\        4       V P                  4        R# )a  
Switch the monitor into listing mode.

Connect to the event source and receive incoming events.  Only after
calling this method, the monitor listens for incoming events.

.. note::

   This method is implicitly called by :meth:`__iter__`.  You don't
   need to call it explicitly, if you are iterating over the
   monitor.

.. deprecated:: 0.16
   Will be removed in 1.0. Use :meth:`start()` instead.
Nz4Will be removed in 1.0. Use Monitor.start() instead.)warningswarnDeprecationWarningstart)r   r"   s   & r   enable_receivingZMonitor.enable_receiving   s$    " 	BDV	
 	

r   c                s    V P                   '       gJ   V P                  P                  V 4       \        P                  ! V \
        P                  4       RV n         R# R# )a  
Start this monitor.

The monitor will not receive events until this method is called. This
method does nothing if called on an already started :class:`Monitor`.

.. note::

   Typically you don't need to call this method. It is implicitly
   called by :meth:`poll()` and :meth:`__iter__()`.

.. seealso:: :attr:`started`
.. versionchanged:: 0.16
   This method does nothing if the :class:`Monitor` was already
   started.
TN)r   r
   Zudev_monitor_enable_receivingr   Zset_fd_status_flagosZ
O_NONBLOCKr   r   r   r%   ZMonitor.start   s?    " }}}MM77=##D"--8 DM	 r   c                s<    V P                   P                  W4       R# )a  
Set the receive buffer ``size``.

``size`` is the requested buffer size in bytes, as integer.

.. note::

   The CAP_NET_ADMIN capability must be contained in the effective
   capability set of the caller for this method to succeed.  Otherwise
   :exc:`~exceptions.EnvironmentError` will be raised, with ``errno``
   set to :data:`~errno.EPERM`.  Unprivileged processes typically lack
   this capability.  You can check the capabilities of the current
   process with the python-prctl_ module:

   >>> import prctl
   >>> prctl.cap_effective.net_admin

Raise :exc:`~exceptions.EnvironmentError`, if the buffer size could not
bet set.

.. versionadded:: 0.13

.. _python-prctl: http://packages.python.org/python-prctl
N)r
   Z$udev_monitor_set_receive_buffer_size)r   Zsizer   r   set_receive_buffer_sizeZMonitor.set_receive_buffer_size  s    2 	::4Fr   c                sX     V P                   P                  V 4      pV'       d   \        V P                  V4      # R#   \         da   pTP
                  \
        P                  \
        P                  39   d    Rp?R# TP
                  \
        P                  8X  d    Rp?K  h Rp?ii ; i)z}Receive a single device from the monitor.

Return the received :class:`Device`, or ``None`` if no device could be
received.

N)	r
   Zudev_monitor_receive_devicer   r   r   errnoZEAGAINZEWOULDBLOCKZEINTR)r   Zdevice_pZerror   &  r   _receive_deviceZMonitor._receive_device  s|     ==DDTJ9AvdllH5KtK# ;;5<<1B1B"CC[[EKK/s)   "> > > B)	/B$>B$#B$$B)c                s    Ve   V^ 8  d   \        VR,          4      pV P                  4        \        \        P                  P                  V R34      P                  V4      '       d   V P                  4       # R# )a  
Poll for a device event.

You can use this method together with :func:`iter()` to synchronously
monitor events in the current thread::

   for device in iter(monitor.poll, None):
       print('{0.action} on {0.device_path}'.format(device))

Since this method will never return ``None`` if no ``timeout`` is
specified, this is effectively an endless loop. With
:func:`functools.partial()` you can also create a loop that only waits
for a specified time::

   for device in iter(partial(monitor.poll, 3), None):
       print('{0.action} on {0.device_path}'.format(device))

This loop will only wait three seconds for a new device event. If no
device event occurred after three seconds, the loop will exit.

``timeout`` is a floating point number that specifies a time-out in
seconds. If omitted or ``None``, this method blocks until a device
event is available. If ``0``, this method just polls and will never
block.

.. note::

   This method implicitly calls :meth:`start()`.

Return the received :class:`Device`, or ``None`` if a timeout
occurred. Raise :exc:`~exceptions.EnvironmentError` if event retrieval
failed.

.. seealso::

   :attr:`Device.action`
      The action that created this event.

   :attr:`Device.sequence_number`
      The sequence number of this event.

.. versionadded:: 0.16
Ni  r)Zintr%   r   r   Poll
for_eventsr+   )r   timeoutr   r   r   ZMonitor.poll2  s`    X 7Q;'D.)G

DII00$=BBGLL''))r   c                sr    ^ RI pVP                  R\        4       V P                  4       pVP                  V3# )a  
Receive a single device from the monitor.

.. warning::

   You *must* call :meth:`start()` before calling this method.

The caller must make sure, that there are events available in the
event queue.  The call blocks, until a device is available.

If a device was available, return ``(action, device)``.  ``device``
is the :class:`Device` object describing the device.  ``action`` is
a string describing the action.  Usual actions are:

``'add'``
  A device has been added (e.g. a USB device was plugged in)
``'remove'``
  A device has been removed (e.g. a USB device was unplugged)
``'change'``
  Something about the device changed (e.g. a device property)
``'online'``
  The device is online now
``'offline'``
  The device is offline now

Raise :exc:`~exceptions.EnvironmentError`, if no device could be
read.

.. deprecated:: 0.16
   Will be removed in 1.0. Use :meth:`Monitor.poll()` instead.
Nz3Will be removed in 1.0. Use Monitor.poll() instead.)r"   r#   r$   r   actionr   r"   devicer*   r   receive_deviceZMonitor.receive_devicef  s6    B 	ACU	
 }}f$$r   c              #  s   "   ^ RI pVP                  R\        4       V P                  4         V P	                  4       pVf   K  VP
                  V3x  K)  5i)a>  
Wait for incoming events and receive them upon arrival.

This methods implicitly calls :meth:`start()`, and starts polling the
:meth:`fileno` of this monitor.  If a event comes in, it receives the
corresponding device and yields it to the caller.

The returned iterator is endless, and continues receiving devices
without ever stopping.

Yields ``(action, device)`` (see :meth:`receive_device` for a
description).

.. deprecated:: 0.16
   Will be removed in 1.0. Use an explicit loop over :meth:`poll()`
   instead, or monitor asynchronously with :class:`MonitorObserver`.
NzuWill be removed in 1.0. Use an explicit loop over "poll()" instead, or monitor asynchronously with "MonitorObserver".)r"   r#   r$   r%   r   r0   r1   r*   r   __iter__ZMonitor.__iter__  sN     & 	! 		
 	

YY[F!mmV++s   =AA)r	   r
   r   r   )r   r   )__name__
__module____qualname____firstlineno____doc__r   r   Zclassmethodr   Zpropertyr   r   r   r    r!   r&   r%   r(   r+   r   r3   r4   __static_attributes____classdictcell__Z__classdict__   @r   r   r   &   s}     %N/  %  %D  7787,7(0!.G6*2h'%R, ,r   r   c                   sF   a  ] tR tRt o RtR
R ltR tR tR tR t	R	t
V tR# )MonitorObserveri  a  
An asynchronous observer for device events.

This class subclasses :class:`~threading.Thread` class to asynchronously
observe a :class:`Monitor` in a background thread:

>>> from pyudev import Context, Monitor, MonitorObserver
>>> context = Context()
>>> monitor = Monitor.from_netlink(context)
>>> monitor.filter_by(subsystem='input')
>>> def print_device_event(device):
...     print('background event {0.action}: {0.device_path}'.format(device))
>>> observer = MonitorObserver(monitor, callback=print_device_event, name='monitor-observer')
>>> observer.daemon
True
>>> observer.start()

In the above example, input device events will be printed in background,
until :meth:`stop()` is called on ``observer``.

.. note::

   Instances of this class are always created as daemon thread.  If you do
   not want to use daemon threads for monitoring, you need explicitly set
   :attr:`~threading.Thread.daemon` to ``False`` before invoking
   :meth:`~threading.Thread.start()`.

.. seealso::

   :attr:`Device.action`
      The action that created this event.

   :attr:`Device.sequence_number`
      The sequence number of this event.

.. versionadded:: 0.14

.. versionchanged:: 0.15
   :meth:`Monitor.start()` is implicitly called when the thread is started.
Nc                s  a Vf   Sf   \        R4      hVe   Se   \        R4      h\        P                  ! V .VO5/ VB  Wn        RV n        RV n        Se!   ^ RIpVP                  R\        4       V3R lpW0n	        R# )a  
Create a new observer for the given ``monitor``.

``monitor`` is the :class:`Monitor` to observe. ``callback`` is the
callable to invoke on events, with the signature ``callback(device)``
where ``device`` is the :class:`Device` that caused the event.

.. warning::

   ``callback`` is invoked in the observer thread, hence the observer
   is blocked while callback executes.

``args`` and ``kwargs`` are passed unchanged to the constructor of
:class:`~threading.Thread`.

.. deprecated:: 0.16
   The ``event_handler`` argument will be removed in 1.0. Use
   the ``callback`` argument instead.
.. versionchanged:: 0.16
   Add ``callback`` argument.
Nzcallback missingz$Use either callback or event handlerTzL"event_handler" argument will be removed in 1.0. Use Monitor.poll() instead.c                 s*   < S! V P                   V 4      # r   )r0   )Zdevent_handlers   &r   Z<lambda>Z*MonitorObserver.__init__.<locals>.<lambda>  s    qxx!;r   )
r   r   r   r   daemon_stop_eventr"   r#   r$   	_callback)r   r   r?   ZcallbackZargsZkwargsr"   s   &&f&*, r   r   ZMonitorObserver.__init__  s    0  5/00!m&?CDD.t.v.$MM."
 <H!r   c                s    V P                  4       '       g$   \        P                  P                  4       V n        \
        P                  ! V 4       R# )zStart the observer thread.N)Zis_aliver   ZPipeZopenrA   r   r%   r   r   r   r%   ZMonitorObserver.start	  s,    }}#yy~~/DTr   c                s   V P                   P                  4        \        P                  P	                  V P                   R 3V P
                  P                  R 34      p \        VP                  4       F  w  r#W P
                  P                  P                  4       8X  d(   V P
                  P                  P                  4         R# W P                   P                  4       8X  dT   VR 8X  dM   \        \        V P                   P                  ^ R7      p\        VR4       F  pV P                  V4       K  	  K  \        R4      h	  K  )r,   N)r/   zObserved monitor hung up)r   r%   r   r-   r.   rA   r   r   r   Zcloser    ZiterrB   r   )r   ZnotifierZfile_descriptorZeventZread_devicer2   s   &     r   runZMonitorObserver.run  s    99''\\3$"2"2"9"93!?
 *:8==*I&"&6&6&=&=&D&D&FF $$++113$(;(;(==%3,")($,,*;*;Q#K #'{D"9v. #: ++EFF +Jr   c                s8   V P                   f   R# V P                   P                  ;_uu_ 4        \        V P                   P                  P                  R4       V P                   P                  P	                  4        RRR4       R#   + '       g   i     R# ; i)a  
Send a stop signal to the background thread.

The background thread will eventually exit, but it may still be running
when this method returns.  This method is essentially the asynchronous
equivalent to :meth:`stop()`.

.. note::

   The underlying :attr:`monitor` is *not* stopped.
Ns   )rA   Zsinkr   ZwriteZflushr   r   r   	send_stopZMonitorObserver.send_stop$  sh     #"""T--2288'B!!'') #"""s   ABB	c                sl    V P                  4         V P                  4        R#   \         d     R# i ; i)a  
Synchronously stop the background thread.

.. note::

   This method can safely be called from the observer thread. In this
   case it is equivalent to :meth:`send_stop()`.

Send a stop signal to the backgroud (see :meth:`send_stop`), and waits
for the background thread to exit (see :meth:`~threading.Thread.join`)
if the current thread is *not* the observer thread.

After this method returns in a thread *that is not the observer
thread*, the ``callback`` is guaranteed to not be invoked again
anymore.

.. note::

   The underlying :attr:`monitor` is *not* stopped.

.. versionchanged:: 0.16
   This method can be called from the observer thread.
N)rD   ZjoinZRuntimeErrorr   r   r   stopZMonitorObserver.stop7  s.    0 		IIK 		s   $ 33)rB   rA   r@   r   )NN)r5   r6   r7   r8   r9   r   r%   rC   rD   rE   r:   r;   r<   r=   r   r>   r>     s+     'R,"\G**& r   r>   )r9   r)   r'   Z	functoolsr    Z	threadingr   Z
pyudev._osr   r   Zpyudev._utilr   r   Zpyudev.devicer   r   r>   ) r   r   <module>rF      s>   "  	   " =  H, H,Vbf br   