os/ossrv/ofdbus/dbus-glib/dbus/dbus-gproxy.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* -*- mode: C; c-file-style: "gnu" -*- */
sl@0
     2
/* dbus-gproxy.c Proxy for remote objects
sl@0
     3
 *
sl@0
     4
 * Copyright (C) 2003, 2004, 2005 Red Hat, Inc.
sl@0
     5
 * Copyright (C) 2005 Nokia
sl@0
     6
 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
sl@0
     7
 * Licensed under the Academic Free License version 2.1
sl@0
     8
 * 
sl@0
     9
 * This program is free software; you can redistribute it and/or modify
sl@0
    10
 * it under the terms of the GNU General Public License as published by
sl@0
    11
 * the Free Software Foundation; either version 2 of the License, or
sl@0
    12
 * (at your option) any later version.
sl@0
    13
 *
sl@0
    14
 * This program is distributed in the hope that it will be useful,
sl@0
    15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
sl@0
    17
 * GNU General Public License for more details.
sl@0
    18
 * 
sl@0
    19
 * You should have received a copy of the GNU General Public License
sl@0
    20
 * along with this program; if not, write to the Free Software
sl@0
    21
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
sl@0
    22
 *
sl@0
    23
 */
sl@0
    24
#include <dbus/dbus-glib.h>
sl@0
    25
#include <dbus/dbus-glib-lowlevel.h>
sl@0
    26
#include <dbus/dbus-signature.h>
sl@0
    27
#include "dbus-gutils.h"
sl@0
    28
#include "dbus-gsignature.h"
sl@0
    29
#include "dbus-gvalue.h"
sl@0
    30
#include "dbus-gvalue-utils.h"
sl@0
    31
#include "dbus-gobject.h"
sl@0
    32
#include <string.h>
sl@0
    33
sl@0
    34
sl@0
    35
#ifdef __SYMBIAN32__
sl@0
    36
#include<glib_global.h>
sl@0
    37
#include<glib-object.h>
sl@0
    38
#endif
sl@0
    39
sl@0
    40
#ifndef __SYMBIAN32__
sl@0
    41
#include <glib/gi18n.h>
sl@0
    42
#include <libintl.h>
sl@0
    43
#define _(x) dgettext (GETTEXT_PACKAGE, x)
sl@0
    44
#define N_(x) x
sl@0
    45
#else
sl@0
    46
sl@0
    47
#define _(x) x
sl@0
    48
#define N_(x) x
sl@0
    49
#endif
sl@0
    50
sl@0
    51
#include <gobject/gvaluecollector.h>
sl@0
    52
sl@0
    53
#ifdef __SYMBIAN32__
sl@0
    54
#include "libdbus_glib_wsd_solution.h"
sl@0
    55
#endif
sl@0
    56
sl@0
    57
#define DBUS_G_PROXY_CALL_TO_ID(x) (GPOINTER_TO_UINT(x))
sl@0
    58
#define DBUS_G_PROXY_ID_TO_CALL(x) (GUINT_TO_POINTER(x))
sl@0
    59
#define DBUS_G_PROXY_GET_PRIVATE(o)  \
sl@0
    60
       (G_TYPE_INSTANCE_GET_PRIVATE ((o), DBUS_TYPE_G_PROXY, DBusGProxyPrivate))
sl@0
    61
sl@0
    62
sl@0
    63
/**
sl@0
    64
 * @addtogroup DBusGLibInternals
sl@0
    65
 *
sl@0
    66
 * @{
sl@0
    67
 */
sl@0
    68
sl@0
    69
/**
sl@0
    70
 * DBusGProxyManager typedef
sl@0
    71
 */
sl@0
    72
sl@0
    73
typedef struct _DBusGProxyManager DBusGProxyManager;
sl@0
    74
sl@0
    75
typedef struct _DBusGProxyPrivate DBusGProxyPrivate;
sl@0
    76
sl@0
    77
/**
sl@0
    78
 * Internals of DBusGProxy
sl@0
    79
 */
sl@0
    80
struct _DBusGProxyPrivate
sl@0
    81
{
sl@0
    82
  DBusGProxyManager *manager; /**< Proxy manager */
sl@0
    83
  char *name;                 /**< Name messages go to or NULL */
sl@0
    84
  char *path;                 /**< Path messages go to or NULL */
sl@0
    85
  char *interface;            /**< Interface messages go to or NULL */
sl@0
    86
sl@0
    87
  DBusGProxyCall *name_call;  /**< Pending call id to retrieve name owner */
sl@0
    88
  guint for_owner : 1;        /**< Whether or not this proxy is for a name owner */
sl@0
    89
  guint associated : 1;       /**< Whether or not this proxy is associated (for name proxies) */
sl@0
    90
sl@0
    91
  /* FIXME: make threadsafe? */
sl@0
    92
  guint call_id_counter;      /**< Integer counter for pending calls */
sl@0
    93
sl@0
    94
  GData *signal_signatures;   /**< D-BUS signatures for each signal */
sl@0
    95
sl@0
    96
  GHashTable *pending_calls;  /**< Calls made on this proxy which have not yet returned */
sl@0
    97
};
sl@0
    98
sl@0
    99
static void dbus_g_proxy_init               (DBusGProxy      *proxy);
sl@0
   100
static void dbus_g_proxy_class_init         (DBusGProxyClass *klass);
sl@0
   101
static GObject *dbus_g_proxy_constructor    (GType                  type,
sl@0
   102
					     guint                  n_construct_properties,
sl@0
   103
					     GObjectConstructParam *construct_properties);
sl@0
   104
static void     dbus_g_proxy_set_property       (GObject               *object,
sl@0
   105
						 guint                  prop_id,
sl@0
   106
						 const GValue          *value,
sl@0
   107
						 GParamSpec            *pspec);
sl@0
   108
static void     dbus_g_proxy_get_property       (GObject               *object,
sl@0
   109
						 guint                  prop_id,
sl@0
   110
						 GValue                *value,
sl@0
   111
						 GParamSpec            *pspec);
sl@0
   112
sl@0
   113
static void dbus_g_proxy_finalize           (GObject         *object);
sl@0
   114
static void dbus_g_proxy_dispose            (GObject         *object);
sl@0
   115
static void dbus_g_proxy_destroy            (DBusGProxy      *proxy);
sl@0
   116
static void dbus_g_proxy_emit_remote_signal (DBusGProxy      *proxy,
sl@0
   117
                                             DBusMessage     *message);
sl@0
   118
sl@0
   119
static DBusGProxyCall *manager_begin_bus_call (DBusGProxyManager    *manager,
sl@0
   120
					       const char          *method,
sl@0
   121
					       DBusGProxyCallNotify notify,
sl@0
   122
					       gpointer             data,
sl@0
   123
					       GDestroyNotify       destroy,
sl@0
   124
					       GType                first_arg_type,
sl@0
   125
					       ...);
sl@0
   126
static guint dbus_g_proxy_begin_call_internal (DBusGProxy          *proxy,
sl@0
   127
					       const char          *method,
sl@0
   128
					       DBusGProxyCallNotify notify,
sl@0
   129
					       gpointer             data,
sl@0
   130
					       GDestroyNotify       destroy,
sl@0
   131
					       GValueArray         *args,
sl@0
   132
					       int timeout );
sl@0
   133
static gboolean dbus_g_proxy_end_call_internal (DBusGProxy        *proxy,
sl@0
   134
						guint              call_id,
sl@0
   135
						GError           **error,
sl@0
   136
						GType              first_arg_type,
sl@0
   137
						va_list            args);
sl@0
   138
sl@0
   139
/**
sl@0
   140
 * A list of proxies with a given name+path+interface, used to
sl@0
   141
 * route incoming signals.
sl@0
   142
 */
sl@0
   143
typedef struct
sl@0
   144
{
sl@0
   145
  GSList *proxies; /**< The list of proxies */
sl@0
   146
sl@0
   147
  char name[4]; /**< name (empty string for none), nul byte,
sl@0
   148
                 *   path, nul byte,
sl@0
   149
                 *   interface, nul byte
sl@0
   150
                 */
sl@0
   151
  
sl@0
   152
} DBusGProxyList;
sl@0
   153
sl@0
   154
/**
sl@0
   155
 * DBusGProxyManager's primary task is to route signals to the proxies
sl@0
   156
 * those signals are emitted on. In order to do this it also has to
sl@0
   157
 * track the owners of the names proxies are bound to.
sl@0
   158
 */
sl@0
   159
struct _DBusGProxyManager
sl@0
   160
{
sl@0
   161
  GStaticMutex lock; /**< Thread lock */
sl@0
   162
  int refcount;      /**< Reference count */
sl@0
   163
  DBusConnection *connection; /**< Connection we're associated with. */
sl@0
   164
sl@0
   165
  DBusGProxy *bus_proxy; /**< Special internal proxy used to talk to the bus */
sl@0
   166
sl@0
   167
  GHashTable *proxy_lists; /**< Hash used to route incoming signals
sl@0
   168
                            *   and iterate over proxies
sl@0
   169
                            */
sl@0
   170
  GHashTable *owner_names; /**< Hash to keep track of mapping from
sl@0
   171
			    *   base name -> [name,name,...] for proxies which
sl@0
   172
			    *   are for names.
sl@0
   173
			    */
sl@0
   174
  GSList *unassociated_proxies;     /**< List of name proxies for which
sl@0
   175
				     *   there was no result for
sl@0
   176
				     *   GetNameOwner
sl@0
   177
				     */
sl@0
   178
};
sl@0
   179
sl@0
   180
static DBusGProxyManager *dbus_g_proxy_manager_ref    (DBusGProxyManager *manager);
sl@0
   181
static DBusHandlerResult  dbus_g_proxy_manager_filter (DBusConnection    *connection,
sl@0
   182
                                                       DBusMessage       *message,
sl@0
   183
                                                       void              *user_data);
sl@0
   184
sl@0
   185
sl@0
   186
/** Lock the DBusGProxyManager */
sl@0
   187
#define LOCK_MANAGER(mgr)   (g_static_mutex_lock (&(mgr)->lock))
sl@0
   188
/** Unlock the DBusGProxyManager */
sl@0
   189
#define UNLOCK_MANAGER(mgr) (g_static_mutex_unlock (&(mgr)->lock))
sl@0
   190
sl@0
   191
sl@0
   192
#if EMULATOR
sl@0
   193
GET_STATIC_VAR_FROM_TLS(g_proxy_manager_slot,dbus_gproxy,int )
sl@0
   194
#define g_proxy_manager_slot (*GET_DBUS_WSD_VAR_NAME(g_proxy_manager_slot,dbus_gproxy,s)())
sl@0
   195
GET_STATIC_VAR_FROM_TLS(connection_g_proxy_lock,dbus_gproxy,GStaticMutex )
sl@0
   196
#define connection_g_proxy_lock (*GET_DBUS_WSD_VAR_NAME(connection_g_proxy_lock,dbus_gproxy,s)())
sl@0
   197
sl@0
   198
#else
sl@0
   199
static int g_proxy_manager_slot = -1;
sl@0
   200
/* Lock controlling get/set manager as data on each connection */
sl@0
   201
static GStaticMutex connection_g_proxy_lock = G_STATIC_MUTEX_INIT;
sl@0
   202
sl@0
   203
#endif
sl@0
   204
sl@0
   205
sl@0
   206
sl@0
   207
sl@0
   208
static DBusGProxyManager*
sl@0
   209
dbus_g_proxy_manager_get (DBusConnection *connection)
sl@0
   210
{
sl@0
   211
  DBusGProxyManager *manager;
sl@0
   212
sl@0
   213
  dbus_connection_allocate_data_slot (&g_proxy_manager_slot);
sl@0
   214
  if (g_proxy_manager_slot < 0)
sl@0
   215
    g_error ("out of memory");
sl@0
   216
  
sl@0
   217
  g_static_mutex_lock (&connection_g_proxy_lock);
sl@0
   218
  
sl@0
   219
  manager = dbus_connection_get_data (connection, g_proxy_manager_slot);
sl@0
   220
  if (manager != NULL)
sl@0
   221
    {
sl@0
   222
      dbus_connection_free_data_slot (&g_proxy_manager_slot);
sl@0
   223
      dbus_g_proxy_manager_ref (manager);
sl@0
   224
      g_static_mutex_unlock (&connection_g_proxy_lock);
sl@0
   225
      return manager;
sl@0
   226
    }
sl@0
   227
  
sl@0
   228
  manager = g_new0 (DBusGProxyManager, 1);
sl@0
   229
sl@0
   230
  manager->refcount = 1;
sl@0
   231
  manager->connection = connection;
sl@0
   232
sl@0
   233
  g_static_mutex_init (&manager->lock);
sl@0
   234
sl@0
   235
  /* Proxy managers keep the connection alive, which means that
sl@0
   236
   * DBusGProxy indirectly does. To free a connection you have to free
sl@0
   237
   * all the proxies referring to it.
sl@0
   238
   */
sl@0
   239
  dbus_connection_ref (manager->connection);
sl@0
   240
sl@0
   241
  dbus_connection_set_data (connection, g_proxy_manager_slot,
sl@0
   242
                            manager, NULL);
sl@0
   243
sl@0
   244
  dbus_connection_add_filter (connection, dbus_g_proxy_manager_filter,
sl@0
   245
                              manager, NULL);
sl@0
   246
  
sl@0
   247
  g_static_mutex_unlock (&connection_g_proxy_lock);
sl@0
   248
  
sl@0
   249
  return manager;
sl@0
   250
}
sl@0
   251
sl@0
   252
static DBusGProxyManager * 
sl@0
   253
dbus_g_proxy_manager_ref (DBusGProxyManager *manager)
sl@0
   254
{
sl@0
   255
  g_assert (manager != NULL);
sl@0
   256
  g_assert (manager->refcount > 0);
sl@0
   257
sl@0
   258
  LOCK_MANAGER (manager);
sl@0
   259
  
sl@0
   260
  manager->refcount += 1;
sl@0
   261
sl@0
   262
  UNLOCK_MANAGER (manager);
sl@0
   263
sl@0
   264
  return manager;
sl@0
   265
}
sl@0
   266
sl@0
   267
static void
sl@0
   268
dbus_g_proxy_manager_unref (DBusGProxyManager *manager)
sl@0
   269
{
sl@0
   270
  g_assert (manager != NULL);
sl@0
   271
  g_assert (manager->refcount > 0);
sl@0
   272
sl@0
   273
  LOCK_MANAGER (manager);
sl@0
   274
  manager->refcount -= 1;
sl@0
   275
  if (manager->refcount == 0)
sl@0
   276
    {
sl@0
   277
      UNLOCK_MANAGER (manager);
sl@0
   278
sl@0
   279
      if (manager->bus_proxy)
sl@0
   280
	g_object_unref (manager->bus_proxy);
sl@0
   281
sl@0
   282
      if (manager->proxy_lists)
sl@0
   283
        {
sl@0
   284
          /* can't have any proxies left since they hold
sl@0
   285
           * a reference to the proxy manager.
sl@0
   286
           */
sl@0
   287
          g_assert (g_hash_table_size (manager->proxy_lists) == 0);
sl@0
   288
          
sl@0
   289
          g_hash_table_destroy (manager->proxy_lists);
sl@0
   290
          manager->proxy_lists = NULL;
sl@0
   291
sl@0
   292
        }
sl@0
   293
sl@0
   294
      if (manager->owner_names)
sl@0
   295
	{
sl@0
   296
	  /* Since we destroyed all proxies, none can be tracking
sl@0
   297
	   * name owners
sl@0
   298
	   */
sl@0
   299
          g_assert (g_hash_table_size (manager->owner_names) == 0);
sl@0
   300
sl@0
   301
	  g_hash_table_destroy (manager->owner_names);
sl@0
   302
	  manager->owner_names = NULL;
sl@0
   303
	}
sl@0
   304
sl@0
   305
      g_assert (manager->unassociated_proxies == NULL);
sl@0
   306
      
sl@0
   307
      g_static_mutex_free (&manager->lock);
sl@0
   308
sl@0
   309
      g_static_mutex_lock (&connection_g_proxy_lock);
sl@0
   310
sl@0
   311
      dbus_connection_remove_filter (manager->connection, dbus_g_proxy_manager_filter,
sl@0
   312
                                     manager);
sl@0
   313
      
sl@0
   314
      dbus_connection_set_data (manager->connection,
sl@0
   315
                                g_proxy_manager_slot,
sl@0
   316
                                NULL, NULL);
sl@0
   317
sl@0
   318
      g_static_mutex_unlock (&connection_g_proxy_lock);
sl@0
   319
      
sl@0
   320
      dbus_connection_unref (manager->connection);
sl@0
   321
      g_free (manager);
sl@0
   322
sl@0
   323
      dbus_connection_free_data_slot (&g_proxy_manager_slot);
sl@0
   324
    }
sl@0
   325
  else
sl@0
   326
    {
sl@0
   327
      UNLOCK_MANAGER (manager);
sl@0
   328
    }
sl@0
   329
}
sl@0
   330
sl@0
   331
static guint
sl@0
   332
tristring_hash (gconstpointer key)
sl@0
   333
{
sl@0
   334
  const char *p = key;
sl@0
   335
  guint h = *p;
sl@0
   336
sl@0
   337
  if (h)
sl@0
   338
    {
sl@0
   339
      for (p += 1; *p != '\0'; p++)
sl@0
   340
        h = (h << 5) - h + *p;
sl@0
   341
    }
sl@0
   342
sl@0
   343
  /* skip nul and do the next substring */
sl@0
   344
  for (p += 1; *p != '\0'; p++)
sl@0
   345
    h = (h << 5) - h + *p;
sl@0
   346
sl@0
   347
  /* skip nul again and another substring */
sl@0
   348
  for (p += 1; *p != '\0'; p++)
sl@0
   349
    h = (h << 5) - h + *p;
sl@0
   350
  
sl@0
   351
  return h;
sl@0
   352
}
sl@0
   353
sl@0
   354
static gboolean
sl@0
   355
strequal_len (const char *a,
sl@0
   356
              const char *b,
sl@0
   357
              size_t     *lenp)
sl@0
   358
{
sl@0
   359
  size_t a_len;
sl@0
   360
  size_t b_len;
sl@0
   361
sl@0
   362
  a_len = strlen (a);
sl@0
   363
  b_len = strlen (b);
sl@0
   364
sl@0
   365
  if (a_len != b_len)
sl@0
   366
    return FALSE;
sl@0
   367
sl@0
   368
  if (memcmp (a, b, a_len) != 0)
sl@0
   369
    return FALSE;
sl@0
   370
  
sl@0
   371
  *lenp = a_len;
sl@0
   372
sl@0
   373
  return TRUE;
sl@0
   374
}
sl@0
   375
sl@0
   376
static gboolean
sl@0
   377
tristring_equal (gconstpointer  a,
sl@0
   378
                 gconstpointer  b)
sl@0
   379
{
sl@0
   380
  const char *ap = a;
sl@0
   381
  const char *bp = b;
sl@0
   382
  size_t len;
sl@0
   383
sl@0
   384
  if (!strequal_len (ap, bp, &len))
sl@0
   385
    return FALSE;
sl@0
   386
sl@0
   387
  ap += len + 1;
sl@0
   388
  bp += len + 1;
sl@0
   389
sl@0
   390
  if (!strequal_len (ap, bp, &len))
sl@0
   391
    return FALSE;
sl@0
   392
sl@0
   393
  ap += len + 1;
sl@0
   394
  bp += len + 1;
sl@0
   395
sl@0
   396
  if (strcmp (ap, bp) != 0)
sl@0
   397
    return FALSE;
sl@0
   398
  
sl@0
   399
  return TRUE;
sl@0
   400
}
sl@0
   401
sl@0
   402
static char*
sl@0
   403
tristring_alloc_from_strings (size_t      padding_before,
sl@0
   404
                              const char *name,
sl@0
   405
                              const char *path,
sl@0
   406
                              const char *interface)
sl@0
   407
{
sl@0
   408
  size_t name_len, iface_len, path_len, len;
sl@0
   409
  char *tri;
sl@0
   410
  
sl@0
   411
  if (name)
sl@0
   412
    name_len = strlen (name);
sl@0
   413
  else
sl@0
   414
    name_len = 0;
sl@0
   415
sl@0
   416
  path_len = strlen (path);
sl@0
   417
  
sl@0
   418
  iface_len = strlen (interface);
sl@0
   419
sl@0
   420
  tri = g_malloc (padding_before + name_len + path_len + iface_len + 3);
sl@0
   421
sl@0
   422
  len = padding_before;
sl@0
   423
  
sl@0
   424
  if (name)
sl@0
   425
    memcpy (&tri[len], name, name_len);
sl@0
   426
sl@0
   427
  len += name_len;
sl@0
   428
  tri[len] = '\0';
sl@0
   429
  len += 1;
sl@0
   430
sl@0
   431
  g_assert (len == (padding_before + name_len + 1));
sl@0
   432
  
sl@0
   433
  memcpy (&tri[len], path, path_len);
sl@0
   434
  len += path_len;
sl@0
   435
  tri[len] = '\0';
sl@0
   436
  len += 1;
sl@0
   437
sl@0
   438
  g_assert (len == (padding_before + name_len + path_len + 2));
sl@0
   439
  
sl@0
   440
  memcpy (&tri[len], interface, iface_len);
sl@0
   441
  len += iface_len;
sl@0
   442
  tri[len] = '\0';
sl@0
   443
  len += 1;
sl@0
   444
sl@0
   445
  g_assert (len == (padding_before + name_len + path_len + iface_len + 3));
sl@0
   446
sl@0
   447
  return tri;
sl@0
   448
}
sl@0
   449
sl@0
   450
static char*
sl@0
   451
tristring_from_proxy (DBusGProxy *proxy)
sl@0
   452
{
sl@0
   453
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
   454
sl@0
   455
  return tristring_alloc_from_strings (0,
sl@0
   456
                                       priv->name,
sl@0
   457
                                       priv->path,
sl@0
   458
                                       priv->interface);
sl@0
   459
}
sl@0
   460
sl@0
   461
static char*
sl@0
   462
tristring_from_message (DBusMessage *message)
sl@0
   463
{
sl@0
   464
  const char *path;
sl@0
   465
  const char *interface;
sl@0
   466
sl@0
   467
  path = dbus_message_get_path (message);
sl@0
   468
  interface = dbus_message_get_interface (message);
sl@0
   469
sl@0
   470
  g_assert (path);
sl@0
   471
  g_assert (interface);
sl@0
   472
  
sl@0
   473
  return tristring_alloc_from_strings (0,
sl@0
   474
                                       dbus_message_get_sender (message),
sl@0
   475
                                       path, interface);
sl@0
   476
}
sl@0
   477
sl@0
   478
static DBusGProxyList*
sl@0
   479
g_proxy_list_new (DBusGProxy *first_proxy)
sl@0
   480
{
sl@0
   481
  DBusGProxyList *list;
sl@0
   482
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(first_proxy);
sl@0
   483
  
sl@0
   484
  list = (void*) tristring_alloc_from_strings (G_STRUCT_OFFSET (DBusGProxyList, name),
sl@0
   485
                                               priv->name,
sl@0
   486
                                               priv->path,
sl@0
   487
                                               priv->interface);
sl@0
   488
  list->proxies = NULL;
sl@0
   489
sl@0
   490
  return list;
sl@0
   491
}
sl@0
   492
sl@0
   493
static void
sl@0
   494
g_proxy_list_free (DBusGProxyList *list)
sl@0
   495
{
sl@0
   496
  /* we don't hold a reference to the proxies in the list,
sl@0
   497
   * as they ref the GProxyManager
sl@0
   498
   */
sl@0
   499
  g_slist_free (list->proxies);  
sl@0
   500
sl@0
   501
  g_free (list);
sl@0
   502
}
sl@0
   503
sl@0
   504
static char*
sl@0
   505
g_proxy_get_match_rule (DBusGProxy *proxy)
sl@0
   506
{
sl@0
   507
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
   508
  /* FIXME Escaping is required here */
sl@0
   509
  
sl@0
   510
  if (priv->name)
sl@0
   511
    return g_strdup_printf ("type='signal',sender='%s',path='%s',interface='%s'",
sl@0
   512
                            priv->name, priv->path, priv->interface);
sl@0
   513
  else
sl@0
   514
    return g_strdup_printf ("type='signal',path='%s',interface='%s'",
sl@0
   515
                            priv->path, priv->interface);
sl@0
   516
}
sl@0
   517
sl@0
   518
typedef struct
sl@0
   519
{
sl@0
   520
  char *name;
sl@0
   521
  guint refcount;
sl@0
   522
} DBusGProxyNameOwnerInfo;
sl@0
   523
sl@0
   524
static gint
sl@0
   525
find_name_in_info (gconstpointer a, gconstpointer b)
sl@0
   526
{
sl@0
   527
  const DBusGProxyNameOwnerInfo *info = a;
sl@0
   528
  const char *name = b;
sl@0
   529
sl@0
   530
  return strcmp (info->name, name);
sl@0
   531
}
sl@0
   532
sl@0
   533
typedef struct
sl@0
   534
{
sl@0
   535
  const char *name;
sl@0
   536
  const char *owner;
sl@0
   537
  DBusGProxyNameOwnerInfo *info;
sl@0
   538
} DBusGProxyNameOwnerForeachData;
sl@0
   539
sl@0
   540
static void
sl@0
   541
name_owner_foreach (gpointer key, gpointer val, gpointer data)
sl@0
   542
{
sl@0
   543
  const char *owner;
sl@0
   544
  DBusGProxyNameOwnerForeachData *foreach_data;
sl@0
   545
  GSList *names;
sl@0
   546
  GSList *link;
sl@0
   547
sl@0
   548
  owner = key;
sl@0
   549
  names = val;
sl@0
   550
  foreach_data = data;
sl@0
   551
sl@0
   552
  if (foreach_data->owner != NULL)
sl@0
   553
    return;
sl@0
   554
sl@0
   555
  g_assert (foreach_data->info == NULL);
sl@0
   556
sl@0
   557
  link = g_slist_find_custom (names, foreach_data->name, find_name_in_info);
sl@0
   558
  if (link)
sl@0
   559
    {
sl@0
   560
      foreach_data->owner = owner;
sl@0
   561
      foreach_data->info = link->data;
sl@0
   562
    }
sl@0
   563
}
sl@0
   564
sl@0
   565
static gboolean
sl@0
   566
dbus_g_proxy_manager_lookup_name_owner (DBusGProxyManager        *manager,
sl@0
   567
					const char               *name,
sl@0
   568
					DBusGProxyNameOwnerInfo **info,
sl@0
   569
					const char              **owner)
sl@0
   570
{
sl@0
   571
  DBusGProxyNameOwnerForeachData foreach_data;
sl@0
   572
sl@0
   573
  foreach_data.name = name;
sl@0
   574
  foreach_data.owner = NULL;
sl@0
   575
  foreach_data.info = NULL;
sl@0
   576
  
sl@0
   577
  g_hash_table_foreach (manager->owner_names, name_owner_foreach, &foreach_data);
sl@0
   578
sl@0
   579
  *info = foreach_data.info;
sl@0
   580
  *owner = foreach_data.owner;
sl@0
   581
  return *info != NULL;
sl@0
   582
}
sl@0
   583
sl@0
   584
static void
sl@0
   585
insert_nameinfo (DBusGProxyManager       *manager,
sl@0
   586
		 const char              *owner,
sl@0
   587
		 DBusGProxyNameOwnerInfo *info)
sl@0
   588
{
sl@0
   589
  GSList *names;
sl@0
   590
  gboolean insert;
sl@0
   591
sl@0
   592
  names = g_hash_table_lookup (manager->owner_names, owner);
sl@0
   593
sl@0
   594
  /* Only need to g_hash_table_insert the first time */
sl@0
   595
  insert = (names == NULL);
sl@0
   596
sl@0
   597
  names = g_slist_append (names, info); 
sl@0
   598
sl@0
   599
  if (insert)
sl@0
   600
    g_hash_table_insert (manager->owner_names, g_strdup (owner), names);
sl@0
   601
}
sl@0
   602
sl@0
   603
static void
sl@0
   604
dbus_g_proxy_manager_monitor_name_owner (DBusGProxyManager  *manager,
sl@0
   605
					 const char         *owner,
sl@0
   606
					 const char         *name)
sl@0
   607
{
sl@0
   608
  GSList *names;
sl@0
   609
  GSList *link;
sl@0
   610
  DBusGProxyNameOwnerInfo *nameinfo;
sl@0
   611
sl@0
   612
  names = g_hash_table_lookup (manager->owner_names, owner);
sl@0
   613
  link = g_slist_find_custom (names, name, find_name_in_info);
sl@0
   614
  
sl@0
   615
  if (!link)
sl@0
   616
    {
sl@0
   617
      nameinfo = g_new0 (DBusGProxyNameOwnerInfo, 1);
sl@0
   618
      nameinfo->name = g_strdup (name);
sl@0
   619
      nameinfo->refcount = 1;
sl@0
   620
sl@0
   621
      insert_nameinfo (manager, owner, nameinfo);
sl@0
   622
    }
sl@0
   623
  else
sl@0
   624
    {
sl@0
   625
      nameinfo = link->data;
sl@0
   626
      nameinfo->refcount++;
sl@0
   627
    }
sl@0
   628
}
sl@0
   629
sl@0
   630
static void
sl@0
   631
dbus_g_proxy_manager_unmonitor_name_owner (DBusGProxyManager  *manager,
sl@0
   632
					   const char         *name)
sl@0
   633
{
sl@0
   634
  DBusGProxyNameOwnerInfo *info;
sl@0
   635
  const char *owner;
sl@0
   636
  gboolean ret;
sl@0
   637
sl@0
   638
  ret = dbus_g_proxy_manager_lookup_name_owner (manager, name, &info, &owner);
sl@0
   639
  g_assert (ret);
sl@0
   640
  g_assert (info != NULL);
sl@0
   641
  g_assert (owner != NULL);
sl@0
   642
sl@0
   643
  info->refcount--;
sl@0
   644
  if (info->refcount == 0)
sl@0
   645
    {
sl@0
   646
      GSList *names;
sl@0
   647
      GSList *link;
sl@0
   648
sl@0
   649
      names = g_hash_table_lookup (manager->owner_names, owner);
sl@0
   650
      link = g_slist_find_custom (names, name, find_name_in_info);
sl@0
   651
      names = g_slist_delete_link (names, link);
sl@0
   652
      if (names != NULL)
sl@0
   653
	g_hash_table_insert (manager->owner_names, g_strdup (owner), names);
sl@0
   654
      else
sl@0
   655
	g_hash_table_remove (manager->owner_names, owner);
sl@0
   656
sl@0
   657
      g_free (info->name);
sl@0
   658
      g_free (info);
sl@0
   659
    }
sl@0
   660
}
sl@0
   661
sl@0
   662
typedef struct
sl@0
   663
{
sl@0
   664
  const char *name;
sl@0
   665
  GSList *destroyed;
sl@0
   666
} DBusGProxyUnassociateData;
sl@0
   667
sl@0
   668
static void
sl@0
   669
unassociate_proxies (gpointer key, gpointer val, gpointer user_data)
sl@0
   670
{
sl@0
   671
  DBusGProxyList *list;
sl@0
   672
  const char *name;
sl@0
   673
  GSList *tmp;
sl@0
   674
  DBusGProxyUnassociateData *data;
sl@0
   675
sl@0
   676
  list = val;
sl@0
   677
  data = user_data;
sl@0
   678
  name = data->name;
sl@0
   679
  
sl@0
   680
  for (tmp = list->proxies; tmp; tmp = tmp->next)
sl@0
   681
    {
sl@0
   682
      DBusGProxy *proxy = DBUS_G_PROXY (tmp->data);
sl@0
   683
      DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
   684
      DBusGProxyManager *manager;
sl@0
   685
sl@0
   686
      manager = priv->manager;
sl@0
   687
sl@0
   688
      if (!strcmp (priv->name, name))
sl@0
   689
	{
sl@0
   690
	  if (!priv->for_owner)
sl@0
   691
	    {
sl@0
   692
	      g_assert (priv->associated);
sl@0
   693
	      g_assert (priv->name_call == NULL);
sl@0
   694
sl@0
   695
	      priv->associated = FALSE;
sl@0
   696
	      manager->unassociated_proxies = g_slist_prepend (manager->unassociated_proxies, proxy);
sl@0
   697
	    }
sl@0
   698
	  else
sl@0
   699
	    {
sl@0
   700
	      data->destroyed = g_slist_prepend (data->destroyed, proxy);
sl@0
   701
              /* make contents of list into weak pointers in case the objects
sl@0
   702
               * unref each other when disposing */
sl@0
   703
              g_object_add_weak_pointer (G_OBJECT (proxy),
sl@0
   704
                  &(data->destroyed->data));
sl@0
   705
	    }
sl@0
   706
	}
sl@0
   707
    }
sl@0
   708
}
sl@0
   709
sl@0
   710
static void
sl@0
   711
dbus_g_proxy_manager_replace_name_owner (DBusGProxyManager  *manager,
sl@0
   712
					 const char         *name,
sl@0
   713
					 const char         *prev_owner,
sl@0
   714
					 const char         *new_owner)
sl@0
   715
{
sl@0
   716
  GSList *names;
sl@0
   717
	  
sl@0
   718
  if (prev_owner[0] == '\0')
sl@0
   719
    {
sl@0
   720
      GSList *tmp;
sl@0
   721
      GSList *removed;
sl@0
   722
sl@0
   723
      /* We have a new service, look at unassociated proxies */
sl@0
   724
sl@0
   725
      removed = NULL;
sl@0
   726
sl@0
   727
      for (tmp = manager->unassociated_proxies; tmp ; tmp = tmp->next)
sl@0
   728
	{
sl@0
   729
	  DBusGProxy *proxy = tmp->data;
sl@0
   730
	  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
   731
sl@0
   732
	  if (!strcmp (priv->name, name))
sl@0
   733
	    {
sl@0
   734
	      removed = g_slist_prepend (removed, tmp);
sl@0
   735
	      
sl@0
   736
	      dbus_g_proxy_manager_monitor_name_owner (manager, new_owner, name);
sl@0
   737
	      priv->associated = TRUE;
sl@0
   738
	    }
sl@0
   739
	}
sl@0
   740
sl@0
   741
      for (tmp = removed; tmp; tmp = tmp->next)
sl@0
   742
	manager->unassociated_proxies = g_slist_delete_link (manager->unassociated_proxies, tmp->data);
sl@0
   743
      g_slist_free (removed);
sl@0
   744
    }
sl@0
   745
  else
sl@0
   746
    {
sl@0
   747
      DBusGProxyNameOwnerInfo *info;
sl@0
   748
      GSList *link;
sl@0
   749
sl@0
   750
      /* Name owner changed or deleted */ 
sl@0
   751
sl@0
   752
      names = g_hash_table_lookup (manager->owner_names, prev_owner);
sl@0
   753
sl@0
   754
      info = NULL;
sl@0
   755
      if (names != NULL)
sl@0
   756
        {
sl@0
   757
	  link = g_slist_find_custom (names, name, find_name_in_info);
sl@0
   758
sl@0
   759
	  if (link != NULL)
sl@0
   760
	    {
sl@0
   761
	      info = link->data;
sl@0
   762
	  
sl@0
   763
	      names = g_slist_delete_link (names, link);
sl@0
   764
sl@0
   765
	      if (names == NULL)
sl@0
   766
	        g_hash_table_remove (manager->owner_names, prev_owner);
sl@0
   767
	    }
sl@0
   768
        }
sl@0
   769
sl@0
   770
      if (new_owner[0] == '\0')
sl@0
   771
	{
sl@0
   772
	  DBusGProxyUnassociateData data;
sl@0
   773
	  GSList *tmp;
sl@0
   774
sl@0
   775
	  data.name = name;
sl@0
   776
	  data.destroyed = NULL;
sl@0
   777
sl@0
   778
	  /* A service went away, we need to unassociate proxies */
sl@0
   779
	  g_hash_table_foreach (manager->proxy_lists,
sl@0
   780
				unassociate_proxies, &data);
sl@0
   781
sl@0
   782
	  UNLOCK_MANAGER (manager);
sl@0
   783
sl@0
   784
          /* the destroyed list's data pointers are weak pointers, so that we
sl@0
   785
           * don't end up calling destroy on proxies which have already been
sl@0
   786
           * freed up as a result of other ones being destroyed */
sl@0
   787
	  for (tmp = data.destroyed; tmp; tmp = tmp->next)
sl@0
   788
            if (tmp->data != NULL)
sl@0
   789
              {
sl@0
   790
                g_object_remove_weak_pointer (G_OBJECT (tmp->data),
sl@0
   791
                    &(tmp->data));
sl@0
   792
                dbus_g_proxy_destroy (tmp->data);
sl@0
   793
              }
sl@0
   794
	  g_slist_free (data.destroyed);
sl@0
   795
sl@0
   796
	  LOCK_MANAGER (manager);
sl@0
   797
sl@0
   798
	  if (info)
sl@0
   799
	    {
sl@0
   800
	      g_free (info->name);
sl@0
   801
	      g_free (info);
sl@0
   802
	    }
sl@0
   803
	}
sl@0
   804
      else if (info)
sl@0
   805
	{
sl@0
   806
	  insert_nameinfo (manager, new_owner, info);
sl@0
   807
	}
sl@0
   808
    }
sl@0
   809
}
sl@0
   810
sl@0
   811
static void
sl@0
   812
got_name_owner_cb (DBusGProxy       *bus_proxy,
sl@0
   813
		   DBusGProxyCall   *call,
sl@0
   814
		   void             *user_data)
sl@0
   815
{
sl@0
   816
  DBusGProxy *proxy = user_data;
sl@0
   817
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
   818
  GError *error;
sl@0
   819
  char *owner;
sl@0
   820
sl@0
   821
  error = NULL;
sl@0
   822
  owner = NULL;
sl@0
   823
sl@0
   824
  LOCK_MANAGER (priv->manager);
sl@0
   825
sl@0
   826
  if (!dbus_g_proxy_end_call (bus_proxy, call, &error,
sl@0
   827
			      G_TYPE_STRING, &owner,
sl@0
   828
			      G_TYPE_INVALID))
sl@0
   829
    {
sl@0
   830
      if (error->domain == DBUS_GERROR && error->code == DBUS_GERROR_NAME_HAS_NO_OWNER)
sl@0
   831
	{
sl@0
   832
	  priv->manager->unassociated_proxies = g_slist_prepend (priv->manager->unassociated_proxies, proxy);
sl@0
   833
	}
sl@0
   834
      else if (error->domain == DBUS_GERROR && error->code == DBUS_GERROR_REMOTE_EXCEPTION)
sl@0
   835
	g_warning ("Couldn't get name owner (%s): %s",
sl@0
   836
		   dbus_g_error_get_name (error),
sl@0
   837
		   error->message);
sl@0
   838
      else
sl@0
   839
	g_warning ("Couldn't get name owner (code %d): %s",
sl@0
   840
                   error->code, error->message);
sl@0
   841
      g_clear_error (&error);
sl@0
   842
      goto out;
sl@0
   843
    }
sl@0
   844
  else
sl@0
   845
    {
sl@0
   846
      dbus_g_proxy_manager_monitor_name_owner (priv->manager, owner, priv->name);
sl@0
   847
      priv->associated = TRUE;
sl@0
   848
    }
sl@0
   849
sl@0
   850
 out:
sl@0
   851
  priv->name_call = NULL;
sl@0
   852
  UNLOCK_MANAGER (priv->manager);
sl@0
   853
  g_free (owner);
sl@0
   854
}
sl@0
   855
sl@0
   856
static char *
sl@0
   857
get_name_owner (DBusConnection     *connection,
sl@0
   858
		const char         *name,
sl@0
   859
		GError            **error)
sl@0
   860
{
sl@0
   861
  DBusError derror;
sl@0
   862
  DBusMessage *request, *reply;
sl@0
   863
  char *base_name;
sl@0
   864
  
sl@0
   865
  dbus_error_init (&derror);
sl@0
   866
sl@0
   867
  base_name = NULL;
sl@0
   868
  reply = NULL;
sl@0
   869
sl@0
   870
  request = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
sl@0
   871
					  DBUS_PATH_DBUS,
sl@0
   872
					  DBUS_INTERFACE_DBUS,
sl@0
   873
					  "GetNameOwner");
sl@0
   874
  if (request == NULL)
sl@0
   875
    g_error ("Out of memory");
sl@0
   876
  
sl@0
   877
  if (!dbus_message_append_args (request, 
sl@0
   878
				 DBUS_TYPE_STRING, &name, 
sl@0
   879
				 DBUS_TYPE_INVALID))
sl@0
   880
    g_error ("Out of memory");
sl@0
   881
sl@0
   882
  reply =
sl@0
   883
    dbus_connection_send_with_reply_and_block (connection,
sl@0
   884
                                               request,
sl@0
   885
                                               2000, &derror);
sl@0
   886
  if (reply == NULL)
sl@0
   887
    goto error;
sl@0
   888
sl@0
   889
  if (dbus_set_error_from_message (&derror, reply))
sl@0
   890
    goto error;
sl@0
   891
sl@0
   892
  if (!dbus_message_get_args (reply, &derror, 
sl@0
   893
			      DBUS_TYPE_STRING, &base_name, 
sl@0
   894
			      DBUS_TYPE_INVALID))
sl@0
   895
    goto error;
sl@0
   896
sl@0
   897
  base_name = g_strdup (base_name);
sl@0
   898
  goto out;
sl@0
   899
sl@0
   900
 error:
sl@0
   901
  g_assert (dbus_error_is_set (&derror));
sl@0
   902
  dbus_set_g_error (error, &derror);
sl@0
   903
  dbus_error_free (&derror);
sl@0
   904
sl@0
   905
 out:
sl@0
   906
  if (request)
sl@0
   907
    dbus_message_unref (request);
sl@0
   908
  if (reply)
sl@0
   909
    dbus_message_unref (reply);
sl@0
   910
sl@0
   911
  return base_name;
sl@0
   912
}
sl@0
   913
sl@0
   914
sl@0
   915
static void
sl@0
   916
dbus_g_proxy_manager_register (DBusGProxyManager *manager,
sl@0
   917
                               DBusGProxy        *proxy)
sl@0
   918
{
sl@0
   919
  DBusGProxyList *list;
sl@0
   920
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
   921
sl@0
   922
  LOCK_MANAGER (manager);
sl@0
   923
sl@0
   924
  if (manager->proxy_lists == NULL)
sl@0
   925
    {
sl@0
   926
      g_assert (manager->owner_names == NULL);
sl@0
   927
sl@0
   928
      list = NULL;
sl@0
   929
      manager->proxy_lists = g_hash_table_new_full (tristring_hash,
sl@0
   930
                                                    tristring_equal,
sl@0
   931
                                                    NULL,
sl@0
   932
                                                    (GFreeFunc) g_proxy_list_free);
sl@0
   933
      manager->owner_names = g_hash_table_new_full (g_str_hash,
sl@0
   934
                                                    g_str_equal,
sl@0
   935
                                                    g_free,
sl@0
   936
                                                    NULL);
sl@0
   937
      /* FIXME - for now we listen for all NameOwnerChanged; once
sl@0
   938
       * Anders' detail patch lands we should add individual rules
sl@0
   939
       */
sl@0
   940
      dbus_bus_add_match (manager->connection,
sl@0
   941
                          "type='signal',sender='" DBUS_SERVICE_DBUS
sl@0
   942
			  "',path='" DBUS_PATH_DBUS
sl@0
   943
			  "',interface='" DBUS_INTERFACE_DBUS
sl@0
   944
			  "',member='NameOwnerChanged'",
sl@0
   945
			  NULL);
sl@0
   946
    }
sl@0
   947
  else
sl@0
   948
    {
sl@0
   949
      char *tri;
sl@0
   950
sl@0
   951
      tri = tristring_from_proxy (proxy);
sl@0
   952
      
sl@0
   953
      list = g_hash_table_lookup (manager->proxy_lists, tri);
sl@0
   954
sl@0
   955
      g_free (tri);
sl@0
   956
    }
sl@0
   957
      
sl@0
   958
  if (list == NULL)
sl@0
   959
    {
sl@0
   960
      list = g_proxy_list_new (proxy);
sl@0
   961
      
sl@0
   962
      g_hash_table_replace (manager->proxy_lists,
sl@0
   963
                            list->name, list);
sl@0
   964
    }
sl@0
   965
sl@0
   966
  if (list->proxies == NULL && priv->name)
sl@0
   967
    {
sl@0
   968
      /* We have to add the match rule to the server,
sl@0
   969
       * but only if the server is a message bus,
sl@0
   970
       * not if it's a peer.
sl@0
   971
       */
sl@0
   972
       char *rule;
sl@0
   973
       
sl@0
   974
       rule = g_proxy_get_match_rule (proxy);
sl@0
   975
       
sl@0
   976
       /* We don't check for errors; it's not like anyone would handle them, and
sl@0
   977
        * we don't want a round trip here.
sl@0
   978
        */
sl@0
   979
       dbus_bus_add_match (manager->connection,
sl@0
   980
			   rule, NULL);
sl@0
   981
       
sl@0
   982
       g_free (rule);
sl@0
   983
    }
sl@0
   984
sl@0
   985
  g_assert (g_slist_find (list->proxies, proxy) == NULL);
sl@0
   986
  
sl@0
   987
  list->proxies = g_slist_prepend (list->proxies, proxy);
sl@0
   988
sl@0
   989
  if (!priv->for_owner)
sl@0
   990
    {
sl@0
   991
      const char *owner;
sl@0
   992
      DBusGProxyNameOwnerInfo *info;
sl@0
   993
sl@0
   994
      if (!dbus_g_proxy_manager_lookup_name_owner (manager, priv->name, &info, &owner))
sl@0
   995
	{
sl@0
   996
	  priv->name_call = manager_begin_bus_call (manager, "GetNameOwner",
sl@0
   997
						     got_name_owner_cb,
sl@0
   998
						     proxy, NULL,
sl@0
   999
						     G_TYPE_STRING,
sl@0
  1000
						     priv->name, 
sl@0
  1001
						     G_TYPE_INVALID);
sl@0
  1002
	  
sl@0
  1003
	  priv->associated = FALSE;
sl@0
  1004
	}
sl@0
  1005
      else
sl@0
  1006
	{
sl@0
  1007
	  info->refcount++;
sl@0
  1008
	  priv->associated = TRUE;
sl@0
  1009
	}
sl@0
  1010
    }
sl@0
  1011
  
sl@0
  1012
  UNLOCK_MANAGER (manager);
sl@0
  1013
}
sl@0
  1014
sl@0
  1015
static void
sl@0
  1016
dbus_g_proxy_manager_unregister (DBusGProxyManager *manager,
sl@0
  1017
                                DBusGProxy        *proxy)
sl@0
  1018
{
sl@0
  1019
  DBusGProxyList *list;
sl@0
  1020
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  1021
  char *tri;
sl@0
  1022
  
sl@0
  1023
  LOCK_MANAGER (manager);
sl@0
  1024
sl@0
  1025
#ifndef G_DISABLE_CHECKS
sl@0
  1026
  if (manager->proxy_lists == NULL)
sl@0
  1027
    {
sl@0
  1028
      g_warning ("Trying to unregister a proxy but there aren't any registered");
sl@0
  1029
      return;
sl@0
  1030
    }
sl@0
  1031
#endif
sl@0
  1032
sl@0
  1033
  tri = tristring_from_proxy (proxy);
sl@0
  1034
  
sl@0
  1035
  list = g_hash_table_lookup (manager->proxy_lists, tri);
sl@0
  1036
sl@0
  1037
#ifndef G_DISABLE_CHECKS
sl@0
  1038
  if (list == NULL)
sl@0
  1039
    {
sl@0
  1040
      g_warning ("Trying to unregister a proxy but it isn't registered");
sl@0
  1041
      return;
sl@0
  1042
    }
sl@0
  1043
#endif
sl@0
  1044
sl@0
  1045
  g_assert (g_slist_find (list->proxies, proxy) != NULL);
sl@0
  1046
  
sl@0
  1047
  list->proxies = g_slist_remove (list->proxies, proxy);
sl@0
  1048
sl@0
  1049
  g_assert (g_slist_find (list->proxies, proxy) == NULL);
sl@0
  1050
sl@0
  1051
  if (!priv->for_owner)
sl@0
  1052
    {
sl@0
  1053
      if (!priv->associated)
sl@0
  1054
	{
sl@0
  1055
	  GSList *link;
sl@0
  1056
sl@0
  1057
	  if (priv->name_call != 0)
sl@0
  1058
	    {
sl@0
  1059
	      dbus_g_proxy_cancel_call (manager->bus_proxy, priv->name_call);
sl@0
  1060
	      priv->name_call = 0;
sl@0
  1061
	    }
sl@0
  1062
	  else
sl@0
  1063
	    {
sl@0
  1064
	      link = g_slist_find (manager->unassociated_proxies, proxy);
sl@0
  1065
	      g_assert (link != NULL);
sl@0
  1066
sl@0
  1067
	      manager->unassociated_proxies = g_slist_delete_link (manager->unassociated_proxies, link);
sl@0
  1068
	    }
sl@0
  1069
	}
sl@0
  1070
      else
sl@0
  1071
	{
sl@0
  1072
	  g_assert (priv->name_call == 0);
sl@0
  1073
	  
sl@0
  1074
	  dbus_g_proxy_manager_unmonitor_name_owner (manager, priv->name);
sl@0
  1075
	}
sl@0
  1076
    }
sl@0
  1077
sl@0
  1078
  if (list->proxies == NULL)
sl@0
  1079
    {
sl@0
  1080
      char *rule;
sl@0
  1081
      g_hash_table_remove (manager->proxy_lists,
sl@0
  1082
                           tri);
sl@0
  1083
      list = NULL;
sl@0
  1084
sl@0
  1085
      rule = g_proxy_get_match_rule (proxy);
sl@0
  1086
      dbus_bus_remove_match (manager->connection,
sl@0
  1087
                             rule, NULL);
sl@0
  1088
      g_free (rule);
sl@0
  1089
    }
sl@0
  1090
  
sl@0
  1091
  if (g_hash_table_size (manager->proxy_lists) == 0)
sl@0
  1092
    {
sl@0
  1093
      g_hash_table_destroy (manager->proxy_lists);
sl@0
  1094
      manager->proxy_lists = NULL;
sl@0
  1095
    }
sl@0
  1096
sl@0
  1097
  g_free (tri);
sl@0
  1098
      
sl@0
  1099
  UNLOCK_MANAGER (manager);
sl@0
  1100
}
sl@0
  1101
sl@0
  1102
static void
sl@0
  1103
list_proxies_foreach (gpointer key,
sl@0
  1104
                      gpointer value,
sl@0
  1105
                      gpointer user_data)
sl@0
  1106
{
sl@0
  1107
  DBusGProxyList *list;
sl@0
  1108
  GSList **ret;
sl@0
  1109
  GSList *tmp;
sl@0
  1110
  
sl@0
  1111
  list = value;
sl@0
  1112
  ret = user_data;
sl@0
  1113
sl@0
  1114
  tmp = list->proxies;
sl@0
  1115
  while (tmp != NULL)
sl@0
  1116
    {
sl@0
  1117
      DBusGProxy *proxy = DBUS_G_PROXY (tmp->data);
sl@0
  1118
sl@0
  1119
      g_object_ref (proxy);
sl@0
  1120
      *ret = g_slist_prepend (*ret, proxy);
sl@0
  1121
      
sl@0
  1122
      tmp = tmp->next;
sl@0
  1123
    }
sl@0
  1124
}
sl@0
  1125
sl@0
  1126
static GSList*
sl@0
  1127
dbus_g_proxy_manager_list_all (DBusGProxyManager *manager)
sl@0
  1128
{
sl@0
  1129
  GSList *ret;
sl@0
  1130
sl@0
  1131
  ret = NULL;
sl@0
  1132
sl@0
  1133
  if (manager->proxy_lists)
sl@0
  1134
    {
sl@0
  1135
      g_hash_table_foreach (manager->proxy_lists,
sl@0
  1136
                            list_proxies_foreach,
sl@0
  1137
                            &ret);
sl@0
  1138
    }
sl@0
  1139
sl@0
  1140
  return ret;
sl@0
  1141
}
sl@0
  1142
sl@0
  1143
static DBusHandlerResult
sl@0
  1144
dbus_g_proxy_manager_filter (DBusConnection    *connection,
sl@0
  1145
                             DBusMessage       *message,
sl@0
  1146
                             void              *user_data)
sl@0
  1147
{
sl@0
  1148
  DBusGProxyManager *manager;
sl@0
  1149
  
sl@0
  1150
  if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL)
sl@0
  1151
    return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
sl@0
  1152
sl@0
  1153
  manager = user_data;
sl@0
  1154
sl@0
  1155
  dbus_g_proxy_manager_ref (manager);
sl@0
  1156
  
sl@0
  1157
  LOCK_MANAGER (manager);
sl@0
  1158
  
sl@0
  1159
  if (dbus_message_is_signal (message,
sl@0
  1160
                              DBUS_INTERFACE_LOCAL,
sl@0
  1161
                              "Disconnected"))
sl@0
  1162
    {
sl@0
  1163
      /* Destroy all the proxies, quite possibly resulting in unreferencing
sl@0
  1164
       * the proxy manager and the connection as well.
sl@0
  1165
       */
sl@0
  1166
      GSList *all;
sl@0
  1167
      GSList *tmp;
sl@0
  1168
sl@0
  1169
      all = dbus_g_proxy_manager_list_all (manager);
sl@0
  1170
sl@0
  1171
      tmp = all;
sl@0
  1172
      while (tmp != NULL)
sl@0
  1173
        {
sl@0
  1174
          DBusGProxy *proxy;
sl@0
  1175
sl@0
  1176
          proxy = DBUS_G_PROXY (tmp->data);
sl@0
  1177
sl@0
  1178
          UNLOCK_MANAGER (manager);
sl@0
  1179
          dbus_g_proxy_destroy (proxy);
sl@0
  1180
          g_object_unref (G_OBJECT (proxy));
sl@0
  1181
          LOCK_MANAGER (manager);
sl@0
  1182
          
sl@0
  1183
          tmp = tmp->next;
sl@0
  1184
        }
sl@0
  1185
sl@0
  1186
      g_slist_free (all);
sl@0
  1187
sl@0
  1188
#ifndef G_DISABLE_CHECKS
sl@0
  1189
      if (manager->proxy_lists != NULL)
sl@0
  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.");
sl@0
  1191
#endif
sl@0
  1192
    }
sl@0
  1193
  else
sl@0
  1194
    {
sl@0
  1195
      char *tri;
sl@0
  1196
      GSList *full_list;
sl@0
  1197
      GSList *owned_names;
sl@0
  1198
      GSList *tmp;
sl@0
  1199
      const char *sender;
sl@0
  1200
sl@0
  1201
      /* First we handle NameOwnerChanged internally */
sl@0
  1202
      if (dbus_message_is_signal (message,
sl@0
  1203
				  DBUS_INTERFACE_DBUS,
sl@0
  1204
				  "NameOwnerChanged"))
sl@0
  1205
	{
sl@0
  1206
	  const char *name;
sl@0
  1207
	  const char *prev_owner;
sl@0
  1208
	  const char *new_owner;
sl@0
  1209
	  DBusError derr;
sl@0
  1210
sl@0
  1211
	  dbus_error_init (&derr);
sl@0
  1212
	  if (!dbus_message_get_args (message,
sl@0
  1213
				      &derr,
sl@0
  1214
				      DBUS_TYPE_STRING,
sl@0
  1215
				      &name,
sl@0
  1216
				      DBUS_TYPE_STRING,
sl@0
  1217
				      &prev_owner,
sl@0
  1218
				      DBUS_TYPE_STRING,
sl@0
  1219
				      &new_owner,
sl@0
  1220
				      DBUS_TYPE_INVALID))
sl@0
  1221
	    {
sl@0
  1222
	      /* Ignore this error */
sl@0
  1223
	      dbus_error_free (&derr);
sl@0
  1224
	    }
sl@0
  1225
	  else if (manager->owner_names != NULL)
sl@0
  1226
	    {
sl@0
  1227
	      dbus_g_proxy_manager_replace_name_owner (manager, name, prev_owner, new_owner);
sl@0
  1228
	    }
sl@0
  1229
	}
sl@0
  1230
sl@0
  1231
      sender = dbus_message_get_sender (message);
sl@0
  1232
sl@0
  1233
      /* dbus spec requires these, libdbus validates */
sl@0
  1234
      g_assert (dbus_message_get_path (message) != NULL);
sl@0
  1235
      g_assert (dbus_message_get_interface (message) != NULL);
sl@0
  1236
      g_assert (dbus_message_get_member (message) != NULL);
sl@0
  1237
      
sl@0
  1238
      tri = tristring_from_message (message);
sl@0
  1239
sl@0
  1240
      if (manager->proxy_lists)
sl@0
  1241
	{
sl@0
  1242
	  DBusGProxyList *owner_list;
sl@0
  1243
	  owner_list = g_hash_table_lookup (manager->proxy_lists, tri);
sl@0
  1244
	  if (owner_list)
sl@0
  1245
	    full_list = g_slist_copy (owner_list->proxies);
sl@0
  1246
	  else
sl@0
  1247
	    full_list = NULL;
sl@0
  1248
	}
sl@0
  1249
      else
sl@0
  1250
	full_list = NULL;
sl@0
  1251
sl@0
  1252
      g_free (tri);
sl@0
  1253
sl@0
  1254
      if (manager->owner_names && sender)
sl@0
  1255
	{
sl@0
  1256
	  owned_names = g_hash_table_lookup (manager->owner_names, sender);
sl@0
  1257
	  for (tmp = owned_names; tmp; tmp = tmp->next)
sl@0
  1258
	    {
sl@0
  1259
	      DBusGProxyList *owner_list;
sl@0
  1260
	      DBusGProxyNameOwnerInfo *nameinfo;
sl@0
  1261
sl@0
  1262
	      nameinfo = tmp->data;
sl@0
  1263
	      g_assert (nameinfo->refcount > 0);
sl@0
  1264
	      tri = tristring_alloc_from_strings (0, nameinfo->name,
sl@0
  1265
						  dbus_message_get_path (message),
sl@0
  1266
						  dbus_message_get_interface (message));
sl@0
  1267
sl@0
  1268
	      owner_list = g_hash_table_lookup (manager->proxy_lists, tri);
sl@0
  1269
	      if (owner_list != NULL)
sl@0
  1270
		full_list = g_slist_concat (full_list, g_slist_copy (owner_list->proxies));
sl@0
  1271
	      g_free (tri);
sl@0
  1272
	    }
sl@0
  1273
	}
sl@0
  1274
sl@0
  1275
#if 0
sl@0
  1276
      g_print ("proxy got %s,%s,%s = list %p\n",
sl@0
  1277
               tri,
sl@0
  1278
               tri + strlen (tri) + 1,
sl@0
  1279
               tri + strlen (tri) + 1 + strlen (tri + strlen (tri) + 1) + 1,
sl@0
  1280
               list);
sl@0
  1281
#endif
sl@0
  1282
      
sl@0
  1283
      /* Emit the signal */
sl@0
  1284
      
sl@0
  1285
      g_slist_foreach (full_list, (GFunc) g_object_ref, NULL);
sl@0
  1286
      
sl@0
  1287
      for (tmp = full_list; tmp; tmp = tmp->next)
sl@0
  1288
	{
sl@0
  1289
	  DBusGProxy *proxy;
sl@0
  1290
	  
sl@0
  1291
	  proxy = DBUS_G_PROXY (tmp->data);
sl@0
  1292
	  
sl@0
  1293
	  UNLOCK_MANAGER (manager);
sl@0
  1294
	  dbus_g_proxy_emit_remote_signal (proxy, message);
sl@0
  1295
	  g_object_unref (G_OBJECT (proxy));
sl@0
  1296
	  LOCK_MANAGER (manager);
sl@0
  1297
	}
sl@0
  1298
      g_slist_free (full_list);
sl@0
  1299
    }
sl@0
  1300
sl@0
  1301
  UNLOCK_MANAGER (manager);
sl@0
  1302
  dbus_g_proxy_manager_unref (manager);
sl@0
  1303
  
sl@0
  1304
  /* "Handling" signals doesn't make sense, they are for everyone
sl@0
  1305
   * who cares
sl@0
  1306
   */
sl@0
  1307
  return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
sl@0
  1308
}
sl@0
  1309
sl@0
  1310
sl@0
  1311
sl@0
  1312
/*      ---------- DBusGProxy --------------   */
sl@0
  1313
#define DBUS_G_PROXY_DESTROYED(proxy)  (DBUS_G_PROXY_GET_PRIVATE(proxy)->manager == NULL)
sl@0
  1314
sl@0
  1315
static void
sl@0
  1316
marshal_dbus_message_to_g_marshaller (GClosure     *closure,
sl@0
  1317
                                      GValue       *return_value,
sl@0
  1318
                                      guint         n_param_values,
sl@0
  1319
                                      const GValue *param_values,
sl@0
  1320
                                      gpointer      invocation_hint,
sl@0
  1321
                                      gpointer      marshal_data);
sl@0
  1322
enum
sl@0
  1323
{
sl@0
  1324
  PROP_0,
sl@0
  1325
  PROP_NAME,
sl@0
  1326
  PROP_PATH,
sl@0
  1327
  PROP_INTERFACE,
sl@0
  1328
  PROP_CONNECTION
sl@0
  1329
};
sl@0
  1330
sl@0
  1331
enum
sl@0
  1332
{
sl@0
  1333
  DESTROY,
sl@0
  1334
  RECEIVED,
sl@0
  1335
  LAST_SIGNAL
sl@0
  1336
};
sl@0
  1337
sl@0
  1338
#if EMULATOR
sl@0
  1339
GET_STATIC_VAR_FROM_TLS(parent_class,dbus_gproxy,void* )
sl@0
  1340
#define parent_class (*GET_DBUS_WSD_VAR_NAME(parent_class,dbus_gproxy,s)())
sl@0
  1341
sl@0
  1342
GET_STATIC_ARRAY_FROM_TLS(signals,dbus_gproxy,guint )
sl@0
  1343
#define signals (GET_DBUS_WSD_VAR_NAME(signals,dbus_gproxy,s)())
sl@0
  1344
sl@0
  1345
#else
sl@0
  1346
static void *parent_class;
sl@0
  1347
static guint signals[LAST_SIGNAL] = { 0 };
sl@0
  1348
sl@0
  1349
#endif
sl@0
  1350
sl@0
  1351
sl@0
  1352
static void
sl@0
  1353
dbus_g_proxy_init (DBusGProxy *proxy)
sl@0
  1354
{
sl@0
  1355
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  1356
  
sl@0
  1357
  g_datalist_init (&priv->signal_signatures);
sl@0
  1358
  priv->pending_calls = g_hash_table_new_full (NULL, NULL, NULL,
sl@0
  1359
				(GDestroyNotify) dbus_pending_call_unref);
sl@0
  1360
  priv->name_call = 0;
sl@0
  1361
  priv->associated = FALSE;
sl@0
  1362
}
sl@0
  1363
sl@0
  1364
static GObject *
sl@0
  1365
dbus_g_proxy_constructor (GType                  type,
sl@0
  1366
			  guint                  n_construct_properties,
sl@0
  1367
			  GObjectConstructParam *construct_properties)
sl@0
  1368
{
sl@0
  1369
  DBusGProxy *proxy;
sl@0
  1370
  DBusGProxyClass *klass;
sl@0
  1371
  GObjectClass *parent_class;
sl@0
  1372
  DBusGProxyPrivate *priv;
sl@0
  1373
sl@0
  1374
  klass = DBUS_G_PROXY_CLASS (g_type_class_peek (DBUS_TYPE_G_PROXY));
sl@0
  1375
sl@0
  1376
  parent_class = G_OBJECT_CLASS (g_type_class_peek_parent (klass));
sl@0
  1377
sl@0
  1378
  proxy = DBUS_G_PROXY (parent_class->constructor (type, n_construct_properties,
sl@0
  1379
						    construct_properties));
sl@0
  1380
sl@0
  1381
  priv = DBUS_G_PROXY_GET_PRIVATE (proxy);
sl@0
  1382
sl@0
  1383
  /* if these assertions fail, a deriving class has not set our required
sl@0
  1384
   * parameters - our own public constructors do return_if_fail checks
sl@0
  1385
   * on these parameters being provided. unfortunately we can't assert
sl@0
  1386
   * for manager because it's allowed to be NULL when tha mangager is
sl@0
  1387
   * setting up a bus proxy for its own calls */
sl@0
  1388
  g_assert (priv->path != NULL);
sl@0
  1389
  g_assert (priv->interface != NULL);
sl@0
  1390
sl@0
  1391
  if (priv->manager != NULL)
sl@0
  1392
    {
sl@0
  1393
      dbus_g_proxy_manager_register (priv->manager, proxy);
sl@0
  1394
    }
sl@0
  1395
sl@0
  1396
  return G_OBJECT (proxy);
sl@0
  1397
}
sl@0
  1398
sl@0
  1399
static void
sl@0
  1400
dbus_g_proxy_class_init (DBusGProxyClass *klass)
sl@0
  1401
{
sl@0
  1402
  GObjectClass *object_class = G_OBJECT_CLASS (klass);
sl@0
  1403
  
sl@0
  1404
  parent_class = g_type_class_peek_parent (klass);
sl@0
  1405
sl@0
  1406
  g_type_class_add_private (klass, sizeof (DBusGProxyPrivate));
sl@0
  1407
sl@0
  1408
  object_class->set_property = dbus_g_proxy_set_property;
sl@0
  1409
  object_class->get_property = dbus_g_proxy_get_property;
sl@0
  1410
sl@0
  1411
  g_object_class_install_property (object_class,
sl@0
  1412
				   PROP_NAME,
sl@0
  1413
				   g_param_spec_string ("name",
sl@0
  1414
							"name",
sl@0
  1415
							"name",
sl@0
  1416
							NULL,
sl@0
  1417
						//	#ifdef WINSCW
sl@0
  1418
							G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
sl@0
  1419
						//	#else
sl@0
  1420
						 //   (GParamFlags)11));   // ARM complaining about enums mixing
sl@0
  1421
					//		#endif
sl@0
  1422
sl@0
  1423
  g_object_class_install_property (object_class,
sl@0
  1424
				   PROP_PATH,
sl@0
  1425
				   g_param_spec_string ("path",
sl@0
  1426
							"path",
sl@0
  1427
							"path",
sl@0
  1428
							NULL,
sl@0
  1429
					//	    	#ifdef WINSCW
sl@0
  1430
							G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
sl@0
  1431
					//		#else
sl@0
  1432
					//	    (GParamFlags)11));   // ARM complaining about enums mixing
sl@0
  1433
					//		#endif
sl@0
  1434
sl@0
  1435
  g_object_class_install_property (object_class,
sl@0
  1436
				   PROP_INTERFACE,
sl@0
  1437
				   g_param_spec_string ("interface",
sl@0
  1438
							"interface",
sl@0
  1439
							"interface",
sl@0
  1440
							NULL,
sl@0
  1441
					//		#ifdef WINSCW
sl@0
  1442
							G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
sl@0
  1443
					//		#else
sl@0
  1444
					//	    (GParamFlags)11));   // ARM complaining about enums mixing
sl@0
  1445
					//		#endif
sl@0
  1446
  
sl@0
  1447
  g_object_class_install_property (object_class,
sl@0
  1448
				   PROP_CONNECTION,
sl@0
  1449
				   g_param_spec_boxed ("connection",
sl@0
  1450
							"connection",
sl@0
  1451
							"connection",
sl@0
  1452
							DBUS_TYPE_G_CONNECTION,
sl@0
  1453
					//		#ifdef WINSCW
sl@0
  1454
							G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
sl@0
  1455
					//		#else
sl@0
  1456
					//	    (GParamFlags)11));   // ARM complaining about enums mixing
sl@0
  1457
					//		#endif
sl@0
  1458
  
sl@0
  1459
  object_class->finalize = dbus_g_proxy_finalize;
sl@0
  1460
  object_class->dispose = dbus_g_proxy_dispose;
sl@0
  1461
  object_class->constructor = dbus_g_proxy_constructor;
sl@0
  1462
  
sl@0
  1463
  signals[DESTROY] =
sl@0
  1464
    g_signal_new ("destroy",
sl@0
  1465
		  G_OBJECT_CLASS_TYPE (object_class),
sl@0
  1466
                  G_SIGNAL_RUN_CLEANUP | G_SIGNAL_NO_RECURSE | G_SIGNAL_NO_HOOKS,
sl@0
  1467
                  0,
sl@0
  1468
		  NULL, NULL,
sl@0
  1469
                  g_cclosure_marshal_VOID__VOID,
sl@0
  1470
		  G_TYPE_NONE, 0);
sl@0
  1471
sl@0
  1472
  signals[RECEIVED] =
sl@0
  1473
    g_signal_new ("received",
sl@0
  1474
		  G_OBJECT_CLASS_TYPE (object_class),
sl@0
  1475
                  G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
sl@0
  1476
                  0,
sl@0
  1477
                  NULL, NULL,
sl@0
  1478
                  marshal_dbus_message_to_g_marshaller,
sl@0
  1479
                  G_TYPE_NONE, 2, DBUS_TYPE_MESSAGE, G_TYPE_POINTER);
sl@0
  1480
}
sl@0
  1481
sl@0
  1482
static void
sl@0
  1483
cancel_pending_call (gpointer key, gpointer val, gpointer data)
sl@0
  1484
{
sl@0
  1485
  DBusGProxyCall *call = key;
sl@0
  1486
  DBusGProxy *proxy = data;
sl@0
  1487
sl@0
  1488
  dbus_g_proxy_cancel_call (proxy, call);
sl@0
  1489
}
sl@0
  1490
sl@0
  1491
static void
sl@0
  1492
dbus_g_proxy_dispose (GObject *object)
sl@0
  1493
{
sl@0
  1494
  DBusGProxy *proxy = DBUS_G_PROXY (object);
sl@0
  1495
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  1496
sl@0
  1497
  if (priv->pending_calls == NULL) 
sl@0
  1498
    {
sl@0
  1499
      return;
sl@0
  1500
    }
sl@0
  1501
sl@0
  1502
  /* Cancel outgoing pending calls */
sl@0
  1503
  g_hash_table_foreach (priv->pending_calls, cancel_pending_call, proxy);
sl@0
  1504
  g_hash_table_destroy (priv->pending_calls);
sl@0
  1505
  priv->pending_calls = NULL;
sl@0
  1506
sl@0
  1507
  if (priv->manager && proxy != priv->manager->bus_proxy)
sl@0
  1508
    {
sl@0
  1509
      dbus_g_proxy_manager_unregister (priv->manager, proxy);
sl@0
  1510
      dbus_g_proxy_manager_unref (priv->manager);
sl@0
  1511
    }
sl@0
  1512
  priv->manager = NULL;
sl@0
  1513
  
sl@0
  1514
  g_datalist_clear (&priv->signal_signatures);
sl@0
  1515
  
sl@0
  1516
  g_signal_emit (object, signals[DESTROY], 0);
sl@0
  1517
  
sl@0
  1518
  G_OBJECT_CLASS (parent_class)->dispose (object);
sl@0
  1519
}
sl@0
  1520
sl@0
  1521
static void
sl@0
  1522
dbus_g_proxy_finalize (GObject *object)
sl@0
  1523
{
sl@0
  1524
  DBusGProxy *proxy = DBUS_G_PROXY (object);
sl@0
  1525
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  1526
  
sl@0
  1527
  g_return_if_fail (DBUS_G_PROXY_DESTROYED (proxy));
sl@0
  1528
  
sl@0
  1529
  g_free (priv->name);
sl@0
  1530
  g_free (priv->path);
sl@0
  1531
  g_free (priv->interface);
sl@0
  1532
  
sl@0
  1533
  G_OBJECT_CLASS (parent_class)->finalize (object);
sl@0
  1534
}
sl@0
  1535
sl@0
  1536
static void
sl@0
  1537
dbus_g_proxy_destroy (DBusGProxy *proxy)
sl@0
  1538
{
sl@0
  1539
  /* FIXME do we need the GTK_IN_DESTRUCTION style flag
sl@0
  1540
   * from GtkObject?
sl@0
  1541
   */
sl@0
  1542
  g_object_run_dispose (G_OBJECT (proxy));
sl@0
  1543
}
sl@0
  1544
sl@0
  1545
static void
sl@0
  1546
dbus_g_proxy_set_property (GObject *object,
sl@0
  1547
			   guint prop_id,
sl@0
  1548
			   const GValue *value,
sl@0
  1549
			   GParamSpec *pspec)
sl@0
  1550
{
sl@0
  1551
  DBusGProxy *proxy = DBUS_G_PROXY (object);
sl@0
  1552
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  1553
  DBusGConnection *connection;
sl@0
  1554
sl@0
  1555
  switch (prop_id)
sl@0
  1556
    {
sl@0
  1557
    case PROP_NAME:
sl@0
  1558
      priv->name = g_strdup (g_value_get_string (value));
sl@0
  1559
      if (priv->name)
sl@0
  1560
        priv->for_owner = (priv->name[0] == ':');
sl@0
  1561
      else
sl@0
  1562
        priv->for_owner = TRUE;
sl@0
  1563
      break;
sl@0
  1564
    case PROP_PATH:
sl@0
  1565
      priv->path = g_strdup (g_value_get_string (value));
sl@0
  1566
      break;
sl@0
  1567
    case PROP_INTERFACE:
sl@0
  1568
      priv->interface = g_strdup (g_value_get_string (value));
sl@0
  1569
      break;
sl@0
  1570
    case PROP_CONNECTION:
sl@0
  1571
      connection = g_value_get_boxed (value);
sl@0
  1572
      if (connection != NULL)
sl@0
  1573
        {
sl@0
  1574
          priv->manager = dbus_g_proxy_manager_get (DBUS_CONNECTION_FROM_G_CONNECTION (connection));
sl@0
  1575
        }
sl@0
  1576
      break;
sl@0
  1577
    default:
sl@0
  1578
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
sl@0
  1579
      break;
sl@0
  1580
    }
sl@0
  1581
}
sl@0
  1582
sl@0
  1583
static void 
sl@0
  1584
dbus_g_proxy_get_property (GObject *object,
sl@0
  1585
			   guint prop_id,
sl@0
  1586
			   GValue *value,
sl@0
  1587
			   GParamSpec *pspec)
sl@0
  1588
{
sl@0
  1589
  DBusGProxy *proxy = DBUS_G_PROXY (object);
sl@0
  1590
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  1591
sl@0
  1592
  switch (prop_id)
sl@0
  1593
    {
sl@0
  1594
    case PROP_NAME:
sl@0
  1595
      g_value_set_string (value, priv->name);
sl@0
  1596
      break;
sl@0
  1597
    case PROP_PATH:
sl@0
  1598
      g_value_set_string (value, priv->path);
sl@0
  1599
      break;
sl@0
  1600
    case PROP_INTERFACE:
sl@0
  1601
      g_value_set_string (value, priv->interface);
sl@0
  1602
      break;
sl@0
  1603
    case PROP_CONNECTION:
sl@0
  1604
      g_value_set_boxed (value, DBUS_G_CONNECTION_FROM_CONNECTION(priv->manager->connection));
sl@0
  1605
      break;
sl@0
  1606
    default:
sl@0
  1607
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
sl@0
  1608
      break;
sl@0
  1609
    }
sl@0
  1610
}
sl@0
  1611
sl@0
  1612
/* this is to avoid people using g_signal_connect() directly,
sl@0
  1613
 * to avoid confusion with local signal names, and because
sl@0
  1614
 * of the horribly broken current setup (signals are added
sl@0
  1615
 * globally to all proxies)
sl@0
  1616
 */
sl@0
  1617
static char*
sl@0
  1618
create_signal_name (const char *interface,
sl@0
  1619
                    const char *signal)
sl@0
  1620
{
sl@0
  1621
  GString *str;
sl@0
  1622
  char *p;
sl@0
  1623
sl@0
  1624
  str = g_string_new (interface);
sl@0
  1625
sl@0
  1626
  g_string_append (str, "-");
sl@0
  1627
  
sl@0
  1628
  g_string_append (str, signal);
sl@0
  1629
sl@0
  1630
  /* GLib will silently barf on '.' in signal names */
sl@0
  1631
  p = str->str;
sl@0
  1632
  while (*p)
sl@0
  1633
    {
sl@0
  1634
      if (*p == '.')
sl@0
  1635
        *p = '-';
sl@0
  1636
      ++p;
sl@0
  1637
    }
sl@0
  1638
  
sl@0
  1639
  return g_string_free (str, FALSE);
sl@0
  1640
}
sl@0
  1641
sl@0
  1642
static void
sl@0
  1643
marshal_dbus_message_to_g_marshaller (GClosure     *closure,
sl@0
  1644
                                      GValue       *return_value,
sl@0
  1645
                                      guint         n_param_values,
sl@0
  1646
                                      const GValue *param_values,
sl@0
  1647
                                      gpointer      invocation_hint,
sl@0
  1648
                                      gpointer      marshal_data)
sl@0
  1649
{
sl@0
  1650
  /* Incoming here we have three params, the instance (Proxy), the
sl@0
  1651
   * DBusMessage, the signature. We want to convert that to an
sl@0
  1652
   * expanded GValue array, then call an appropriate normal GLib
sl@0
  1653
   * marshaller.
sl@0
  1654
   */
sl@0
  1655
#define MAX_SIGNATURE_ARGS 20
sl@0
  1656
  GValueArray *value_array;
sl@0
  1657
  GSignalCMarshaller c_marshaller;
sl@0
  1658
  DBusGProxy *proxy;
sl@0
  1659
  DBusMessage *message;
sl@0
  1660
  GArray *gsignature;
sl@0
  1661
  const GType *types;
sl@0
  1662
  DBusGProxyPrivate *priv;
sl@0
  1663
sl@0
  1664
  g_assert (n_param_values == 3);
sl@0
  1665
sl@0
  1666
  proxy = g_value_get_object (&param_values[0]);
sl@0
  1667
  message = g_value_get_boxed (&param_values[1]);
sl@0
  1668
  gsignature = g_value_get_pointer (&param_values[2]);
sl@0
  1669
sl@0
  1670
  g_return_if_fail (DBUS_IS_G_PROXY (proxy));
sl@0
  1671
  g_return_if_fail (message != NULL);
sl@0
  1672
  g_return_if_fail (gsignature != NULL);
sl@0
  1673
sl@0
  1674
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  1675
sl@0
  1676
  c_marshaller = _dbus_gobject_lookup_marshaller (G_TYPE_NONE, gsignature->len,
sl@0
  1677
						  (GType*) gsignature->data);
sl@0
  1678
sl@0
  1679
  g_return_if_fail (c_marshaller != NULL);
sl@0
  1680
  
sl@0
  1681
  {
sl@0
  1682
    DBusGValueMarshalCtx context;
sl@0
  1683
    context.gconnection = DBUS_G_CONNECTION_FROM_CONNECTION (priv->manager->connection);
sl@0
  1684
    context.proxy = proxy;
sl@0
  1685
sl@0
  1686
    types = (const GType*) gsignature->data;
sl@0
  1687
    value_array = _dbus_gvalue_demarshal_message (&context, message,
sl@0
  1688
						 gsignature->len, types, NULL);
sl@0
  1689
  }
sl@0
  1690
sl@0
  1691
  if (value_array == NULL)
sl@0
  1692
    return;
sl@0
  1693
  
sl@0
  1694
  g_value_array_prepend (value_array, NULL);
sl@0
  1695
  g_value_init (g_value_array_get_nth (value_array, 0), G_TYPE_FROM_INSTANCE (proxy));
sl@0
  1696
  g_value_set_instance (g_value_array_get_nth (value_array, 0), proxy);
sl@0
  1697
sl@0
  1698
  (* c_marshaller) (closure, return_value, value_array->n_values,
sl@0
  1699
		    value_array->values, invocation_hint, marshal_data);
sl@0
  1700
  
sl@0
  1701
  g_value_array_free (value_array);
sl@0
  1702
}
sl@0
  1703
sl@0
  1704
static void
sl@0
  1705
dbus_g_proxy_emit_remote_signal (DBusGProxy  *proxy,
sl@0
  1706
                                 DBusMessage *message)
sl@0
  1707
{
sl@0
  1708
  const char *interface;
sl@0
  1709
  const char *signal;
sl@0
  1710
  char *name;
sl@0
  1711
  GQuark q;
sl@0
  1712
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  1713
  GArray *msg_gsignature = NULL;
sl@0
  1714
sl@0
  1715
  g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
sl@0
  1716
sl@0
  1717
  interface = dbus_message_get_interface (message);
sl@0
  1718
  signal = dbus_message_get_member (message);
sl@0
  1719
sl@0
  1720
  g_assert (interface != NULL);
sl@0
  1721
  g_assert (signal != NULL);
sl@0
  1722
sl@0
  1723
  name = create_signal_name (interface, signal);
sl@0
  1724
sl@0
  1725
  /* If the quark isn't preexisting, there's no way there
sl@0
  1726
   * are any handlers connected. We don't want to create
sl@0
  1727
   * extra quarks for every possible signal.
sl@0
  1728
   */
sl@0
  1729
  q = g_quark_try_string (name);
sl@0
  1730
sl@0
  1731
  if (q != 0)
sl@0
  1732
    {
sl@0
  1733
      GArray *gsignature;
sl@0
  1734
      guint i;
sl@0
  1735
      
sl@0
  1736
      gsignature = g_datalist_id_get_data (&priv->signal_signatures, q);
sl@0
  1737
      if (gsignature == NULL)
sl@0
  1738
	goto out;
sl@0
  1739
      
sl@0
  1740
      msg_gsignature = _dbus_gtypes_from_arg_signature (dbus_message_get_signature (message),
sl@0
  1741
						       TRUE);
sl@0
  1742
      for (i = 0; i < gsignature->len; i++)
sl@0
  1743
	{
sl@0
  1744
	  if (msg_gsignature->len == i
sl@0
  1745
	      || g_array_index (gsignature, GType, i) != g_array_index (msg_gsignature, GType, i))
sl@0
  1746
	    goto mismatch;
sl@0
  1747
	}
sl@0
  1748
      if (msg_gsignature->len != i)
sl@0
  1749
	goto mismatch;
sl@0
  1750
      
sl@0
  1751
      g_signal_emit (proxy,
sl@0
  1752
		     signals[RECEIVED],
sl@0
  1753
		     q,
sl@0
  1754
		     message,
sl@0
  1755
		     msg_gsignature);
sl@0
  1756
    }
sl@0
  1757
sl@0
  1758
 out:
sl@0
  1759
  g_free (name);
sl@0
  1760
  if (msg_gsignature)
sl@0
  1761
    g_array_free (msg_gsignature, TRUE);
sl@0
  1762
  return;
sl@0
  1763
 mismatch:
sl@0
  1764
#if 0
sl@0
  1765
  /* Don't spew on remote errors */
sl@0
  1766
  g_warning ("Unexpected message signature '%s' for signal '%s'\n",
sl@0
  1767
	     dbus_message_get_signature (message),
sl@0
  1768
	     name);
sl@0
  1769
#endif
sl@0
  1770
  goto out;
sl@0
  1771
}
sl@0
  1772
sl@0
  1773
typedef struct
sl@0
  1774
{
sl@0
  1775
  DBusGProxy *proxy;
sl@0
  1776
  guint call_id;
sl@0
  1777
  DBusGProxyCallNotify func;
sl@0
  1778
  void *data;
sl@0
  1779
  GDestroyNotify free_data_func;
sl@0
  1780
} GPendingNotifyClosure;
sl@0
  1781
sl@0
  1782
static void
sl@0
  1783
d_pending_call_notify (DBusPendingCall *dcall,
sl@0
  1784
                       void            *data)
sl@0
  1785
{
sl@0
  1786
  GPendingNotifyClosure *closure = data;
sl@0
  1787
sl@0
  1788
  (* closure->func) (closure->proxy, DBUS_G_PROXY_ID_TO_CALL (closure->call_id), closure->data);
sl@0
  1789
}
sl@0
  1790
sl@0
  1791
static void
sl@0
  1792
d_pending_call_free (void *data)
sl@0
  1793
{
sl@0
  1794
  GPendingNotifyClosure *closure = data;
sl@0
  1795
  
sl@0
  1796
  if (closure->free_data_func)
sl@0
  1797
    (* closure->free_data_func) (closure->data);
sl@0
  1798
sl@0
  1799
  g_free (closure);
sl@0
  1800
}
sl@0
  1801
  
sl@0
  1802
#define DBUS_G_VALUE_ARRAY_COLLECT_ALL(VALARRAY, FIRST_ARG_TYPE, ARGS) \
sl@0
  1803
do { \
sl@0
  1804
  GType valtype; \
sl@0
  1805
  int i = 0; \
sl@0
  1806
  VALARRAY = g_value_array_new (6); \
sl@0
  1807
  valtype = FIRST_ARG_TYPE; \
sl@0
  1808
  while (valtype != G_TYPE_INVALID) \
sl@0
  1809
    { \
sl@0
  1810
      const char *collect_err; \
sl@0
  1811
      GValue *val; \
sl@0
  1812
      g_value_array_append (VALARRAY, NULL); \
sl@0
  1813
      val = g_value_array_get_nth (VALARRAY, i); \
sl@0
  1814
      g_value_init (val, valtype); \
sl@0
  1815
      collect_err = NULL; \
sl@0
  1816
      G_VALUE_COLLECT (val, ARGS, G_VALUE_NOCOPY_CONTENTS, &collect_err); \
sl@0
  1817
      valtype = va_arg (ARGS, GType); \
sl@0
  1818
      i++; \
sl@0
  1819
    } \
sl@0
  1820
} while (0)
sl@0
  1821
sl@0
  1822
DBusGProxyCall *
sl@0
  1823
manager_begin_bus_call (DBusGProxyManager    *manager,
sl@0
  1824
			const char           *method,
sl@0
  1825
			DBusGProxyCallNotify  notify,
sl@0
  1826
			gpointer              user_data,
sl@0
  1827
			GDestroyNotify        destroy,
sl@0
  1828
			GType                 first_arg_type,
sl@0
  1829
			...)
sl@0
  1830
{
sl@0
  1831
  DBusGProxyCall *call;
sl@0
  1832
  DBusGProxyPrivate *priv;
sl@0
  1833
  va_list args;
sl@0
  1834
  GValueArray *arg_values;
sl@0
  1835
  
sl@0
  1836
  va_start (args, first_arg_type);
sl@0
  1837
sl@0
  1838
  if (!manager->bus_proxy)
sl@0
  1839
    {
sl@0
  1840
      manager->bus_proxy = g_object_new (DBUS_TYPE_G_PROXY,
sl@0
  1841
					 "name", DBUS_SERVICE_DBUS,
sl@0
  1842
					 "path", DBUS_PATH_DBUS,
sl@0
  1843
					 "interface", DBUS_INTERFACE_DBUS,
sl@0
  1844
					 NULL);
sl@0
  1845
      priv = DBUS_G_PROXY_GET_PRIVATE(manager->bus_proxy);
sl@0
  1846
      priv->manager = manager;
sl@0
  1847
    }
sl@0
  1848
sl@0
  1849
  DBUS_G_VALUE_ARRAY_COLLECT_ALL (arg_values, first_arg_type, args);
sl@0
  1850
  
sl@0
  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));
sl@0
  1852
sl@0
  1853
  g_value_array_free (arg_values);
sl@0
  1854
sl@0
  1855
  va_end (args);
sl@0
  1856
sl@0
  1857
  return call;
sl@0
  1858
}
sl@0
  1859
sl@0
  1860
/** @} End of DBusGLibInternals */
sl@0
  1861
sl@0
  1862
/** @addtogroup DBusGLib
sl@0
  1863
 * @{
sl@0
  1864
 */
sl@0
  1865
sl@0
  1866
/**
sl@0
  1867
 * SECTION:dbus-gproxy
sl@0
  1868
 * @short_description: DBus Proxy
sl@0
  1869
 * @see_also: #DBusProxy
sl@0
  1870
 * @stability: Stable
sl@0
  1871
 *
sl@0
  1872
 * A #DBusGProxy is a boxed type abstracting a #DBusProxy.
sl@0
  1873
 */
sl@0
  1874
sl@0
  1875
/**
sl@0
  1876
 * dbus_g_proxy_get_type:
sl@0
  1877
 * Standard GObject get_type() function for DBusGProxy.
sl@0
  1878
 *
sl@0
  1879
 * Returns: type ID for DBusGProxy class
sl@0
  1880
 */
sl@0
  1881
 #if EMULATOR
sl@0
  1882
GET_STATIC_VAR_FROM_TLS(object_type,dbus_gproxy,GType)
sl@0
  1883
#define object_type (*GET_DBUS_WSD_VAR_NAME(object_type,dbus_gproxy,s)())
sl@0
  1884
#endif
sl@0
  1885
 	#ifdef __SYMBIAN32__
sl@0
  1886
	EXPORT_C
sl@0
  1887
	#endif
sl@0
  1888
GType
sl@0
  1889
dbus_g_proxy_get_type (void)
sl@0
  1890
{
sl@0
  1891
 #ifndef EMULATOR
sl@0
  1892
  static GType object_type = 0;
sl@0
  1893
#endif
sl@0
  1894
sl@0
  1895
sl@0
  1896
  if (!object_type)
sl@0
  1897
    {
sl@0
  1898
      static const GTypeInfo object_info =
sl@0
  1899
        {
sl@0
  1900
          sizeof (DBusGProxyClass),
sl@0
  1901
          (GBaseInitFunc) NULL,
sl@0
  1902
          (GBaseFinalizeFunc) NULL,
sl@0
  1903
          (GClassInitFunc) dbus_g_proxy_class_init,
sl@0
  1904
          NULL,           /* class_finalize */
sl@0
  1905
          NULL,           /* class_data */
sl@0
  1906
          sizeof (DBusGProxy),
sl@0
  1907
          0,              /* n_preallocs */
sl@0
  1908
          (GInstanceInitFunc) dbus_g_proxy_init,
sl@0
  1909
        };
sl@0
  1910
      
sl@0
  1911
      object_type = g_type_register_static (G_TYPE_OBJECT,
sl@0
  1912
                                            "DBusGProxy",
sl@0
  1913
                                            &object_info, 0);
sl@0
  1914
    }
sl@0
  1915
  
sl@0
  1916
  return object_type;
sl@0
  1917
}
sl@0
  1918
sl@0
  1919
static DBusGProxy*
sl@0
  1920
dbus_g_proxy_new (DBusGConnection *connection,
sl@0
  1921
                  const char      *name,
sl@0
  1922
                  const char      *path_name,
sl@0
  1923
                  const char      *interface_name)
sl@0
  1924
{
sl@0
  1925
  DBusGProxy *proxy;
sl@0
  1926
sl@0
  1927
  g_assert (connection != NULL);
sl@0
  1928
  
sl@0
  1929
  proxy = g_object_new (DBUS_TYPE_G_PROXY, 
sl@0
  1930
                        "name", name, 
sl@0
  1931
                        "path", path_name, 
sl@0
  1932
                        "interface", interface_name, 
sl@0
  1933
                        "connection", connection, NULL);
sl@0
  1934
sl@0
  1935
  return proxy;
sl@0
  1936
}
sl@0
  1937
sl@0
  1938
/**
sl@0
  1939
 * dbus_g_proxy_new_for_name:
sl@0
  1940
 * @connection: the connection to the remote bus
sl@0
  1941
 * @name: any name on the message bus
sl@0
  1942
 * @path_name: name of the object instance to call methods on
sl@0
  1943
 * @interface_name: name of the interface to call methods on
sl@0
  1944
 *
sl@0
  1945
 * Creates a new proxy for a remote interface exported by a connection
sl@0
  1946
 * on a message bus. Method calls and signal connections over this
sl@0
  1947
 * proxy will go to the name owner; the name's owner is expected to
sl@0
  1948
 * support the given interface name. THE NAME OWNER MAY CHANGE OVER
sl@0
  1949
 * TIME, for example between two different method calls, unless the
sl@0
  1950
 * name is a unique name. If you need a fixed owner, you need to
sl@0
  1951
 * request the current owner and bind a proxy to its unique name
sl@0
  1952
 * rather than to the generic name; see
sl@0
  1953
 * dbus_g_proxy_new_for_name_owner().
sl@0
  1954
 *
sl@0
  1955
 * A name-associated proxy only makes sense with a message bus, not
sl@0
  1956
 * for app-to-app direct dbus connections.
sl@0
  1957
 *
sl@0
  1958
 * This proxy will only emit the "destroy" signal if the
sl@0
  1959
 * #DBusConnection is disconnected, the proxy has no remaining
sl@0
  1960
 * references, or the name is a unique name and its owner
sl@0
  1961
 * disappears. If a well-known name changes owner, the proxy will
sl@0
  1962
 * still be alive.
sl@0
  1963
 *
sl@0
  1964
 * Returns: new proxy object
sl@0
  1965
 */
sl@0
  1966
 	#ifdef __SYMBIAN32__
sl@0
  1967
	EXPORT_C
sl@0
  1968
	#endif
sl@0
  1969
DBusGProxy*
sl@0
  1970
dbus_g_proxy_new_for_name (DBusGConnection *connection,
sl@0
  1971
                           const char      *name,
sl@0
  1972
                           const char      *path_name,
sl@0
  1973
                           const char      *interface_name)
sl@0
  1974
{
sl@0
  1975
  g_return_val_if_fail (connection != NULL, NULL);
sl@0
  1976
  g_return_val_if_fail (name != NULL, NULL);
sl@0
  1977
  g_return_val_if_fail (path_name != NULL, NULL);
sl@0
  1978
  g_return_val_if_fail (interface_name != NULL, NULL);
sl@0
  1979
sl@0
  1980
  return dbus_g_proxy_new (connection, name,
sl@0
  1981
			   path_name, interface_name);
sl@0
  1982
}
sl@0
  1983
sl@0
  1984
/**
sl@0
  1985
 * dbus_g_proxy_new_for_name_owner:
sl@0
  1986
 * @connection: the connection to the remote bus
sl@0
  1987
 * @name: any name on the message bus
sl@0
  1988
 * @path_name: name of the object inside the service to call methods on
sl@0
  1989
 * @interface_name: name of the interface to call methods on
sl@0
  1990
 * @error: return location for an error
sl@0
  1991
 *
sl@0
  1992
 * Similar to dbus_g_proxy_new_for_name(), but makes a round-trip
sl@0
  1993
 * request to the message bus to get the current name owner, then
sl@0
  1994
 * binds the proxy to the unique name of the current owner, rather
sl@0
  1995
 * than to the well-known name. As a result, the name owner will
sl@0
  1996
 * not change over time, and the proxy will emit the "destroy" signal
sl@0
  1997
 * when the owner disappears from the message bus.
sl@0
  1998
 *
sl@0
  1999
 * An example of the difference between dbus_g_proxy_new_for_name()
sl@0
  2000
 * and dbus_g_proxy_new_for_name_owner(): if you provide the well-known name
sl@0
  2001
 * "org.freedesktop.Database" dbus_g_proxy_new_for_name() remains bound
sl@0
  2002
 * to that name as it changes owner. dbus_g_proxy_new_for_name_owner()
sl@0
  2003
 * will fail if the name has no owner. If the name has an owner,
sl@0
  2004
 * dbus_g_proxy_new_for_name_owner() will bind to the unique name
sl@0
  2005
 * of that owner rather than the generic name.
sl@0
  2006
 * 
sl@0
  2007
 * Returns: new proxy object, or #NULL on error
sl@0
  2008
 */
sl@0
  2009
 	#ifdef __SYMBIAN32__
sl@0
  2010
	EXPORT_C
sl@0
  2011
	#endif
sl@0
  2012
DBusGProxy*
sl@0
  2013
dbus_g_proxy_new_for_name_owner (DBusGConnection          *connection,
sl@0
  2014
                                 const char               *name,
sl@0
  2015
                                 const char               *path_name,
sl@0
  2016
                                 const char               *interface_name,
sl@0
  2017
                                 GError                  **error)
sl@0
  2018
{
sl@0
  2019
  DBusGProxy *proxy;
sl@0
  2020
  char *unique_name;
sl@0
  2021
sl@0
  2022
  g_return_val_if_fail (connection != NULL, NULL);
sl@0
  2023
  g_return_val_if_fail (name != NULL, NULL);
sl@0
  2024
  g_return_val_if_fail (path_name != NULL, NULL);
sl@0
  2025
  g_return_val_if_fail (interface_name != NULL, NULL);
sl@0
  2026
sl@0
  2027
  if (!(unique_name = get_name_owner (DBUS_CONNECTION_FROM_G_CONNECTION (connection), name, error)))
sl@0
  2028
    return NULL;
sl@0
  2029
sl@0
  2030
  proxy = dbus_g_proxy_new (connection, unique_name,
sl@0
  2031
			    path_name, interface_name);
sl@0
  2032
  g_free (unique_name);
sl@0
  2033
  return proxy;
sl@0
  2034
}
sl@0
  2035
sl@0
  2036
/**
sl@0
  2037
 * dbus_g_proxy_new_from_proxy:
sl@0
  2038
 * @proxy: the proxy to use as a template
sl@0
  2039
 * @path: of the object inside the peer to call methods on
sl@0
  2040
 * @interface: name of the interface to call methods on
sl@0
  2041
 *
sl@0
  2042
 * Creates a proxy using an existing proxy as a template, substituting
sl@0
  2043
 * the specified interface and path.  Either or both may be NULL.
sl@0
  2044
 *
sl@0
  2045
 * Returns: new proxy object
sl@0
  2046
 */
sl@0
  2047
 	#ifdef __SYMBIAN32__
sl@0
  2048
	EXPORT_C
sl@0
  2049
	#endif
sl@0
  2050
DBusGProxy*
sl@0
  2051
dbus_g_proxy_new_from_proxy (DBusGProxy        *proxy,
sl@0
  2052
			     const char        *interface,
sl@0
  2053
			     const char        *path)
sl@0
  2054
{
sl@0
  2055
  DBusGProxyPrivate *priv;
sl@0
  2056
sl@0
  2057
  g_return_val_if_fail (proxy != NULL, NULL);
sl@0
  2058
sl@0
  2059
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2060
  
sl@0
  2061
  if (interface == NULL)
sl@0
  2062
    interface = priv->interface;
sl@0
  2063
  if (path == NULL)
sl@0
  2064
    path = priv->path;
sl@0
  2065
sl@0
  2066
  return dbus_g_proxy_new (DBUS_G_CONNECTION_FROM_CONNECTION (priv->manager->connection),
sl@0
  2067
			   priv->name,
sl@0
  2068
			   path, interface);
sl@0
  2069
}
sl@0
  2070
sl@0
  2071
/**
sl@0
  2072
 * dbus_g_proxy_new_for_peer:
sl@0
  2073
 * @connection: the connection to the peer
sl@0
  2074
 * @path_name: name of the object inside the peer to call methods on
sl@0
  2075
 * @interface_name: name of the interface to call methods on
sl@0
  2076
 *
sl@0
  2077
 * Creates a proxy for an object in peer application (one
sl@0
  2078
 * we're directly connected to). That is, this function is
sl@0
  2079
 * intended for use when there's no message bus involved,
sl@0
  2080
 * we're doing a simple 1-to-1 communication between two
sl@0
  2081
 * applications.
sl@0
  2082
 *
sl@0
  2083
 * Returns: new proxy object
sl@0
  2084
 */
sl@0
  2085
 	#ifdef __SYMBIAN32__
sl@0
  2086
	EXPORT_C
sl@0
  2087
	#endif
sl@0
  2088
DBusGProxy*
sl@0
  2089
dbus_g_proxy_new_for_peer (DBusGConnection          *connection,
sl@0
  2090
                           const char               *path_name,
sl@0
  2091
                           const char               *interface_name)
sl@0
  2092
{
sl@0
  2093
  DBusGProxy *proxy;
sl@0
  2094
  
sl@0
  2095
  g_return_val_if_fail (connection != NULL, NULL);
sl@0
  2096
  g_return_val_if_fail (path_name != NULL, NULL);
sl@0
  2097
  g_return_val_if_fail (interface_name != NULL, NULL);
sl@0
  2098
sl@0
  2099
  proxy = dbus_g_proxy_new (connection, NULL,
sl@0
  2100
                            path_name, interface_name);
sl@0
  2101
sl@0
  2102
  return proxy;
sl@0
  2103
}
sl@0
  2104
sl@0
  2105
/**
sl@0
  2106
 * dbus_g_proxy_get_bus_name:
sl@0
  2107
 * @proxy: the proxy
sl@0
  2108
 *
sl@0
  2109
 * Gets the bus name a proxy is bound to (may be #NULL in some cases).
sl@0
  2110
 * If you created the proxy with dbus_g_proxy_new_for_name(), then
sl@0
  2111
 * the name you passed to that will be returned.
sl@0
  2112
 * If you created it with dbus_g_proxy_new_for_name_owner(), then the
sl@0
  2113
 * unique connection name will be returned. If you created it
sl@0
  2114
 * with dbus_g_proxy_new_for_peer() then #NULL will be returned.
sl@0
  2115
 *
sl@0
  2116
 * Returns: the bus name the proxy sends messages to
sl@0
  2117
 */
sl@0
  2118
 	#ifdef __SYMBIAN32__
sl@0
  2119
	EXPORT_C
sl@0
  2120
	#endif
sl@0
  2121
const char*
sl@0
  2122
dbus_g_proxy_get_bus_name (DBusGProxy        *proxy)
sl@0
  2123
{
sl@0
  2124
  DBusGProxyPrivate *priv;
sl@0
  2125
sl@0
  2126
  g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), NULL);
sl@0
  2127
  g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), NULL);
sl@0
  2128
sl@0
  2129
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2130
sl@0
  2131
  return priv->name;
sl@0
  2132
}
sl@0
  2133
sl@0
  2134
/**
sl@0
  2135
 * dbus_g_proxy_get_interface:
sl@0
  2136
 * @proxy: the proxy
sl@0
  2137
 *
sl@0
  2138
 * Gets the object interface proxy is bound to (may be #NULL in some cases).
sl@0
  2139
 *
sl@0
  2140
 * Returns: an object interface 
sl@0
  2141
 */
sl@0
  2142
 	#ifdef __SYMBIAN32__
sl@0
  2143
	EXPORT_C
sl@0
  2144
	#endif
sl@0
  2145
const char*
sl@0
  2146
dbus_g_proxy_get_interface (DBusGProxy        *proxy)
sl@0
  2147
{
sl@0
  2148
  DBusGProxyPrivate *priv;
sl@0
  2149
  
sl@0
  2150
  g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), NULL);
sl@0
  2151
  g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), NULL);
sl@0
  2152
sl@0
  2153
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2154
sl@0
  2155
  return priv->interface;
sl@0
  2156
}
sl@0
  2157
sl@0
  2158
/**
sl@0
  2159
 * dbus_g_proxy_set_interface:
sl@0
  2160
 * @proxy: the proxy
sl@0
  2161
 * @interface_name: an object interface 
sl@0
  2162
 *
sl@0
  2163
 * Sets the object interface proxy is bound to
sl@0
  2164
 */
sl@0
  2165
 	#ifdef __SYMBIAN32__
sl@0
  2166
	EXPORT_C
sl@0
  2167
	#endif
sl@0
  2168
void
sl@0
  2169
dbus_g_proxy_set_interface (DBusGProxy        *proxy,
sl@0
  2170
			    const char        *interface_name)
sl@0
  2171
{
sl@0
  2172
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2173
  /* FIXME - need to unregister when we switch interface for now
sl@0
  2174
   * later should support idea of unset interface
sl@0
  2175
   */
sl@0
  2176
  dbus_g_proxy_manager_unregister (priv->manager, proxy);
sl@0
  2177
  g_free (priv->interface);
sl@0
  2178
  priv->interface = g_strdup (interface_name);
sl@0
  2179
  dbus_g_proxy_manager_register (priv->manager, proxy);
sl@0
  2180
}
sl@0
  2181
sl@0
  2182
/**
sl@0
  2183
 * dbus_g_proxy_get_path:
sl@0
  2184
 * Gets the path this proxy is bound to
sl@0
  2185
 * @proxy: the proxy
sl@0
  2186
 *
sl@0
  2187
 * Returns: an object path
sl@0
  2188
 */
sl@0
  2189
 	#ifdef __SYMBIAN32__
sl@0
  2190
	EXPORT_C
sl@0
  2191
	#endif
sl@0
  2192
const char*
sl@0
  2193
dbus_g_proxy_get_path (DBusGProxy        *proxy)
sl@0
  2194
{
sl@0
  2195
  DBusGProxyPrivate *priv;
sl@0
  2196
  
sl@0
  2197
  g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), NULL);
sl@0
  2198
  g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), NULL);
sl@0
  2199
sl@0
  2200
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2201
sl@0
  2202
  return priv->path;
sl@0
  2203
}
sl@0
  2204
sl@0
  2205
static DBusMessage *
sl@0
  2206
dbus_g_proxy_marshal_args_to_message (DBusGProxy  *proxy,
sl@0
  2207
				      const char  *method,
sl@0
  2208
				      GValueArray *args)
sl@0
  2209
{
sl@0
  2210
  DBusMessage *message;
sl@0
  2211
  DBusMessageIter msgiter;
sl@0
  2212
  guint i;
sl@0
  2213
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2214
sl@0
  2215
  message = dbus_message_new_method_call (priv->name,
sl@0
  2216
                                          priv->path,
sl@0
  2217
                                          priv->interface,
sl@0
  2218
                                          method);
sl@0
  2219
  if (message == NULL)
sl@0
  2220
    goto oom;
sl@0
  2221
sl@0
  2222
  dbus_message_iter_init_append (message, &msgiter);
sl@0
  2223
  for (i = 0; i < args->n_values; i++)
sl@0
  2224
    {
sl@0
  2225
      GValue *gvalue;
sl@0
  2226
sl@0
  2227
      gvalue = g_value_array_get_nth (args, i);
sl@0
  2228
sl@0
  2229
      if (!_dbus_gvalue_marshal (&msgiter, gvalue))
sl@0
  2230
	g_assert_not_reached ();
sl@0
  2231
    }
sl@0
  2232
  return message;
sl@0
  2233
 oom:
sl@0
  2234
  return NULL;
sl@0
  2235
}
sl@0
  2236
sl@0
  2237
static guint
sl@0
  2238
dbus_g_proxy_begin_call_internal (DBusGProxy          *proxy,
sl@0
  2239
				  const char          *method,
sl@0
  2240
				  DBusGProxyCallNotify notify,
sl@0
  2241
				  gpointer             user_data,
sl@0
  2242
				  GDestroyNotify       destroy,
sl@0
  2243
				  GValueArray         *args,
sl@0
  2244
				  int timeout)
sl@0
  2245
{
sl@0
  2246
  DBusMessage *message;
sl@0
  2247
  DBusPendingCall *pending;
sl@0
  2248
  GPendingNotifyClosure *closure;
sl@0
  2249
  guint call_id;
sl@0
  2250
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2251
sl@0
  2252
  pending = NULL;
sl@0
  2253
sl@0
  2254
  message = dbus_g_proxy_marshal_args_to_message (proxy, method, args);
sl@0
  2255
  if (!message)
sl@0
  2256
    goto oom;
sl@0
  2257
sl@0
  2258
  if (!dbus_connection_send_with_reply (priv->manager->connection,
sl@0
  2259
                                        message,
sl@0
  2260
                                        &pending,
sl@0
  2261
                                        timeout))
sl@0
  2262
    goto oom;
sl@0
  2263
  dbus_message_unref (message);
sl@0
  2264
  g_assert (pending != NULL);
sl@0
  2265
sl@0
  2266
  call_id = ++priv->call_id_counter;
sl@0
  2267
sl@0
  2268
  if (notify != NULL)
sl@0
  2269
    {
sl@0
  2270
      closure = g_new (GPendingNotifyClosure, 1);
sl@0
  2271
      closure->proxy = proxy; /* No need to ref as the lifecycle is tied to proxy */
sl@0
  2272
      closure->call_id = call_id;
sl@0
  2273
      closure->func = notify;
sl@0
  2274
      closure->data = user_data;
sl@0
  2275
      closure->free_data_func = destroy;
sl@0
  2276
      dbus_pending_call_set_notify (pending, d_pending_call_notify,
sl@0
  2277
				    closure,
sl@0
  2278
				    d_pending_call_free);
sl@0
  2279
    }
sl@0
  2280
sl@0
  2281
  g_hash_table_insert (priv->pending_calls, GUINT_TO_POINTER (call_id), pending);
sl@0
  2282
sl@0
  2283
  return call_id;
sl@0
  2284
 oom:
sl@0
  2285
  g_error ("Out of memory");
sl@0
  2286
  return 0;
sl@0
  2287
}
sl@0
  2288
sl@0
  2289
static gboolean
sl@0
  2290
dbus_g_proxy_end_call_internal (DBusGProxy        *proxy,
sl@0
  2291
				guint              call_id,
sl@0
  2292
				GError           **error,
sl@0
  2293
				GType              first_arg_type,
sl@0
  2294
				va_list            args)
sl@0
  2295
{
sl@0
  2296
  DBusMessage *reply;
sl@0
  2297
  DBusMessageIter msgiter;
sl@0
  2298
  DBusError derror;
sl@0
  2299
  va_list args_unwind;
sl@0
  2300
  guint over;
sl@0
  2301
  int n_retvals_processed;
sl@0
  2302
  gboolean ret;
sl@0
  2303
  GType valtype;
sl@0
  2304
  DBusPendingCall *pending;
sl@0
  2305
  DBusGProxyPrivate *priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2306
sl@0
  2307
  reply = NULL;
sl@0
  2308
  ret = FALSE;
sl@0
  2309
  n_retvals_processed = 0;
sl@0
  2310
  over = 0;
sl@0
  2311
sl@0
  2312
  pending = g_hash_table_lookup (priv->pending_calls, GUINT_TO_POINTER (call_id));
sl@0
  2313
  
sl@0
  2314
  dbus_pending_call_block (pending);
sl@0
  2315
  reply = dbus_pending_call_steal_reply (pending);
sl@0
  2316
sl@0
  2317
  g_assert (reply != NULL);
sl@0
  2318
sl@0
  2319
  dbus_error_init (&derror);
sl@0
  2320
sl@0
  2321
  switch (dbus_message_get_type (reply))
sl@0
  2322
    {
sl@0
  2323
    case DBUS_MESSAGE_TYPE_METHOD_RETURN:
sl@0
  2324
      dbus_message_iter_init (reply, &msgiter);
sl@0
  2325
      valtype = first_arg_type;
sl@0
  2326
      while (valtype != G_TYPE_INVALID)
sl@0
  2327
	{
sl@0
  2328
	  int arg_type;
sl@0
  2329
	  gpointer return_storage;
sl@0
  2330
	  GValue gvalue = { 0, };
sl@0
  2331
	  DBusGValueMarshalCtx context;
sl@0
  2332
sl@0
  2333
	  context.gconnection = DBUS_G_CONNECTION_FROM_CONNECTION (priv->manager->connection);
sl@0
  2334
	  context.proxy = proxy;
sl@0
  2335
sl@0
  2336
	  arg_type = dbus_message_iter_get_arg_type (&msgiter);
sl@0
  2337
	  if (arg_type == DBUS_TYPE_INVALID)
sl@0
  2338
	    {
sl@0
  2339
	      g_set_error (error, DBUS_GERROR,
sl@0
  2340
			   DBUS_GERROR_INVALID_ARGS,
sl@0
  2341
			   _("Too few arguments in reply"));
sl@0
  2342
	      goto out;
sl@0
  2343
	    }
sl@0
  2344
sl@0
  2345
	  return_storage = va_arg (args, gpointer);
sl@0
  2346
	  if (return_storage == NULL)
sl@0
  2347
	    goto next;
sl@0
  2348
sl@0
  2349
	  /* We handle variants specially; the caller is expected
sl@0
  2350
	   * to have already allocated storage for them.
sl@0
  2351
	   */
sl@0
  2352
	  if (arg_type == DBUS_TYPE_VARIANT
sl@0
  2353
	      && g_type_is_a (valtype, G_TYPE_VALUE))
sl@0
  2354
	    {
sl@0
  2355
	      if (!_dbus_gvalue_demarshal_variant (&context, &msgiter, (GValue*) return_storage, NULL))
sl@0
  2356
		{
sl@0
  2357
		  g_set_error (error,
sl@0
  2358
			       DBUS_GERROR,
sl@0
  2359
			       DBUS_GERROR_INVALID_ARGS,
sl@0
  2360
			       _("Couldn't convert argument, expected \"%s\""),
sl@0
  2361
			       g_type_name (valtype));
sl@0
  2362
		  goto out;
sl@0
  2363
		}
sl@0
  2364
	    }
sl@0
  2365
	  else
sl@0
  2366
	    {
sl@0
  2367
	      g_value_init (&gvalue, valtype);
sl@0
  2368
sl@0
  2369
	      if (!_dbus_gvalue_demarshal (&context, &msgiter, &gvalue, error))
sl@0
  2370
		goto out;
sl@0
  2371
sl@0
  2372
	      /* Anything that can be demarshaled must be storable */
sl@0
  2373
	      if (!_dbus_gvalue_store (&gvalue, (gpointer*) return_storage))
sl@0
  2374
		g_assert_not_reached ();
sl@0
  2375
	      /* Ownership of the value passes to the client, don't unset */
sl@0
  2376
	    }
sl@0
  2377
	  
sl@0
  2378
	next:
sl@0
  2379
	  n_retvals_processed++;
sl@0
  2380
	  dbus_message_iter_next (&msgiter);
sl@0
  2381
	  valtype = va_arg (args, GType);
sl@0
  2382
	}
sl@0
  2383
      
sl@0
  2384
      while (dbus_message_iter_get_arg_type (&msgiter) != DBUS_TYPE_INVALID)
sl@0
  2385
	{
sl@0
  2386
	  over++;
sl@0
  2387
	  dbus_message_iter_next (&msgiter);
sl@0
  2388
	}
sl@0
  2389
sl@0
  2390
      if (over > 0)
sl@0
  2391
	{
sl@0
  2392
	  g_set_error (error, DBUS_GERROR,
sl@0
  2393
		       DBUS_GERROR_INVALID_ARGS,
sl@0
  2394
		       _("Too many arguments in reply; expected %d, got %d"),
sl@0
  2395
		       n_retvals_processed, over);
sl@0
  2396
	  goto out;
sl@0
  2397
	}
sl@0
  2398
      break;
sl@0
  2399
    case DBUS_MESSAGE_TYPE_ERROR:
sl@0
  2400
      dbus_set_error_from_message (&derror, reply);
sl@0
  2401
      dbus_set_g_error (error, &derror);
sl@0
  2402
      dbus_error_free (&derror);
sl@0
  2403
      goto out;
sl@0
  2404
      break;
sl@0
  2405
    default:
sl@0
  2406
      dbus_set_error (&derror, DBUS_ERROR_FAILED,
sl@0
  2407
                      "Reply was neither a method return nor an exception");
sl@0
  2408
      dbus_set_g_error (error, &derror);
sl@0
  2409
      dbus_error_free (&derror);
sl@0
  2410
      goto out;
sl@0
  2411
      break;
sl@0
  2412
    }
sl@0
  2413
sl@0
  2414
  ret = TRUE;
sl@0
  2415
 out:
sl@0
  2416
  va_end (args);
sl@0
  2417
sl@0
  2418
  if (ret == FALSE)
sl@0
  2419
    {
sl@0
  2420
      int i;
sl@0
  2421
      for (i = 0; i < n_retvals_processed; i++)
sl@0
  2422
	{
sl@0
  2423
	  gpointer retval;
sl@0
  2424
sl@0
  2425
	  retval = va_arg (args_unwind, gpointer);
sl@0
  2426
sl@0
  2427
	  g_free (retval);
sl@0
  2428
	}
sl@0
  2429
    }
sl@0
  2430
  va_end (args_unwind);
sl@0
  2431
sl@0
  2432
  g_hash_table_remove (priv->pending_calls, GUINT_TO_POINTER (call_id));
sl@0
  2433
sl@0
  2434
  if (reply)
sl@0
  2435
    dbus_message_unref (reply);
sl@0
  2436
  return ret;
sl@0
  2437
}
sl@0
  2438
sl@0
  2439
/**
sl@0
  2440
 * dbus_g_proxy_begin_call:
sl@0
  2441
 * @proxy: a proxy for a remote interface
sl@0
  2442
 * @method: the name of the method to invoke
sl@0
  2443
 * @notify: callback to be invoked when method returns
sl@0
  2444
 * @user_data: user data passed to callback
sl@0
  2445
 * @destroy: function called to destroy user_data
sl@0
  2446
 * @first_arg_type: type of the first argument
sl@0
  2447
 *
sl@0
  2448
 * Asynchronously invokes a method on a remote interface. The method
sl@0
  2449
 * call will not be sent over the wire until the application returns
sl@0
  2450
 * to the main loop, or blocks in dbus_connection_flush() to write out
sl@0
  2451
 * pending data.  The call will be completed after a timeout, or when
sl@0
  2452
 * a reply is received.  When the call returns, the callback specified
sl@0
  2453
 * will be invoked; you can then collect the results of the call
sl@0
  2454
 * (which may be an error, or a reply), use dbus_g_proxy_end_call().
sl@0
  2455
 *
sl@0
  2456
 * TODO this particular function shouldn't die on out of memory,
sl@0
  2457
 * since you should be able to do a call with large arguments.
sl@0
  2458
 * 
sl@0
  2459
 * Returns: call identifier.
sl@0
  2460
 */
sl@0
  2461
 	#ifdef __SYMBIAN32__
sl@0
  2462
	EXPORT_C
sl@0
  2463
	#endif
sl@0
  2464
DBusGProxyCall *
sl@0
  2465
dbus_g_proxy_begin_call (DBusGProxy          *proxy,
sl@0
  2466
			 const char          *method,
sl@0
  2467
			 DBusGProxyCallNotify notify,
sl@0
  2468
			 gpointer             user_data,
sl@0
  2469
			 GDestroyNotify       destroy,
sl@0
  2470
			 GType                first_arg_type,
sl@0
  2471
			 ...)
sl@0
  2472
{
sl@0
  2473
  guint call_id;
sl@0
  2474
  va_list args;
sl@0
  2475
  GValueArray *arg_values;
sl@0
  2476
  
sl@0
  2477
  g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), NULL);
sl@0
  2478
  g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), NULL);
sl@0
  2479
sl@0
  2480
  va_start (args, first_arg_type);
sl@0
  2481
sl@0
  2482
  DBUS_G_VALUE_ARRAY_COLLECT_ALL (arg_values, first_arg_type, args);
sl@0
  2483
  
sl@0
  2484
  call_id = dbus_g_proxy_begin_call_internal (proxy, method, notify, user_data, destroy, arg_values,-1);
sl@0
  2485
sl@0
  2486
  g_value_array_free (arg_values);
sl@0
  2487
sl@0
  2488
  va_end (args);
sl@0
  2489
sl@0
  2490
  return DBUS_G_PROXY_ID_TO_CALL (call_id);
sl@0
  2491
}
sl@0
  2492
sl@0
  2493
/**
sl@0
  2494
 * dbus_g_proxy_begin_call_with_timeout:
sl@0
  2495
 * @proxy: a proxy for a remote interface
sl@0
  2496
 * @method: the name of the method to invoke
sl@0
  2497
 * @notify: callback to be invoked when method returns
sl@0
  2498
 * @user_data: user data passed to callback
sl@0
  2499
 * @destroy: function called to destroy user_data
sl@0
  2500
 * @timeout: specify the timeout in milliseconds
sl@0
  2501
 * @first_arg_type: type of the first argument
sl@0
  2502
 *
sl@0
  2503
 * Asynchronously invokes a method on a remote interface. The method
sl@0
  2504
 * call will not be sent over the wire until the application returns
sl@0
  2505
 * to the main loop, or blocks in dbus_connection_flush() to write out
sl@0
  2506
 * pending data.  The call will be completed after a timeout, or when
sl@0
  2507
 * a reply is received.  When the call returns, the callback specified
sl@0
  2508
 * will be invoked; you can then collect the results of the call
sl@0
  2509
 * (which may be an error, or a reply), use dbus_g_proxy_end_call().
sl@0
  2510
 *
sl@0
  2511
 * TODO this particular function shouldn't die on out of memory,
sl@0
  2512
 * since you should be able to do a call with large arguments.
sl@0
  2513
 *
sl@0
  2514
 * Returns: call identifier.
sl@0
  2515
 */
sl@0
  2516
 	#ifdef __SYMBIAN32__
sl@0
  2517
	EXPORT_C
sl@0
  2518
	#endif
sl@0
  2519
DBusGProxyCall *
sl@0
  2520
dbus_g_proxy_begin_call_with_timeout (DBusGProxy          *proxy,
sl@0
  2521
                         const char          *method,
sl@0
  2522
                         DBusGProxyCallNotify notify,
sl@0
  2523
                         gpointer             user_data,
sl@0
  2524
                         GDestroyNotify       destroy,
sl@0
  2525
			 int timeout,
sl@0
  2526
                         GType                first_arg_type,
sl@0
  2527
                         ...)
sl@0
  2528
{
sl@0
  2529
  guint call_id;
sl@0
  2530
  va_list args;
sl@0
  2531
  GValueArray *arg_values;
sl@0
  2532
sl@0
  2533
  g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), NULL);
sl@0
  2534
  g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), NULL);
sl@0
  2535
sl@0
  2536
  va_start (args, first_arg_type);
sl@0
  2537
sl@0
  2538
  DBUS_G_VALUE_ARRAY_COLLECT_ALL (arg_values, first_arg_type, args);
sl@0
  2539
sl@0
  2540
  call_id = dbus_g_proxy_begin_call_internal (proxy, method, notify, user_data, destroy, arg_values,timeout);
sl@0
  2541
sl@0
  2542
  g_value_array_free (arg_values);
sl@0
  2543
sl@0
  2544
  va_end (args);
sl@0
  2545
sl@0
  2546
  return DBUS_G_PROXY_ID_TO_CALL (call_id);
sl@0
  2547
}
sl@0
  2548
sl@0
  2549
/**
sl@0
  2550
 * dbus_g_proxy_end_call:
sl@0
  2551
 * @proxy: a proxy for a remote interface
sl@0
  2552
 * @call: the pending call ID from dbus_g_proxy_begin_call()
sl@0
  2553
 * @error: return location for an error
sl@0
  2554
 * @first_arg_type: type of first "out" argument
sl@0
  2555
 *
sl@0
  2556
 * Collects the results of a method call. The method call was normally
sl@0
  2557
 * initiated with dbus_g_proxy_end_call(). You may use this function
sl@0
  2558
 * outside of the callback given to dbus_g_proxy_begin_call; in that
sl@0
  2559
 * case this function will block if the results haven't yet been
sl@0
  2560
 * received.
sl@0
  2561
 *
sl@0
  2562
 * If the call results in an error, the error is set as normal for
sl@0
  2563
 * GError and the function returns #FALSE.
sl@0
  2564
 *
sl@0
  2565
 * Otherwise, the "out" parameters and return value of the
sl@0
  2566
 * method are stored in the provided varargs list.
sl@0
  2567
 * The list should be terminated with G_TYPE_INVALID.
sl@0
  2568
 *
sl@0
  2569
 * Returns: #FALSE if an error is set.
sl@0
  2570
 */
sl@0
  2571
 	#ifdef __SYMBIAN32__
sl@0
  2572
	EXPORT_C
sl@0
  2573
	#endif
sl@0
  2574
gboolean
sl@0
  2575
dbus_g_proxy_end_call (DBusGProxy          *proxy,
sl@0
  2576
                       DBusGProxyCall      *call,
sl@0
  2577
                       GError             **error,
sl@0
  2578
                       GType                first_arg_type,
sl@0
  2579
                       ...)
sl@0
  2580
{
sl@0
  2581
  gboolean ret;
sl@0
  2582
  va_list args;
sl@0
  2583
sl@0
  2584
  va_start (args, first_arg_type);
sl@0
  2585
sl@0
  2586
  ret = dbus_g_proxy_end_call_internal (proxy, GPOINTER_TO_UINT (call), error, first_arg_type, args);
sl@0
  2587
sl@0
  2588
  va_end (args);
sl@0
  2589
  
sl@0
  2590
  return ret;
sl@0
  2591
}
sl@0
  2592
sl@0
  2593
/**
sl@0
  2594
 * dbus_g_proxy_call:
sl@0
  2595
 * @proxy: a proxy for a remote interface
sl@0
  2596
 * @method: method to invoke
sl@0
  2597
 * @error: return location for an error
sl@0
  2598
 * @first_arg_type: type of first "in" argument
sl@0
  2599
 *
sl@0
  2600
 * Function for synchronously invoking a method and receiving reply
sl@0
  2601
 * values.  This function is equivalent to dbus_g_proxy_begin_call
sl@0
  2602
 * followed by dbus_g_proxy_end_call.  All of the input arguments are
sl@0
  2603
 * specified first, followed by G_TYPE_INVALID, followed by all of the
sl@0
  2604
 * output values, followed by a second G_TYPE_INVALID.  Note that  
sl@0
  2605
 * this means you must always specify G_TYPE_INVALID twice.
sl@0
  2606
 *
sl@0
  2607
 * Returns: #FALSE if an error is set, #TRUE otherwise.
sl@0
  2608
 */
sl@0
  2609
 	#ifdef __SYMBIAN32__
sl@0
  2610
	EXPORT_C
sl@0
  2611
	#endif
sl@0
  2612
gboolean
sl@0
  2613
dbus_g_proxy_call (DBusGProxy        *proxy,
sl@0
  2614
		   const char        *method,
sl@0
  2615
		   GError           **error,
sl@0
  2616
		   GType              first_arg_type,
sl@0
  2617
		   ...)
sl@0
  2618
{
sl@0
  2619
  gboolean ret;
sl@0
  2620
  guint call_id;
sl@0
  2621
  va_list args;
sl@0
  2622
  GValueArray *in_args;
sl@0
  2623
sl@0
  2624
  g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), FALSE);
sl@0
  2625
  g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), FALSE);
sl@0
  2626
sl@0
  2627
  va_start (args, first_arg_type);
sl@0
  2628
sl@0
  2629
  DBUS_G_VALUE_ARRAY_COLLECT_ALL (in_args, first_arg_type, args);
sl@0
  2630
sl@0
  2631
  call_id = dbus_g_proxy_begin_call_internal (proxy, method, NULL, NULL, NULL, in_args,-1);
sl@0
  2632
sl@0
  2633
  g_value_array_free (in_args);
sl@0
  2634
sl@0
  2635
  first_arg_type = va_arg (args, GType);
sl@0
  2636
  ret = dbus_g_proxy_end_call_internal (proxy, call_id, error, first_arg_type, args);
sl@0
  2637
sl@0
  2638
  va_end (args);
sl@0
  2639
sl@0
  2640
  return ret;
sl@0
  2641
}
sl@0
  2642
sl@0
  2643
/**
sl@0
  2644
 * dbus_g_proxy_call_with_timeout:
sl@0
  2645
 * @proxy: a proxy for a remote interface
sl@0
  2646
 * @method: method to invoke
sl@0
  2647
 * @timeout: specify the timeout in milliseconds
sl@0
  2648
 * @error: return location for an error
sl@0
  2649
 * @first_arg_type: type of first "in" argument
sl@0
  2650
 *
sl@0
  2651
 * Function for synchronously invoking a method and receiving reply
sl@0
  2652
 * values.  This function is equivalent to dbus_g_proxy_begin_call
sl@0
  2653
 * followed by dbus_g_proxy_end_call.  All of the input arguments are
sl@0
  2654
 * specified first, followed by G_TYPE_INVALID, followed by all of the
sl@0
  2655
 * output values, followed by a second G_TYPE_INVALID.  Note that
sl@0
  2656
 * this means you must always specify G_TYPE_INVALID twice.
sl@0
  2657
 *
sl@0
  2658
 * Returns: #FALSE if an error is set, #TRUE otherwise.
sl@0
  2659
 */
sl@0
  2660
 	#ifdef __SYMBIAN32__
sl@0
  2661
	EXPORT_C
sl@0
  2662
	#endif
sl@0
  2663
gboolean
sl@0
  2664
dbus_g_proxy_call_with_timeout (DBusGProxy        *proxy,
sl@0
  2665
                   const char        *method,
sl@0
  2666
		   int timeout,
sl@0
  2667
                   GError           **error,
sl@0
  2668
                   GType              first_arg_type,
sl@0
  2669
                   ...)
sl@0
  2670
{
sl@0
  2671
  gboolean ret;
sl@0
  2672
  guint call_id;
sl@0
  2673
  va_list args;
sl@0
  2674
  GValueArray *in_args;
sl@0
  2675
sl@0
  2676
  g_return_val_if_fail (DBUS_IS_G_PROXY (proxy), FALSE);
sl@0
  2677
  g_return_val_if_fail (!DBUS_G_PROXY_DESTROYED (proxy), FALSE);
sl@0
  2678
sl@0
  2679
  va_start (args, first_arg_type);
sl@0
  2680
sl@0
  2681
  DBUS_G_VALUE_ARRAY_COLLECT_ALL (in_args, first_arg_type, args);
sl@0
  2682
sl@0
  2683
  call_id = dbus_g_proxy_begin_call_internal (proxy, method, NULL, NULL, NULL, in_args,timeout);
sl@0
  2684
sl@0
  2685
  g_value_array_free (in_args);
sl@0
  2686
sl@0
  2687
  first_arg_type = va_arg (args, GType);
sl@0
  2688
  ret = dbus_g_proxy_end_call_internal (proxy, call_id, error, first_arg_type, args);
sl@0
  2689
sl@0
  2690
  va_end (args);
sl@0
  2691
sl@0
  2692
  return ret;
sl@0
  2693
}
sl@0
  2694
sl@0
  2695
/**
sl@0
  2696
 * dbus_g_proxy_call_no_reply:
sl@0
  2697
 * @proxy: a proxy for a remote interface
sl@0
  2698
 * @method: the name of the method to invoke
sl@0
  2699
 * @first_arg_type: type of the first argument
sl@0
  2700
 *
sl@0
  2701
 * Sends a method call message as with dbus_g_proxy_begin_call(), but
sl@0
  2702
 * does not ask for a reply or allow you to receive one.
sl@0
  2703
 *
sl@0
  2704
 * TODO: this particular function shouldn't die on out of memory,
sl@0
  2705
 * since you should be able to do a call with large arguments.
sl@0
  2706
 */
sl@0
  2707
 	#ifdef __SYMBIAN32__
sl@0
  2708
	EXPORT_C
sl@0
  2709
	#endif
sl@0
  2710
void
sl@0
  2711
dbus_g_proxy_call_no_reply (DBusGProxy               *proxy,
sl@0
  2712
			    const char               *method,
sl@0
  2713
			    GType                     first_arg_type,
sl@0
  2714
			    ...)
sl@0
  2715
{
sl@0
  2716
  DBusMessage *message;
sl@0
  2717
  va_list args;
sl@0
  2718
  GValueArray *in_args;
sl@0
  2719
  DBusGProxyPrivate *priv;
sl@0
  2720
  
sl@0
  2721
  g_return_if_fail (DBUS_IS_G_PROXY (proxy));
sl@0
  2722
  g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
sl@0
  2723
sl@0
  2724
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2725
sl@0
  2726
  va_start (args, first_arg_type);
sl@0
  2727
  DBUS_G_VALUE_ARRAY_COLLECT_ALL (in_args, first_arg_type, args);
sl@0
  2728
sl@0
  2729
  message = dbus_g_proxy_marshal_args_to_message (proxy, method, in_args);
sl@0
  2730
sl@0
  2731
  g_value_array_free (in_args);
sl@0
  2732
  va_end (args);
sl@0
  2733
sl@0
  2734
  if (!message)
sl@0
  2735
    goto oom;
sl@0
  2736
sl@0
  2737
  dbus_message_set_no_reply (message, TRUE);
sl@0
  2738
sl@0
  2739
  if (!dbus_connection_send (priv->manager->connection,
sl@0
  2740
                             message,
sl@0
  2741
                             NULL))
sl@0
  2742
    goto oom;
sl@0
  2743
  dbus_message_unref (message);
sl@0
  2744
  return;
sl@0
  2745
  
sl@0
  2746
 oom:
sl@0
  2747
  g_error ("Out of memory");
sl@0
  2748
}
sl@0
  2749
sl@0
  2750
/**
sl@0
  2751
 * dbus_g_proxy_cancel_call
sl@0
  2752
 * @proxy: a proxy for a remote interface
sl@0
  2753
 * @call: the pending call ID from dbus_g_proxy_begin_call()
sl@0
  2754
 *
sl@0
  2755
 * Cancels a pending method call. The method call was normally
sl@0
  2756
 * initiated with dbus_g_proxy_begin_call().  This function
sl@0
  2757
 * may not be used on pending calls that have already been
sl@0
  2758
 * ended with dbus_g_proxy_end_call.
sl@0
  2759
 */
sl@0
  2760
 	#ifdef __SYMBIAN32__
sl@0
  2761
	EXPORT_C
sl@0
  2762
	#endif
sl@0
  2763
void
sl@0
  2764
dbus_g_proxy_cancel_call (DBusGProxy        *proxy,
sl@0
  2765
			  DBusGProxyCall    *call)
sl@0
  2766
{
sl@0
  2767
  guint call_id;
sl@0
  2768
  DBusPendingCall *pending;
sl@0
  2769
  DBusGProxyPrivate *priv;
sl@0
  2770
  
sl@0
  2771
  g_return_if_fail (DBUS_IS_G_PROXY (proxy));
sl@0
  2772
  g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
sl@0
  2773
sl@0
  2774
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2775
sl@0
  2776
  call_id = DBUS_G_PROXY_CALL_TO_ID (call);
sl@0
  2777
sl@0
  2778
  pending = g_hash_table_lookup (priv->pending_calls, GUINT_TO_POINTER (call_id));
sl@0
  2779
  g_return_if_fail (pending != NULL);
sl@0
  2780
sl@0
  2781
  dbus_pending_call_cancel (pending);
sl@0
  2782
sl@0
  2783
  g_hash_table_remove (priv->pending_calls, GUINT_TO_POINTER (call_id));
sl@0
  2784
}
sl@0
  2785
sl@0
  2786
/**
sl@0
  2787
 * dbus_g_proxy_send:
sl@0
  2788
 * @proxy: a proxy for a remote interface
sl@0
  2789
 * @message: the message to address and send
sl@0
  2790
 * @client_serial: return location for message's serial, or #NULL 
sl@0
  2791
 *
sl@0
  2792
 * Sends a message to the interface we're proxying for.  Does not
sl@0
  2793
 * block or wait for a reply. The message is only actually written out
sl@0
  2794
 * when you return to the main loop or block in
sl@0
  2795
 * dbus_connection_flush().
sl@0
  2796
 *
sl@0
  2797
 * The message is modified to be addressed to the target interface.
sl@0
  2798
 * That is, a destination name field or whatever is needed will be
sl@0
  2799
 * added to the message. The basic point of this function is to add
sl@0
  2800
 * the necessary header fields, otherwise it's equivalent to
sl@0
  2801
 * dbus_connection_send().
sl@0
  2802
 *
sl@0
  2803
 * This function adds a reference to the message, so the caller
sl@0
  2804
 * still owns its original reference.
sl@0
  2805
 */
sl@0
  2806
 	#ifdef __SYMBIAN32__
sl@0
  2807
	EXPORT_C
sl@0
  2808
	#endif
sl@0
  2809
void
sl@0
  2810
dbus_g_proxy_send (DBusGProxy          *proxy,
sl@0
  2811
                   DBusMessage         *message,
sl@0
  2812
                   dbus_uint32_t       *client_serial)
sl@0
  2813
{
sl@0
  2814
  DBusGProxyPrivate *priv;
sl@0
  2815
  
sl@0
  2816
  g_return_if_fail (DBUS_IS_G_PROXY (proxy));
sl@0
  2817
  g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
sl@0
  2818
  
sl@0
  2819
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2820
  
sl@0
  2821
  if (priv->name)
sl@0
  2822
    {
sl@0
  2823
      if (!dbus_message_set_destination (message, priv->name))
sl@0
  2824
        g_error ("Out of memory");
sl@0
  2825
    }
sl@0
  2826
  if (priv->path)
sl@0
  2827
    {
sl@0
  2828
      if (!dbus_message_set_path (message, priv->path))
sl@0
  2829
        g_error ("Out of memory");
sl@0
  2830
    }
sl@0
  2831
  if (priv->interface)
sl@0
  2832
    {
sl@0
  2833
      if (!dbus_message_set_interface (message, priv->interface))
sl@0
  2834
        g_error ("Out of memory");
sl@0
  2835
    }
sl@0
  2836
  
sl@0
  2837
  if (!dbus_connection_send (priv->manager->connection, message, client_serial))
sl@0
  2838
    g_error ("Out of memory\n");
sl@0
  2839
}
sl@0
  2840
sl@0
  2841
static void
sl@0
  2842
array_free_all (gpointer array)
sl@0
  2843
{
sl@0
  2844
  g_array_free (array, TRUE);
sl@0
  2845
}
sl@0
  2846
sl@0
  2847
/**
sl@0
  2848
 * dbus_g_proxy_add_signal:
sl@0
  2849
 * @proxy: the proxy for a remote interface
sl@0
  2850
 * @signal_name: the name of the signal
sl@0
  2851
 * @first_type: the first argument type, or G_TYPE_INVALID if none
sl@0
  2852
 *
sl@0
  2853
 * Specifies the argument signature of a signal;.only necessary
sl@0
  2854
 * if the remote object does not support introspection.  The arguments
sl@0
  2855
 * specified are the GLib types expected.
sl@0
  2856
 */
sl@0
  2857
 	#ifdef __SYMBIAN32__
sl@0
  2858
	EXPORT_C
sl@0
  2859
	#endif
sl@0
  2860
void
sl@0
  2861
dbus_g_proxy_add_signal  (DBusGProxy        *proxy,
sl@0
  2862
                          const char        *signal_name,
sl@0
  2863
			  GType              first_type,
sl@0
  2864
                          ...)
sl@0
  2865
{
sl@0
  2866
  GQuark q;
sl@0
  2867
  char *name;
sl@0
  2868
  GArray *gtypesig;
sl@0
  2869
  GType gtype;
sl@0
  2870
  va_list args;
sl@0
  2871
  DBusGProxyPrivate *priv;
sl@0
  2872
sl@0
  2873
  g_return_if_fail (DBUS_IS_G_PROXY (proxy));
sl@0
  2874
  g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
sl@0
  2875
  g_return_if_fail (signal_name != NULL);
sl@0
  2876
  
sl@0
  2877
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2878
sl@0
  2879
  name = create_signal_name (priv->interface, signal_name);
sl@0
  2880
  
sl@0
  2881
  q = g_quark_from_string (name);
sl@0
  2882
  
sl@0
  2883
  g_return_if_fail (g_datalist_id_get_data (&priv->signal_signatures, q) == NULL);
sl@0
  2884
sl@0
  2885
  gtypesig = g_array_new (FALSE, TRUE, sizeof (GType));
sl@0
  2886
sl@0
  2887
  va_start (args, first_type);
sl@0
  2888
  gtype = first_type;
sl@0
  2889
  while (gtype != G_TYPE_INVALID)
sl@0
  2890
    {
sl@0
  2891
      g_array_append_val (gtypesig, gtype);
sl@0
  2892
      gtype = va_arg (args, GType);
sl@0
  2893
    }
sl@0
  2894
  va_end (args);
sl@0
  2895
sl@0
  2896
#ifndef G_DISABLE_CHECKS
sl@0
  2897
  if (_dbus_gobject_lookup_marshaller (G_TYPE_NONE, gtypesig->len, (const GType*) gtypesig->data) == NULL)
sl@0
  2898
    g_warning ("No marshaller for signature of signal '%s'", signal_name);
sl@0
  2899
#endif
sl@0
  2900
sl@0
  2901
  
sl@0
  2902
  g_datalist_id_set_data_full (&priv->signal_signatures,
sl@0
  2903
                               q, gtypesig,
sl@0
  2904
                               array_free_all);
sl@0
  2905
sl@0
  2906
  g_free (name);
sl@0
  2907
}
sl@0
  2908
sl@0
  2909
/**
sl@0
  2910
 * dbus_g_proxy_connect_signal:
sl@0
  2911
 * @proxy: a proxy for a remote interface
sl@0
  2912
 * @signal_name: the DBus signal name to listen for
sl@0
  2913
 * @handler: the handler to connect
sl@0
  2914
 * @data: data to pass to handler
sl@0
  2915
 * @free_data_func: callback function to destroy data
sl@0
  2916
 *
sl@0
  2917
 * Connect a signal handler to a proxy for a remote interface.  When
sl@0
  2918
 * the remote interface emits the specified signal, the proxy will
sl@0
  2919
 * emit a corresponding GLib signal.
sl@0
  2920
 */
sl@0
  2921
 	#ifdef __SYMBIAN32__
sl@0
  2922
	EXPORT_C
sl@0
  2923
	#endif
sl@0
  2924
void
sl@0
  2925
dbus_g_proxy_connect_signal (DBusGProxy             *proxy,
sl@0
  2926
                             const char             *signal_name,
sl@0
  2927
                             GCallback               handler,
sl@0
  2928
                             void                   *data,
sl@0
  2929
                             GClosureNotify          free_data_func)
sl@0
  2930
{
sl@0
  2931
  char *name;
sl@0
  2932
  GClosure *closure;
sl@0
  2933
  GQuark q;
sl@0
  2934
  DBusGProxyPrivate *priv;
sl@0
  2935
sl@0
  2936
  g_return_if_fail (DBUS_IS_G_PROXY (proxy));
sl@0
  2937
  g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
sl@0
  2938
  g_return_if_fail (signal_name != NULL);
sl@0
  2939
  g_return_if_fail (handler != NULL);
sl@0
  2940
  
sl@0
  2941
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2942
  name = create_signal_name (priv->interface, signal_name);
sl@0
  2943
sl@0
  2944
  q = g_quark_try_string (name);
sl@0
  2945
sl@0
  2946
#ifndef G_DISABLE_CHECKS
sl@0
  2947
  if (q == 0 || g_datalist_id_get_data (&priv->signal_signatures, q) == NULL)
sl@0
  2948
    {
sl@0
  2949
      g_warning ("Must add the signal '%s' with dbus_g_proxy_add_signal() prior to connecting to it\n", name);
sl@0
  2950
      g_free (name);
sl@0
  2951
      return;
sl@0
  2952
    }
sl@0
  2953
#endif
sl@0
  2954
  
sl@0
  2955
  closure = g_cclosure_new (G_CALLBACK (handler), data, free_data_func);
sl@0
  2956
  
sl@0
  2957
  g_signal_connect_closure_by_id (G_OBJECT (proxy),
sl@0
  2958
                                  signals[RECEIVED],
sl@0
  2959
                                  q,
sl@0
  2960
                                  closure, FALSE);
sl@0
  2961
  
sl@0
  2962
  g_free (name);
sl@0
  2963
}
sl@0
  2964
sl@0
  2965
/**
sl@0
  2966
 * dbus_g_proxy_disconnect_signal:
sl@0
  2967
 * @proxy: a proxy for a remote interface
sl@0
  2968
 * @signal_name: the DBus signal name to disconnect
sl@0
  2969
 * @handler: the handler to disconnect
sl@0
  2970
 * @data: the data that was registered with handler
sl@0
  2971
 *
sl@0
  2972
 * Disconnect all signal handlers from a proxy that match the given
sl@0
  2973
 * criteria.
sl@0
  2974
 */
sl@0
  2975
 	#ifdef __SYMBIAN32__
sl@0
  2976
	EXPORT_C
sl@0
  2977
	#endif
sl@0
  2978
void
sl@0
  2979
dbus_g_proxy_disconnect_signal (DBusGProxy             *proxy,
sl@0
  2980
                                const char             *signal_name,
sl@0
  2981
                                GCallback               handler,
sl@0
  2982
                                void                   *data)
sl@0
  2983
{
sl@0
  2984
  char *name;
sl@0
  2985
  GQuark q;
sl@0
  2986
  DBusGProxyPrivate *priv;
sl@0
  2987
  
sl@0
  2988
  g_return_if_fail (DBUS_IS_G_PROXY (proxy));
sl@0
  2989
  g_return_if_fail (!DBUS_G_PROXY_DESTROYED (proxy));
sl@0
  2990
  g_return_if_fail (signal_name != NULL);
sl@0
  2991
  g_return_if_fail (handler != NULL);
sl@0
  2992
sl@0
  2993
  priv = DBUS_G_PROXY_GET_PRIVATE(proxy);
sl@0
  2994
  name = create_signal_name (priv->interface, signal_name);
sl@0
  2995
sl@0
  2996
  q = g_quark_try_string (name);
sl@0
  2997
  
sl@0
  2998
  if (q != 0)
sl@0
  2999
    {
sl@0
  3000
      g_signal_handlers_disconnect_matched (G_OBJECT (proxy),
sl@0
  3001
                                            G_SIGNAL_MATCH_DETAIL |
sl@0
  3002
                                            G_SIGNAL_MATCH_FUNC   |
sl@0
  3003
                                            G_SIGNAL_MATCH_DATA,
sl@0
  3004
                                            signals[RECEIVED],
sl@0
  3005
                                            q,
sl@0
  3006
                                            NULL,
sl@0
  3007
                                            #ifdef WINSCW
sl@0
  3008
                                            G_CALLBACK (handler), data);
sl@0
  3009
                                            #else
sl@0
  3010
                                            (gpointer)(handler), data);
sl@0
  3011
                                            #endif
sl@0
  3012
    }
sl@0
  3013
  else
sl@0
  3014
    {
sl@0
  3015
      g_warning ("Attempt to disconnect from signal '%s' which is not registered\n",
sl@0
  3016
                 name);
sl@0
  3017
    }
sl@0
  3018
sl@0
  3019
  g_free (name);
sl@0
  3020
}
sl@0
  3021
sl@0
  3022
/** @} End of DBusGLib public */
sl@0
  3023
sl@0
  3024
#ifdef DBUS_BUILD_TESTS
sl@0
  3025
sl@0
  3026
/**
sl@0
  3027
 * @ingroup DBusGLibInternals
sl@0
  3028
 * Unit test for GLib proxy functions
sl@0
  3029
 * Returns: #TRUE on success.
sl@0
  3030
 */
sl@0
  3031
gboolean
sl@0
  3032
_dbus_g_proxy_test (void)
sl@0
  3033
{
sl@0
  3034
  
sl@0
  3035
  
sl@0
  3036
  return TRUE;
sl@0
  3037
}
sl@0
  3038
sl@0
  3039
#endif /* DBUS_BUILD_TESTS */