1 /* GDBus - GLib D-Bus Library
3 * Copyright (C) 2008-2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: David Zeuthen <davidz@redhat.com>
23 #include "gdbusobject.h"
24 #include "gdbusinterface.h"
25 #include "gdbusutils.h"
31 * @short_description: Base type for D-Bus objects
34 * The #GDBusObject type is the base type for D-Bus objects on both
35 * the service side (see #GDBusObjectSkeleton) and the client side
36 * (see #GDBusObjectProxy). It is essentially just a container of
43 * #GDBusObject is an opaque data structure and can only be accessed
44 * using the following functions.
47 typedef GDBusObjectIface GDBusObjectInterface
;
48 G_DEFINE_INTERFACE (GDBusObject
, g_dbus_object
, G_TYPE_OBJECT
)
51 g_dbus_object_default_init (GDBusObjectIface
*iface
)
54 * GDBusObject::interface-added:
55 * @object: The #GDBusObject emitting the signal.
56 * @interface: The #GDBusInterface that was added.
58 * Emitted when @interface is added to @object.
62 g_signal_new (I_("interface-added"),
63 G_TYPE_FROM_INTERFACE (iface
),
65 G_STRUCT_OFFSET (GDBusObjectIface
, interface_added
),
68 g_cclosure_marshal_VOID__OBJECT
,
71 G_TYPE_DBUS_INTERFACE
);
74 * GDBusObject::interface-removed:
75 * @object: The #GDBusObject emitting the signal.
76 * @interface: The #GDBusInterface that was removed.
78 * Emitted when @interface is removed from @object.
82 g_signal_new (I_("interface-removed"),
83 G_TYPE_FROM_INTERFACE (iface
),
85 G_STRUCT_OFFSET (GDBusObjectIface
, interface_removed
),
88 g_cclosure_marshal_VOID__OBJECT
,
91 G_TYPE_DBUS_INTERFACE
);
94 /* ---------------------------------------------------------------------------------------------------- */
97 * g_dbus_object_get_object_path:
98 * @object: A #GDBusObject.
100 * Gets the object path for @object.
102 * Returns: A string owned by @object. Do not free.
107 g_dbus_object_get_object_path (GDBusObject
*object
)
109 GDBusObjectIface
*iface
= G_DBUS_OBJECT_GET_IFACE (object
);
110 return iface
->get_object_path (object
);
114 * g_dbus_object_get_interfaces:
115 * @object: A #GDBusObject.
117 * Gets the D-Bus interfaces associated with @object.
119 * Returns: (element-type GDBusInterface) (transfer full): A list of #GDBusInterface instances.
120 * The returned list must be freed by g_list_free() after each element has been freed
121 * with g_object_unref().
126 g_dbus_object_get_interfaces (GDBusObject
*object
)
128 GDBusObjectIface
*iface
= G_DBUS_OBJECT_GET_IFACE (object
);
129 return iface
->get_interfaces (object
);
133 * g_dbus_object_get_interface:
134 * @object: A #GDBusObject.
135 * @interface_name: A D-Bus interface name.
137 * Gets the D-Bus interface with name @interface_name associated with
140 * Returns: (transfer full): %NULL if not found, otherwise a
141 * #GDBusInterface that must be freed with g_object_unref().
146 g_dbus_object_get_interface (GDBusObject
*object
,
147 const gchar
*interface_name
)
149 GDBusObjectIface
*iface
= G_DBUS_OBJECT_GET_IFACE (object
);
150 g_return_val_if_fail (g_dbus_is_interface_name (interface_name
), NULL
);
151 return iface
->get_interface (object
, interface_name
);