3 u1Wɭ@sZdZddlmZddlmZddlmZddlmZddlZddlZddlm Z ddlm Z dd lm Z dd l m Z dd lmZdd lmZdd lmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZGdddeZGddde ZGddde ZGdddeZ Gdd d e e Z!dS)!z pyudev.device._device ===================== Device class implementation of :mod:`pyudev`. .. moduleauthor:: Sebastian Wiesner )absolute_import)division)print_function)unicode_literalsN) Container)Iterable)Mapping) timedelta)DeviceNotFoundAtPathError)DeviceNotFoundByFileError)#DeviceNotFoundByInterfaceIndexError)!DeviceNotFoundByKernelDeviceError)DeviceNotFoundByNameError)DeviceNotFoundByNumberError) DeviceNotFoundInEnvironmentError)ensure_byte_string)ensure_unicode_string)get_device_type)string_to_bool)udev_list_iteratec@s|eZdZdZeddZeddZeddZedd Zed d Z ed d Z eddZ eddZ eddZ dS)DeviceszT Class for constructing :class:`Device` objects from various kinds of data. cCs0|j|js$tjj|j|jtj}|j||S)a Create a device from a device ``path``. The ``path`` may or may not start with the ``sysfs`` mount point: >>> from pyudev import Context, Device >>> context = Context() >>> Devices.from_path(context, '/devices/platform') Device(u'/sys/devices/platform') >>> Devices.from_path(context, '/sys/devices/platform') Device(u'/sys/devices/platform') ``context`` is the :class:`Context` in which to search the device. ``path`` is a device path as unicode or byte string. Return a :class:`Device` object for the device. Raise :exc:`DeviceNotFoundAtPathError`, if no device was found for ``path``. .. versionadded:: 0.18 ) startswithsys_pathospathjoinlstripsep from_sys_path)clscontextrr!/usr/lib/python3.6/_device.py from_path<s zDevices.from_pathcCs(|jj|t|}|st|t||S)a Create a new device from a given ``sys_path``: >>> from pyudev import Context, Device >>> context = Context() >>> Devices.from_sys_path(context, '/sys/devices/platform') Device(u'/sys/devices/platform') ``context`` is the :class:`Context` in which to search the device. ``sys_path`` is a unicode or byte string containing the path of the device inside ``sysfs`` with the mount point included. Return a :class:`Device` object for the device. Raise :exc:`DeviceNotFoundAtPathError`, if no device was found for ``sys_path``. .. versionadded:: 0.18 )_libudevZudev_device_new_from_syspathrr Device)rr rdevicer!r!r"rUs  zDevices.from_sys_pathcCs<|jdd}|jj|t|t|}|s2t||t||S)a. Create a new device from a given ``subsystem`` and a given ``sys_name``: >>> from pyudev import Context, Device >>> context = Context() >>> sda = Devices.from_name(context, 'block', 'sda') >>> sda Device(u'/sys/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda') >>> sda == Devices.from_path(context, '/block/sda') ``context`` is the :class:`Context` in which to search the device. ``subsystem`` and ``sys_name`` are byte or unicode strings, which denote the subsystem and the name of the device to create. Return a :class:`Device` object for the device. Raise :exc:`DeviceNotFoundByNameError`, if no device was found with the given name. .. versionadded:: 0.18 /!)replacer$Z&udev_device_new_from_subsystem_sysnamerrr%)rr subsystemsys_namer&r!r!r" from_nameos   zDevices.from_namecCs0|jj|t|d|}|s&t||t||S)a Create a new device from a device ``number`` with the given device ``type``: >>> import os >>> from pyudev import Context, Device >>> ctx = Context() >>> major, minor = 8, 0 >>> device = Devices.from_device_number(context, 'block', ... os.makedev(major, minor)) >>> device Device(u'/sys/devices/pci0000:00/0000:00:11.0/host0/target0:0:0/0:0:0:0/block/sda') >>> os.major(device.device_number), os.minor(device.device_number) (8, 0) Use :func:`os.makedev` to construct a device number from a major and a minor device number, as shown in the example above. .. warning:: Device numbers are not unique across different device types. Passing a correct number with a wrong type may silently yield a wrong device object, so make sure to pass the correct device type. ``context`` is the :class:`Context`, in which to search the device. ``type`` is either ``'char'`` or ``'block'``, according to whether the device is a character or block device. ``number`` is the device number as integer. Return a :class:`Device` object for the device with the given device ``number``. Raise :exc:`DeviceNotFoundByNumberError`, if no device was found with the given device type and number. .. versionadded:: 0.18 r)r$Zudev_device_new_from_devnumrrr%)rr typnumberr&r!r!r"from_device_numbers % zDevices.from_device_numbercCsVyt|}tj|j}Wn.ttfk rF}zt|WYdd}~XnX|j|||S)a Create a new device from the given device file: >>> from pyudev import Context, Device >>> context = Context() >>> device = Devices.from_device_file(context, '/dev/sda') >>> device Device(u'/sys/devices/pci0000:00/0000:00:0d.0/host2/target2:0:0/2:0:0:0/block/sda') >>> device.device_node u'/dev/sda' .. warning:: Though the example seems to suggest that ``device.device_node == filename`` holds with ``device = Devices.from_device_file(context, filename)``, this is only true in a majority of cases. There *can* be devices, for which this relation is actually false! Thus, do *not* expect :attr:`~Device.device_node` to be equal to the given ``filename`` for the returned :class:`Device`. Especially, use :attr:`~Device.device_node` if you need the device file of a :class:`Device` created with this method afterwards. ``context`` is the :class:`Context` in which to search the device. ``filename`` is a string containing the path of a device file. Return a :class:`Device` representing the given device file. Raise :exc:`DeviceNotFoundByFileError` if ``filename`` is no device file at all or if ``filename`` does not exist or if its metadata was inaccessible. .. versionadded:: 0.18 N)rrstatst_rdevEnvironmentError ValueErrorr r/)rr filename device_type device_numbererrr!r!r"from_device_files "zDevices.from_device_filecs<|jdd}tfdd|Dd}|dk r0|StdS)a? Locate a device based on the interface index. :param `Context` context: the libudev context :param int ifindex: the interface index :returns: the device corresponding to the interface index :rtype: `Device` This method is only appropriate for network devices. Znet)r*c3s"|]}|jjdkr|VqdS)ifindexN) attributesget).0d)r9r!r" sz/Devices.from_interface_index..N) list_devicesnextr )rr r9Znetwork_devicesZdevr!)r9r"from_interface_indexs zDevices.from_interface_indexc Cs|d}|dd}|d krltjd}|j|}|rbtjt|jdt|jd}|j|||St|nT|d kr|j ||S|d kr|j d \}} } | r|r|j ||| St|nt|dS) a Locate a device based on the kernel device. :param `Context` context: the libudev context :param str kernel_device: the kernel device :returns: the device corresponding to ``kernel_device`` :rtype: `Device` rNbcz^(?P\d+):(?P\d+)$majorminorn+:)rCrD) recompilematchrmakedevintgroupr/r rA partitionr,) rr Z kernel_deviceZ switch_charrestZ number_rerLr.r*_Zkernel_device_namer!r!r"from_kernel_devices&        zDevices.from_kernel_devicecCs |jj|}|stt||S)a Create a new device from the process environment (as in :data:`os.environ`). This only works reliable, if the current process is called from an udev rule, and is usually used for tools executed from ``IMPORT=`` rules. Use this method to create device objects in Python scripts called from udev rules. ``context`` is the library :class:`Context`. Return a :class:`Device` object constructed from the environment. Raise :exc:`DeviceNotFoundInEnvironmentError`, if no device could be created from the environment. .. udevversion:: 152 .. versionadded:: 0.18 )r$Z udev_device_new_from_environmentrr%)rr r&r!r!r"from_environments zDevices.from_environmentcCs|j|j|j|j|jgS)z Return methods that obtain a :class:`Device` from a variety of different data. :return: a list of from_* methods. :rtype: list of class methods .. versionadded:: 0.18 )r8r/r,r#r)rr!r!r"METHODS9s zDevices.METHODSN)__name__ __module__ __qualname____doc__ classmethodr#rr,r/r8rArSrTrUr!r!r!r"r7s    + +  # rc@seZdZdZeddZeddZeddZedd Zed d Z ed d Z ddZ ddZ ddZ eddZeddZeddZdYddZddZedd Zed!d"Zed#d$Zed%d&Zed'd(Zed)d*Zed+d,Zed-d.Zed/d0Zed1d2Zed3d4Zed5d6Zed7d8Z ed9d:Z!ed;d<Z"ed=d>Z#ed?d@Z$dAdBZ%dCdDZ&dEdFZ'dGdHZ(dIdJZ)dKdLZ*dMdNZ+dOdPZ,dQdRZ-dSdTZ.dUdVZ/dWdXZ0dS)Zr%a A single device with attached attributes and properties. This class subclasses the ``Mapping`` ABC, providing a read-only dictionary mapping property names to the corresponding values. Therefore all well-known dicitionary methods and operators (e.g. ``.keys()``, ``.items()``, ``in``) are available to access device properties. Aside of the properties, a device also has a set of udev-specific attributes like the path inside ``sysfs``. :class:`Device` objects compare equal and unequal to other devices and to strings (based on :attr:`device_path`). However, there is no ordering on :class:`Device` objects, and the corresponding operators ``>``, ``<``, ``<=`` and ``>=`` raise :exc:`~exceptions.TypeError`. .. warning:: **Never** use object identity (``is`` operator) to compare :class:`Device` objects. :mod:`pyudev` may create multiple :class:`Device` objects for the same device. Instead compare devices by value using ``==`` or ``!=``. :class:`Device` objects are hashable and can therefore be used as keys in dictionaries and sets. They can also be given directly as ``udev_device *`` to functions wrapped through :mod:`ctypes`. cCs$ddl}|jdtddtj||S)zw .. versionadded:: 0.4 .. deprecated:: 0.18 Use :class:`Devices.from_path` instead. rNz>Will be removed in 1.0. Use equivalent Devices method instead.) stacklevel)warningswarnDeprecationWarningrr#)rr rr]r!r!r"r#ns zDevice.from_pathcCs$ddl}|jdtddtj||S)a| .. versionchanged:: 0.4 Raise :exc:`NoSuchDeviceError` instead of returning ``None``, if no device was found for ``sys_path``. .. versionchanged:: 0.5 Raise :exc:`DeviceNotFoundAtPathError` instead of :exc:`NoSuchDeviceError`. .. deprecated:: 0.18 Use :class:`Devices.from_sys_path` instead. rNz>Will be removed in 1.0. Use equivalent Devices method instead.r[)r\)r]r^r_rr)rr rr]r!r!r"r}s zDevice.from_sys_pathcCs&ddl}|jdtddtj|||S)zw .. versionadded:: 0.5 .. deprecated:: 0.18 Use :class:`Devices.from_name` instead. rNz>Will be removed in 1.0. Use equivalent Devices method instead.r[)r\)r]r^r_rr,)rr r*r+r]r!r!r"r,s zDevice.from_namecCs&ddl}|jdtddtj|||S)z .. versionadded:: 0.11 .. deprecated:: 0.18 Use :class:`Devices.from_device_number` instead. rNz>Will be removed in 1.0. Use equivalent Devices method instead.r[)r\)r]r^r_rr/)rr r-r.r]r!r!r"r/s zDevice.from_device_numbercCs$ddl}|jdtddtj||S)z .. versionadded:: 0.15 .. deprecated:: 0.18 Use :class:`Devices.from_device_file` instead. rNz>Will be removed in 1.0. Use equivalent Devices method instead.r[)r\)r]r^r_rr8)rr r4r]r!r!r"r8s zDevice.from_device_filecCs"ddl}|jdtddtj|S)z~ .. versionadded:: 0.6 .. deprecated:: 0.18 Use :class:`Devices.from_environment` instead. rNz>Will be removed in 1.0. Use equivalent Devices method instead.r[)r\)r]r^r_rrT)rr r]r!r!r"rTs zDevice.from_environmentcCs||_||_|j|_dS)N)r Z_as_parameter_r$)selfr Z_devicer!r!r"__init__szDevice.__init__cCs|jj|dS)N)r$Zudev_device_unref)r`r!r!r"__del__szDevice.__del__cCs dj|S)NzDevice({0.sys_path!r}))format)r`r!r!r"__repr__szDevice.__repr__cCs(|jj|}|sdSt|j|jj|S)z_ The parent :class:`Device` or ``None``, if there is no parent device. N)r$Zudev_device_get_parentr%r udev_device_ref)r`parentr!r!r"rfs z Device.parentccs,x&|jjj|D]}||kr|VqWdS)a Yield all direct children of this device. .. note:: In udev, parent-child relationships are generally ambiguous, i.e. a parent can have multiple children, *and* a child can have multiple parents. Hence, `child.parent == parent` does generally *not* hold for all `child` objects in `parent.children`. In other words, the :attr:`parent` of a device in this property can be different from this device! .. note:: As the underlying library does not provide any means to directly query the children of a device, this property performs a linear search through all devices. Return an iterable yielding a :class:`Device` object for each direct child of this device. .. udevversion:: 172 .. versionchanged:: 0.13 Requires udev version 172 now. N)r r?Z match_parent)r`r&r!r!r"childrenszDevice.childrenccs$|j}x|dk r|V|j}qWdS)z Yield all ancestors of this device from bottom to top. Return an iterator yielding a :class:`Device` object for each ancestor of this device from bottom to top. .. versionadded:: 0.16 N)rf)r`rfr!r!r" ancestorss  zDevice.ancestorsNcCsDt|}|dk rt|}|jj|||}|s0dSt|j|jj|S)a Find the parent device with the given ``subsystem`` and ``device_type``. ``subsystem`` is a byte or unicode string containing the name of the subsystem, in which to search for the parent. ``device_type`` is a byte or unicode string holding the expected device type of the parent. It can be ``None`` (the default), which means, that no specific device type is expected. Return a parent :class:`Device` within the given ``subsystem`` and, if ``device_type`` is not ``None``, with the given ``device_type``, or ``None``, if this device has no parent device matching these constraints. .. versionadded:: 0.9 N)rr$Z-udev_device_get_parent_with_subsystem_devtyper%r re)r`r*r5rfr!r!r" find_parents zDevice.find_parentcCsddl}|jdtdd|jS)a~ Traverse all parent devices of this device from bottom to top. Return an iterable yielding all parent devices as :class:`Device` objects, *not* including the current device. The last yielded :class:`Device` is the top of the device hierarchy. .. deprecated:: 0.16 Will be removed in 1.0. Use :attr:`ancestors` instead. rNz5Will be removed in 1.0. Use Device.ancestors instead.r[)r\)r]r^r_rh)r`r]r!r!r"traverse0s zDevice.traversecCst|jj|S)zz Absolute path of this device in ``sysfs`` including the ``sysfs`` mount point as unicode string. )rr$Zudev_device_get_syspath)r`r!r!r"rCszDevice.sys_pathcCst|jj|S)a Kernel device path as unicode string. This path uniquely identifies a single device. Unlike :attr:`sys_path`, this path does not contain the ``sysfs`` mount point. However, the path is absolute and starts with a slash ``'/'``. )rr$Zudev_device_get_devpath)r`r!r!r" device_pathLs zDevice.device_pathcCs |jj|}|dkrdSt|S)z Name of the subsystem this device is part of as unicode string. :returns: name of subsystem if found, else None :rtype: unicode string or NoneType N)r$Zudev_device_get_subsystemr)r`Zsubsysr!r!r"r*Ys zDevice.subsystemcCst|jj|S)zF Device file name inside ``sysfs`` as unicode string. )rr$Zudev_device_get_sysname)r`r!r!r"r+dszDevice.sys_namecCs |jj|}|dk rt|SdS)a The trailing number of the :attr:`sys_name` as unicode string, or ``None``, if the device has no trailing number in its name. .. note:: The number is returned as unicode string to preserve the exact format of the number, especially any leading zeros: >>> from pyudev import Context, Device >>> context = Context() >>> device = Devices.from_path(context, '/sys/devices/LNXSYSTM:00') >>> device.sys_number u'00' To work with numbers, explicitly convert them to ints: >>> int(device.sys_number) 0 .. versionadded:: 0.11 N)r$Zudev_device_get_sysnumr)r`r.r!r!r" sys_numberls zDevice.sys_numbercCs$|jj|}|dk rt|S|SdS)a Device type as unicode string, or ``None``, if the device type is unknown. >>> from pyudev import Context >>> context = Context() >>> for device in context.list_devices(subsystem='net'): ... '{0} - {1}'.format(device.sys_name, device.device_type or 'ethernet') ... u'eth0 - ethernet' u'wlan0 - wlan' u'lo - ethernet' u'vboxnet0 - ethernet' .. versionadded:: 0.10 N)r$Zudev_device_get_devtyper)r`r5r!r!r"r5s zDevice.device_typecCs |jj|}|dk rt|SdS)z The driver name as unicode string, or ``None``, if there is no driver for this device. .. versionadded:: 0.5 N)r$Zudev_device_get_driverr)r`driverr!r!r"rms z Device.drivercCs |jj|}|dk rt|SdS)a Absolute path to the device node of this device as unicode string or ``None``, if this device doesn't have a device node. The path includes the device directory (see :attr:`Context.device_path`). This path always points to the actual device node associated with this device, and never to any symbolic links to this device node. See :attr:`device_links` to get a list of symbolic links to this device node. .. warning:: For devices created with :meth:`from_device_file()`, the value of this property is not necessary equal to the ``filename`` given to :meth:`from_device_file()`. N)r$Zudev_device_get_devnoder)r`Znoder!r!r" device_nodes zDevice.device_nodecCs |jj|S)a The device number of the associated device as integer, or ``0``, if no device number is associated. Use :func:`os.major` and :func:`os.minor` to decompose the device number into its major and minor number: >>> import os >>> from pyudev import Context, Device >>> context = Context() >>> sda = Devices.from_name(context, 'block', 'sda') >>> sda.device_number 2048L >>> (os.major(sda.device_number), os.minor(sda.device_number)) (8, 0) For devices with an associated :attr:`device_node`, this is the same as the ``st_rdev`` field of the stat result of the :attr:`device_node`: >>> os.stat(sda.device_node).st_rdev 2048 .. versionadded:: 0.11 )r$Zudev_device_get_devnum)r`r!r!r"r6szDevice.device_numbercCst|jj|S)ai ``True``, if the device is initialized, ``False`` otherwise. A device is initialized, if udev has already handled this device and has set up device node permissions and context, or renamed a network device. Consequently, this property is only implemented for devices with a device node or for network devices. On all other devices this property is always ``True``. It is *not* recommended, that you use uninitialized devices. .. seealso:: :attr:`time_since_initialized` .. udevversion:: 165 .. versionadded:: 0.8 )boolr$Zudev_device_get_is_initialized)r`r!r!r"is_initializedszDevice.is_initializedcCs|jj|}t|dS)a The time elapsed since initialization as :class:`~datetime.timedelta`. This property is only implemented on devices, which need to store properties in the udev database. On all other devices this property is simply zero :class:`~datetime.timedelta`. .. seealso:: :attr:`is_initialized` .. udevversion:: 165 .. versionadded:: 0.8 ) microseconds)r$Z&udev_device_get_usec_since_initializedr )r`rqr!r!r"time_since_initializedszDevice.time_since_initializedccs4|jj|}x"t|j|D]\}}t|VqWdS)a An iterator, which yields the absolute paths (including the device directory, see :attr:`Context.device_path`) of all symbolic links pointing to the :attr:`device_node` of this device. The paths are unicode strings. UDev can create symlinks to the original device node (see :attr:`device_node`) inside the device directory. This is often used to assign a constant, fixed device node to devices like removeable media, which technically do not have a constant device node, or to map a single device into multiple device hierarchies. The property provides access to all such symbolic links, which were created by UDev for this device. .. warning:: Links are not necessarily resolved by :meth:`Devices.from_device_file()`. Hence do *not* rely on ``Devices.from_device_file(context, link).device_path == device.device_path`` from any ``link`` in ``device.device_links``. N)r$Z#udev_device_get_devlinks_list_entryrr)r`ZdevlinksnamerRr!r!r" device_linkss zDevice.device_linkscCs |jj|}|dk rt|SdS)a The device event action as string, or ``None``, if this device was not received from a :class:`Monitor`. 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 .. warning:: Though the actions listed above are the most common, this property *may* return other values, too, so be prepared to handle unknown actions! .. versionadded:: 0.16 N)r$Zudev_device_get_actionr)r`actionr!r!r"ru s z Device.actioncCs |jj|S)z The device event sequence number as integer, or ``0`` if this device has no sequence number, i.e. was not received from a :class:`Monitor`. .. versionadded:: 0.16 )r$Zudev_device_get_seqnum)r`r!r!r"sequence_number>szDevice.sequence_numbercCst|S)aT The system attributes of this device as read-only :class:`Attributes` mapping. System attributes are basically normal files inside the the device directory. These files contain all sorts of information about the device, which may not be reflected by properties. These attributes are commonly used for matching in udev rules, and can be printed using ``udevadm info --attribute-walk``. The values of these attributes are not always proper strings, and can contain arbitrary bytes. .. versionadded:: 0.5 ) Attributes)r`r!r!r"r:HszDevice.attributescCst|S)zu The udev properties of this object as read-only Properties mapping. .. versionadded:: 0.21 ) Properties)r`r!r!r" properties_szDevice.propertiescCst|S)a A :class:`Tags` object representing the tags attached to this device. The :class:`Tags` object supports a test for a single tag as well as iteration over all tags: >>> from pyudev import Context >>> context = Context() >>> device = next(iter(context.list_devices(tag='systemd'))) >>> 'systemd' in device.tags True >>> list(device.tags) [u'seat', u'systemd', u'uaccess'] Tags are arbitrary classifiers that can be attached to devices by udev scripts and daemons. For instance, systemd_ uses tags for multi-seat_ support. .. _systemd: http://freedesktop.org/wiki/Software/systemd .. _multi-seat: http://www.freedesktop.org/wiki/Software/systemd/multiseat .. udevversion:: 154 .. versionadded:: 0.6 .. versionchanged:: 0.13 Return a :class:`Tags` object now. )Tags)r`r!r!r"tagshsz Device.tagscCs"ddl}|jdtdd|jjS)a* Iterate over the names of all properties defined for this device. Return a generator yielding the names of all properties of this device as unicode strings. .. deprecated:: 0.21 Will be removed in 1.0. Access properties with Device.properties. rNzAWill be removed in 1.0. Access properties with Device.properties.r[)r\)r]r^r_ry__iter__)r`r]r!r!r"r|s zDevice.__iter__cCs"ddl}|jdtdd|jjS)z Return the amount of properties defined for this device as integer. .. deprecated:: 0.21 Will be removed in 1.0. Access properties with Device.properties. rNzAWill be removed in 1.0. Access properties with Device.properties.r[)r\)r]r^r_ry__len__)r`r]r!r!r"r}s zDevice.__len__cCs$ddl}|jdtdd|jj|S)a Get the given property from this device. ``prop`` is a unicode or byte string containing the name of the property. Return the property value as unicode string, or raise a :exc:`~exceptions.KeyError`, if the given property is not defined for this device. .. deprecated:: 0.21 Will be removed in 1.0. Access properties with Device.properties. rNzAWill be removed in 1.0. Access properties with Device.properties.r[)r\)r]r^r_ry __getitem__)r`propr]r!r!r"r~s zDevice.__getitem__cCs$ddl}|jdtdd|jj|S)a Get the given property from this device as integer. ``prop`` is a unicode or byte string containing the name of the property. Return the property value as integer. Raise a :exc:`~exceptions.KeyError`, if the given property is not defined for this device, or a :exc:`~exceptions.ValueError`, if the property value cannot be converted to an integer. .. deprecated:: 0.21 Will be removed in 1.0. Use Device.properties.asint() instead. rNz*sz%Properties.__len__..)r$rr&sumr)r`ryr!r!r"r}$szProperties.__len__cCs,|jj|jt|}|dkr$t|t|S)a9 Get the given property from this device. ``prop`` is a unicode or byte string containing the name of the property. Return the property value as unicode string, or raise a :exc:`~exceptions.KeyError`, if the given property is not defined for this device. N)r$Zudev_device_get_property_valuer&rKeyErrorr)r`rvaluer!r!r"r~,s  zProperties.__getitem__cCs t||S)a Get the given property from this device as integer. ``prop`` is a unicode or byte string containing the name of the property. Return the property value as integer. Raise a :exc:`~exceptions.KeyError`, if the given property is not defined for this device, or a :exc:`~exceptions.ValueError`, if the property value cannot be converted to an integer. )rN)r`rr!r!r"r?s zProperties.asintcCs t||S)a Get the given property from this device as boolean. A boolean property has either a value of ``'1'`` or of ``'0'``, where ``'1'`` stands for ``True``, and ``'0'`` for ``False``. Any other value causes a :exc:`~exceptions.ValueError` to be raised. ``prop`` is a unicode or byte string containing the name of the property. Return ``True``, if the property value is ``'1'`` and ``False``, if the property value is ``'0'``. Any other value raises a :exc:`~exceptions.ValueError`. Raise a :exc:`~exceptions.KeyError`, if the given property is not defined for this device. )r)r`rr!r!r"rMszProperties.asboolN) rVrWrXrYrar|r}r~rrr!r!r!r"rx s rxc@sNeZdZdZddZeddZddZdd d Zd d Z d dZ ddZ dS)rwzQ udev attributes for :class:`Device` objects. .. versionadded:: 0.5 cCs||_|j|_dS)N)r&r$)r`r&r!r!r"ragszAttributes.__init__ccsFt|jdsdS|jj|j}x"t|j|D]\}}t|Vq,WdS)a Yield the ``available`` attributes for the device. It is not guaranteed that a key in this list will have a value. It is not guaranteed that a key not in this list will not have a value. It is guaranteed that the keys in this list are the keys that libudev considers to be "available" attributes. If libudev version does not define udev_device_get_sysattr_list_entry() yields nothing. See rhbz#1267584. "udev_device_get_sysattr_list_entryN)hasattrr$rr&rr)r`attrs attributerRr!r!r"available_attributesks  zAttributes.available_attributescCs(|jj|jt|}|dkr$t||S)aD Get the given system ``attribute`` for the device. :param attribute: the key for an attribute value :type attribute: unicode or byte string :returns: the value corresponding to ``attribute`` :rtype: an arbitrary sequence of bytes :raises KeyError: if no value found N)r$Zudev_device_get_sysattr_valuer&rr)r`rrr!r!r"_gets  zAttributes._getNc Cs$y |j|Stk r|SXdS)a| Get the given system ``attribute`` for the device. :param attribute: the key for an attribute value :type attribute: unicode or byte string :param default: a default if no corresponding value found :type default: a sequence of bytes :returns: the value corresponding to ``attribute`` or ``default`` :rtype: object N)rr)r`rdefaultr!r!r"r;s  zAttributes.getcCst|j|S)a Get the given ``attribute`` for the device as unicode string. :param attribute: the key for an attribute value :type attribute: unicode or byte string :returns: the value corresponding to ``attribute``, as unicode :rtype: unicode :raises KeyError: if no value found for ``attribute`` :raises UnicodeDecodeError: if value is not convertible )rr)r`rr!r!r"asstrings zAttributes.asstringcCst|j|S)a Get the given ``attribute`` as an int. :param attribute: the key for an attribute value :type attribute: unicode or byte string :returns: the value corresponding to ``attribute``, as an int :rtype: int :raises KeyError: if no value found for ``attribute`` :raises UnicodeDecodeError: if value is not convertible to unicode :raises ValueError: if unicode value can not be converted to an int )rNr)r`rr!r!r"rs zAttributes.asintcCst|j|S)a Get the given ``attribute`` from this device as a bool. :param attribute: the key for an attribute value :type attribute: unicode or byte string :returns: the value corresponding to ``attribute``, as bool :rtype: bool :raises KeyError: if no value found for ``attribute`` :raises UnicodeDecodeError: if value is not convertible to unicode :raises ValueError: if unicode value can not be converted to a bool A boolean attribute has either a value of ``'1'`` or of ``'0'``, where ``'1'`` stands for ``True``, and ``'0'`` for ``False``. Any other value causes a :exc:`~exceptions.ValueError` to be raised. )rr)r`rr!r!r"rszAttributes.asbool)N) rVrWrXrYrarrrr;rrrr!r!r!r"rw`s   rwc@s0eZdZdZddZddZddZdd Zd S) rzzk A iterable over :class:`Device` tags. Subclasses the ``Container`` and the ``Iterable`` ABC. cCs||_|j|_dS)N)r&r$)r`r&r!r!r"rasz Tags.__init__cs>t|jdr$t|jj|jtStfdd|DSdS)z Whether ``tag`` exists. :param tag: unicode string with name of tag :rtype: bool udev_device_has_tagc3s|]}|kVqdS)Nr!)r<t)tagr!r"r>sz Tags._has_tag..N)rr$rorr&rany)r`rr!)rr"_has_tags z Tags._has_tagcCs |j|S)z Check for existence of ``tag``. ``tag`` is a tag as unicode string. Return ``True``, if ``tag`` is attached to the device, ``False`` otherwise. )r)r`rr!r!r" __contains__s zTags.__contains__ccs6|jj|j}x"t|j|D]\}}t|VqWdS)zS Iterate over all tags. Yield each tag as unicode string. N)r$Zudev_device_get_tags_list_entryr&rr)r`r{rrRr!r!r"r|sz Tags.__iter__N)rVrWrXrYrarrr|r!r!r!r"rzs   rz)"rYZ __future__rrrrrrJ collectionsrrrZdatetimer Zpyudev.device._errorsr r r r rrrZ pyudev._utilrrrrrobjectrr%rxrwrzr!r!r!r"sD                    ESq