Update contrib.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-gproxy.c Proxy for remote objects
4 * Copyright (C) 2003, 2004, 2005 Red Hat, Inc.
5 * Copyright (C) 2005 Nokia
6 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
7 * Licensed under the Academic Free License version 2.1
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <dbus/dbus-glib.h>
25 #include <dbus/dbus-glib-lowlevel.h>
26 #include <dbus/dbus-signature.h>
27 #include "dbus-gutils.h"
28 #include "dbus-gsignature.h"
29 #include "dbus-gvalue.h"
30 #include "dbus-gvalue-utils.h"
31 #include "dbus-gobject.h"
36 #include<glib_global.h>
37 #include<glib-object.h>
41 #include <glib/gi18n.h>
43 #define _(x) dgettext (GETTEXT_PACKAGE, x)
51 #include <gobject/gvaluecollector.h>
54 #include "libdbus_glib_wsd_solution.h"
57 #define DBUS_G_PROXY_CALL_TO_ID(x) (GPOINTER_TO_UINT(x))
58 #define DBUS_G_PROXY_ID_TO_CALL(x) (GUINT_TO_POINTER(x))
59 #define DBUS_G_PROXY_GET_PRIVATE(o) \
60 (G_TYPE_INSTANCE_GET_PRIVATE ((o), DBUS_TYPE_G_PROXY, DBusGProxyPrivate))
64 * @addtogroup DBusGLibInternals
70 * DBusGProxyManager typedef
73 typedef struct _DBusGProxyManager DBusGProxyManager;
75 typedef struct _DBusGProxyPrivate DBusGProxyPrivate;
78 * Internals of DBusGProxy
80 struct _DBusGProxyPrivate
82 DBusGProxyManager *manager; /**< Proxy manager */
83 char *name; /**< Name messages go to or NULL */
84 char *path; /**< Path messages go to or NULL */
85 char *interface; /**< Interface messages go to or NULL */
87 DBusGProxyCall *name_call; /**< Pending call id to retrieve name owner */
88 guint for_owner : 1; /**< Whether or not this proxy is for a name owner */
89 guint associated : 1; /**< Whether or not this proxy is associated (for name proxies) */
91 /* FIXME: make threadsafe? */
92 guint call_id_counter; /**< Integer counter for pending calls */
94 GData *signal_signatures; /**< D-BUS signatures for each signal */
96 GHashTable *pending_calls; /**< Calls made on this proxy which have not yet returned */
99 static void dbus_g_proxy_init (DBusGProxy *proxy);
100 static void dbus_g_proxy_class_init (DBusGProxyClass *klass);
101 static GObject *dbus_g_proxy_constructor (GType type,
102 guint n_construct_properties,
103 GObjectConstructParam *construct_properties);
104 static void dbus_g_proxy_set_property (GObject *object,
108 static void dbus_g_proxy_get_property (GObject *object,
113 static void dbus_g_proxy_finalize (GObject *object);
114 static void dbus_g_proxy_dispose (GObject *object);
115 static void dbus_g_proxy_destroy (DBusGProxy *proxy);
116 static void dbus_g_proxy_emit_remote_signal (DBusGProxy *proxy,
117 DBusMessage *message);
119 static DBusGProxyCall *manager_begin_bus_call (DBusGProxyManager *manager,
121 DBusGProxyCallNotify notify,
123 GDestroyNotify destroy,
124 GType first_arg_type,
126 static guint dbus_g_proxy_begin_call_internal (DBusGProxy *proxy,
128 DBusGProxyCallNotify notify,
130 GDestroyNotify destroy,
133 static gboolean dbus_g_proxy_end_call_internal (DBusGProxy *proxy,
136 GType first_arg_type,
140 * A list of proxies with a given name+path+interface, used to
141 * route incoming signals.
145 GSList *proxies; /**< The list of proxies */
147 char name[4]; /**< name (empty string for none), nul byte,
149 * interface, nul byte
155 * DBusGProxyManager's primary task is to route signals to the proxies
156 * those signals are emitted on. In order to do this it also has to
157 * track the owners of the names proxies are bound to.
159 struct _DBusGProxyManager
161 GStaticMutex lock; /**< Thread lock */
162 int refcount; /**< Reference count */
163 DBusConnection *connection; /**< Connection we're associated with. */
165 DBusGProxy *bus_proxy; /**< Special internal proxy used to talk to the bus */
167 GHashTable *proxy_lists; /**< Hash used to route incoming signals
168 * and iterate over proxies
170 GHashTable *owner_names; /**< Hash to keep track of mapping from
171 * base name -> [name,name,...] for proxies which
174 GSList *unassociated_proxies; /**< List of name proxies for which
175 * there was no result for
180 static DBusGProxyManager *dbus_g_proxy_manager_ref (DBusGProxyManager *manager);
181 static DBusHandlerResult dbus_g_proxy_manager_filter (DBusConnection *connection,
182 DBusMessage *message,
186 /** Lock the DBusGProxyManager */
187 #define LOCK_MANAGER(mgr) (g_static_mutex_lock (&(mgr)->lock))
188 /** Unlock the DBusGProxyManager */
189 #define UNLOCK_MANAGER(mgr) (g_static_mutex_unlock (&(mgr)->lock))
193 GET_STATIC_VAR_FROM_TLS(g_proxy_manager_slot,dbus_gproxy,int )
194 #define g_proxy_manager_slot (*GET_DBUS_WSD_VAR_NAME(g_proxy_manager_slot,dbus_gproxy,s)())
195 GET_STATIC_VAR_FROM_TLS(connection_g_proxy_lock,dbus_gproxy,GStaticMutex )
196 #define connection_g_proxy_lock (*GET_DBUS_WSD_VAR_NAME(connection_g_proxy_lock,dbus_gproxy,s)())
199 static int g_proxy_manager_slot = -1;
200 /* Lock controlling get/set manager as data on each connection */
201 static GStaticMutex connection_g_proxy_lock = G_STATIC_MUTEX_INIT;
208 static DBusGProxyManager*
209 dbus_g_proxy_manager_get (DBusConnection *connection)
211 DBusGProxyManager *manager;
213 dbus_connection_allocate_data_slot (&g_proxy_manager_slot);
214 if (g_proxy_manager_slot < 0)
215 g_error ("out of memory");
217 g_static_mutex_lock (&connection_g_proxy_lock);
219 manager = dbus_connection_get_data (connection, g_proxy_manager_slot);
222 dbus_connection_free_data_slot (&g_proxy_manager_slot);
223 dbus_g_proxy_manager_ref (manager);
224 g_static_mutex_unlock (&connection_g_proxy_lock);
228 manager = g_new0 (DBusGProxyManager, 1);
230 manager->refcount = 1;
231 manager->connection = connection;
233 g_static_mutex_init (&manager->lock);
235 /* Proxy managers keep the connection alive, which means that
236 * DBusGProxy indirectly does. To free a connection you have to free
237 * all the proxies referring to it.
239 dbus_connection_ref (manager->connection);
241 dbus_connection_set_data (connection, g_proxy_manager_slot,
244 dbus_connection_add_filter (connection, dbus_g_proxy_manager_filter,
247 g_static_mutex_unlock (&connection_g_proxy_lock);
252 static DBusGProxyManager *
253 dbus_g_proxy_manager_ref (DBusGProxyManager *manager)
255 g_assert (manager != NULL);
256 g_assert (manager->refcount > 0);
258 LOCK_MANAGER (manager);
260 manager->refcount += 1;
262 UNLOCK_MANAGER (manager);
268 dbus_g_proxy_manager_unref (DBusGProxyManager *manager)
270 g_assert (manager != NULL);
271 g_assert (manager->refcount > 0);
273 LOCK_MANAGER (manager);
274 manager->refcount -= 1;
275 if (manager->refcount == 0)
277 UNLOCK_MANAGER (manager);
279 if (manager->bus_proxy)
280 g_object_unref (manager->bus_proxy);
282 if (manager->proxy_lists)
284 /* can't have any proxies left since they hold
285 * a reference to the proxy manager.
287 g_assert (g_hash_table_size (manager->proxy_lists) == 0);
289 g_hash_table_destroy (manager->proxy_lists);
290 manager->proxy_lists = NULL;
294 if (manager->owner_names)
296 /* Since we destroyed all proxies, none can be tracking
299 g_assert (g_hash_table_size (manager->owner_names) == 0);
301 g_hash_table_destroy (manager->owner_names);
302 manager->owner_names = NULL;
305 g_assert (manager->unassociated_proxies == NULL);
307 g_static_mutex_free (&manager->lock);
309 g_static_mutex_lock (&connection_g_proxy_lock);
311 dbus_connection_remove_filter (manager->connection, dbus_g_proxy_manager_filter,
314 dbus_connection_set_data (manager->connection,
315 g_proxy_manager_slot,
318 g_static_mutex_unlock (&connection_g_proxy_lock);
320 dbus_connection_unref (manager->connection);
323 dbus_connection_free_data_slot (&g_proxy_manager_slot);
327 UNLOCK_MANAGER (manager);
332 tristring_hash (gconstpointer key)
339 for (p += 1; *p != '\0'; p++)
340 h = (h << 5) - h + *p;
343 /* skip nul and do the next substring */
344 for (p += 1; *p != '\0'; p++)
345 h = (h << 5) - h + *p;
347 /* skip nul again and another substring */
348 for (p += 1; *p != '\0'; p++)
349 h = (h << 5) - h + *p;
355 strequal_len (const char *a,
368 if (memcmp (a, b, a_len) != 0)
377 tristring_equal (gconstpointer a,
384 if (!strequal_len (ap, bp, &len))
390 if (!strequal_len (ap, bp, &len))
396 if (strcmp (ap, bp) != 0)
403 tristring_alloc_from_strings (size_t padding_before,
406 const char *interface)
408 size_t name_len, iface_len, path_len, len;
412 name_len = strlen (name);
416 path_len = strlen (path);
418 iface_len = strlen (interface);
420 tri = g_malloc (padding_before + name_len + path_len + iface_len + 3);
422 len = padding_before;
425 memcpy (&tri[len], name, name_len);
431 g_assert (len == (padding_before + name_len + 1));
433 memcpy (&tri[len], path, path_len);
438 g_assert (len == (padding_before + name_len + path_len + 2));
440 memcpy (&tri[len], interface, iface_len);
445 g_assert (len == (padding_before + name_len + path_len + iface_len + 3));
451 tristring_from_proxy (DBusGProxy *proxy)
453 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
455 return tristring_alloc_from_strings (0,
462 tristring_from_message (DBusMessage *message)
465 const char *interface;
467 path = dbus_message_get_path (message);
468 interface = dbus_message_get_interface (message);
471 g_assert (interface);
473 return tristring_alloc_from_strings (0,
474 dbus_message_get_sender (message),
478 static DBusGProxyList*
479 g_proxy_list_new (DBusGProxy *first_proxy)
481 DBusGProxyList *list;
482 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(first_proxy);
484 list = (void*) tristring_alloc_from_strings (G_STRUCT_OFFSET (DBusGProxyList, name),
488 list->proxies = NULL;
494 g_proxy_list_free (DBusGProxyList *list)
496 /* we don't hold a reference to the proxies in the list,
497 * as they ref the GProxyManager
499 g_slist_free (list->proxies);
505 g_proxy_get_match_rule (DBusGProxy *proxy)
507 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
508 /* FIXME Escaping is required here */
511 return g_strdup_printf ("type='signal',sender='%s',path='%s',interface='%s'",
512 priv->name, priv->path, priv->interface);
514 return g_strdup_printf ("type='signal',path='%s',interface='%s'",
515 priv->path, priv->interface);
522 } DBusGProxyNameOwnerInfo;
525 find_name_in_info (gconstpointer a, gconstpointer b)
527 const DBusGProxyNameOwnerInfo *info = a;
528 const char *name = b;
530 return strcmp (info->name, name);
537 DBusGProxyNameOwnerInfo *info;
538 } DBusGProxyNameOwnerForeachData;
541 name_owner_foreach (gpointer key, gpointer val, gpointer data)
544 DBusGProxyNameOwnerForeachData *foreach_data;
552 if (foreach_data->owner != NULL)
555 g_assert (foreach_data->info == NULL);
557 link = g_slist_find_custom (names, foreach_data->name, find_name_in_info);
560 foreach_data->owner = owner;
561 foreach_data->info = link->data;
566 dbus_g_proxy_manager_lookup_name_owner (DBusGProxyManager *manager,
568 DBusGProxyNameOwnerInfo **info,
571 DBusGProxyNameOwnerForeachData foreach_data;
573 foreach_data.name = name;
574 foreach_data.owner = NULL;
575 foreach_data.info = NULL;
577 g_hash_table_foreach (manager->owner_names, name_owner_foreach, &foreach_data);
579 *info = foreach_data.info;
580 *owner = foreach_data.owner;
581 return *info != NULL;
585 insert_nameinfo (DBusGProxyManager *manager,
587 DBusGProxyNameOwnerInfo *info)
592 names = g_hash_table_lookup (manager->owner_names, owner);
594 /* Only need to g_hash_table_insert the first time */
595 insert = (names == NULL);
597 names = g_slist_append (names, info);
600 g_hash_table_insert (manager->owner_names, g_strdup (owner), names);
604 dbus_g_proxy_manager_monitor_name_owner (DBusGProxyManager *manager,
610 DBusGProxyNameOwnerInfo *nameinfo;
612 names = g_hash_table_lookup (manager->owner_names, owner);
613 link = g_slist_find_custom (names, name, find_name_in_info);
617 nameinfo = g_new0 (DBusGProxyNameOwnerInfo, 1);
618 nameinfo->name = g_strdup (name);
619 nameinfo->refcount = 1;
621 insert_nameinfo (manager, owner, nameinfo);
625 nameinfo = link->data;
626 nameinfo->refcount++;
631 dbus_g_proxy_manager_unmonitor_name_owner (DBusGProxyManager *manager,
634 DBusGProxyNameOwnerInfo *info;
638 ret = dbus_g_proxy_manager_lookup_name_owner (manager, name, &info, &owner);
640 g_assert (info != NULL);
641 g_assert (owner != NULL);
644 if (info->refcount == 0)
649 names = g_hash_table_lookup (manager->owner_names, owner);
650 link = g_slist_find_custom (names, name, find_name_in_info);
651 names = g_slist_delete_link (names, link);
653 g_hash_table_insert (manager->owner_names, g_strdup (owner), names);
655 g_hash_table_remove (manager->owner_names, owner);
666 } DBusGProxyUnassociateData;
669 unassociate_proxies (gpointer key, gpointer val, gpointer user_data)
671 DBusGProxyList *list;
674 DBusGProxyUnassociateData *data;
680 for (tmp = list->proxies; tmp; tmp = tmp->next)
682 DBusGProxy *proxy = DBUS_G_PROXY (tmp->data);
683 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
684 DBusGProxyManager *manager;
686 manager = priv->manager;
688 if (!strcmp (priv->name, name))
690 if (!priv->for_owner)
692 g_assert (priv->associated);
693 g_assert (priv->name_call == NULL);
695 priv->associated = FALSE;
696 manager->unassociated_proxies = g_slist_prepend (manager->unassociated_proxies, proxy);
700 data->destroyed = g_slist_prepend (data->destroyed, proxy);
701 /* make contents of list into weak pointers in case the objects
702 * unref each other when disposing */
703 g_object_add_weak_pointer (G_OBJECT (proxy),
704 &(data->destroyed->data));
711 dbus_g_proxy_manager_replace_name_owner (DBusGProxyManager *manager,
713 const char *prev_owner,
714 const char *new_owner)
718 if (prev_owner[0] == '\0')
723 /* We have a new service, look at unassociated proxies */
727 for (tmp = manager->unassociated_proxies; tmp ; tmp = tmp->next)
729 DBusGProxy *proxy = tmp->data;
730 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
732 if (!strcmp (priv->name, name))
734 removed = g_slist_prepend (removed, tmp);
736 dbus_g_proxy_manager_monitor_name_owner (manager, new_owner, name);
737 priv->associated = TRUE;
741 for (tmp = removed; tmp; tmp = tmp->next)
742 manager->unassociated_proxies = g_slist_delete_link (manager->unassociated_proxies, tmp->data);
743 g_slist_free (removed);
747 DBusGProxyNameOwnerInfo *info;
750 /* Name owner changed or deleted */
752 names = g_hash_table_lookup (manager->owner_names, prev_owner);
757 link = g_slist_find_custom (names, name, find_name_in_info);
763 names = g_slist_delete_link (names, link);
766 g_hash_table_remove (manager->owner_names, prev_owner);
770 if (new_owner[0] == '\0')
772 DBusGProxyUnassociateData data;
776 data.destroyed = NULL;
778 /* A service went away, we need to unassociate proxies */
779 g_hash_table_foreach (manager->proxy_lists,
780 unassociate_proxies, &data);
782 UNLOCK_MANAGER (manager);
784 /* the destroyed list's data pointers are weak pointers, so that we
785 * don't end up calling destroy on proxies which have already been
786 * freed up as a result of other ones being destroyed */
787 for (tmp = data.destroyed; tmp; tmp = tmp->next)
788 if (tmp->data != NULL)
790 g_object_remove_weak_pointer (G_OBJECT (tmp->data),
792 dbus_g_proxy_destroy (tmp->data);
794 g_slist_free (data.destroyed);
796 LOCK_MANAGER (manager);
806 insert_nameinfo (manager, new_owner, info);
812 got_name_owner_cb (DBusGProxy *bus_proxy,
813 DBusGProxyCall *call,
816 DBusGProxy *proxy = user_data;
817 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
824 LOCK_MANAGER (priv->manager);
826 if (!dbus_g_proxy_end_call (bus_proxy, call, &error,
827 G_TYPE_STRING, &owner,
830 if (error->domain == DBUS_GERROR && error->code == DBUS_GERROR_NAME_HAS_NO_OWNER)
832 priv->manager->unassociated_proxies = g_slist_prepend (priv->manager->unassociated_proxies, proxy);
834 else if (error->domain == DBUS_GERROR && error->code == DBUS_GERROR_REMOTE_EXCEPTION)
835 g_warning ("Couldn't get name owner (%s): %s",
836 dbus_g_error_get_name (error),
839 g_warning ("Couldn't get name owner (code %d): %s",
840 error->code, error->message);
841 g_clear_error (&error);
846 dbus_g_proxy_manager_monitor_name_owner (priv->manager, owner, priv->name);
847 priv->associated = TRUE;
851 priv->name_call = NULL;
852 UNLOCK_MANAGER (priv->manager);
857 get_name_owner (DBusConnection *connection,
862 DBusMessage *request, *reply;
865 dbus_error_init (&derror);
870 request = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
875 g_error ("Out of memory");
877 if (!dbus_message_append_args (request,
878 DBUS_TYPE_STRING, &name,
880 g_error ("Out of memory");
883 dbus_connection_send_with_reply_and_block (connection,
889 if (dbus_set_error_from_message (&derror, reply))
892 if (!dbus_message_get_args (reply, &derror,
893 DBUS_TYPE_STRING, &base_name,
897 base_name = g_strdup (base_name);
901 g_assert (dbus_error_is_set (&derror));
902 dbus_set_g_error (error, &derror);
903 dbus_error_free (&derror);
907 dbus_message_unref (request);
909 dbus_message_unref (reply);
916 dbus_g_proxy_manager_register (DBusGProxyManager *manager,
919 DBusGProxyList *list;
920 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
922 LOCK_MANAGER (manager);
924 if (manager->proxy_lists == NULL)
926 g_assert (manager->owner_names == NULL);
929 manager->proxy_lists = g_hash_table_new_full (tristring_hash,
932 (GFreeFunc) g_proxy_list_free);
933 manager->owner_names = g_hash_table_new_full (g_str_hash,
937 /* FIXME - for now we listen for all NameOwnerChanged; once
938 * Anders' detail patch lands we should add individual rules
940 dbus_bus_add_match (manager->connection,
941 "type='signal',sender='" DBUS_SERVICE_DBUS
942 "',path='" DBUS_PATH_DBUS
943 "',interface='" DBUS_INTERFACE_DBUS
944 "',member='NameOwnerChanged'",
951 tri = tristring_from_proxy (proxy);
953 list = g_hash_table_lookup (manager->proxy_lists, tri);
960 list = g_proxy_list_new (proxy);
962 g_hash_table_replace (manager->proxy_lists,
966 if (list->proxies == NULL && priv->name)
968 /* We have to add the match rule to the server,
969 * but only if the server is a message bus,
970 * not if it's a peer.
974 rule = g_proxy_get_match_rule (proxy);
976 /* We don't check for errors; it's not like anyone would handle them, and
977 * we don't want a round trip here.
979 dbus_bus_add_match (manager->connection,
985 g_assert (g_slist_find (list->proxies, proxy) == NULL);
987 list->proxies = g_slist_prepend (list->proxies, proxy);
989 if (!priv->for_owner)
992 DBusGProxyNameOwnerInfo *info;
994 if (!dbus_g_proxy_manager_lookup_name_owner (manager, priv->name, &info, &owner))
996 priv->name_call = manager_begin_bus_call (manager, "GetNameOwner",
1003 priv->associated = FALSE;
1008 priv->associated = TRUE;
1012 UNLOCK_MANAGER (manager);
1016 dbus_g_proxy_manager_unregister (DBusGProxyManager *manager,
1019 DBusGProxyList *list;
1020 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
1023 LOCK_MANAGER (manager);
1025 #ifndef G_DISABLE_CHECKS
1026 if (manager->proxy_lists == NULL)
1028 g_warning ("Trying to unregister a proxy but there aren't any registered");
1033 tri = tristring_from_proxy (proxy);
1035 list = g_hash_table_lookup (manager->proxy_lists, tri);
1037 #ifndef G_DISABLE_CHECKS
1040 g_warning ("Trying to unregister a proxy but it isn't registered");
1045 g_assert (g_slist_find (list->proxies, proxy) != NULL);
1047 list->proxies = g_slist_remove (list->proxies, proxy);
1049 g_assert (g_slist_find (list->proxies, proxy) == NULL);
1051 if (!priv->for_owner)
1053 if (!priv->associated)
1057 if (priv->name_call != 0)
1059 dbus_g_proxy_cancel_call (manager->bus_proxy, priv->name_call);
1060 priv->name_call = 0;
1064 link = g_slist_find (manager->unassociated_proxies, proxy);
1065 g_assert (link != NULL);
1067 manager->unassociated_proxies = g_slist_delete_link (manager->unassociated_proxies, link);
1072 g_assert (priv->name_call == 0);
1074 dbus_g_proxy_manager_unmonitor_name_owner (manager, priv->name);
1078 if (list->proxies == NULL)
1081 g_hash_table_remove (manager->proxy_lists,
1085 rule = g_proxy_get_match_rule (proxy);
1086 dbus_bus_remove_match (manager->connection,
1091 if (g_hash_table_size (manager->proxy_lists) == 0)
1093 g_hash_table_destroy (manager->proxy_lists);
1094 manager->proxy_lists = NULL;
1099 UNLOCK_MANAGER (manager);
1103 list_proxies_foreach (gpointer key,
1107 DBusGProxyList *list;
1114 tmp = list->proxies;
1117 DBusGProxy *proxy = DBUS_G_PROXY (tmp->data);
1119 g_object_ref (proxy);
1120 *ret = g_slist_prepend (*ret, proxy);
1127 dbus_g_proxy_manager_list_all (DBusGProxyManager *manager)
1133 if (manager->proxy_lists)
1135 g_hash_table_foreach (manager->proxy_lists,
1136 list_proxies_foreach,
1143 static DBusHandlerResult
1144 dbus_g_proxy_manager_filter (DBusConnection *connection,
1145 DBusMessage *message,
1148 DBusGProxyManager *manager;
1150 if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL)
1151 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1153 manager = user_data;
1155 dbus_g_proxy_manager_ref (manager);
1157 LOCK_MANAGER (manager);
1159 if (dbus_message_is_signal (message,
1160 DBUS_INTERFACE_LOCAL,
1163 /* Destroy all the proxies, quite possibly resulting in unreferencing
1164 * the proxy manager and the connection as well.
1169 all = dbus_g_proxy_manager_list_all (manager);
1176 proxy = DBUS_G_PROXY (tmp->data);
1178 UNLOCK_MANAGER (manager);
1179 dbus_g_proxy_destroy (proxy);
1180 g_object_unref (G_OBJECT (proxy));
1181 LOCK_MANAGER (manager);
1188 #ifndef G_DISABLE_CHECKS
1189 if (manager->proxy_lists != NULL)
1190 g_warning ("Disconnection emitted \"destroy\" on all DBusGProxy, but somehow new proxies were created in response to one of those destroy signals. This will cause a memory leak.");
1197 GSList *owned_names;
1201 /* First we handle NameOwnerChanged internally */
1202 if (dbus_message_is_signal (message,
1203 DBUS_INTERFACE_DBUS,
1204 "NameOwnerChanged"))
1207 const char *prev_owner;
1208 const char *new_owner;
1211 dbus_error_init (&derr);
1212 if (!dbus_message_get_args (message,
1222 /* Ignore this error */
1223 dbus_error_free (&derr);
1225 else if (manager->owner_names != NULL)
1227 dbus_g_proxy_manager_replace_name_owner (manager, name, prev_owner, new_owner);
1231 sender = dbus_message_get_sender (message);
1233 /* dbus spec requires these, libdbus validates */
1234 g_assert (dbus_message_get_path (message) != NULL);
1235 g_assert (dbus_message_get_interface (message) != NULL);
1236 g_assert (dbus_message_get_member (message) != NULL);
1238 tri = tristring_from_message (message);
1240 if (manager->proxy_lists)
1242 DBusGProxyList *owner_list;
1243 owner_list = g_hash_table_lookup (manager->proxy_lists, tri);
1245 full_list = g_slist_copy (owner_list->proxies);
1254 if (manager->owner_names && sender)
1256 owned_names = g_hash_table_lookup (manager->owner_names, sender);
1257 for (tmp = owned_names; tmp; tmp = tmp->next)
1259 DBusGProxyList *owner_list;
1260 DBusGProxyNameOwnerInfo *nameinfo;
1262 nameinfo = tmp->data;
1263 g_assert (nameinfo->refcount > 0);
1264 tri = tristring_alloc_from_strings (0, nameinfo->name,
1265 dbus_message_get_path (message),
1266 dbus_message_get_interface (message));
1268 owner_list = g_hash_table_lookup (manager->proxy_lists, tri);
1269 if (owner_list != NULL)
1270 full_list = g_slist_concat (full_list, g_slist_copy (owner_list->proxies));
1276 g_print ("proxy got %s,%s,%s = list %p\n",
1278 tri + strlen (tri) + 1,
1279 tri + strlen (tri) + 1 + strlen (tri + strlen (tri) + 1) + 1,
1283 /* Emit the signal */
1285 g_slist_foreach (full_list, (GFunc) g_object_ref, NULL);
1287 for (tmp = full_list; tmp; tmp = tmp->next)
1291 proxy = DBUS_G_PROXY (tmp->data);
1293 UNLOCK_MANAGER (manager);
1294 dbus_g_proxy_emit_remote_signal (proxy, message);
1295 g_object_unref (G_OBJECT (proxy));
1296 LOCK_MANAGER (manager);
1298 g_slist_free (full_list);
1301 UNLOCK_MANAGER (manager);
1302 dbus_g_proxy_manager_unref (manager);
1304 /* "Handling" signals doesn't make sense, they are for everyone
1307 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
1312 /* ---------- DBusGProxy -------------- */
1313 #define DBUS_G_PROXY_DESTROYED(proxy) (DBUS_G_PROXY_GET_PRIVATE(proxy)->manager == NULL)
1316 marshal_dbus_message_to_g_marshaller (GClosure *closure,
1317 GValue *return_value,
1318 guint n_param_values,
1319 const GValue *param_values,
1320 gpointer invocation_hint,
1321 gpointer marshal_data);
1339 GET_STATIC_VAR_FROM_TLS(parent_class,dbus_gproxy,void* )
1340 #define parent_class (*GET_DBUS_WSD_VAR_NAME(parent_class,dbus_gproxy,s)())
1342 GET_STATIC_ARRAY_FROM_TLS(signals,dbus_gproxy,guint )
1343 #define signals (GET_DBUS_WSD_VAR_NAME(signals,dbus_gproxy,s)())
1346 static void *parent_class;
1347 static guint signals[LAST_SIGNAL] = { 0 };
1353 dbus_g_proxy_init (DBusGProxy *proxy)
1355 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
1357 g_datalist_init (&priv->signal_signatures);
1358 priv->pending_calls = g_hash_table_new_full (NULL, NULL, NULL,
1359 (GDestroyNotify) dbus_pending_call_unref);
1360 priv->name_call = 0;
1361 priv->associated = FALSE;
1365 dbus_g_proxy_constructor (GType type,
1366 guint n_construct_properties,
1367 GObjectConstructParam *construct_properties)
1370 DBusGProxyClass *klass;
1371 GObjectClass *parent_class;
1372 DBusGProxyPrivate *priv;
1374 klass = DBUS_G_PROXY_CLASS (g_type_class_peek (DBUS_TYPE_G_PROXY));
1376 parent_class = G_OBJECT_CLASS (g_type_class_peek_parent (klass));
1378 proxy = DBUS_G_PROXY (parent_class->constructor (type, n_construct_properties,
1379 construct_properties));
1381 priv = DBUS_G_PROXY_GET_PRIVATE (proxy);
1383 /* if these assertions fail, a deriving class has not set our required
1384 * parameters - our own public constructors do return_if_fail checks
1385 * on these parameters being provided. unfortunately we can't assert
1386 * for manager because it's allowed to be NULL when tha mangager is
1387 * setting up a bus proxy for its own calls */
1388 g_assert (priv->path != NULL);
1389 g_assert (priv->interface != NULL);
1391 if (priv->manager != NULL)
1393 dbus_g_proxy_manager_register (priv->manager, proxy);
1396 return G_OBJECT (proxy);
1400 dbus_g_proxy_class_init (DBusGProxyClass *klass)
1402 GObjectClass *object_class = G_OBJECT_CLASS (klass);
1404 parent_class = g_type_class_peek_parent (klass);
1406 g_type_class_add_private (klass, sizeof (DBusGProxyPrivate));
1408 object_class->set_property = dbus_g_proxy_set_property;
1409 object_class->get_property = dbus_g_proxy_get_property;
1411 g_object_class_install_property (object_class,
1413 g_param_spec_string ("name",
1418 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
1420 // (GParamFlags)11)); // ARM complaining about enums mixing
1423 g_object_class_install_property (object_class,
1425 g_param_spec_string ("path",
1430 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
1432 // (GParamFlags)11)); // ARM complaining about enums mixing
1435 g_object_class_install_property (object_class,
1437 g_param_spec_string ("interface",
1442 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
1444 // (GParamFlags)11)); // ARM complaining about enums mixing
1447 g_object_class_install_property (object_class,
1449 g_param_spec_boxed ("connection",
1452 DBUS_TYPE_G_CONNECTION,
1454 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
1456 // (GParamFlags)11)); // ARM complaining about enums mixing
1459 object_class->finalize = dbus_g_proxy_finalize;
1460 object_class->dispose = dbus_g_proxy_dispose;
1461 object_class->constructor = dbus_g_proxy_constructor;
1464 g_signal_new ("destroy",
1465 G_OBJECT_CLASS_TYPE (object_class),
1466 G_SIGNAL_RUN_CLEANUP | G_SIGNAL_NO_RECURSE | G_SIGNAL_NO_HOOKS,
1469 g_cclosure_marshal_VOID__VOID,
1473 g_signal_new ("received",
1474 G_OBJECT_CLASS_TYPE (object_class),
1475 G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
1478 marshal_dbus_message_to_g_marshaller,
1479 G_TYPE_NONE, 2, DBUS_TYPE_MESSAGE, G_TYPE_POINTER);
1483 cancel_pending_call (gpointer key, gpointer val, gpointer data)
1485 DBusGProxyCall *call = key;
1486 DBusGProxy *proxy = data;
1488 dbus_g_proxy_cancel_call (proxy, call);
1492 dbus_g_proxy_dispose (GObject *object)
1494 DBusGProxy *proxy = DBUS_G_PROXY (object);
1495 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
1497 if (priv->pending_calls == NULL)
1502 /* Cancel outgoing pending calls */
1503 g_hash_table_foreach (priv->pending_calls, cancel_pending_call, proxy);
1504 g_hash_table_destroy (priv->pending_calls);
1505 priv->pending_calls = NULL;
1507 if (priv->manager && proxy != priv->manager->bus_proxy)
1509 dbus_g_proxy_manager_unregister (priv->manager, proxy);
1510 dbus_g_proxy_manager_unref (priv->manager);
1512 priv->manager = NULL;
1514 g_datalist_clear (&priv->signal_signatures);
1516 g_signal_emit (object, signals[DESTROY], 0);
1518 G_OBJECT_CLASS (parent_class)->dispose (object);
1522 dbus_g_proxy_finalize (GObject *object)
1524 DBusGProxy *proxy = DBUS_G_PROXY (object);
1525 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
1527 g_return_if_fail (DBUS_G_PROXY_DESTROYED (proxy));
1529 g_free (priv->name);
1530 g_free (priv->path);
1531 g_free (priv->interface);
1533 G_OBJECT_CLASS (parent_class)->finalize (object);
1537 dbus_g_proxy_destroy (DBusGProxy *proxy)
1539 /* FIXME do we need the GTK_IN_DESTRUCTION style flag
1542 g_object_run_dispose (G_OBJECT (proxy));
1546 dbus_g_proxy_set_property (GObject *object,
1548 const GValue *value,
1551 DBusGProxy *proxy = DBUS_G_PROXY (object);
1552 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
1553 DBusGConnection *connection;
1558 priv->name = g_strdup (g_value_get_string (value));
1560 priv->for_owner = (priv->name[0] == ':');
1562 priv->for_owner = TRUE;
1565 priv->path = g_strdup (g_value_get_string (value));
1567 case PROP_INTERFACE:
1568 priv->interface = g_strdup (g_value_get_string (value));
1570 case PROP_CONNECTION:
1571 connection = g_value_get_boxed (value);
1572 if (connection != NULL)
1574 priv->manager = dbus_g_proxy_manager_get (DBUS_CONNECTION_FROM_G_CONNECTION (connection));
1578 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1584 dbus_g_proxy_get_property (GObject *object,
1589 DBusGProxy *proxy = DBUS_G_PROXY (object);
1590 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
1595 g_value_set_string (value, priv->name);
1598 g_value_set_string (value, priv->path);
1600 case PROP_INTERFACE:
1601 g_value_set_string (value, priv->interface);
1603 case PROP_CONNECTION:
1604 g_value_set_boxed (value, DBUS_G_CONNECTION_FROM_CONNECTION(priv->manager->connection));
1607 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1612 /* this is to avoid people using g_signal_connect() directly,
1613 * to avoid confusion with local signal names, and because
1614 * of the horribly broken current setup (signals are added
1615 * globally to all proxies)
1618 create_signal_name (const char *interface,
1624 str = g_string_new (interface);
1626 g_string_append (str, "-");
1628 g_string_append (str, signal);
1630 /* GLib will silently barf on '.' in signal names */
1639 return g_string_free (str, FALSE);
1643 marshal_dbus_message_to_g_marshaller (GClosure *closure,
1644 GValue *return_value,
1645 guint n_param_values,
1646 const GValue *param_values,
1647 gpointer invocation_hint,
1648 gpointer marshal_data)
1650 /* Incoming here we have three params, the instance (Proxy), the
1651 * DBusMessage, the signature. We want to convert that to an
1652 * expanded GValue array, then call an appropriate normal GLib
1655 #define MAX_SIGNATURE_ARGS 20
1656 GValueArray *value_array;
1657 GSignalCMarshaller c_marshaller;
1659 DBusMessage *message;
1662 DBusGProxyPrivate *priv;
1664 g_assert (n_param_values == 3);
1666 proxy = g_value_get_object (¶m_values[0]);
1667 message = g_value_get_boxed (¶m_values[1]);
1668 gsignature = g_value_get_pointer (¶m_values[2]);
1670 g_return_if_fail (DBUS_IS_G_PROXY (proxy));
1671 g_return_if_fail (message != NULL);
1672 g_return_if_fail (gsignature != NULL);
1674 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
1676 c_marshaller = _dbus_gobject_lookup_marshaller (G_TYPE_NONE, gsignature->len,
1677 (GType*) gsignature->data);
1679 g_return_if_fail (c_marshaller != NULL);
1682 DBusGValueMarshalCtx context;
1683 context.gconnection = DBUS_G_CONNECTION_FROM_CONNECTION (priv->manager->connection);
1684 context.proxy = proxy;
1686 types = (const GType*) gsignature->data;
1687 value_array = _dbus_gvalue_demarshal_message (&context, message,
1688 gsignature->len, types, NULL);
1691 if (value_array == NULL)
1694 g_value_array_prepend (value_array, NULL);
1695 g_value_init (g_value_array_get_nth (value_array, 0), G_TYPE_FROM_INSTANCE (proxy));
1696 g_value_set_instance (g_value_array_get_nth (value_array, 0), proxy);
1698 (* c_marshaller) (closure, return_value, value_array->n_values,
1699 value_array->values, invocation_hint, marshal_data);
1701 g_value_array_free (value_array);
1705 dbus_g_proxy_emit_remote_signal (DBusGProxy *proxy,
1706 DBusMessage *message)
1708 const char *interface;
1712 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
1713 GArray *msg_gsignature = NULL;
1715 g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
1717 interface = dbus_message_get_interface (message);
1718 signal = dbus_message_get_member (message);
1720 g_assert (interface != NULL);
1721 g_assert (signal != NULL);
1723 name = create_signal_name (interface, signal);
1725 /* If the quark isn't preexisting, there's no way there
1726 * are any handlers connected. We don't want to create
1727 * extra quarks for every possible signal.
1729 q = g_quark_try_string (name);
1736 gsignature = g_datalist_id_get_data (&priv->signal_signatures, q);
1737 if (gsignature == NULL)
1740 msg_gsignature = _dbus_gtypes_from_arg_signature (dbus_message_get_signature (message),
1742 for (i = 0; i < gsignature->len; i++)
1744 if (msg_gsignature->len == i
1745 || g_array_index (gsignature, GType, i) != g_array_index (msg_gsignature, GType, i))
1748 if (msg_gsignature->len != i)
1751 g_signal_emit (proxy,
1761 g_array_free (msg_gsignature, TRUE);
1765 /* Don't spew on remote errors */
1766 g_warning ("Unexpected message signature '%s' for signal '%s'\n",
1767 dbus_message_get_signature (message),
1777 DBusGProxyCallNotify func;
1779 GDestroyNotify free_data_func;
1780 } GPendingNotifyClosure;
1783 d_pending_call_notify (DBusPendingCall *dcall,
1786 GPendingNotifyClosure *closure = data;
1788 (* closure->func) (closure->proxy, DBUS_G_PROXY_ID_TO_CALL (closure->call_id), closure->data);
1792 d_pending_call_free (void *data)
1794 GPendingNotifyClosure *closure = data;
1796 if (closure->free_data_func)
1797 (* closure->free_data_func) (closure->data);
1802 #define DBUS_G_VALUE_ARRAY_COLLECT_ALL(VALARRAY, FIRST_ARG_TYPE, ARGS) \
1806 VALARRAY = g_value_array_new (6); \
1807 valtype = FIRST_ARG_TYPE; \
1808 while (valtype != G_TYPE_INVALID) \
1810 const char *collect_err; \
1812 g_value_array_append (VALARRAY, NULL); \
1813 val = g_value_array_get_nth (VALARRAY, i); \
1814 g_value_init (val, valtype); \
1815 collect_err = NULL; \
1816 G_VALUE_COLLECT (val, ARGS, G_VALUE_NOCOPY_CONTENTS, &collect_err); \
1817 valtype = va_arg (ARGS, GType); \
1823 manager_begin_bus_call (DBusGProxyManager *manager,
1825 DBusGProxyCallNotify notify,
1827 GDestroyNotify destroy,
1828 GType first_arg_type,
1831 DBusGProxyCall *call;
1832 DBusGProxyPrivate *priv;
1834 GValueArray *arg_values;
1836 va_start (args, first_arg_type);
1838 if (!manager->bus_proxy)
1840 manager->bus_proxy = g_object_new (DBUS_TYPE_G_PROXY,
1841 "name", DBUS_SERVICE_DBUS,
1842 "path", DBUS_PATH_DBUS,
1843 "interface", DBUS_INTERFACE_DBUS,
1845 priv = DBUS_G_PROXY_GET_PRIVATE(manager->bus_proxy);
1846 priv->manager = manager;
1849 DBUS_G_VALUE_ARRAY_COLLECT_ALL (arg_values, first_arg_type, args);
1851 call = DBUS_G_PROXY_ID_TO_CALL (dbus_g_proxy_begin_call_internal (manager->bus_proxy, method, notify, user_data, destroy, arg_values,-1));
1853 g_value_array_free (arg_values);
1860 /** @} End of DBusGLibInternals */
1862 /** @addtogroup DBusGLib
1867 * SECTION:dbus-gproxy
1868 * @short_description: DBus Proxy
1869 * @see_also: #DBusProxy
1870 * @stability: Stable
1872 * A #DBusGProxy is a boxed type abstracting a #DBusProxy.
1876 * dbus_g_proxy_get_type:
1877 * Standard GObject get_type() function for DBusGProxy.
1879 * Returns: type ID for DBusGProxy class
1882 GET_STATIC_VAR_FROM_TLS(object_type,dbus_gproxy,GType)
1883 #define object_type (*GET_DBUS_WSD_VAR_NAME(object_type,dbus_gproxy,s)())
1885 #ifdef __SYMBIAN32__
1889 dbus_g_proxy_get_type (void)
1892 static GType object_type = 0;
1898 static const GTypeInfo object_info =
1900 sizeof (DBusGProxyClass),
1901 (GBaseInitFunc) NULL,
1902 (GBaseFinalizeFunc) NULL,
1903 (GClassInitFunc) dbus_g_proxy_class_init,
1904 NULL, /* class_finalize */
1905 NULL, /* class_data */
1906 sizeof (DBusGProxy),
1907 0, /* n_preallocs */
1908 (GInstanceInitFunc) dbus_g_proxy_init,
1911 object_type = g_type_register_static (G_TYPE_OBJECT,
1920 dbus_g_proxy_new (DBusGConnection *connection,
1922 const char *path_name,
1923 const char *interface_name)
1927 g_assert (connection != NULL);
1929 proxy = g_object_new (DBUS_TYPE_G_PROXY,
1932 "interface", interface_name,
1933 "connection", connection, NULL);
1939 * dbus_g_proxy_new_for_name:
1940 * @connection: the connection to the remote bus
1941 * @name: any name on the message bus
1942 * @path_name: name of the object instance to call methods on
1943 * @interface_name: name of the interface to call methods on
1945 * Creates a new proxy for a remote interface exported by a connection
1946 * on a message bus. Method calls and signal connections over this
1947 * proxy will go to the name owner; the name's owner is expected to
1948 * support the given interface name. THE NAME OWNER MAY CHANGE OVER
1949 * TIME, for example between two different method calls, unless the
1950 * name is a unique name. If you need a fixed owner, you need to
1951 * request the current owner and bind a proxy to its unique name
1952 * rather than to the generic name; see
1953 * dbus_g_proxy_new_for_name_owner().
1955 * A name-associated proxy only makes sense with a message bus, not
1956 * for app-to-app direct dbus connections.
1958 * This proxy will only emit the "destroy" signal if the
1959 * #DBusConnection is disconnected, the proxy has no remaining
1960 * references, or the name is a unique name and its owner
1961 * disappears. If a well-known name changes owner, the proxy will
1964 * Returns: new proxy object
1966 #ifdef __SYMBIAN32__
1970 dbus_g_proxy_new_for_name (DBusGConnection *connection,
1972 const char *path_name,
1973 const char *interface_name)
1975 g_return_val_if_fail (connection != NULL, NULL);
1976 g_return_val_if_fail (name != NULL, NULL);
1977 g_return_val_if_fail (path_name != NULL, NULL);
1978 g_return_val_if_fail (interface_name != NULL, NULL);
1980 return dbus_g_proxy_new (connection, name,
1981 path_name, interface_name);
1985 * dbus_g_proxy_new_for_name_owner:
1986 * @connection: the connection to the remote bus
1987 * @name: any name on the message bus
1988 * @path_name: name of the object inside the service to call methods on
1989 * @interface_name: name of the interface to call methods on
1990 * @error: return location for an error
1992 * Similar to dbus_g_proxy_new_for_name(), but makes a round-trip
1993 * request to the message bus to get the current name owner, then
1994 * binds the proxy to the unique name of the current owner, rather
1995 * than to the well-known name. As a result, the name owner will
1996 * not change over time, and the proxy will emit the "destroy" signal
1997 * when the owner disappears from the message bus.
1999 * An example of the difference between dbus_g_proxy_new_for_name()
2000 * and dbus_g_proxy_new_for_name_owner(): if you provide the well-known name
2001 * "org.freedesktop.Database" dbus_g_proxy_new_for_name() remains bound
2002 * to that name as it changes owner. dbus_g_proxy_new_for_name_owner()
2003 * will fail if the name has no owner. If the name has an owner,
2004 * dbus_g_proxy_new_for_name_owner() will bind to the unique name
2005 * of that owner rather than the generic name.
2007 * Returns: new proxy object, or #NULL on error
2009 #ifdef __SYMBIAN32__
2013 dbus_g_proxy_new_for_name_owner (DBusGConnection *connection,
2015 const char *path_name,
2016 const char *interface_name,
2022 g_return_val_if_fail (connection != NULL, NULL);
2023 g_return_val_if_fail (name != NULL, NULL);
2024 g_return_val_if_fail (path_name != NULL, NULL);
2025 g_return_val_if_fail (interface_name != NULL, NULL);
2027 if (!(unique_name = get_name_owner (DBUS_CONNECTION_FROM_G_CONNECTION (connection), name, error)))
2030 proxy = dbus_g_proxy_new (connection, unique_name,
2031 path_name, interface_name);
2032 g_free (unique_name);
2037 * dbus_g_proxy_new_from_proxy:
2038 * @proxy: the proxy to use as a template
2039 * @path: of the object inside the peer to call methods on
2040 * @interface: name of the interface to call methods on
2042 * Creates a proxy using an existing proxy as a template, substituting
2043 * the specified interface and path. Either or both may be NULL.
2045 * Returns: new proxy object
2047 #ifdef __SYMBIAN32__
2051 dbus_g_proxy_new_from_proxy (DBusGProxy *proxy,
2052 const char *interface,
2055 DBusGProxyPrivate *priv;
2057 g_return_val_if_fail (proxy != NULL, NULL);
2059 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2061 if (interface == NULL)
2062 interface = priv->interface;
2066 return dbus_g_proxy_new (DBUS_G_CONNECTION_FROM_CONNECTION (priv->manager->connection),
2072 * dbus_g_proxy_new_for_peer:
2073 * @connection: the connection to the peer
2074 * @path_name: name of the object inside the peer to call methods on
2075 * @interface_name: name of the interface to call methods on
2077 * Creates a proxy for an object in peer application (one
2078 * we're directly connected to). That is, this function is
2079 * intended for use when there's no message bus involved,
2080 * we're doing a simple 1-to-1 communication between two
2083 * Returns: new proxy object
2085 #ifdef __SYMBIAN32__
2089 dbus_g_proxy_new_for_peer (DBusGConnection *connection,
2090 const char *path_name,
2091 const char *interface_name)
2095 g_return_val_if_fail (connection != NULL, NULL);
2096 g_return_val_if_fail (path_name != NULL, NULL);
2097 g_return_val_if_fail (interface_name != NULL, NULL);
2099 proxy = dbus_g_proxy_new (connection, NULL,
2100 path_name, interface_name);
2106 * dbus_g_proxy_get_bus_name:
2109 * Gets the bus name a proxy is bound to (may be #NULL in some cases).
2110 * If you created the proxy with dbus_g_proxy_new_for_name(), then
2111 * the name you passed to that will be returned.
2112 * If you created it with dbus_g_proxy_new_for_name_owner(), then the
2113 * unique connection name will be returned. If you created it
2114 * with dbus_g_proxy_new_for_peer() then #NULL will be returned.
2116 * Returns: the bus name the proxy sends messages to
2118 #ifdef __SYMBIAN32__
2122 dbus_g_proxy_get_bus_name (DBusGProxy *proxy)
2124 DBusGProxyPrivate *priv;
2126 g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), NULL);
2127 g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), NULL);
2129 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2135 * dbus_g_proxy_get_interface:
2138 * Gets the object interface proxy is bound to (may be #NULL in some cases).
2140 * Returns: an object interface
2142 #ifdef __SYMBIAN32__
2146 dbus_g_proxy_get_interface (DBusGProxy *proxy)
2148 DBusGProxyPrivate *priv;
2150 g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), NULL);
2151 g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), NULL);
2153 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2155 return priv->interface;
2159 * dbus_g_proxy_set_interface:
2161 * @interface_name: an object interface
2163 * Sets the object interface proxy is bound to
2165 #ifdef __SYMBIAN32__
2169 dbus_g_proxy_set_interface (DBusGProxy *proxy,
2170 const char *interface_name)
2172 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2173 /* FIXME - need to unregister when we switch interface for now
2174 * later should support idea of unset interface
2176 dbus_g_proxy_manager_unregister (priv->manager, proxy);
2177 g_free (priv->interface);
2178 priv->interface = g_strdup (interface_name);
2179 dbus_g_proxy_manager_register (priv->manager, proxy);
2183 * dbus_g_proxy_get_path:
2184 * Gets the path this proxy is bound to
2187 * Returns: an object path
2189 #ifdef __SYMBIAN32__
2193 dbus_g_proxy_get_path (DBusGProxy *proxy)
2195 DBusGProxyPrivate *priv;
2197 g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), NULL);
2198 g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), NULL);
2200 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2205 static DBusMessage *
2206 dbus_g_proxy_marshal_args_to_message (DBusGProxy *proxy,
2210 DBusMessage *message;
2211 DBusMessageIter msgiter;
2213 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2215 message = dbus_message_new_method_call (priv->name,
2219 if (message == NULL)
2222 dbus_message_iter_init_append (message, &msgiter);
2223 for (i = 0; i < args->n_values; i++)
2227 gvalue = g_value_array_get_nth (args, i);
2229 if (!_dbus_gvalue_marshal (&msgiter, gvalue))
2230 g_assert_not_reached ();
2238 dbus_g_proxy_begin_call_internal (DBusGProxy *proxy,
2240 DBusGProxyCallNotify notify,
2242 GDestroyNotify destroy,
2246 DBusMessage *message;
2247 DBusPendingCall *pending;
2248 GPendingNotifyClosure *closure;
2250 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2254 message = dbus_g_proxy_marshal_args_to_message (proxy, method, args);
2258 if (!dbus_connection_send_with_reply (priv->manager->connection,
2263 dbus_message_unref (message);
2264 g_assert (pending != NULL);
2266 call_id = ++priv->call_id_counter;
2270 closure = g_new (GPendingNotifyClosure, 1);
2271 closure->proxy = proxy; /* No need to ref as the lifecycle is tied to proxy */
2272 closure->call_id = call_id;
2273 closure->func = notify;
2274 closure->data = user_data;
2275 closure->free_data_func = destroy;
2276 dbus_pending_call_set_notify (pending, d_pending_call_notify,
2278 d_pending_call_free);
2281 g_hash_table_insert (priv->pending_calls, GUINT_TO_POINTER (call_id), pending);
2285 g_error ("Out of memory");
2290 dbus_g_proxy_end_call_internal (DBusGProxy *proxy,
2293 GType first_arg_type,
2297 DBusMessageIter msgiter;
2299 va_list args_unwind;
2301 int n_retvals_processed;
2304 DBusPendingCall *pending;
2305 DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2309 n_retvals_processed = 0;
2312 pending = g_hash_table_lookup (priv->pending_calls, GUINT_TO_POINTER (call_id));
2314 dbus_pending_call_block (pending);
2315 reply = dbus_pending_call_steal_reply (pending);
2317 g_assert (reply != NULL);
2319 dbus_error_init (&derror);
2321 switch (dbus_message_get_type (reply))
2323 case DBUS_MESSAGE_TYPE_METHOD_RETURN:
2324 dbus_message_iter_init (reply, &msgiter);
2325 valtype = first_arg_type;
2326 while (valtype != G_TYPE_INVALID)
2329 gpointer return_storage;
2330 GValue gvalue = { 0, };
2331 DBusGValueMarshalCtx context;
2333 context.gconnection = DBUS_G_CONNECTION_FROM_CONNECTION (priv->manager->connection);
2334 context.proxy = proxy;
2336 arg_type = dbus_message_iter_get_arg_type (&msgiter);
2337 if (arg_type == DBUS_TYPE_INVALID)
2339 g_set_error (error, DBUS_GERROR,
2340 DBUS_GERROR_INVALID_ARGS,
2341 _("Too few arguments in reply"));
2345 return_storage = va_arg (args, gpointer);
2346 if (return_storage == NULL)
2349 /* We handle variants specially; the caller is expected
2350 * to have already allocated storage for them.
2352 if (arg_type == DBUS_TYPE_VARIANT
2353 && g_type_is_a (valtype, G_TYPE_VALUE))
2355 if (!_dbus_gvalue_demarshal_variant (&context, &msgiter, (GValue*) return_storage, NULL))
2359 DBUS_GERROR_INVALID_ARGS,
2360 _("Couldn't convert argument, expected \"%s\""),
2361 g_type_name (valtype));
2367 g_value_init (&gvalue, valtype);
2369 if (!_dbus_gvalue_demarshal (&context, &msgiter, &gvalue, error))
2372 /* Anything that can be demarshaled must be storable */
2373 if (!_dbus_gvalue_store (&gvalue, (gpointer*) return_storage))
2374 g_assert_not_reached ();
2375 /* Ownership of the value passes to the client, don't unset */
2379 n_retvals_processed++;
2380 dbus_message_iter_next (&msgiter);
2381 valtype = va_arg (args, GType);
2384 while (dbus_message_iter_get_arg_type (&msgiter) != DBUS_TYPE_INVALID)
2387 dbus_message_iter_next (&msgiter);
2392 g_set_error (error, DBUS_GERROR,
2393 DBUS_GERROR_INVALID_ARGS,
2394 _("Too many arguments in reply; expected %d, got %d"),
2395 n_retvals_processed, over);
2399 case DBUS_MESSAGE_TYPE_ERROR:
2400 dbus_set_error_from_message (&derror, reply);
2401 dbus_set_g_error (error, &derror);
2402 dbus_error_free (&derror);
2406 dbus_set_error (&derror, DBUS_ERROR_FAILED,
2407 "Reply was neither a method return nor an exception");
2408 dbus_set_g_error (error, &derror);
2409 dbus_error_free (&derror);
2421 for (i = 0; i < n_retvals_processed; i++)
2425 retval = va_arg (args_unwind, gpointer);
2430 va_end (args_unwind);
2432 g_hash_table_remove (priv->pending_calls, GUINT_TO_POINTER (call_id));
2435 dbus_message_unref (reply);
2440 * dbus_g_proxy_begin_call:
2441 * @proxy: a proxy for a remote interface
2442 * @method: the name of the method to invoke
2443 * @notify: callback to be invoked when method returns
2444 * @user_data: user data passed to callback
2445 * @destroy: function called to destroy user_data
2446 * @first_arg_type: type of the first argument
2448 * Asynchronously invokes a method on a remote interface. The method
2449 * call will not be sent over the wire until the application returns
2450 * to the main loop, or blocks in dbus_connection_flush() to write out
2451 * pending data. The call will be completed after a timeout, or when
2452 * a reply is received. When the call returns, the callback specified
2453 * will be invoked; you can then collect the results of the call
2454 * (which may be an error, or a reply), use dbus_g_proxy_end_call().
2456 * TODO this particular function shouldn't die on out of memory,
2457 * since you should be able to do a call with large arguments.
2459 * Returns: call identifier.
2461 #ifdef __SYMBIAN32__
2465 dbus_g_proxy_begin_call (DBusGProxy *proxy,
2467 DBusGProxyCallNotify notify,
2469 GDestroyNotify destroy,
2470 GType first_arg_type,
2475 GValueArray *arg_values;
2477 g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), NULL);
2478 g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), NULL);
2480 va_start (args, first_arg_type);
2482 DBUS_G_VALUE_ARRAY_COLLECT_ALL (arg_values, first_arg_type, args);
2484 call_id = dbus_g_proxy_begin_call_internal (proxy, method, notify, user_data, destroy, arg_values,-1);
2486 g_value_array_free (arg_values);
2490 return DBUS_G_PROXY_ID_TO_CALL (call_id);
2494 * dbus_g_proxy_begin_call_with_timeout:
2495 * @proxy: a proxy for a remote interface
2496 * @method: the name of the method to invoke
2497 * @notify: callback to be invoked when method returns
2498 * @user_data: user data passed to callback
2499 * @destroy: function called to destroy user_data
2500 * @timeout: specify the timeout in milliseconds
2501 * @first_arg_type: type of the first argument
2503 * Asynchronously invokes a method on a remote interface. The method
2504 * call will not be sent over the wire until the application returns
2505 * to the main loop, or blocks in dbus_connection_flush() to write out
2506 * pending data. The call will be completed after a timeout, or when
2507 * a reply is received. When the call returns, the callback specified
2508 * will be invoked; you can then collect the results of the call
2509 * (which may be an error, or a reply), use dbus_g_proxy_end_call().
2511 * TODO this particular function shouldn't die on out of memory,
2512 * since you should be able to do a call with large arguments.
2514 * Returns: call identifier.
2516 #ifdef __SYMBIAN32__
2520 dbus_g_proxy_begin_call_with_timeout (DBusGProxy *proxy,
2522 DBusGProxyCallNotify notify,
2524 GDestroyNotify destroy,
2526 GType first_arg_type,
2531 GValueArray *arg_values;
2533 g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), NULL);
2534 g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), NULL);
2536 va_start (args, first_arg_type);
2538 DBUS_G_VALUE_ARRAY_COLLECT_ALL (arg_values, first_arg_type, args);
2540 call_id = dbus_g_proxy_begin_call_internal (proxy, method, notify, user_data, destroy, arg_values,timeout);
2542 g_value_array_free (arg_values);
2546 return DBUS_G_PROXY_ID_TO_CALL (call_id);
2550 * dbus_g_proxy_end_call:
2551 * @proxy: a proxy for a remote interface
2552 * @call: the pending call ID from dbus_g_proxy_begin_call()
2553 * @error: return location for an error
2554 * @first_arg_type: type of first "out" argument
2556 * Collects the results of a method call. The method call was normally
2557 * initiated with dbus_g_proxy_end_call(). You may use this function
2558 * outside of the callback given to dbus_g_proxy_begin_call; in that
2559 * case this function will block if the results haven't yet been
2562 * If the call results in an error, the error is set as normal for
2563 * GError and the function returns #FALSE.
2565 * Otherwise, the "out" parameters and return value of the
2566 * method are stored in the provided varargs list.
2567 * The list should be terminated with G_TYPE_INVALID.
2569 * Returns: #FALSE if an error is set.
2571 #ifdef __SYMBIAN32__
2575 dbus_g_proxy_end_call (DBusGProxy *proxy,
2576 DBusGProxyCall *call,
2578 GType first_arg_type,
2584 va_start (args, first_arg_type);
2586 ret = dbus_g_proxy_end_call_internal (proxy, GPOINTER_TO_UINT (call), error, first_arg_type, args);
2594 * dbus_g_proxy_call:
2595 * @proxy: a proxy for a remote interface
2596 * @method: method to invoke
2597 * @error: return location for an error
2598 * @first_arg_type: type of first "in" argument
2600 * Function for synchronously invoking a method and receiving reply
2601 * values. This function is equivalent to dbus_g_proxy_begin_call
2602 * followed by dbus_g_proxy_end_call. All of the input arguments are
2603 * specified first, followed by G_TYPE_INVALID, followed by all of the
2604 * output values, followed by a second G_TYPE_INVALID. Note that
2605 * this means you must always specify G_TYPE_INVALID twice.
2607 * Returns: #FALSE if an error is set, #TRUE otherwise.
2609 #ifdef __SYMBIAN32__
2613 dbus_g_proxy_call (DBusGProxy *proxy,
2616 GType first_arg_type,
2622 GValueArray *in_args;
2624 g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), FALSE);
2625 g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), FALSE);
2627 va_start (args, first_arg_type);
2629 DBUS_G_VALUE_ARRAY_COLLECT_ALL (in_args, first_arg_type, args);
2631 call_id = dbus_g_proxy_begin_call_internal (proxy, method, NULL, NULL, NULL, in_args,-1);
2633 g_value_array_free (in_args);
2635 first_arg_type = va_arg (args, GType);
2636 ret = dbus_g_proxy_end_call_internal (proxy, call_id, error, first_arg_type, args);
2644 * dbus_g_proxy_call_with_timeout:
2645 * @proxy: a proxy for a remote interface
2646 * @method: method to invoke
2647 * @timeout: specify the timeout in milliseconds
2648 * @error: return location for an error
2649 * @first_arg_type: type of first "in" argument
2651 * Function for synchronously invoking a method and receiving reply
2652 * values. This function is equivalent to dbus_g_proxy_begin_call
2653 * followed by dbus_g_proxy_end_call. All of the input arguments are
2654 * specified first, followed by G_TYPE_INVALID, followed by all of the
2655 * output values, followed by a second G_TYPE_INVALID. Note that
2656 * this means you must always specify G_TYPE_INVALID twice.
2658 * Returns: #FALSE if an error is set, #TRUE otherwise.
2660 #ifdef __SYMBIAN32__
2664 dbus_g_proxy_call_with_timeout (DBusGProxy *proxy,
2668 GType first_arg_type,
2674 GValueArray *in_args;
2676 g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), FALSE);
2677 g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), FALSE);
2679 va_start (args, first_arg_type);
2681 DBUS_G_VALUE_ARRAY_COLLECT_ALL (in_args, first_arg_type, args);
2683 call_id = dbus_g_proxy_begin_call_internal (proxy, method, NULL, NULL, NULL, in_args,timeout);
2685 g_value_array_free (in_args);
2687 first_arg_type = va_arg (args, GType);
2688 ret = dbus_g_proxy_end_call_internal (proxy, call_id, error, first_arg_type, args);
2696 * dbus_g_proxy_call_no_reply:
2697 * @proxy: a proxy for a remote interface
2698 * @method: the name of the method to invoke
2699 * @first_arg_type: type of the first argument
2701 * Sends a method call message as with dbus_g_proxy_begin_call(), but
2702 * does not ask for a reply or allow you to receive one.
2704 * TODO: this particular function shouldn't die on out of memory,
2705 * since you should be able to do a call with large arguments.
2707 #ifdef __SYMBIAN32__
2711 dbus_g_proxy_call_no_reply (DBusGProxy *proxy,
2713 GType first_arg_type,
2716 DBusMessage *message;
2718 GValueArray *in_args;
2719 DBusGProxyPrivate *priv;
2721 g_return_if_fail (DBUS_IS_G_PROXY (proxy));
2722 g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
2724 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2726 va_start (args, first_arg_type);
2727 DBUS_G_VALUE_ARRAY_COLLECT_ALL (in_args, first_arg_type, args);
2729 message = dbus_g_proxy_marshal_args_to_message (proxy, method, in_args);
2731 g_value_array_free (in_args);
2737 dbus_message_set_no_reply (message, TRUE);
2739 if (!dbus_connection_send (priv->manager->connection,
2743 dbus_message_unref (message);
2747 g_error ("Out of memory");
2751 * dbus_g_proxy_cancel_call
2752 * @proxy: a proxy for a remote interface
2753 * @call: the pending call ID from dbus_g_proxy_begin_call()
2755 * Cancels a pending method call. The method call was normally
2756 * initiated with dbus_g_proxy_begin_call(). This function
2757 * may not be used on pending calls that have already been
2758 * ended with dbus_g_proxy_end_call.
2760 #ifdef __SYMBIAN32__
2764 dbus_g_proxy_cancel_call (DBusGProxy *proxy,
2765 DBusGProxyCall *call)
2768 DBusPendingCall *pending;
2769 DBusGProxyPrivate *priv;
2771 g_return_if_fail (DBUS_IS_G_PROXY (proxy));
2772 g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
2774 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2776 call_id = DBUS_G_PROXY_CALL_TO_ID (call);
2778 pending = g_hash_table_lookup (priv->pending_calls, GUINT_TO_POINTER (call_id));
2779 g_return_if_fail (pending != NULL);
2781 dbus_pending_call_cancel (pending);
2783 g_hash_table_remove (priv->pending_calls, GUINT_TO_POINTER (call_id));
2787 * dbus_g_proxy_send:
2788 * @proxy: a proxy for a remote interface
2789 * @message: the message to address and send
2790 * @client_serial: return location for message's serial, or #NULL
2792 * Sends a message to the interface we're proxying for. Does not
2793 * block or wait for a reply. The message is only actually written out
2794 * when you return to the main loop or block in
2795 * dbus_connection_flush().
2797 * The message is modified to be addressed to the target interface.
2798 * That is, a destination name field or whatever is needed will be
2799 * added to the message. The basic point of this function is to add
2800 * the necessary header fields, otherwise it's equivalent to
2801 * dbus_connection_send().
2803 * This function adds a reference to the message, so the caller
2804 * still owns its original reference.
2806 #ifdef __SYMBIAN32__
2810 dbus_g_proxy_send (DBusGProxy *proxy,
2811 DBusMessage *message,
2812 dbus_uint32_t *client_serial)
2814 DBusGProxyPrivate *priv;
2816 g_return_if_fail (DBUS_IS_G_PROXY (proxy));
2817 g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
2819 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2823 if (!dbus_message_set_destination (message, priv->name))
2824 g_error ("Out of memory");
2828 if (!dbus_message_set_path (message, priv->path))
2829 g_error ("Out of memory");
2831 if (priv->interface)
2833 if (!dbus_message_set_interface (message, priv->interface))
2834 g_error ("Out of memory");
2837 if (!dbus_connection_send (priv->manager->connection, message, client_serial))
2838 g_error ("Out of memory\n");
2842 array_free_all (gpointer array)
2844 g_array_free (array, TRUE);
2848 * dbus_g_proxy_add_signal:
2849 * @proxy: the proxy for a remote interface
2850 * @signal_name: the name of the signal
2851 * @first_type: the first argument type, or G_TYPE_INVALID if none
2853 * Specifies the argument signature of a signal;.only necessary
2854 * if the remote object does not support introspection. The arguments
2855 * specified are the GLib types expected.
2857 #ifdef __SYMBIAN32__
2861 dbus_g_proxy_add_signal (DBusGProxy *proxy,
2862 const char *signal_name,
2871 DBusGProxyPrivate *priv;
2873 g_return_if_fail (DBUS_IS_G_PROXY (proxy));
2874 g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
2875 g_return_if_fail (signal_name != NULL);
2877 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2879 name = create_signal_name (priv->interface, signal_name);
2881 q = g_quark_from_string (name);
2883 g_return_if_fail (g_datalist_id_get_data (&priv->signal_signatures, q) == NULL);
2885 gtypesig = g_array_new (FALSE, TRUE, sizeof (GType));
2887 va_start (args, first_type);
2889 while (gtype != G_TYPE_INVALID)
2891 g_array_append_val (gtypesig, gtype);
2892 gtype = va_arg (args, GType);
2896 #ifndef G_DISABLE_CHECKS
2897 if (_dbus_gobject_lookup_marshaller (G_TYPE_NONE, gtypesig->len, (const GType*) gtypesig->data) == NULL)
2898 g_warning ("No marshaller for signature of signal '%s'", signal_name);
2902 g_datalist_id_set_data_full (&priv->signal_signatures,
2910 * dbus_g_proxy_connect_signal:
2911 * @proxy: a proxy for a remote interface
2912 * @signal_name: the DBus signal name to listen for
2913 * @handler: the handler to connect
2914 * @data: data to pass to handler
2915 * @free_data_func: callback function to destroy data
2917 * Connect a signal handler to a proxy for a remote interface. When
2918 * the remote interface emits the specified signal, the proxy will
2919 * emit a corresponding GLib signal.
2921 #ifdef __SYMBIAN32__
2925 dbus_g_proxy_connect_signal (DBusGProxy *proxy,
2926 const char *signal_name,
2929 GClosureNotify free_data_func)
2934 DBusGProxyPrivate *priv;
2936 g_return_if_fail (DBUS_IS_G_PROXY (proxy));
2937 g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
2938 g_return_if_fail (signal_name != NULL);
2939 g_return_if_fail (handler != NULL);
2941 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2942 name = create_signal_name (priv->interface, signal_name);
2944 q = g_quark_try_string (name);
2946 #ifndef G_DISABLE_CHECKS
2947 if (q == 0 || g_datalist_id_get_data (&priv->signal_signatures, q) == NULL)
2949 g_warning ("Must add the signal '%s' with dbus_g_proxy_add_signal() prior to connecting to it\n", name);
2955 closure = g_cclosure_new (G_CALLBACK (handler), data, free_data_func);
2957 g_signal_connect_closure_by_id (G_OBJECT (proxy),
2966 * dbus_g_proxy_disconnect_signal:
2967 * @proxy: a proxy for a remote interface
2968 * @signal_name: the DBus signal name to disconnect
2969 * @handler: the handler to disconnect
2970 * @data: the data that was registered with handler
2972 * Disconnect all signal handlers from a proxy that match the given
2975 #ifdef __SYMBIAN32__
2979 dbus_g_proxy_disconnect_signal (DBusGProxy *proxy,
2980 const char *signal_name,
2986 DBusGProxyPrivate *priv;
2988 g_return_if_fail (DBUS_IS_G_PROXY (proxy));
2989 g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
2990 g_return_if_fail (signal_name != NULL);
2991 g_return_if_fail (handler != NULL);
2993 priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
2994 name = create_signal_name (priv->interface, signal_name);
2996 q = g_quark_try_string (name);
3000 g_signal_handlers_disconnect_matched (G_OBJECT (proxy),
3001 G_SIGNAL_MATCH_DETAIL |
3002 G_SIGNAL_MATCH_FUNC |
3003 G_SIGNAL_MATCH_DATA,
3008 G_CALLBACK (handler), data);
3010 (gpointer)(handler), data);
3015 g_warning ("Attempt to disconnect from signal '%s' which is not registered\n",
3022 /** @} End of DBusGLib public */
3024 #ifdef DBUS_BUILD_TESTS
3027 * @ingroup DBusGLibInternals
3028 * Unit test for GLib proxy functions
3029 * Returns: #TRUE on success.
3032 _dbus_g_proxy_test (void)
3039 #endif /* DBUS_BUILD_TESTS */