File: asyncio_api.rst

package info (click to toggle)
python-sdbus 0.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 980 kB
  • sloc: python: 7,783; ansic: 2,524; makefile: 9; sh: 4
file content (642 lines) | stat: -rw-r--r-- 21,138 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
Asyncio API
============

Classes
++++++++++++++++++++

.. py:currentmodule:: sdbus

.. py:class:: DbusInterfaceCommonAsync(interface_name)

    D-Bus async interface class.
    D-Bus methods and properties should be defined using
    :py:func:`dbus_property_async`, :py:func:`dbus_signal_async`,
    and :py:func:`dbus_method_async` decorators.

    .. note::
        Don't forget to call ``super().__init__()`` in derived classes
        init calls as it sets up important attributes.

    :param str interface_name: Sets the D-Bus interface
        name that will be used for all properties, methods
        and signals defined in the body of the class.

    :param bool serving_enabled: If set to :py:obj:`True`
        the interface will not be served on D-Bus. Mostly used
        for interfaces that sd-bus already provides such as
        ``org.freedesktop.DBus.Peer``.

    .. py:method:: dbus_ping()
        :async:

        Pings the remote service using D-Bus.

        Useful to test if connection or remote service is alive.

        .. warning:: This method is ignores the particular object path
                     meaning it can NOT be used to test if object exist.

    .. py:method:: dbus_machine_id()
        :async:

        Returns the machine UUID of D-Bus the object is connected to.

        :return: machine UUID
        :rtype: str

    .. py:method:: dbus_introspect()
        :async:

        Get D-Bus introspection XML.

        It is users responsibility to parse that data.

        :return: string with introspection XML
        :rtype: str

    .. py:method:: properties_get_all_dict()
        :async:

        Get all object properties as a dictionary where keys are member
        names and values are properties values.

        Equivalent to ``GetAll`` method of the ``org.freedesktop.DBus.Properties``
        interface but the member names are automatically translated to python
        names. (internally calls it for each interface used in class definition)

        :param str on_unknown_member: If an unknown D-Bus property was encountered
            either raise an ``"error"`` (default), ``"ignore"`` the property
            or ``"reuse"`` the D-Bus name for the member.
        :return: dictionary of properties
        :rtype: dict[str, Any]

    .. py:attribute:: properties_changed
        :type: tuple[str, dict[str, tuple[str, Any]], list[str]]

        Signal when one of the objects properties changes.

        :py:func:`sdbus.utils.parse.parse_properties_changed` can be used to transform
        this signal data in to an easier to work with dictionary.

        Signal data is:

        Interface name : str
            Name of the interface where property changed

        Changed properties : dict[str, tuple[str, Any]]
            Dictionary there keys are names of properties changed and
            values are variants of new value.

        Invalidated properties : list[str]
            List of property names changed but no new value had been provided

    .. py:method:: _proxify(bus, service_name, object_path)

        Begin proxying to a remote D-Bus object.

        :param str service_name:
            Remote object D-Bus connection name.
            For example, systemd uses ``org.freedesktop.systemd1``

        :param str object_path:
            Remote object D-Bus path.
            Should be a forward slash separated path.
            Starting object is usually ``/``.
            Example: ``/org/freedesktop/systemd/unit/dbus_2eservice``

        :param SdBus bus:
            Optional D-Bus connection object.
            If not passed the default D-Bus will be used.

    .. py:classmethod:: new_proxy(bus, service_name, object_path)

        Create new proxy object and bypass ``__init__``.

        :param str service_name:
            Remote object D-Bus connection name.
            For example, systemd uses ``org.freedesktop.systemd1``

        :param str object_path:
            Remote object D-Bus path.
            Should be a forward slash separated path.
            Starting object is usually ``/``.
            Example: ``/org/freedesktop/systemd/unit/dbus_2eservice``

        :param SdBus bus:
            Optional D-Bus connection object.
            If not passed the default D-Bus will be used.

    .. py:method:: export_to_dbus(object_path, bus)

        Object will appear and become callable on D-Bus.

        Returns a handle that can either be used as a context manager
        to remove the object from D-Bus or ``.stop()`` method of the
        handle can be called to remove object from D-Bus.

        Returns a handle that can be used to remove object from D-Bus
        by either using it as a context manager or by calling ``.stop()``
        method of the handle.

        .. code-block:: python

            with dbus_object.export_to_dbus("/"):
                # dbus_object can be called from D-Bus inside this
                # with block.
                ...

            ...

            handle = dbus_object2.export_to_dbus("/")
            # dbus_object2 can be called from D-Bus between these statements
            handle.stop()

            ...

            dbus_object3.export_to_dbus("/")
            # dbus_object3 can be called from D-Bus until all references are
            # dropped.
            del dbus_object3

        If the handle is discarded the object will remain exported until
        it gets deallocated.

        *Changed in version 0.12.0:* Added a handle return.

        :param str object_path:
            Object path that it will be available at.

        :param SdBus bus:
            Optional D-Bus connection object.
            If not passed the default D-Bus will be used.

        :return: Handle to control the export.


.. py:class:: DbusObjectManagerInterfaceAsync(interface_name)

    This class is almost identical to :py:class:`DbusInterfaceCommonAsync`
    but implements `ObjectManager <https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-objectmanager>`_
    interface.

    Example of serving objects with ObjectManager::

        my_object_manager = DbusObjectManagerInterfaceAsync()
        my_object_manager.export_to_dbus('/object/manager')

        managed_object = DbusInterfaceCommonAsync()
        my_object_manager.export_with_manager('/object/manager/example', managed_object)

    .. py:method:: get_managed_objects()
        :async:

        Get the objects this object manager in managing.

        :py:func:`sdbus.utils.parse.parse_get_managed_objects` can be used
        to make returned data easier to work with.

        :return:
            Triple nested dictionary that contains all the objects
            paths with their properties values.

            dict[ObjectPath, dict[InterfaceName, dict[PropertyName, PropertyValue]]]

        :rtype: dict[str, dict[str, dict[str, Any]]]

    .. py:attribute:: interfaces_added
        :type: tuple[str, dict[str, dict[str, Any]]]

        Signal when a new object is added or and existing object
        gains a new interface.

        :py:func:`sdbus.utils.parse.parse_interfaces_added` can be used
        to make signal data easier to work with.

        Signal data is:

        Object path : str
            Path to object that was added or modified.

        Object interfaces and properties : dict[str, dict[str, Any]]]
            dict[InterfaceName, dict[PropertyName, PropertyValue]]

    .. py:attribute:: interfaces_removed
        :type: tuple[str, list[str]]

        Signal when existing object or and interface of
        existing object is removed.

        :py:func:`sdbus.utils.parse.parse_interfaces_removed` can be used
        to make signal data easier to work with.

        Signal data is:

        Object path : str
            Path to object that was removed or modified.

        Interfaces list : list[str]
            Interfaces names that were removed.

    .. py:method:: export_with_manager(object_path, object_to_export, bus)

        Export object to D-Bus and emit a signal that it was added.

        ObjectManager must be exported first.

        Path should be a subpath of where ObjectManager was exported.
        Example, if ObjectManager exported to ``/object/manager``, the managed
        object can be exported at ``/object/manager/test``.

        ObjectManager will keep the reference to the object.

        Returns a handle that can be used to remove object from D-Bus and
        drop reference to it by either using it as a context manager or
        by calling ``.stop()`` method of the handle. Signal will be emitted
        once the object is stopped being exported.

        .. code-block:: python

            manager = DbusObjectManagerInterfaceAsync()
            manager.export_to_dbus('/object/manager')

            with manager.export_with_manager("/object/manager/example", dbus_object):
                # dbus_object can be called from D-Bus inside this
                # with block.
                ...

            # Removed signal will be emitted once the with block exits

            ...

            handle = manager.export_with_manager("/object/manager/example", dbus_object2)
            # dbus_object2 can be called from D-Bus between these statements
            handle.stop()
            # Removed signal will be emitted once the .stop() method is called

        If the handle is discarded the object will remain exported until
        it gets removed from manager with :py:meth:`remove_managed_object` and
        the object gets deallocated.

        *Changed in version 0.12.0:* Added a handle return.

        :param str object_path:
            Object path that it will be available at.

        :param DbusInterfaceCommonAsync object_to_export:
            Object to export to D-Bus.

        :param SdBus bus:
            Optional D-Bus connection object.
            If not passed the default D-Bus will be used.

        :raises RuntimeError: ObjectManager was not exported.
        :return: Handle to control the export.

    .. py:method:: remove_managed_object(managed_object)

        Emit signal that object was removed.

        Releases reference to the object.

        .. caution::
            The object will still be accessible over D-Bus until
            all references to it will be removed.

        :param DbusInterfaceCommonAsync managed_object:
            Object to remove from ObjectManager.

        :raises RuntimeError: ObjectManager was not exported.
        :raises KeyError: Passed object is not managed by ObjectManager.

Decorators
++++++++++++++++++++++++

.. py:decorator:: dbus_method_async([input_signature, [result_signature, [flags, [result_args_names, [input_args_names, [method_name]]]]]])

    Define a method.

    Underlying function must be a coroutine function.

    :param str input_signature: D-Bus input signature.
        Defaults to "" meaning method takes no arguments.
        Required if you intend to connect to a remote object.

    :param str result_signature: D-Bus result signature.
        Defaults to "" meaning method returns empty reply on success.
        Required if you intend to serve the object.

    :param int flags: modifies behavior.
        No effect on remote connections.
        Defaults to 0 meaning no special behavior.

        See :ref:`dbus-flags` .

    :param Sequence[str] result_args_names: sequence of result
        argument names.

        These names will show up in introspection data but otherwise
        have no effect.

        Sequence can be list, tuple, etc...
        Number of elements in the sequence should match
        the number of result arguments otherwise :py:exc:`SdBusLibraryError`
        will be raised.

        Defaults to result arguments being nameless.

    :param Sequence[str] input_args_names: sequence of input
        argument names.

        These names will show up in introspection data but otherwise
        have no effect.

        Sequence can be list, tuple, etc...
        Number of elements in the sequence should match
        the number of result arguments otherwise :py:exc:`RuntimeError`
        will be raised.

        If ``result_args_names`` has been passed when Python function
        argument names will be used otherwise input arguments 
        will be nameless

    :param str method_name: Force specific D-Bus method name
        instead of being based on Python function name.

    Example: ::

        from sdbus import DbusInterfaceCommonAsync, dbus_method_async


        class ExampleInterface(DbusInterfaceCommonAsync,
                               interface_name='org.example.test'
                               ):

            # Method that takes a string 
            # and returns uppercase of that string
            @dbus_method_async(
                input_signature='s',
                result_signature='s',
                result_args_names=('uppercased', )  # This is optional but
                                                    # makes arguments have names in 
                                                    # introspection data.
            )
            async def upper(self, str_to_up: str) -> str:
                return str_to_up.upper()



.. py:decorator:: dbus_property_async(property_signature, [flags, [property_name]])

    Declare a D-Bus property.

    The underlying function has to be a regular ``def`` function.

    The property will be read-only or read/write based on if setter was
    declared.

    .. warning:: Properties are supposed 
        to be lightweight to get or set. 
        Make sure property getter or setter
        does not perform heavy IO or computation
        as that will block other methods or properties.

    :param str property_signature: Property D-Bus signature.
        Has to be a single type or container.

    :param int flags: modifies behavior.
        No effect on remote connections.
        Defaults to 0 meaning no special behavior.

        See :ref:`dbus-flags` .

    :param str property_name: Force specific property name
        instead of constructing it based on Python function name.

    Example: ::

        from sdbus import DbusInterfaceCommonAsync, dbus_property_async


        class ExampleInterface(DbusInterfaceCommonAsync,
                               interface_name='org.example.test'
                               ):

            def __init__(self) -> None:
                # This is just a generic init
                self.i = 12345
                self.s = 'test'

            # Read only property. No setter defined.
            @dbus_property_async('i')
            def read_only_number(self) -> int:
                return self.i

            # Read/write property. First define getter.
            @dbus_property_async('s')
            def read_write_str(self) -> str:
                return self.s

            # Now create setter. Method name does not matter.
            @read_write_str.setter  # Use the property setter method as decorator
            def read_write_str_setter(self, new_str: str) -> None:
                self.s = new_str

    .. py:class:: DbusPropertyAsync

        Properties have following methods:

        .. py:decoratormethod:: setter(set_function)

            Defines the setter function.
            This makes the property read/write instead of read-only.

            See example on how to use.

        .. py:decoratormethod:: setter_private(set_function)

            Defines the private setter function.
            The setter can be called locally but property
            will be read-only from D-Bus.

            Calling the setter locally will emit
            :py:attr:`properties_changed <DbusInterfaceCommonAsync.properties_changed>`
            signal to D-Bus.

            *Changed in version 0.12.0:* can now be used in overrides.

        .. py:method:: get_async()
            :async:

            Get the property value.

            The property can also be directly ``await`` ed
            instead of calling this method.

        .. py:method:: set_async(new_value)
            :async:

            Set property value.




.. py:decorator:: dbus_signal_async([signal_signature, [signal_args_names, [flags, [signal_name]]]])

    Defines a D-Bus signal.

    Underlying function return type hint is used for signal type hints.

    :param str signal_signature: signal D-Bus signature.
        Defaults to empty signal.

    :param Sequence[str] signal_args_names: sequence of signal argument names.

        These names will show up in introspection data but otherwise
        have no effect.

        Sequence can be list, tuple, etc...
        Number of elements in the sequence should match
        the number of result arguments otherwise :py:exc:`RuntimeError`
        will be raised.

        Defaults to result arguments being nameless.

    :param int flags: modifies behavior.
        No effect on remote connections.
        Defaults to 0 meaning no special behavior.

        See :ref:`dbus-flags` .

    :param str signal_name: Forces specific signal name instead
        of being based on Python function name.

    Example::

        from sdbus import DbusInterfaceCommonAsync, dbus_signal_async


        class ExampleInterface(DbusInterfaceCommonAsync,
                               interface_name='org.example.signal'
                               ):

            @dbus_signal_async('s')
            def name_changed(self) -> str:
                raise NotImplementedError

    .. py:class:: DbusSignalAsync

        Signals have following methods:

        .. py:method:: catch()

            Catch D-Bus signals using the async generator for loop:
            ``async for x in something.some_signal.catch():``

            This is main way to await for new events.

            Both remote and local objects operate the same way.

            Signal objects can also be async iterated directly:
            ``async for x in something.some_signal``

        .. py:method:: catch_anywhere(service_name, bus)

            Catch signal independent of path.
            Yields tuple of path of the object that emitted signal and signal data.

            ``async for path, data in something.some_signal.catch_anywhere():``

            This method can be called from both an proxy object and class.
            However, it cannot be called on local objects and will raise
            ``NotImplementedError``.

            :param str service_name:
                Service name of which signals belong to.
                Required if called from class. When called from proxy object
                the service name of the proxy will be used.

            :param str bus:
                Optional D-Bus connection object.
                If not passed when called from proxy the bus connected
                to proxy will be used or when called from class default
                bus will be used.

        .. py:method:: emit(args)

            Emit a new signal with *args* data.



.. py:decorator:: dbus_method_async_override()

    Override the method.

    Method name should match the super class method name that you
    want to override.

    New method should take same arguments.

    You **must** add round brackets to decorator.

    Example: ::

        from sdbus import (DbusInterfaceCommonAsync, dbus_method_async
                           dbus_method_async_override)


        class ExampleInterface(DbusInterfaceCommonAsync,
                               interface_name='org.example.test'
                               ):

            # Original call
            @dbus_method_async('s', 's')
            async def upper(self, str_to_up: str) -> str:
                return str_to_up.upper()


        class ExampleOverride(ExampleInterface):

            @dbus_method_async_override()
            async def upper(self, str_to_up: str) -> str:
                return 'Upper: ' + str_to_up.upper()


.. py:decorator:: dbus_property_async_override()

    Override property.

    You **must** add round brackets to decorator.

    Example: ::

        from sdbus import (DbusInterfaceCommonAsync, dbus_property_async
                           dbus_property_async_override)


        class ExampleInterface(DbusInterfaceCommonAsync,
                               interface_name='org.example.test'
                               ):

            def __init__(self) -> None:
                self.s = 'aaaaaaaaa'

            # Original property
            @dbus_property_async('s')
            def str_prop(self) -> str:
                return self.s

            @str_prop.setter
            def str_prop_setter(self, new_s: str) -> None:
                self.s = new_s


        class ExampleOverride(ExampleInterface):

            @dbus_property_async_override()
            def str_prop(self) -> str:
                return 'Test property' + self.s

            # Setter needs to be decorated again to override
            @str_prop.setter
            def str_prop_setter(self, new_s: str) -> None:
                self.s = new_s.upper()