[kdbus] KDBUS_ITEM_PAYLOAD_OFF items are (once again) relative to msg header
[platform/upstream/glib.git] / gio / gdbusobject.c
1 /* GDBus - GLib D-Bus Library
2  *
3  * Copyright (C) 2008-2010 Red Hat, Inc.
4  *
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 of the License, or (at your option) any later version.
9  *
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.
14  *
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/>.
17  *
18  * Author: David Zeuthen <davidz@redhat.com>
19  */
20
21 #include "config.h"
22
23 #include "gdbusobject.h"
24 #include "gdbusinterface.h"
25 #include "gdbusutils.h"
26
27 #include "glibintl.h"
28
29 /**
30  * SECTION:gdbusobject
31  * @short_description: Base type for D-Bus objects
32  * @include: gio/gio.h
33  *
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
37  * interfaces.
38  */
39
40 typedef GDBusObjectIface GDBusObjectInterface;
41 G_DEFINE_INTERFACE (GDBusObject, g_dbus_object, G_TYPE_OBJECT)
42
43 static void
44 g_dbus_object_default_init (GDBusObjectIface *iface)
45 {
46   /**
47    * GDBusObject::interface-added:
48    * @object: The #GDBusObject emitting the signal.
49    * @interface: The #GDBusInterface that was added.
50    *
51    * Emitted when @interface is added to @object.
52    *
53    * Since: 2.30
54    */
55   g_signal_new ("interface-added",
56                 G_TYPE_FROM_INTERFACE (iface),
57                 G_SIGNAL_RUN_LAST,
58                 G_STRUCT_OFFSET (GDBusObjectIface, interface_added),
59                 NULL,
60                 NULL,
61                 g_cclosure_marshal_VOID__OBJECT,
62                 G_TYPE_NONE,
63                 1,
64                 G_TYPE_DBUS_INTERFACE);
65
66   /**
67    * GDBusObject::interface-removed:
68    * @object: The #GDBusObject emitting the signal.
69    * @interface: The #GDBusInterface that was removed.
70    *
71    * Emitted when @interface is removed from @object.
72    *
73    * Since: 2.30
74    */
75   g_signal_new ("interface-removed",
76                 G_TYPE_FROM_INTERFACE (iface),
77                 G_SIGNAL_RUN_LAST,
78                 G_STRUCT_OFFSET (GDBusObjectIface, interface_removed),
79                 NULL,
80                 NULL,
81                 g_cclosure_marshal_VOID__OBJECT,
82                 G_TYPE_NONE,
83                 1,
84                 G_TYPE_DBUS_INTERFACE);
85 }
86
87 /* ---------------------------------------------------------------------------------------------------- */
88
89 /**
90  * g_dbus_object_get_object_path:
91  * @object: A #GDBusObject.
92  *
93  * Gets the object path for @object.
94  *
95  * Returns: A string owned by @object. Do not free.
96  *
97  * Since: 2.30
98  */
99 const gchar *
100 g_dbus_object_get_object_path (GDBusObject *object)
101 {
102   GDBusObjectIface *iface = G_DBUS_OBJECT_GET_IFACE (object);
103   return iface->get_object_path (object);
104 }
105
106 /**
107  * g_dbus_object_get_interfaces:
108  * @object: A #GDBusObject.
109  *
110  * Gets the D-Bus interfaces associated with @object.
111  *
112  * Returns: (element-type GDBusInterface) (transfer full) : A list of #GDBusInterface instances.
113  *   The returned list must be freed by g_list_free() after each element has been freed
114  *   with g_object_unref().
115  *
116  * Since: 2.30
117  */
118 GList *
119 g_dbus_object_get_interfaces (GDBusObject *object)
120 {
121   GDBusObjectIface *iface = G_DBUS_OBJECT_GET_IFACE (object);
122   return iface->get_interfaces (object);
123 }
124
125 /**
126  * g_dbus_object_get_interface:
127  * @object: A #GDBusObject.
128  * @interface_name: A D-Bus interface name.
129  *
130  * Gets the D-Bus interface with name @interface_name associated with
131  * @object, if any.
132  *
133  * Returns: (transfer full): %NULL if not found, otherwise a
134  *   #GDBusInterface that must be freed with g_object_unref().
135  *
136  * Since: 2.30
137  */
138 GDBusInterface *
139 g_dbus_object_get_interface (GDBusObject *object,
140                              const gchar *interface_name)
141 {
142   GDBusObjectIface *iface = G_DBUS_OBJECT_GET_IFACE (object);
143   g_return_val_if_fail (g_dbus_is_interface_name (interface_name), NULL);
144   return iface->get_interface (object, interface_name);
145 }