DBusObjectManagerServer#
Added in version 2.30.
Superclasses: Object
Implemented Interfaces: DBusObjectManager
GDBusObjectManagerServer is used to export DBusObject instances
using the standardized
`org.freedesktop.DBus.ObjectManager <http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-objectmanager>`__
interface. For example, remote D-Bus clients can get all objects
and properties in a single call. Additionally, any change in the
object hierarchy is broadcast using signals. This means that D-Bus
clients can keep caches up to date by only listening to D-Bus
signals.
The recommended path to export an object manager at is the path form of the
well-known name of a D-Bus service, or below. For example, if a D-Bus service
is available at the well-known name net.example.ExampleService1, the object
manager should typically be exported at /net/example/ExampleService1, or
below (to allow for multiple object managers in a service).
It is supported, but not recommended, to export an object manager at the root
path, /.
See DBusObjectManagerClient for the client-side code that is
intended to be used with GDBusObjectManagerServer or any D-Bus
object implementing the org.freedesktop.DBus.ObjectManager interface.
Constructors#
- class DBusObjectManagerServer
- classmethod new(object_path: str) DBusObjectManagerServer#
Creates a new
DBusObjectManagerServerobject.The returned server isn’t yet exported on any connection. To do so, use
set_connection(). Normally you want to export all of your objects before doing so to avoid InterfacesAdded signals being emitted.Added in version 2.30.
- Parameters:
object_path – The object path to export the manager object at.
Methods#
- class DBusObjectManagerServer
- export(object: DBusObjectSkeleton) None#
Exports
objectonmanager.If there is already a
DBusObjectexported at the object path, then the old object is removed.The object path for
objectmust be in the hierarchy rooted by the object path formanager.Note that
managerwill take a reference onobjectfor as long as it is exported.Added in version 2.30.
- Parameters:
object – A
DBusObjectSkeleton.
- export_uniquely(object: DBusObjectSkeleton) None#
Like
export()but appends a string of the form _N (with N being a natural number) toobject's object path if an object with the given path already exists. As such, theDBusObjectProxy:g-object-path property ofobjectmay be modified.Added in version 2.30.
- Parameters:
object – An object.
- get_connection() DBusConnection | None#
Gets the
DBusConnectionused bymanager.Added in version 2.30.
- is_exported(object: DBusObjectSkeleton) bool#
Returns whether
objectis currently exported onmanager.Added in version 2.34.
- Parameters:
object – An object.
- set_connection(connection: DBusConnection | None = None) None#
Exports all objects managed by
manageronconnection. IfconnectionisNone, stops exporting objects.- Parameters:
connection – A
DBusConnectionorNone.
Properties#
- class DBusObjectManagerServer
- props.connection: DBusConnection#
The type of the None singleton.
Added in version 2.30.