manpagez: man pages & more
html files: dbus-glib
Home | html | info | man

DBusGConnection

DBusGConnection — DBus Connection

Stability Level

Stable, unless otherwise indicated

Types and Values

Includes

#include <dbus/dbus-glib.h>

Description

A DBusGConnection is a boxed type abstracting a DBusConnection.

Functions

dbus_g_bus_get ()

DBusGConnection *
dbus_g_bus_get (DBusBusType type,
                GError **error);

dbus_g_bus_get is deprecated and should not be used in newly-written code.

New code should use GDBus instead. The closest equivalent is g_bus_get_sync().

Returns a connection to the given bus. The connection is a global variable shared with other callers of this function.

(Internally, calls dbus_bus_get() then calls dbus_connection_setup_with_g_main() on the result.)

Parameters

type

bus type

 

error

address where an error can be returned.

 

Returns

a DBusConnection


dbus_g_bus_get_private ()

DBusGConnection *
dbus_g_bus_get_private (DBusBusType type,
                        GMainContext *context,
                        GError **error);

dbus_g_bus_get_private is deprecated and should not be used in newly-written code.

New code should use GDBus instead. The closest equivalent is g_bus_get_sync().

Returns a connection to the given bus. The connection will be a private non-shared connection and should be closed when usage is complete.

Internally this function calls dbus_bus_get_private() then calls dbus_connection_setup_with_g_main() on the result; see the documentation of the former function for more information on private connections.

Parameters

type

bus type

 

context

Mainloop context to attach to

 

error

address where an error can be returned.

 

Returns

a DBusConnection


dbus_g_thread_init ()

void
dbus_g_thread_init (void);

dbus_g_thread_init is deprecated and should not be used in newly-written code.

New code should use GDBus instead. GDBus is always thread-safe, whereas dbus-glib is never thread-safe.

Initializes the D-BUS thread system. This function may only be called once and must be called prior to calling any other function in the D-BUS API.

Equivalent to dbus_threads_init_default(), which does nothing. dbus-glib requires dbus >= 1.8, which is thread-safe by default.

Note that dbus-glib's GObject mapping is explicitly *not* thread-safe.


dbus_g_connection_open ()

DBusGConnection *
dbus_g_connection_open (const gchar *address,
                        GError **error);

dbus_g_connection_open is deprecated and should not be used in newly-written code.

New code should use GDBus instead. The closest equivalent is g_dbus_connection_new_for_address_sync().

Returns a connection to the given address.

(Internally, calls dbus_connection_open() then calls dbus_connection_setup_with_g_main() on the result.)

Parameters

address

address of the connection to open

 

error

address where an error can be returned.

 

Returns

a DBusConnection


dbus_g_connection_ref ()

DBusGConnection *
dbus_g_connection_ref (DBusGConnection *connection);

dbus_g_connection_ref is deprecated and should not be used in newly-written code.

New code should use GDBusConnection instead.

Increment refcount on a DBusGConnection

Parameters

connection

the DBusGConnection to ref

 

Returns

the connection that was ref'd


dbus_g_connection_unref ()

void
dbus_g_connection_unref (DBusGConnection *connection);

dbus_g_connection_unref is deprecated and should not be used in newly-written code.

New code should use GDBusConnection instead.

Decrement refcount on a DBusGConnection

Parameters

connection

the connection to unref

 

dbus_g_connection_flush ()

void
dbus_g_connection_flush (DBusGConnection *connection);

dbus_g_connection_flush is deprecated and should not be used in newly-written code.

The closest equivalent in GDBus is g_dbus_connection_flush_sync().

Blocks until outgoing calls and signal emissions have been sent.

Parameters

connection

the DBusGConnection to flush

 

dbus_g_connection_get_connection ()

DBusConnection *
dbus_g_connection_get_connection (DBusGConnection *gconnection);

dbus_g_connection_get_connection is deprecated and should not be used in newly-written code.

New code should use GDBus instead.

Get the DBusConnection corresponding to this DBusGConnection. The return value does not have its refcount incremented.

Parameters

gconnection

a DBusGConnection

 

Returns

DBusConnection


dbus_g_connection_register_g_object ()

void
dbus_g_connection_register_g_object (DBusGConnection *connection,
                                     const char *at_path,
                                     GObject *object);

dbus_g_connection_register_g_object is deprecated and should not be used in newly-written code.

New code should use GDBus instead. The closest equivalent is g_dbus_connection_register_object(), but GDBusObjectManagerServer and GDBusObjectSkeleton provide a higher-level API.

Registers a GObject at the given path. Properties, methods, and signals of the object can then be accessed remotely. Methods are only available if method introspection data has been added to the object's class with dbus_g_object_type_install_info().

The registration will be cancelled if either the DBusConnection or the GObject gets finalized, or if dbus_g_connection_unregister_g_object() is used.

Note: If an object is registered multiple times, the first registration takes priority for cases such as turning an object into an object path.

Parameters

connection

the D-BUS connection

 

at_path

the path where the object will live (the object's name)

 

object

the object

 

dbus_g_connection_unregister_g_object ()

void
dbus_g_connection_unregister_g_object (DBusGConnection *connection,
                                       GObject *object);

dbus_g_connection_unregister_g_object is deprecated and should not be used in newly-written code.

New code should use GDBus instead. The closest equivalent is g_dbus_connection_unregister_object().

Removes object from any object paths at which it is exported on connection . Properties, methods, and signals of the object can no longer be accessed remotely.

Parameters

connection

the D-BUS connection

 

object

the object

 

dbus_g_connection_lookup_g_object ()

GObject *
dbus_g_connection_lookup_g_object (DBusGConnection *connection,
                                   const char *at_path);

dbus_g_connection_lookup_g_object is deprecated and should not be used in newly-written code.

New code should use GDBus instead. There is no direct equivalent for this function.

FIXME

Parameters

connection

a DBusGConnection

 

at_path

path

 

Returns

the object at path at_path

Types and Values

DBusGConnection

typedef struct _DBusGConnection DBusGConnection;

DBusGConnection is deprecated and should not be used in newly-written code.

New code should use GDBusConnection from the GIO library, which is not based on libdbus or dbus-glib.

A DBusGConnection is a boxed type abstracting a DBusConnection from libdbus.


DBUS_TYPE_G_CONNECTION

#define DBUS_TYPE_G_CONNECTION   (dbus_g_connection_get_g_type ())

DBUS_TYPE_G_CONNECTION is deprecated and should not be used in newly-written code.

New code should use GDBus instead.

Expands to a function call returning the boxed GType of a DBusGConnection.

Returns

the GLib type

See Also

DBusConnection

© manpagez.com 2000-2024
Individual documents may contain additional copyright information.