os/ossrv/ofdbus/dbus-glib/dbus/dbus-gobject.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ofdbus/dbus-glib/dbus/dbus-gobject.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,2391 @@
     1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
     1.5 +/* dbus-gobject.c Exporting a GObject remotely
     1.6 + *
     1.7 + * Copyright (C) 2003, 2004, 2005 Red Hat, Inc.
     1.8 + * Copyright (C) 2005 Nokia
     1.9 + * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
    1.10 + * Licensed under the Academic Free License version 2.1
    1.11 + *
    1.12 + * This program is free software; you can redistribute it and/or modify
    1.13 + * it under the terms of the GNU General Public License as published by
    1.14 + * the Free Software Foundation; either version 2 of the License, or
    1.15 + * (at your option) any later version.
    1.16 + *
    1.17 + * This program is distributed in the hope that it will be useful,
    1.18 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.19 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.20 + * GNU General Public License for more details.
    1.21 + *
    1.22 + * You should have received a copy of the GNU General Public License
    1.23 + * along with this program; if not, write to the Free Software
    1.24 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.25 + *
    1.26 + */
    1.27 +
    1.28 +#ifndef __SYMBIAN32__
    1.29 +#include <config.h>
    1.30 +#else
    1.31 +#include "config.h"
    1.32 +#endif //__SYMBIAN32__
    1.33 +#include <gobject/gvaluecollector.h>
    1.34 +#include <dbus/dbus-glib.h>
    1.35 +#include <dbus/dbus-glib-lowlevel.h>
    1.36 +#include "dbus-gtest.h"
    1.37 +#include "dbus-gutils.h"
    1.38 +#include "dbus-gobject.h"
    1.39 +#include "dbus-gsignature.h"
    1.40 +#include "dbus-gvalue.h"
    1.41 +#include "dbus-gmarshal.h"
    1.42 +#include "dbus-gvalue-utils.h"
    1.43 +#include <string.h>
    1.44 +
    1.45 +#ifdef __SYMBIAN32__
    1.46 +#include "libdbus_glib_wsd_solution.h"
    1.47 +#endif
    1.48 +
    1.49 +
    1.50 +typedef struct
    1.51 +{
    1.52 +  char *default_iface;
    1.53 +  GType code_enum;
    1.54 +} DBusGErrorInfo;
    1.55 +
    1.56 +
    1.57 +
    1.58 +#if EMULATOR
    1.59 +GET_STATIC_VAR_FROM_TLS(marshal_table,dbus_gobject,GHashTable *)
    1.60 +#define marshal_table (*GET_DBUS_WSD_VAR_NAME(marshal_table,dbus_gobject,s)())
    1.61 +GET_STATIC_VAR_FROM_TLS(error_metadata,dbus_gobject,GData *)
    1.62 +#define error_metadata (*GET_DBUS_WSD_VAR_NAME(error_metadata,dbus_gobject,s)())
    1.63 +GET_STATIC_VAR_FROM_TLS(globals_lock,dbus_gobject,GStaticRWLock )
    1.64 +#define globals_lock (*GET_DBUS_WSD_VAR_NAME(globals_lock,dbus_gobject,s)())
    1.65 +
    1.66 +#else
    1.67 +static GStaticRWLock globals_lock = G_STATIC_RW_LOCK_INIT;
    1.68 +
    1.69 +static GHashTable *marshal_table = NULL;
    1.70 +static GData *error_metadata = NULL;
    1.71 +
    1.72 +#endif
    1.73 +
    1.74 +
    1.75 +
    1.76 +
    1.77 +
    1.78 +static char*
    1.79 +uscore_to_wincaps (const char *uscore)
    1.80 +{
    1.81 +  const char *p;
    1.82 +  GString *str;
    1.83 +  gboolean last_was_uscore;
    1.84 +
    1.85 +  last_was_uscore = TRUE;
    1.86 +  
    1.87 +  str = g_string_new (NULL);
    1.88 +  p = uscore;
    1.89 +  while (p && *p)
    1.90 +    {
    1.91 +      if (*p == '-' || *p == '_')
    1.92 +        {
    1.93 +          last_was_uscore = TRUE;
    1.94 +        }
    1.95 +      else
    1.96 +        {
    1.97 +          if (last_was_uscore)
    1.98 +            {
    1.99 +              g_string_append_c (str, g_ascii_toupper (*p));
   1.100 +              last_was_uscore = FALSE;
   1.101 +            }
   1.102 +          else
   1.103 +            g_string_append_c (str, *p);
   1.104 +        }
   1.105 +      ++p;
   1.106 +    }
   1.107 +
   1.108 +  return g_string_free (str, FALSE);
   1.109 +}
   1.110 +
   1.111 +static const char *
   1.112 +string_table_next (const char *table)
   1.113 +{
   1.114 +  return (table + (strlen (table) + 1));
   1.115 +}
   1.116 +
   1.117 +static const char *
   1.118 +string_table_lookup (const char *table, int index)
   1.119 +{
   1.120 +  const char *ret;
   1.121 +
   1.122 +  ret = table;
   1.123 +
   1.124 +  while (index--)
   1.125 +    ret = string_table_next (ret);
   1.126 +
   1.127 +  return ret;
   1.128 +}
   1.129 +
   1.130 +static const char *
   1.131 +get_method_data (const DBusGObjectInfo *object,
   1.132 +		 const DBusGMethodInfo *method)
   1.133 +{
   1.134 +  return object->data + method->data_offset;
   1.135 +}
   1.136 +
   1.137 +static char *
   1.138 +object_error_domain_prefix_from_object_info (const DBusGObjectInfo *info)
   1.139 +{
   1.140 +  /* FIXME */
   1.141 +  return NULL;
   1.142 +}
   1.143 +
   1.144 +static char *
   1.145 +object_error_code_from_object_info (const DBusGObjectInfo *info, GQuark domain, gint code)
   1.146 +{
   1.147 +  /* FIXME */
   1.148 +  return NULL;
   1.149 +}
   1.150 +
   1.151 +static const char *
   1.152 +method_interface_from_object_info (const DBusGObjectInfo *object,
   1.153 +			      const DBusGMethodInfo *method)
   1.154 +{
   1.155 +  return string_table_lookup (get_method_data (object, method), 0);
   1.156 +}
   1.157 +
   1.158 +static const char *
   1.159 +method_name_from_object_info (const DBusGObjectInfo *object,
   1.160 +			      const DBusGMethodInfo *method)
   1.161 +{
   1.162 +  return string_table_lookup (get_method_data (object, method), 1);
   1.163 +}
   1.164 +
   1.165 +static const char *
   1.166 +method_arg_info_from_object_info (const DBusGObjectInfo *object,
   1.167 +				  const DBusGMethodInfo *method)
   1.168 +{
   1.169 +  return string_table_lookup (get_method_data (object, method), 3);/*RB was 2*/
   1.170 +}
   1.171 +
   1.172 +typedef enum
   1.173 +{
   1.174 +  RETVAL_NONE,    
   1.175 +  RETVAL_NOERROR,    
   1.176 +  RETVAL_ERROR
   1.177 +} RetvalType;
   1.178 +
   1.179 +static const char *
   1.180 +arg_iterate (const char    *data,
   1.181 +	     const char   **name,
   1.182 +	     gboolean      *in,
   1.183 +	     gboolean      *constval,
   1.184 +	     RetvalType    *retval,
   1.185 +	     const char   **type)
   1.186 +{
   1.187 +  gboolean inarg;
   1.188 +
   1.189 +  if (name)
   1.190 +    *name = data;
   1.191 +
   1.192 +  data = string_table_next (data);
   1.193 +  switch (*data)
   1.194 +    {
   1.195 +    case 'I':
   1.196 +      inarg = TRUE;
   1.197 +      break;
   1.198 +    case 'O':
   1.199 +      inarg = FALSE;
   1.200 +      break;
   1.201 +    default:
   1.202 +      g_warning ("invalid arg direction '%c'", *data);
   1.203 +      inarg = FALSE;
   1.204 +      break;
   1.205 +    }
   1.206 +  if (in)
   1.207 +    *in = inarg;
   1.208 +
   1.209 +  if (!inarg)
   1.210 +    {
   1.211 +      data = string_table_next (data);
   1.212 +      switch (*data)
   1.213 +	{
   1.214 +	case 'F':
   1.215 +	  if (constval)
   1.216 +	    *constval = FALSE;
   1.217 +	  break;
   1.218 +	case 'C':
   1.219 +	  if (constval)
   1.220 +	    *constval = TRUE;
   1.221 +	  break;
   1.222 +	default:
   1.223 +	  g_warning ("invalid arg const value '%c'", *data);
   1.224 +	  break;
   1.225 +	}
   1.226 +      data = string_table_next (data);
   1.227 +      switch (*data)
   1.228 +	{
   1.229 +	case 'N':
   1.230 +	  if (retval)
   1.231 +	    *retval = RETVAL_NONE;
   1.232 +	  break;
   1.233 +	case 'E':
   1.234 +	  if (retval)
   1.235 +	    *retval = RETVAL_ERROR;
   1.236 +	  break;
   1.237 +	case 'R':
   1.238 +	  if (retval)
   1.239 +	    *retval = RETVAL_NOERROR;
   1.240 +	  break;
   1.241 +	default:
   1.242 +	  g_warning ("invalid arg ret value '%c'", *data);
   1.243 +	  break;
   1.244 +	}
   1.245 +    }
   1.246 +  else
   1.247 +    {
   1.248 +      if (constval)
   1.249 +	*constval = FALSE;
   1.250 +      if (retval)
   1.251 +      #ifndef __SYMBIAN32__
   1.252 +      	*retval = FALSE;
   1.253 +      #else
   1.254 +	*retval = (RetvalType)FALSE;
   1.255 +	 #endif
   1.256 +    }
   1.257 +  
   1.258 +  data = string_table_next (data);
   1.259 +  if (type)
   1.260 +    *type = data;
   1.261 +
   1.262 +  return string_table_next (data);
   1.263 +}
   1.264 +
   1.265 +static char *
   1.266 +method_dir_signature_from_object_info (const DBusGObjectInfo *object,
   1.267 +				       const DBusGMethodInfo *method,
   1.268 +				       gboolean               in)
   1.269 +{
   1.270 +  const char *arg;
   1.271 +  GString *ret;
   1.272 +
   1.273 +  arg = method_arg_info_from_object_info (object, method);
   1.274 +
   1.275 +  ret = g_string_new (NULL);
   1.276 +
   1.277 +  while (*arg)
   1.278 +    {
   1.279 +      const char *name;
   1.280 +      gboolean arg_in;
   1.281 +      const char *type;
   1.282 +
   1.283 +      arg = arg_iterate (arg, &name, &arg_in, NULL, NULL, &type);
   1.284 +
   1.285 +      if (arg_in == in)
   1.286 +	g_string_append (ret, type);
   1.287 +    }
   1.288 +
   1.289 +  return g_string_free (ret, FALSE);
   1.290 +}
   1.291 +
   1.292 +static char *
   1.293 +method_input_signature_from_object_info (const DBusGObjectInfo *object,
   1.294 +					 const DBusGMethodInfo *method)
   1.295 +{
   1.296 +  return method_dir_signature_from_object_info (object, method, TRUE);
   1.297 +}
   1.298 +
   1.299 +static char *
   1.300 +method_output_signature_from_object_info (const DBusGObjectInfo *object,
   1.301 +					  const DBusGMethodInfo *method)
   1.302 +{
   1.303 +  return method_dir_signature_from_object_info (object, method, FALSE);
   1.304 +}
   1.305 +
   1.306 +static const char *
   1.307 +propsig_iterate (const char *data, const char **iface, const char **name)
   1.308 +{
   1.309 +  *iface = data;
   1.310 +
   1.311 +  data = string_table_next (data);
   1.312 +  *name = data;
   1.313 +
   1.314 +  return string_table_next (data);
   1.315 +}
   1.316 +
   1.317 +#if EMULATOR
   1.318 +GET_STATIC_VAR_FROM_TLS(quark,dbus_gobject,GQuark )
   1.319 +#define quark (*GET_DBUS_WSD_VAR_NAME(quark,dbus_gobject,s)())
   1.320 +
   1.321 +#endif
   1.322 +
   1.323 +static GQuark
   1.324 +dbus_g_object_type_dbus_metadata_quark (void)
   1.325 +{
   1.326 +#ifndef EMULATOR
   1.327 +  static GQuark quark;
   1.328 +#endif
   1.329 +  
   1.330 +  if (!quark)
   1.331 +    quark = g_quark_from_static_string ("DBusGObjectTypeDBusMetadataQuark");
   1.332 +  return quark;
   1.333 +}
   1.334 +
   1.335 +static GList *
   1.336 +lookup_object_info (GObject *object)
   1.337 +{
   1.338 +  GType *interfaces, *p;
   1.339 +  GList *info_list = NULL;
   1.340 +  const DBusGObjectInfo *info;
   1.341 +  GType classtype;
   1.342 +
   1.343 +  interfaces = g_type_interfaces (G_TYPE_FROM_INSTANCE (object), NULL);
   1.344 +
   1.345 +  for (p = interfaces; *p != 0; p++)
   1.346 +    {
   1.347 +      info = g_type_get_qdata (*p, dbus_g_object_type_dbus_metadata_quark ());
   1.348 +      if (info != NULL && info->format_version >= 0)
   1.349 +          info_list = g_list_prepend (info_list, (gpointer) info);
   1.350 +    }
   1.351 +
   1.352 +  g_free (interfaces);
   1.353 +
   1.354 +  for (classtype = G_TYPE_FROM_INSTANCE (object); classtype != 0; classtype = g_type_parent (classtype))
   1.355 +    {
   1.356 +      info = g_type_get_qdata (classtype, dbus_g_object_type_dbus_metadata_quark ());
   1.357 +      if (info != NULL && info->format_version >= 0)
   1.358 +          info_list = g_list_prepend (info_list, (gpointer) info);
   1.359 +    }
   1.360 +
   1.361 +  /* if needed only:
   1.362 +  return g_list_reverse (info_list);
   1.363 +  */
   1.364 +  
   1.365 +  return info_list;
   1.366 +}
   1.367 +
   1.368 +static void
   1.369 +gobject_unregister_function (DBusConnection  *connection,
   1.370 +                             void            *user_data)
   1.371 +{
   1.372 +#ifdef WINSCW
   1.373 +
   1.374 +  GObject *object;
   1.375 +
   1.376 +  object = G_OBJECT (user_data);
   1.377 +#endif
   1.378 +  /* FIXME */
   1.379 +
   1.380 +}
   1.381 +
   1.382 +typedef struct
   1.383 +{
   1.384 +  GString *xml;
   1.385 +  GType gtype;
   1.386 +  const DBusGObjectInfo *object_info;
   1.387 +} DBusGLibWriteIterfaceData;
   1.388 +
   1.389 +typedef struct
   1.390 +{
   1.391 +  GSList *methods;
   1.392 +  GSList *signals;
   1.393 +  GSList *properties;
   1.394 +} DBusGLibWriteInterfaceValues;
   1.395 +
   1.396 +static void
   1.397 +write_interface (gpointer key, gpointer val, gpointer user_data)
   1.398 +{
   1.399 +  const char *name;
   1.400 +  GSList *methods;
   1.401 +  GSList *signals;
   1.402 +  GSList *properties;
   1.403 +  GString *xml;
   1.404 +  const DBusGObjectInfo *object_info;
   1.405 +  DBusGLibWriteIterfaceData *data;
   1.406 +  DBusGLibWriteInterfaceValues *values;
   1.407 +
   1.408 +  name = key;
   1.409 +
   1.410 +  values = val;
   1.411 +  methods = values->methods;
   1.412 +  signals = values->signals;
   1.413 +  properties = values->properties;
   1.414 +
   1.415 +  data = user_data;
   1.416 +  xml = data->xml;
   1.417 +  object_info = data->object_info;
   1.418 +
   1.419 +  g_string_append_printf (xml, "  <interface name=\"%s\">\n", name);
   1.420 +
   1.421 +  /* FIXME: recurse to parent types ? */
   1.422 +  for (; methods; methods = methods->next)
   1.423 +    {
   1.424 +      DBusGMethodInfo *method;
   1.425 +      const char *args;
   1.426 +      method = methods->data;
   1.427 +
   1.428 +      g_string_append_printf (xml, "    <method name=\"%s\">\n",
   1.429 +			      method_name_from_object_info (object_info, method));
   1.430 +
   1.431 +      args = method_arg_info_from_object_info (object_info, method);
   1.432 +
   1.433 +      while (*args)
   1.434 +	{
   1.435 +	  const char *name;
   1.436 +	  gboolean arg_in;
   1.437 +	  const char *type;
   1.438 +	  
   1.439 +	  args = arg_iterate (args, &name, &arg_in, NULL, NULL, &type);
   1.440 +
   1.441 +	  /* FIXME - handle container types */
   1.442 +	  g_string_append_printf (xml, "      <arg name=\"%s\" type=\"%s\" direction=\"%s\"/>\n",
   1.443 +				  name, type, arg_in ? "in" : "out");
   1.444 +
   1.445 +	}
   1.446 +      g_string_append (xml, "    </method>\n");
   1.447 +
   1.448 +    }
   1.449 +  g_slist_free (values->methods);
   1.450 +
   1.451 +  for (; signals; signals = signals->next)
   1.452 +    {
   1.453 +      guint id;
   1.454 +      guint arg;
   1.455 +      const char *signame;
   1.456 +      GSignalQuery query;
   1.457 +      char *s;
   1.458 +
   1.459 +      signame = signals->data;
   1.460 +
   1.461 +      s = _dbus_gutils_wincaps_to_uscore (signame);
   1.462 +      
   1.463 +      id = g_signal_lookup (s, data->gtype);
   1.464 +      g_assert (id != 0);
   1.465 +
   1.466 +      g_signal_query (id, &query);
   1.467 +      g_assert (query.return_type == G_TYPE_NONE);
   1.468 +
   1.469 +      g_string_append_printf (xml, "    <signal name=\"%s\">\n", signame);
   1.470 +
   1.471 +      for (arg = 0; arg < query.n_params; arg++)
   1.472 +	{
   1.473 +	  char *dbus_type = _dbus_gtype_to_signature (query.param_types[arg]);
   1.474 +
   1.475 +	  g_assert (dbus_type != NULL);
   1.476 +
   1.477 +          g_string_append (xml, "      <arg type=\"");
   1.478 +          g_string_append (xml, dbus_type);
   1.479 +          g_string_append (xml, "\"/>\n");
   1.480 +	  g_free (dbus_type);
   1.481 +	}
   1.482 +
   1.483 +      g_string_append (xml, "    </signal>\n");
   1.484 +      g_free (s);
   1.485 +    }
   1.486 +  g_slist_free (values->signals);
   1.487 +
   1.488 +  for (; properties; properties = properties->next)
   1.489 +    {
   1.490 +      const char *propname;
   1.491 +      GParamSpec *spec;
   1.492 +      char *dbus_type;
   1.493 +      gboolean can_set;
   1.494 +      gboolean can_get;
   1.495 +      char *s;
   1.496 +
   1.497 +      propname = properties->data;
   1.498 +      spec = NULL;
   1.499 +
   1.500 +      s = _dbus_gutils_wincaps_to_uscore (propname);
   1.501 +
   1.502 +      spec = g_object_class_find_property (g_type_class_peek (data->gtype), s);
   1.503 +      g_assert (spec != NULL);
   1.504 +      g_free (s);
   1.505 +      
   1.506 +      dbus_type = _dbus_gtype_to_signature (G_PARAM_SPEC_VALUE_TYPE (spec));
   1.507 +      g_assert (dbus_type != NULL);
   1.508 +      
   1.509 +      can_set = ((spec->flags & G_PARAM_WRITABLE) != 0 &&
   1.510 +		 (spec->flags & G_PARAM_CONSTRUCT_ONLY) == 0);
   1.511 +      
   1.512 +      can_get = (spec->flags & G_PARAM_READABLE) != 0;
   1.513 +      
   1.514 +      if (can_set || can_get)
   1.515 +	{
   1.516 +	  g_string_append_printf (xml, "    <property name=\"%s\" ", propname);
   1.517 +	  g_string_append (xml, "type=\"");
   1.518 +	  g_string_append (xml, dbus_type);
   1.519 +	  g_string_append (xml, "\" access=\"");
   1.520 +
   1.521 +	  if (can_set && can_get)
   1.522 +	    g_string_append (xml, "readwrite");
   1.523 +	  else if (can_get)
   1.524 +	    g_string_append (xml, "read");
   1.525 +	  else
   1.526 +	    {
   1.527 +	      g_assert (can_set);
   1.528 +	      g_string_append (xml, "write");
   1.529 +	    }
   1.530 +          
   1.531 +	  g_string_append (xml, "\"/>\n");
   1.532 +	}
   1.533 +      
   1.534 +      g_free (dbus_type);
   1.535 +
   1.536 +      g_string_append (xml, "    </property>\n");
   1.537 +    }
   1.538 +  g_slist_free (values->properties);
   1.539 +
   1.540 +  g_free (values);
   1.541 +  g_string_append (xml, "  </interface>\n");
   1.542 +}
   1.543 +
   1.544 +static DBusGLibWriteInterfaceValues *
   1.545 +lookup_values (GHashTable *interfaces, const char *method_interface)
   1.546 +{
   1.547 +  DBusGLibWriteInterfaceValues *values;
   1.548 +  if ((values = g_hash_table_lookup (interfaces, (gpointer) method_interface)) == NULL)
   1.549 +    {
   1.550 +      values = g_new0 (DBusGLibWriteInterfaceValues, 1);
   1.551 +      g_hash_table_insert (interfaces, (gpointer) method_interface, values);
   1.552 +    }
   1.553 +  return values;
   1.554 +}
   1.555 +
   1.556 +static void
   1.557 +introspect_interfaces (GObject *object, GString *xml)
   1.558 +{
   1.559 +  GList *info_list;
   1.560 +  const GList *info_list_walk;
   1.561 +  const DBusGObjectInfo *info;
   1.562 +  DBusGLibWriteIterfaceData data;
   1.563 +  int i;
   1.564 +  GHashTable *interfaces;
   1.565 +  DBusGLibWriteInterfaceValues *values;
   1.566 +  const char *propsig;
   1.567 +
   1.568 +  info_list = lookup_object_info (object);
   1.569 +
   1.570 +  g_assert (info_list != NULL);
   1.571 +
   1.572 +  /* Gather a list of all interfaces, indexed into their methods */
   1.573 +  for (info_list_walk = info_list; info_list_walk != NULL; info_list_walk = g_list_next (info_list_walk))
   1.574 +    {
   1.575 +      info = (DBusGObjectInfo *) info_list_walk->data;
   1.576 +      interfaces = g_hash_table_new (g_str_hash, g_str_equal);
   1.577 +      
   1.578 +      g_assert (info != NULL);
   1.579 +
   1.580 +      for (i = 0; i < info->n_method_infos; i++)
   1.581 +        {
   1.582 +          #ifdef WINSCW
   1.583 +          const char *method_name;
   1.584 +           const char *method_args;
   1.585 +          #endif
   1.586 +          const char *method_interface;
   1.587 +         
   1.588 +        
   1.589 +          const DBusGMethodInfo *method;
   1.590 +
   1.591 +          method = &(info->method_infos[i]);
   1.592 +
   1.593 +          method_interface = method_interface_from_object_info (info, method);
   1.594 +          #ifdef WINSCW
   1.595 +          method_name = method_name_from_object_info (info, method);
   1.596 +         
   1.597 +          method_args = method_arg_info_from_object_info (info, method);
   1.598 +          #endif
   1.599 +          values = lookup_values (interfaces, method_interface);
   1.600 +          values->methods = g_slist_prepend (values->methods, (gpointer) method);
   1.601 +        }
   1.602 +
   1.603 +      propsig = info->exported_signals;
   1.604 +      while (*propsig)
   1.605 +        {
   1.606 +          const char *iface;
   1.607 +          const char *signame;
   1.608 +
   1.609 +          propsig = propsig_iterate (propsig, &iface, &signame);
   1.610 +
   1.611 +          values = lookup_values (interfaces, iface);
   1.612 +          values->signals = g_slist_prepend (values->signals, (gpointer) signame);
   1.613 +        }
   1.614 +
   1.615 +      propsig = info->exported_properties;
   1.616 +      while (*propsig)
   1.617 +        {
   1.618 +          const char *iface;
   1.619 +          const char *propname;
   1.620 +
   1.621 +          propsig = propsig_iterate (propsig, &iface, &propname);
   1.622 +
   1.623 +          values = lookup_values (interfaces, iface);
   1.624 +          values->properties = g_slist_prepend (values->properties, (gpointer) propname);
   1.625 +        }
   1.626 +      
   1.627 +      memset (&data, 0, sizeof (data));
   1.628 +      data.xml = xml;
   1.629 +      data.gtype = G_TYPE_FROM_INSTANCE (object);
   1.630 +      data.object_info = info;
   1.631 +
   1.632 +      g_hash_table_foreach (interfaces, write_interface, &data);
   1.633 +      g_hash_table_destroy (interfaces);
   1.634 +    }
   1.635 +
   1.636 +  g_list_free (info_list);
   1.637 +}
   1.638 +
   1.639 +static DBusHandlerResult
   1.640 +handle_introspect (DBusConnection *connection,
   1.641 +                   DBusMessage    *message,
   1.642 +                   GObject        *object)
   1.643 +{
   1.644 +  GString *xml;
   1.645 +  unsigned int i;
   1.646 +  DBusMessage *ret;
   1.647 +  char **children;
   1.648 +  
   1.649 +  if (!dbus_connection_list_registered (connection, 
   1.650 +                                        dbus_message_get_path (message),
   1.651 +                                        &children))
   1.652 +    g_error ("Out of memory");
   1.653 +  
   1.654 +  xml = g_string_new (NULL);
   1.655 +
   1.656 +  g_string_append (xml, DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE);
   1.657 +  
   1.658 +  g_string_append (xml, "<node>\n");
   1.659 +
   1.660 +  /* We are introspectable, though I guess that was pretty obvious */
   1.661 +  g_string_append_printf (xml, "  <interface name=\"%s\">\n", DBUS_INTERFACE_INTROSPECTABLE);
   1.662 +  g_string_append (xml, "    <method name=\"Introspect\">\n");
   1.663 +  g_string_append_printf (xml, "      <arg name=\"data\" direction=\"out\" type=\"%s\"/>\n", DBUS_TYPE_STRING_AS_STRING);
   1.664 +  g_string_append (xml, "    </method>\n");
   1.665 +  g_string_append (xml, "  </interface>\n");
   1.666 +
   1.667 +  /* We support get/set properties */
   1.668 +  g_string_append_printf (xml, "  <interface name=\"%s\">\n", DBUS_INTERFACE_PROPERTIES);
   1.669 +  g_string_append (xml, "    <method name=\"Get\">\n");
   1.670 +  g_string_append_printf (xml, "      <arg name=\"interface\" direction=\"in\" type=\"%s\"/>\n", DBUS_TYPE_STRING_AS_STRING);
   1.671 +  g_string_append_printf (xml, "      <arg name=\"propname\" direction=\"in\" type=\"%s\"/>\n", DBUS_TYPE_STRING_AS_STRING);
   1.672 +  g_string_append_printf (xml, "      <arg name=\"value\" direction=\"out\" type=\"%s\"/>\n", DBUS_TYPE_VARIANT_AS_STRING);
   1.673 +  g_string_append (xml, "    </method>\n");
   1.674 +  g_string_append (xml, "    <method name=\"Set\">\n");
   1.675 +  g_string_append_printf (xml, "      <arg name=\"interface\" direction=\"in\" type=\"%s\"/>\n", DBUS_TYPE_STRING_AS_STRING);
   1.676 +  g_string_append_printf (xml, "      <arg name=\"propname\" direction=\"in\" type=\"%s\"/>\n", DBUS_TYPE_STRING_AS_STRING);
   1.677 +  g_string_append_printf (xml, "      <arg name=\"value\" direction=\"in\" type=\"%s\"/>\n", DBUS_TYPE_VARIANT_AS_STRING);
   1.678 +  g_string_append (xml, "    </method>\n");
   1.679 +  g_string_append (xml, "  </interface>\n");
   1.680 +  
   1.681 +  introspect_interfaces (object, xml);
   1.682 +
   1.683 +  /* Append child nodes */
   1.684 +  for (i = 0; children[i]; i++)
   1.685 +      g_string_append_printf (xml, "  <node name=\"%s\"/>\n",
   1.686 +                              children[i]);
   1.687 +  
   1.688 +  /* Close the XML, and send it to the requesting app */
   1.689 +  g_string_append (xml, "</node>\n");
   1.690 +
   1.691 +  ret = dbus_message_new_method_return (message);
   1.692 +  if (ret == NULL)
   1.693 +    g_error ("Out of memory");
   1.694 +
   1.695 +  dbus_message_append_args (ret,
   1.696 +                            DBUS_TYPE_STRING, &xml->str,
   1.697 +                            DBUS_TYPE_INVALID);
   1.698 +
   1.699 +  dbus_connection_send (connection, ret, NULL);
   1.700 +  dbus_message_unref (ret);
   1.701 +
   1.702 +  g_string_free (xml, TRUE);
   1.703 +
   1.704 +  dbus_free_string_array (children);
   1.705 +  
   1.706 +  return DBUS_HANDLER_RESULT_HANDLED;
   1.707 +}
   1.708 +
   1.709 +static DBusMessage*
   1.710 +set_object_property (DBusConnection  *connection,
   1.711 +                     DBusMessage     *message,
   1.712 +                     DBusMessageIter *iter,
   1.713 +                     GObject         *object,
   1.714 +                     GParamSpec      *pspec)
   1.715 +{
   1.716 +  GValue value = { 0, };
   1.717 +  DBusMessage *ret;
   1.718 +  DBusMessageIter sub;
   1.719 +  DBusGValueMarshalCtx context;
   1.720 +
   1.721 +  dbus_message_iter_recurse (iter, &sub);
   1.722 +
   1.723 +  context.gconnection = DBUS_G_CONNECTION_FROM_CONNECTION (connection);
   1.724 +  context.proxy = NULL;
   1.725 +
   1.726 +  g_value_init (&value, pspec->value_type);
   1.727 +  if (_dbus_gvalue_demarshal (&context, &sub, &value, NULL))
   1.728 +    {
   1.729 +      g_object_set_property (object,
   1.730 +                             pspec->name,
   1.731 +                             &value);
   1.732 +
   1.733 +      g_value_unset (&value);
   1.734 +
   1.735 +      ret = dbus_message_new_method_return (message);
   1.736 +      if (ret == NULL)
   1.737 +        g_error ("out of memory");
   1.738 +    }
   1.739 +  else
   1.740 +    {
   1.741 +      ret = dbus_message_new_error (message,
   1.742 +                                    DBUS_ERROR_INVALID_ARGS,
   1.743 +                                    "Argument's D-BUS type can't be converted to a GType");
   1.744 +      if (ret == NULL)
   1.745 +        g_error ("out of memory");
   1.746 +    }
   1.747 +
   1.748 +  return ret;
   1.749 +}
   1.750 +
   1.751 +static DBusMessage*
   1.752 +get_object_property (DBusConnection *connection,
   1.753 +                     DBusMessage    *message,
   1.754 +                     GObject        *object,
   1.755 +                     GParamSpec     *pspec)
   1.756 +{
   1.757 +  GType value_gtype;
   1.758 +  GValue value = {0, };
   1.759 +  gchar *variant_sig;
   1.760 +  DBusMessage *ret;
   1.761 +  DBusMessageIter iter, subiter;
   1.762 +
   1.763 +  ret = dbus_message_new_method_return (message);
   1.764 +  if (ret == NULL)
   1.765 +    g_error ("out of memory");
   1.766 +
   1.767 +
   1.768 +  g_value_init (&value, pspec->value_type);
   1.769 +  g_object_get_property (object, pspec->name, &value);
   1.770 +
   1.771 +  variant_sig = _dbus_gvalue_to_signature (&value);
   1.772 +  if (variant_sig == NULL)
   1.773 +    {
   1.774 +      value_gtype = G_VALUE_TYPE (&value);
   1.775 +      g_warning ("Cannot marshal type \"%s\" in variant", g_type_name (value_gtype));
   1.776 +      g_value_unset (&value);
   1.777 +      return ret;
   1.778 +    }
   1.779 +
   1.780 +  dbus_message_iter_init_append (ret, &iter);
   1.781 +  if (!dbus_message_iter_open_container (&iter,
   1.782 +					 DBUS_TYPE_VARIANT,
   1.783 +					 variant_sig,
   1.784 +					 &subiter))
   1.785 +    {
   1.786 +      g_free (variant_sig);
   1.787 +      g_value_unset (&value);
   1.788 +      return ret;
   1.789 +    }
   1.790 +
   1.791 +  if (!_dbus_gvalue_marshal (&subiter, &value))
   1.792 +    {
   1.793 +      dbus_message_unref (ret);
   1.794 +      ret = dbus_message_new_error (message,
   1.795 +                                    DBUS_ERROR_UNKNOWN_METHOD,
   1.796 +                                    "Can't convert GType of object property to a D-BUS type");
   1.797 +    }
   1.798 +
   1.799 +  dbus_message_iter_close_container (&iter, &subiter);
   1.800 +
   1.801 +  g_value_unset (&value);
   1.802 +  g_free (variant_sig);
   1.803 +
   1.804 +  return ret;
   1.805 +}
   1.806 +
   1.807 +static gboolean
   1.808 +lookup_object_and_method (GObject      *object,
   1.809 +			  DBusMessage  *message,
   1.810 +			  const DBusGObjectInfo **object_ret,
   1.811 +			  const DBusGMethodInfo **method_ret)
   1.812 +{
   1.813 +  const char *interface;
   1.814 +  const char *member;
   1.815 +  const char *signature;
   1.816 +  GList *info_list;
   1.817 +  const GList *info_list_walk;
   1.818 +  const DBusGObjectInfo *info;
   1.819 +  int i;
   1.820 +
   1.821 +  interface = dbus_message_get_interface (message);
   1.822 +  member = dbus_message_get_member (message);
   1.823 +  signature = dbus_message_get_signature (message);
   1.824 +
   1.825 +  info_list = lookup_object_info (object);
   1.826 +  
   1.827 +  for (info_list_walk = info_list; info_list_walk != NULL; info_list_walk = g_list_next (info_list_walk))
   1.828 +    {
   1.829 +      info = (DBusGObjectInfo *) info_list_walk->data;
   1.830 +      *object_ret = info;
   1.831 +
   1.832 +      for (i = 0; i < info->n_method_infos; i++)
   1.833 +        {
   1.834 +          const char *expected_member;
   1.835 +          const char *expected_interface;
   1.836 +          char *expected_signature;
   1.837 +          const DBusGMethodInfo *method;
   1.838 +
   1.839 +          method = &(info->method_infos[i]);
   1.840 +
   1.841 +          /* Check method interface/name and input signature */ 
   1.842 +          expected_interface = method_interface_from_object_info (*object_ret, method);
   1.843 +          expected_member = method_name_from_object_info (*object_ret, method);
   1.844 +          expected_signature = method_input_signature_from_object_info (*object_ret, method);
   1.845 +
   1.846 +          if ((interface == NULL
   1.847 +              || strcmp (expected_interface, interface) == 0)
   1.848 +              && strcmp (expected_member, member) == 0
   1.849 +              && strcmp (expected_signature, signature) == 0)
   1.850 +            {
   1.851 +              g_free (expected_signature);
   1.852 +              *method_ret = method;
   1.853 +              g_list_free (info_list);
   1.854 +              return TRUE;
   1.855 +            }
   1.856 +            g_free (expected_signature);
   1.857 +        }
   1.858 +    }
   1.859 +
   1.860 +  if (info_list)
   1.861 +    g_list_free (info_list);
   1.862 +
   1.863 +  return FALSE;
   1.864 +}
   1.865 +
   1.866 +static char *
   1.867 +gerror_domaincode_to_dbus_error_name (const DBusGObjectInfo *object_info,
   1.868 +				      const char *msg_interface,
   1.869 +				      GQuark domain, gint code)
   1.870 +{
   1.871 +  const char *domain_str;
   1.872 +  const char *code_str;
   1.873 +  GString *dbus_error_name;
   1.874 +
   1.875 +  domain_str = object_error_domain_prefix_from_object_info (object_info);
   1.876 +  code_str = object_error_code_from_object_info (object_info, domain, code);
   1.877 +
   1.878 +  if (!domain_str || !code_str)
   1.879 +    {
   1.880 +      DBusGErrorInfo *info;
   1.881 +
   1.882 +      g_static_rw_lock_reader_lock (&globals_lock);
   1.883 +
   1.884 +      if (error_metadata != NULL)
   1.885 +	info = g_datalist_id_get_data (&error_metadata, domain);
   1.886 +      else
   1.887 +	info = NULL;
   1.888 +
   1.889 +      g_static_rw_lock_reader_unlock (&globals_lock);
   1.890 +
   1.891 +      if (info)
   1.892 +	{
   1.893 +	  GEnumValue *value;
   1.894 +	  GEnumClass *klass;
   1.895 +
   1.896 +	  klass = g_type_class_ref (info->code_enum);
   1.897 +	  value = g_enum_get_value (klass, code);
   1.898 +	  g_type_class_unref (klass);
   1.899 +
   1.900 +	  domain_str = info->default_iface;
   1.901 +	  code_str = value->value_nick;
   1.902 +	}
   1.903 +    }
   1.904 +
   1.905 +  if (!domain_str)
   1.906 +    domain_str = msg_interface;
   1.907 +
   1.908 +  if (!domain_str || !code_str)
   1.909 +    {
   1.910 +      /* If we can't map it sensibly, make up an error name */
   1.911 +      char *domain_from_quark;
   1.912 +      
   1.913 +      dbus_error_name = g_string_new ("org.freedesktop.DBus.GLib.UnmappedError.");
   1.914 +
   1.915 +      domain_from_quark = uscore_to_wincaps (g_quark_to_string (domain));
   1.916 +      g_string_append (dbus_error_name, domain_from_quark);
   1.917 +      g_free (domain_from_quark);
   1.918 +	
   1.919 +      g_string_append_printf (dbus_error_name, ".Code%d", code);
   1.920 +    }
   1.921 +  else
   1.922 +    {
   1.923 +      dbus_error_name = g_string_new (domain_str);
   1.924 +      g_string_append_c (dbus_error_name, '.');
   1.925 +      g_string_append (dbus_error_name, code_str);
   1.926 +    }
   1.927 +
   1.928 +  return g_string_free (dbus_error_name, FALSE);
   1.929 +}
   1.930 +
   1.931 +static DBusMessage *
   1.932 +gerror_to_dbus_error_message (const DBusGObjectInfo *object_info,
   1.933 +			      DBusMessage     *message,
   1.934 +			      GError          *error)
   1.935 +{
   1.936 +  DBusMessage *reply;
   1.937 +
   1.938 +  if (!error)
   1.939 +    {
   1.940 +      char *error_msg;
   1.941 +      
   1.942 +      error_msg = g_strdup_printf ("Method invoked for %s returned FALSE but did not set error", dbus_message_get_member (message));
   1.943 +      reply = dbus_message_new_error (message, "org.freedesktop.DBus.GLib.ErrorError", error_msg);
   1.944 +      g_free (error_msg);
   1.945 +    }
   1.946 +  else
   1.947 +    {
   1.948 +      if (error->domain == DBUS_GERROR)
   1.949 +	reply = dbus_message_new_error (message,
   1.950 +					dbus_g_error_get_name (error),
   1.951 +					error->message);
   1.952 +      else
   1.953 +	{
   1.954 +	  char *error_name;
   1.955 +	  error_name = gerror_domaincode_to_dbus_error_name (object_info,
   1.956 +							     dbus_message_get_interface (message),
   1.957 +							     error->domain, error->code);
   1.958 +	  reply = dbus_message_new_error (message, error_name, error->message);
   1.959 +	  g_free (error_name); 
   1.960 +	}
   1.961 +    }
   1.962 +  return reply;
   1.963 +}
   1.964 +
   1.965 +/**
   1.966 + * SECTION:dbus-gmethod
   1.967 + * @short_description: GMethod Info & Invocation
   1.968 + * @see_also: #DBusGMessage
   1.969 + * @stability: Stable
   1.970 + *
   1.971 + * These types are used to call methods on #GObject objects.
   1.972 + */
   1.973 +
   1.974 +/**
   1.975 + * The context of an asynchronous method call.  See dbus_g_method_return() and
   1.976 + * dbus_g_method_return_error().
   1.977 + */
   1.978 +struct _DBusGMethodInvocation {
   1.979 +  DBusGConnection *connection; /**< The connection */
   1.980 +  DBusGMessage *message; /**< The message which generated the method call */
   1.981 +  const DBusGObjectInfo *object; /**< The object the method was called on */
   1.982 +  const DBusGMethodInfo *method; /**< The method called */
   1.983 +};
   1.984 +
   1.985 +static DBusHandlerResult
   1.986 +invoke_object_method (GObject         *object,
   1.987 +		      const DBusGObjectInfo *object_info,
   1.988 +		      const DBusGMethodInfo *method,
   1.989 +		      DBusConnection  *connection,
   1.990 +		      DBusMessage     *message)
   1.991 +{
   1.992 +  gboolean had_error, call_only;
   1.993 +  GError *gerror;
   1.994 +  GValueArray *value_array;
   1.995 +  GValue return_value = {0,};
   1.996 +  GClosure closure;
   1.997 +  char *in_signature;
   1.998 +  GArray *out_param_values = NULL;
   1.999 +  GValueArray *out_param_gvalues = NULL;
  1.1000 +  int out_param_count;
  1.1001 +  int out_param_pos, out_param_gvalue_pos;
  1.1002 +  DBusHandlerResult result;
  1.1003 +  DBusMessage *reply;
  1.1004 +  gboolean have_retval;
  1.1005 +  gboolean retval_signals_error;
  1.1006 +  gboolean retval_is_synthetic;
  1.1007 +  gboolean retval_is_constant;
  1.1008 +  const char *arg_metadata;
  1.1009 +
  1.1010 +  gerror = NULL;
  1.1011 +
  1.1012 +  /* Determine whether or not this method should be invoked in a new
  1.1013 +     thread
  1.1014 +   */
  1.1015 +  if (strcmp (string_table_lookup (get_method_data (object_info, method), 2), "A") == 0)
  1.1016 +    call_only = TRUE;
  1.1017 +  else
  1.1018 +    call_only = FALSE;
  1.1019 +
  1.1020 +  have_retval = FALSE;
  1.1021 +  retval_signals_error = FALSE;
  1.1022 +  retval_is_synthetic = FALSE;
  1.1023 +  retval_is_constant = FALSE;
  1.1024 +
  1.1025 +  /* This is evil.  We do this to work around the fact that
  1.1026 +   * the generated glib marshallers check a flag in the closure object
  1.1027 +   * which we don't care about.  We don't need/want to create
  1.1028 +   * a new closure for each invocation.
  1.1029 +   */
  1.1030 +  memset (&closure, 0, sizeof (closure));
  1.1031 +
  1.1032 +  in_signature = method_input_signature_from_object_info (object_info, method); 
  1.1033 +  
  1.1034 +  /* Convert method IN parameters to GValueArray */
  1.1035 +  {
  1.1036 +    GArray *types_array;
  1.1037 +    guint n_params;
  1.1038 +    const GType *types;
  1.1039 +    DBusGValueMarshalCtx context;
  1.1040 +    GError *error = NULL;
  1.1041 +    
  1.1042 +    context.gconnection = DBUS_G_CONNECTION_FROM_CONNECTION (connection);
  1.1043 +    context.proxy = NULL;
  1.1044 +
  1.1045 +    types_array = _dbus_gtypes_from_arg_signature (in_signature, FALSE);
  1.1046 +    n_params = types_array->len;
  1.1047 +    types = (const GType*) types_array->data;
  1.1048 +
  1.1049 +    value_array = _dbus_gvalue_demarshal_message (&context, message, n_params, types, &error);
  1.1050 +    if (value_array == NULL)
  1.1051 +      {
  1.1052 +	g_free (in_signature); 
  1.1053 +	g_array_free (types_array, TRUE);
  1.1054 +	reply = dbus_message_new_error (message, "org.freedesktop.DBus.GLib.ErrorError", error->message);
  1.1055 +	dbus_connection_send (connection, reply, NULL);
  1.1056 +	dbus_message_unref (reply);
  1.1057 +	g_error_free (error);
  1.1058 +	return DBUS_HANDLER_RESULT_HANDLED;
  1.1059 +      }
  1.1060 +    g_array_free (types_array, TRUE);
  1.1061 +  }
  1.1062 +
  1.1063 +  /* Prepend object as first argument */ 
  1.1064 +  g_value_array_prepend (value_array, NULL);
  1.1065 +  g_value_init (g_value_array_get_nth (value_array, 0), G_TYPE_OBJECT);
  1.1066 +  g_value_set_object (g_value_array_get_nth (value_array, 0), object);
  1.1067 +  
  1.1068 +  if (call_only)
  1.1069 +    {
  1.1070 +      GValue context_value = {0,};
  1.1071 +      DBusGMethodInvocation *context;
  1.1072 +      context = g_new (DBusGMethodInvocation, 1);
  1.1073 +      context->connection = dbus_g_connection_ref (DBUS_G_CONNECTION_FROM_CONNECTION (connection));
  1.1074 +      context->message = dbus_g_message_ref (DBUS_G_MESSAGE_FROM_MESSAGE (message));
  1.1075 +      context->object = object_info;
  1.1076 +      context->method = method;
  1.1077 +      g_value_init (&context_value, G_TYPE_POINTER);
  1.1078 +      g_value_set_pointer (&context_value, context);
  1.1079 +      g_value_array_append (value_array, &context_value);
  1.1080 +    }
  1.1081 +  else
  1.1082 +    {
  1.1083 +      RetvalType retval;
  1.1084 +      gboolean arg_in;
  1.1085 +      gboolean arg_const;
  1.1086 +      const char *argsig;
  1.1087 +
  1.1088 +      arg_metadata = method_arg_info_from_object_info (object_info, method);
  1.1089 +      
  1.1090 +      /* Count number of output parameters, and look for a return value */
  1.1091 +      out_param_count = 0;
  1.1092 +      while (*arg_metadata)
  1.1093 +	{
  1.1094 +	  arg_metadata = arg_iterate (arg_metadata, NULL, &arg_in, &arg_const, &retval, &argsig);
  1.1095 +	  if (arg_in)
  1.1096 +	    continue;
  1.1097 +	  if (retval != RETVAL_NONE)
  1.1098 +	    {
  1.1099 +	      DBusSignatureIter tmp_sigiter;
  1.1100 +	      /* This is the function return value */
  1.1101 +	      g_assert (!have_retval);
  1.1102 +	      have_retval = TRUE;
  1.1103 +	      retval_is_synthetic = FALSE;
  1.1104 +
  1.1105 +	      switch (retval)
  1.1106 +		{
  1.1107 +		case RETVAL_NONE:
  1.1108 +		  g_assert_not_reached ();
  1.1109 +		  break;
  1.1110 +		case RETVAL_NOERROR:
  1.1111 +		  retval_signals_error = FALSE;
  1.1112 +		  break;
  1.1113 +		case RETVAL_ERROR:
  1.1114 +		  retval_signals_error = TRUE;
  1.1115 +		  break;
  1.1116 +		}
  1.1117 +
  1.1118 +	      retval_is_constant = arg_const;
  1.1119 +
  1.1120 +	      /* Initialize our return GValue with the specified type */
  1.1121 +	      dbus_signature_iter_init (&tmp_sigiter, argsig);
  1.1122 +	      g_value_init (&return_value, _dbus_gtype_from_signature_iter (&tmp_sigiter, FALSE));
  1.1123 +	    }
  1.1124 +	  else
  1.1125 +	    {
  1.1126 +	      /* It's a regular output value */
  1.1127 +	      out_param_count++;
  1.1128 +	    }
  1.1129 +	}
  1.1130 +
  1.1131 +      /* For compatibility, if we haven't found a return value, we assume
  1.1132 +       * the function returns a gboolean for signalling an error
  1.1133 +       * (and therefore also takes a GError).  We also note that it
  1.1134 +       * is a "synthetic" return value; i.e. we aren't going to be
  1.1135 +       * sending it over the bus, it's just to signal an error.
  1.1136 +       */
  1.1137 +      if (!have_retval)
  1.1138 +	{
  1.1139 +	  have_retval = TRUE;
  1.1140 +	  retval_is_synthetic = TRUE;
  1.1141 +	  retval_signals_error = TRUE;
  1.1142 +	  g_value_init (&return_value, G_TYPE_BOOLEAN);
  1.1143 +	}
  1.1144 +
  1.1145 +      /* Create an array to store the actual values of OUT parameters
  1.1146 +       * (other than the real function return, if any).  Then, create
  1.1147 +       * a GValue boxed POINTER to each of those values, and append to
  1.1148 +       * the invocation, so the method can return the OUT parameters.
  1.1149 +       */
  1.1150 +      out_param_values = g_array_sized_new (FALSE, TRUE, sizeof (GTypeCValue), out_param_count);
  1.1151 +
  1.1152 +      /* We have a special array of GValues for toplevel GValue return
  1.1153 +       * types.
  1.1154 +       */
  1.1155 +      out_param_gvalues = g_value_array_new (out_param_count);
  1.1156 +      out_param_pos = 0;
  1.1157 +      out_param_gvalue_pos = 0;
  1.1158 +
  1.1159 +      /* Reset argument metadata pointer */
  1.1160 +      arg_metadata = method_arg_info_from_object_info (object_info, method);
  1.1161 +      
  1.1162 +      /* Iterate over output arguments again, this time allocating space for
  1.1163 +       * them as appopriate.
  1.1164 +       */
  1.1165 +      while (*arg_metadata)
  1.1166 +	{
  1.1167 +	  GValue value = {0, };
  1.1168 +	  GTypeCValue storage;
  1.1169 +	  DBusSignatureIter tmp_sigiter;
  1.1170 +	  GType current_gtype;
  1.1171 +
  1.1172 +	  arg_metadata = arg_iterate (arg_metadata, NULL, &arg_in, NULL, &retval, &argsig);
  1.1173 +	  /* Skip over input arguments and the return value, if any */
  1.1174 +	  if (arg_in || retval != RETVAL_NONE)
  1.1175 +	    continue;
  1.1176 +
  1.1177 +	  dbus_signature_iter_init (&tmp_sigiter, argsig);
  1.1178 +	  current_gtype = _dbus_gtype_from_signature_iter (&tmp_sigiter, FALSE);
  1.1179 +
  1.1180 +	  g_value_init (&value, G_TYPE_POINTER);
  1.1181 +
  1.1182 +	  /* We special case variants to make method invocation a bit nicer */
  1.1183 +	  if (current_gtype != G_TYPE_VALUE)
  1.1184 +	    {
  1.1185 +	      memset (&storage, 0, sizeof (storage));
  1.1186 +	      g_array_append_val (out_param_values, storage);
  1.1187 +	      g_value_set_pointer (&value, &(g_array_index (out_param_values, GTypeCValue, out_param_pos)));
  1.1188 +	      out_param_pos++;
  1.1189 +	    }
  1.1190 +	  else
  1.1191 +	    {
  1.1192 +	      g_value_array_append (out_param_gvalues, NULL);
  1.1193 +	      g_value_set_pointer (&value, out_param_gvalues->values + out_param_gvalue_pos);
  1.1194 +	      out_param_gvalue_pos++;
  1.1195 +	    }
  1.1196 +	  g_value_array_append (value_array, &value);
  1.1197 +	}
  1.1198 +    }
  1.1199 +
  1.1200 +  /* Append GError as final argument if necessary */
  1.1201 +  if (retval_signals_error)
  1.1202 +    {
  1.1203 +      g_assert (have_retval);
  1.1204 +      g_value_array_append (value_array, NULL);
  1.1205 +      g_value_init (g_value_array_get_nth (value_array, value_array->n_values - 1), G_TYPE_POINTER);
  1.1206 +      g_value_set_pointer (g_value_array_get_nth (value_array, value_array->n_values - 1), &gerror);
  1.1207 +    }
  1.1208 +  
  1.1209 +  /* Actually invoke method */
  1.1210 +  method->marshaller (&closure, have_retval ? &return_value : NULL,
  1.1211 +		      value_array->n_values,
  1.1212 +		      value_array->values,
  1.1213 +		      NULL, 
  1.1214 +		      #ifdef WINSCW
  1.1215 +		      method->function);
  1.1216 +		      #else
  1.1217 +		      (gpointer)method->function);
  1.1218 +		      #endif
  1.1219 +		      
  1.1220 +  if (call_only)
  1.1221 +    {
  1.1222 +      result = DBUS_HANDLER_RESULT_HANDLED;
  1.1223 +      goto done;
  1.1224 +    }
  1.1225 +  if (retval_signals_error)
  1.1226 +    had_error = _dbus_gvalue_signals_error (&return_value);
  1.1227 +  else
  1.1228 +    had_error = FALSE;
  1.1229 +
  1.1230 +  if (!had_error)
  1.1231 +    {
  1.1232 +      DBusMessageIter iter;
  1.1233 +
  1.1234 +      reply = dbus_message_new_method_return (message);
  1.1235 +      if (reply == NULL)
  1.1236 +	goto nomem;
  1.1237 +
  1.1238 +      /* Append output arguments to reply */
  1.1239 +      dbus_message_iter_init_append (reply, &iter);
  1.1240 +
  1.1241 +      /* First, append the return value, unless it's synthetic */
  1.1242 +      if (have_retval && !retval_is_synthetic)
  1.1243 +	{
  1.1244 +	  if (!_dbus_gvalue_marshal (&iter, &return_value))
  1.1245 +	    goto nomem;
  1.1246 +	  if (!retval_is_constant)
  1.1247 +	    g_value_unset (&return_value);
  1.1248 +	}
  1.1249 +
  1.1250 +      /* Grab the argument metadata and iterate over it */
  1.1251 +      arg_metadata = method_arg_info_from_object_info (object_info, method);
  1.1252 +      
  1.1253 +      /* Now append any remaining return values */
  1.1254 +      out_param_pos = 0;
  1.1255 +      out_param_gvalue_pos = 0;
  1.1256 +      while (*arg_metadata)
  1.1257 +	{
  1.1258 +	  GValue gvalue = {0, };
  1.1259 +	  const char *arg_name;
  1.1260 +	  gboolean arg_in;
  1.1261 +	  gboolean constval;
  1.1262 +	  RetvalType retval;
  1.1263 +	  const char *arg_signature;
  1.1264 +	  DBusSignatureIter argsigiter;
  1.1265 +
  1.1266 +	  do
  1.1267 +	    {
  1.1268 +	      /* Iterate over only output values; skip over input
  1.1269 +		 arguments and the return value */
  1.1270 +	      arg_metadata = arg_iterate (arg_metadata, &arg_name, &arg_in, &constval, &retval, &arg_signature);
  1.1271 +	    }
  1.1272 +	  while ((arg_in || retval != RETVAL_NONE) && *arg_metadata);
  1.1273 +
  1.1274 +	  /* If the last argument we saw was input or the return
  1.1275 +  	   * value, we must be done iterating over output arguments.
  1.1276 +	   */
  1.1277 +	  if (arg_in || retval != RETVAL_NONE)
  1.1278 +	    break;
  1.1279 +
  1.1280 +	  dbus_signature_iter_init (&argsigiter, arg_signature);
  1.1281 +	  
  1.1282 +	  g_value_init (&gvalue, _dbus_gtype_from_signature_iter (&argsigiter, FALSE));
  1.1283 +	  if (G_VALUE_TYPE (&gvalue) != G_TYPE_VALUE)
  1.1284 +	    {
  1.1285 +	      if (!_dbus_gvalue_take (&gvalue,
  1.1286 +				     &(g_array_index (out_param_values, GTypeCValue, out_param_pos))))
  1.1287 +		g_assert_not_reached ();
  1.1288 +	      out_param_pos++;
  1.1289 +	    }
  1.1290 +	  else
  1.1291 +	    {
  1.1292 +	      g_value_set_static_boxed (&gvalue, out_param_gvalues->values + out_param_gvalue_pos);
  1.1293 +	      out_param_gvalue_pos++;
  1.1294 +	    }
  1.1295 +	      
  1.1296 +	  if (!_dbus_gvalue_marshal (&iter, &gvalue))
  1.1297 +	    goto nomem;
  1.1298 +	  /* Here we actually free the allocated value; we
  1.1299 +	   * took ownership of it with _dbus_gvalue_take, unless
  1.1300 +	   * an annotation has specified this value as constant.
  1.1301 +	   */
  1.1302 +	  if (!constval)
  1.1303 +	    g_value_unset (&gvalue);
  1.1304 +	}
  1.1305 +    }
  1.1306 +  else
  1.1307 +    reply = gerror_to_dbus_error_message (object_info, message, gerror);
  1.1308 +
  1.1309 +  if (reply)
  1.1310 +    {
  1.1311 +      dbus_connection_send (connection, reply, NULL);
  1.1312 +      dbus_message_unref (reply);
  1.1313 +    }
  1.1314 +
  1.1315 +  result = DBUS_HANDLER_RESULT_HANDLED;
  1.1316 + done:
  1.1317 +  g_free (in_signature);
  1.1318 +  if (!call_only)
  1.1319 +    {
  1.1320 +      g_array_free (out_param_values, TRUE);
  1.1321 +      g_value_array_free (out_param_gvalues);
  1.1322 +    }
  1.1323 +  g_value_array_free (value_array);
  1.1324 +  return result;
  1.1325 + nomem:
  1.1326 +  result = DBUS_HANDLER_RESULT_NEED_MEMORY;
  1.1327 +  goto done;
  1.1328 +}
  1.1329 +
  1.1330 +static DBusHandlerResult
  1.1331 +gobject_message_function (DBusConnection  *connection,
  1.1332 +                          DBusMessage     *message,
  1.1333 +                          void            *user_data)
  1.1334 +{
  1.1335 +  GParamSpec *pspec;
  1.1336 +  GObject *object;
  1.1337 +  gboolean setter;
  1.1338 +  gboolean getter;
  1.1339 +  char *s;
  1.1340 +  const char *wincaps_propname;
  1.1341 +  /* const char *wincaps_propiface; */
  1.1342 +  DBusMessageIter iter;
  1.1343 +  const DBusGMethodInfo *method;
  1.1344 +  const DBusGObjectInfo *object_info;
  1.1345 +
  1.1346 +  object = G_OBJECT (user_data);
  1.1347 +
  1.1348 +  if (dbus_message_is_method_call (message,
  1.1349 +                                   DBUS_INTERFACE_INTROSPECTABLE,
  1.1350 +                                   "Introspect"))
  1.1351 +    return handle_introspect (connection, message, object);
  1.1352 +  
  1.1353 +  /* Try the metainfo, which lets us invoke methods */
  1.1354 +  if (lookup_object_and_method (object, message, &object_info, &method))
  1.1355 +    return invoke_object_method (object, object_info, method, connection, message);
  1.1356 +
  1.1357 +  /* If no metainfo, we can still do properties and signals
  1.1358 +   * via standard GLib introspection
  1.1359 +   */
  1.1360 +  getter = FALSE;
  1.1361 +  setter = FALSE;
  1.1362 +  if (dbus_message_is_method_call (message,
  1.1363 +                                   DBUS_INTERFACE_PROPERTIES,
  1.1364 +                                   "Get"))
  1.1365 +    getter = TRUE;
  1.1366 +  else if (dbus_message_is_method_call (message,
  1.1367 +                                        DBUS_INTERFACE_PROPERTIES,
  1.1368 +                                        "Set"))
  1.1369 +    setter = TRUE;
  1.1370 +
  1.1371 +  if (!(setter || getter))
  1.1372 +    return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  1.1373 +
  1.1374 +  dbus_message_iter_init (message, &iter);
  1.1375 +
  1.1376 +  if (dbus_message_iter_get_arg_type (&iter) != DBUS_TYPE_STRING)
  1.1377 +    {
  1.1378 +      g_warning ("Property get or set does not have an interface string as first arg\n");
  1.1379 +      return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  1.1380 +    }
  1.1381 +  /* We never use the interface name; if we did, we'd need to
  1.1382 +   * remember that it can be empty string for "pick one for me"
  1.1383 +   */
  1.1384 +  /* dbus_message_iter_get_basic (&iter, &wincaps_propiface); */
  1.1385 +  dbus_message_iter_next (&iter);
  1.1386 +
  1.1387 +  if (dbus_message_iter_get_arg_type (&iter) != DBUS_TYPE_STRING)
  1.1388 +    {
  1.1389 +      g_warning ("Property get or set does not have a property name string as second arg\n");
  1.1390 +      return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  1.1391 +    }
  1.1392 +  dbus_message_iter_get_basic (&iter, &wincaps_propname);
  1.1393 +  dbus_message_iter_next (&iter);
  1.1394 +  
  1.1395 +  s = _dbus_gutils_wincaps_to_uscore (wincaps_propname);
  1.1396 +
  1.1397 +  pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (object),
  1.1398 +                                        s);
  1.1399 +
  1.1400 +  g_free (s);
  1.1401 +
  1.1402 +  if (pspec != NULL)
  1.1403 +    {
  1.1404 +      DBusMessage *ret;
  1.1405 +
  1.1406 +      if (setter)
  1.1407 +        {
  1.1408 +          if (dbus_message_iter_get_arg_type (&iter) != DBUS_TYPE_VARIANT)
  1.1409 +            {
  1.1410 +              g_warning ("Property set does not have a variant value as third arg\n");
  1.1411 +              return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  1.1412 +            }
  1.1413 +          
  1.1414 +          ret = set_object_property (connection, message, &iter,
  1.1415 +                                     object, pspec);
  1.1416 +          dbus_message_iter_next (&iter);
  1.1417 +        }
  1.1418 +      else if (getter)
  1.1419 +        {
  1.1420 +          ret = get_object_property (connection, message,
  1.1421 +                                     object, pspec);
  1.1422 +        }
  1.1423 +      else
  1.1424 +        {
  1.1425 +          g_assert_not_reached ();
  1.1426 +          ret = NULL;
  1.1427 +        }
  1.1428 +
  1.1429 +      g_assert (ret != NULL);
  1.1430 +
  1.1431 +      if (dbus_message_iter_get_arg_type (&iter) != DBUS_TYPE_INVALID)
  1.1432 +        g_warning ("Property get or set had too many arguments\n");
  1.1433 +
  1.1434 +      dbus_connection_send (connection, ret, NULL);
  1.1435 +      dbus_message_unref (ret);
  1.1436 +      return DBUS_HANDLER_RESULT_HANDLED;
  1.1437 +    }
  1.1438 +
  1.1439 +  return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
  1.1440 +}
  1.1441 +
  1.1442 +static const DBusObjectPathVTable gobject_dbus_vtable = {
  1.1443 +  gobject_unregister_function,
  1.1444 +  gobject_message_function,
  1.1445 +  NULL
  1.1446 +};
  1.1447 +
  1.1448 +typedef struct {
  1.1449 +  GClosure         closure;
  1.1450 +  DBusGConnection *connection;
  1.1451 +  GObject         *object;
  1.1452 +  const char      *signame;
  1.1453 +  const char      *sigiface;
  1.1454 +} DBusGSignalClosure;
  1.1455 +
  1.1456 +static GClosure *
  1.1457 +dbus_g_signal_closure_new (DBusGConnection *connection,
  1.1458 +			   GObject         *object,
  1.1459 +			   const char      *signame,
  1.1460 +			   const char      *sigiface)
  1.1461 +{
  1.1462 +  DBusGSignalClosure *closure;
  1.1463 +  
  1.1464 +  closure = (DBusGSignalClosure*) g_closure_new_simple (sizeof (DBusGSignalClosure), NULL);
  1.1465 +
  1.1466 +  closure->connection = dbus_g_connection_ref (connection);
  1.1467 +  closure->object = object;
  1.1468 +  closure->signame = signame;
  1.1469 +  closure->sigiface = sigiface;
  1.1470 +  return (GClosure*) closure;
  1.1471 +}
  1.1472 +
  1.1473 +static void
  1.1474 +dbus_g_signal_closure_finalize (gpointer data,
  1.1475 +				GClosure *closure)
  1.1476 +{
  1.1477 +  DBusGSignalClosure *sigclosure = (DBusGSignalClosure *) closure;
  1.1478 +
  1.1479 +  dbus_g_connection_unref (sigclosure->connection);
  1.1480 +}
  1.1481 +
  1.1482 +static void
  1.1483 +signal_emitter_marshaller (GClosure        *closure,
  1.1484 +			   GValue          *retval,
  1.1485 +			   guint            n_param_values,
  1.1486 +			   const GValue    *param_values,
  1.1487 +			   gpointer         invocation_hint,
  1.1488 +			   gpointer         marshal_data)
  1.1489 +{
  1.1490 +  DBusGSignalClosure *sigclosure;
  1.1491 +  DBusMessage *signal;
  1.1492 +  DBusMessageIter iter;
  1.1493 +  guint i;
  1.1494 +  const char *path;
  1.1495 +
  1.1496 +  sigclosure = (DBusGSignalClosure *) closure;
  1.1497 +  
  1.1498 +  g_assert (retval == NULL);
  1.1499 +
  1.1500 +  path = _dbus_gobject_get_path (sigclosure->object);
  1.1501 +
  1.1502 +  g_assert (path != NULL);
  1.1503 +
  1.1504 +  signal = dbus_message_new_signal (path,
  1.1505 +				    sigclosure->sigiface,
  1.1506 +				    sigclosure->signame);
  1.1507 +  if (!signal)
  1.1508 +    {
  1.1509 +      g_error ("out of memory");
  1.1510 +      return;
  1.1511 +    }
  1.1512 +
  1.1513 +  dbus_message_iter_init_append (signal, &iter);
  1.1514 +
  1.1515 +  /* First argument is the object itself, and we can't marshall that */
  1.1516 +  for (i = 1; i < n_param_values; i++)
  1.1517 +    {
  1.1518 +      if (!_dbus_gvalue_marshal (&iter,
  1.1519 +				(GValue *) (&(param_values[i]))))
  1.1520 +	{
  1.1521 +	  g_warning ("failed to marshal parameter %d for signal %s",
  1.1522 +		     i, sigclosure->signame);
  1.1523 +	  goto out;
  1.1524 +	}
  1.1525 +    }
  1.1526 +  dbus_connection_send (DBUS_CONNECTION_FROM_G_CONNECTION (sigclosure->connection),
  1.1527 +			signal, NULL);
  1.1528 + out:
  1.1529 +  dbus_message_unref (signal);
  1.1530 +}
  1.1531 +
  1.1532 +static void
  1.1533 +export_signals (DBusGConnection *connection, const GList *info_list, GObject *object)
  1.1534 +{
  1.1535 +  GType gtype;
  1.1536 +  const char *sigdata;
  1.1537 +  const char *iface;
  1.1538 +  const char *signame;
  1.1539 +  const DBusGObjectInfo *info;
  1.1540 +
  1.1541 +  gtype = G_TYPE_FROM_INSTANCE (object);
  1.1542 +
  1.1543 +  for (; info_list != NULL; info_list = g_list_next (info_list))
  1.1544 +    {
  1.1545 +      info = (DBusGObjectInfo *) info_list->data;
  1.1546 +      
  1.1547 +      sigdata = info->exported_signals;
  1.1548 +      
  1.1549 +      while (*sigdata != '\0')
  1.1550 +        {
  1.1551 +          guint id;
  1.1552 +          GSignalQuery query;
  1.1553 +          GClosure *closure;
  1.1554 +          char *s;
  1.1555 +
  1.1556 +          sigdata = propsig_iterate (sigdata, &iface, &signame);
  1.1557 +          
  1.1558 +          s = _dbus_gutils_wincaps_to_uscore (signame);
  1.1559 +
  1.1560 +          id = g_signal_lookup (s, gtype);
  1.1561 +          if (id == 0)
  1.1562 +            {
  1.1563 +              g_warning ("signal \"%s\" (from \"%s\") exported but not found in object class \"%s\"",
  1.1564 +                     s, signame, g_type_name (gtype));
  1.1565 +              g_free (s);
  1.1566 +              continue;
  1.1567 +            }
  1.1568 +
  1.1569 +          g_signal_query (id, &query);
  1.1570 +
  1.1571 +          if (query.return_type != G_TYPE_NONE)
  1.1572 +            {
  1.1573 +              g_warning ("Not exporting signal \"%s\" for object class \"%s\" as it has a return type \"%s\"",
  1.1574 +                     s, g_type_name (gtype), g_type_name (query.return_type));
  1.1575 +              g_free (s);
  1.1576 +              continue; /* FIXME: these could be listed as methods ? */
  1.1577 +            }
  1.1578 +          
  1.1579 +          closure = dbus_g_signal_closure_new (connection, object, signame, (char*) iface);
  1.1580 +          g_closure_set_marshal (closure, signal_emitter_marshaller);
  1.1581 +
  1.1582 +          g_signal_connect_closure_by_id (object,
  1.1583 +                          id,
  1.1584 +                          0,
  1.1585 +                          closure,
  1.1586 +                          FALSE);
  1.1587 +
  1.1588 +          g_closure_add_finalize_notifier (closure, NULL,
  1.1589 +                           dbus_g_signal_closure_finalize);
  1.1590 +          g_free (s);
  1.1591 +        }
  1.1592 +    }
  1.1593 +}
  1.1594 +
  1.1595 +#include "dbus-glib-error-switch.h"
  1.1596 +
  1.1597 +/**
  1.1598 + * dbus_set_g_error:
  1.1599 + * @gerror: an error
  1.1600 + * @error: a #DBusError
  1.1601 + *
  1.1602 + * FIXME
  1.1603 + */
  1.1604 + 	#ifdef __SYMBIAN32__
  1.1605 +	EXPORT_C
  1.1606 +	#endif
  1.1607 +void
  1.1608 +dbus_set_g_error (GError    **gerror,
  1.1609 +		  DBusError  *error)
  1.1610 +{
  1.1611 +  int code;
  1.1612 +
  1.1613 +  code = dbus_error_to_gerror_code (error->name);
  1.1614 +  if (code != DBUS_GERROR_REMOTE_EXCEPTION)
  1.1615 +    g_set_error (gerror, DBUS_GERROR,
  1.1616 +		 code,
  1.1617 +		 "%s",
  1.1618 +		 error->message);
  1.1619 +  else
  1.1620 +    g_set_error (gerror, DBUS_GERROR,
  1.1621 +		 code,
  1.1622 +		 "%s%c%s",
  1.1623 +		 error->message ? error->message : "",
  1.1624 +		 '\0',
  1.1625 +		 error->name);
  1.1626 +}
  1.1627 +
  1.1628 +static void
  1.1629 +dbus_g_error_info_free (gpointer p)
  1.1630 +{
  1.1631 +  DBusGErrorInfo *info;
  1.1632 +
  1.1633 +  info = p;
  1.1634 +
  1.1635 +  g_free (info->default_iface);
  1.1636 +  g_free (info);
  1.1637 +}
  1.1638 +
  1.1639 +/**
  1.1640 + * SECTION:dbus-gobject
  1.1641 + * @short_description: Exporting a #GObject remotely
  1.1642 + * @see_also: #GObject
  1.1643 + * @stability: Stable
  1.1644 + *
  1.1645 + * FIXME
  1.1646 + */
  1.1647 +
  1.1648 +/**
  1.1649 + * dbus_g_object_type_install_info:
  1.1650 + * @object_type: #GType for the object
  1.1651 + * @info: introspection data generated by #dbus-glib-tool
  1.1652 + *
  1.1653 + * Install introspection information about the given object #GType
  1.1654 + * sufficient to allow methods on the object to be invoked by name.
  1.1655 + * The introspection information is normally generated by
  1.1656 + * dbus-glib-tool, then this function is called in the
  1.1657 + * class_init() for the object class.
  1.1658 + *
  1.1659 + * Once introspection information has been installed, instances of the
  1.1660 + * object registered with #dbus_g_connection_register_g_object() can have
  1.1661 + * their methods invoked remotely.
  1.1662 + */
  1.1663 + 	#ifdef __SYMBIAN32__
  1.1664 +	EXPORT_C
  1.1665 +	#endif
  1.1666 +void
  1.1667 +dbus_g_object_type_install_info (GType                  object_type,
  1.1668 +				 const DBusGObjectInfo *info)
  1.1669 +{
  1.1670 +  g_return_if_fail (G_TYPE_IS_CLASSED (object_type) || G_TYPE_IS_INTERFACE (object_type));
  1.1671 +
  1.1672 +  _dbus_g_value_types_init ();
  1.1673 +
  1.1674 +  g_type_set_qdata (object_type,
  1.1675 +		    dbus_g_object_type_dbus_metadata_quark (),
  1.1676 +		    (gpointer) info);
  1.1677 +}
  1.1678 +
  1.1679 +/**
  1.1680 + * dbus_g_error_domain_register:
  1.1681 + * @domain: the #GError domain 
  1.1682 + * @default_iface: the D-BUS interface used for error values by default, or #NULL
  1.1683 + * @code_enum: a #GType for a #GEnum of the error codes
  1.1684 + *
  1.1685 + * Register a #GError domain and set of codes with D-BUS.  You must
  1.1686 + * have created a GEnum for the error codes.  This function will not
  1.1687 + * be needed with an introspection-capable GLib.
  1.1688 + */
  1.1689 + 	#ifdef __SYMBIAN32__
  1.1690 +	EXPORT_C
  1.1691 +	#endif
  1.1692 +void
  1.1693 +dbus_g_error_domain_register (GQuark                domain,
  1.1694 +			      const char           *default_iface,
  1.1695 +			      GType                 code_enum)
  1.1696 +{
  1.1697 +  DBusGErrorInfo *info;
  1.1698 +  
  1.1699 +  g_return_if_fail (g_quark_to_string (domain) != NULL);
  1.1700 +  g_return_if_fail (code_enum != G_TYPE_INVALID);
  1.1701 +  g_return_if_fail (G_TYPE_FUNDAMENTAL (code_enum) == G_TYPE_ENUM);
  1.1702 +
  1.1703 +  g_static_rw_lock_writer_lock (&globals_lock);
  1.1704 +
  1.1705 +  if (error_metadata == NULL)
  1.1706 +    g_datalist_init (&error_metadata);
  1.1707 +
  1.1708 +  info = g_datalist_id_get_data (&error_metadata, domain);
  1.1709 +
  1.1710 +  if (info != NULL)
  1.1711 +    {
  1.1712 +      g_warning ("Metadata for error domain \"%s\" already registered\n",
  1.1713 +		 g_quark_to_string (domain));
  1.1714 +    }
  1.1715 +  else
  1.1716 +    {
  1.1717 +      info = g_new0 (DBusGErrorInfo, 1);
  1.1718 +      info->default_iface = g_strdup (default_iface);
  1.1719 +      info->code_enum = code_enum;
  1.1720 +
  1.1721 +      g_datalist_id_set_data_full (&error_metadata,
  1.1722 +				   domain,
  1.1723 +				   info,
  1.1724 +				   dbus_g_error_info_free);
  1.1725 +    }
  1.1726 +
  1.1727 +  g_static_rw_lock_writer_unlock (&globals_lock);
  1.1728 +}
  1.1729 +
  1.1730 +static void
  1.1731 +unregister_gobject (DBusGConnection *connection, GObject *dead)
  1.1732 +{
  1.1733 +  char *path;
  1.1734 +  path = g_object_steal_data (dead, "dbus_glib_object_path");
  1.1735 +  dbus_connection_unregister_object_path (DBUS_CONNECTION_FROM_G_CONNECTION (connection), path);
  1.1736 +  g_free (path);
  1.1737 +}
  1.1738 +
  1.1739 +/**
  1.1740 + * dbus_g_connection_register_g_object:
  1.1741 + * @connection: the D-BUS connection
  1.1742 + * @at_path: the path where the object will live (the object's name)
  1.1743 + * @object: the object
  1.1744 + *
  1.1745 + * Registers a #GObject at the given path. Properties, methods, and signals
  1.1746 + * of the object can then be accessed remotely. Methods are only available
  1.1747 + * if method introspection data has been added to the object's class
  1.1748 + * with g_object_class_install_info().
  1.1749 + *
  1.1750 + * The registration will be cancelled if either the #DBusConnection or
  1.1751 + * the #GObject gets finalized.
  1.1752 + */
  1.1753 + 	#ifdef __SYMBIAN32__
  1.1754 +	EXPORT_C
  1.1755 +	#endif
  1.1756 +void
  1.1757 +dbus_g_connection_register_g_object (DBusGConnection       *connection,
  1.1758 +                                     const char            *at_path,
  1.1759 +                                     GObject               *object)
  1.1760 +{
  1.1761 +  GList *info_list;
  1.1762 +  g_return_if_fail (connection != NULL);
  1.1763 +  g_return_if_fail (at_path != NULL);
  1.1764 +  g_return_if_fail (G_IS_OBJECT (object));
  1.1765 +
  1.1766 +  info_list = lookup_object_info (object);
  1.1767 +  if (info_list == NULL)
  1.1768 +    {
  1.1769 +      g_warning ("No introspection data registered for object class \"%s\"",
  1.1770 +		 g_type_name (G_TYPE_FROM_INSTANCE (object)));
  1.1771 +      return;
  1.1772 +    }
  1.1773 +
  1.1774 +  if (!dbus_connection_register_object_path (DBUS_CONNECTION_FROM_G_CONNECTION (connection),
  1.1775 +                                             at_path,
  1.1776 +                                             &gobject_dbus_vtable,
  1.1777 +                                             object))
  1.1778 +    {
  1.1779 +      g_error ("Failed to register GObject with DBusConnection");
  1.1780 +      return;
  1.1781 +    }
  1.1782 +
  1.1783 +  export_signals (connection, info_list, object);
  1.1784 +  g_list_free (info_list);
  1.1785 +
  1.1786 +  g_object_set_data (object, "dbus_glib_object_path", g_strdup (at_path));
  1.1787 +  g_object_weak_ref (object, (GWeakNotify)unregister_gobject, connection);
  1.1788 +}
  1.1789 +
  1.1790 +/**
  1.1791 + * dbus_g_connection_lookup_g_object:
  1.1792 + * @connection: a #DBusGConnection
  1.1793 + * @at_path: path
  1.1794 + *
  1.1795 + * FIXME 
  1.1796 + *
  1.1797 + * Returns: the object at path @at_path
  1.1798 + */
  1.1799 + #ifdef __SYMBIAN32__
  1.1800 +EXPORT_C
  1.1801 +#endif
  1.1802 +GObject *
  1.1803 +dbus_g_connection_lookup_g_object (DBusGConnection       *connection,
  1.1804 +				   const char            *at_path)
  1.1805 +{
  1.1806 +  gpointer ret;
  1.1807 +  if (!dbus_connection_get_object_path_data (DBUS_CONNECTION_FROM_G_CONNECTION (connection), at_path, &ret))
  1.1808 +    return NULL;
  1.1809 +  return ret;
  1.1810 +}
  1.1811 +
  1.1812 +typedef struct {
  1.1813 +  GType    rettype;
  1.1814 +  guint    n_params;
  1.1815 +  GType   *params;
  1.1816 +} DBusGFuncSignature;
  1.1817 +
  1.1818 +static guint
  1.1819 +funcsig_hash (gconstpointer key)
  1.1820 +{
  1.1821 +  const DBusGFuncSignature *sig = key;
  1.1822 +  GType *types;
  1.1823 +  guint ret;
  1.1824 +  guint i;
  1.1825 +
  1.1826 +  ret = sig->rettype;
  1.1827 +  types = sig->params;
  1.1828 +
  1.1829 +  for (i = 0; i < sig->n_params; i++)
  1.1830 +    {
  1.1831 +      ret += (int) (*types);
  1.1832 +      types++;
  1.1833 +    }
  1.1834 +      
  1.1835 +  return ret;
  1.1836 +}
  1.1837 +
  1.1838 +static gboolean
  1.1839 +funcsig_equal (gconstpointer aval,
  1.1840 +	       gconstpointer bval)
  1.1841 +{
  1.1842 +  const DBusGFuncSignature *a = aval;
  1.1843 +  const DBusGFuncSignature *b = bval;
  1.1844 +  const GType *atypes;
  1.1845 +  const GType *btypes;
  1.1846 +  guint i;
  1.1847 +
  1.1848 +  if (a->rettype != b->rettype
  1.1849 +      || a->n_params != b->n_params)
  1.1850 +    return FALSE;
  1.1851 +
  1.1852 +  atypes = a->params;
  1.1853 +  btypes = b->params;
  1.1854 +
  1.1855 +  for (i = 0; i < a->n_params; i++)
  1.1856 +    {
  1.1857 +      if (*btypes != *atypes)
  1.1858 +	return FALSE;
  1.1859 +      atypes++;
  1.1860 +      btypes++;
  1.1861 +    }
  1.1862 +      
  1.1863 +  return TRUE;
  1.1864 +}
  1.1865 +
  1.1866 +static void
  1.1867 +funcsig_free (DBusGFuncSignature *sig)
  1.1868 +{
  1.1869 +  g_free (sig->params);
  1.1870 +  g_free (sig);
  1.1871 +}
  1.1872 +
  1.1873 +GClosureMarshal
  1.1874 +_dbus_gobject_lookup_marshaller (GType        rettype,
  1.1875 +				 guint        n_params,
  1.1876 +				 const GType *param_types)
  1.1877 +{
  1.1878 +  GClosureMarshal ret;
  1.1879 +  DBusGFuncSignature sig;
  1.1880 +  GType *params;
  1.1881 +  guint i;
  1.1882 +
  1.1883 +  /* Convert to fundamental types */
  1.1884 +  rettype = G_TYPE_FUNDAMENTAL (rettype);
  1.1885 +  params = g_new (GType, n_params);
  1.1886 +  for (i = 0; i < n_params; i++)
  1.1887 +    params[i] = G_TYPE_FUNDAMENTAL (param_types[i]);
  1.1888 +
  1.1889 +  sig.rettype = rettype;
  1.1890 +  sig.n_params = n_params;
  1.1891 +  sig.params = params;
  1.1892 +  
  1.1893 +  g_static_rw_lock_reader_lock (&globals_lock);
  1.1894 +
  1.1895 +  if (marshal_table)
  1.1896 +  #ifdef WINSCW
  1.1897 +    ret = g_hash_table_lookup (marshal_table, &sig);
  1.1898 +  #else
  1.1899 +  ret = (GClosureMarshal)g_hash_table_lookup (marshal_table, &sig);
  1.1900 +  #endif  
  1.1901 +  else
  1.1902 +    ret = NULL;
  1.1903 +
  1.1904 +  g_static_rw_lock_reader_unlock (&globals_lock);
  1.1905 +
  1.1906 +  if (ret == NULL)
  1.1907 +    {
  1.1908 +      if (rettype == G_TYPE_NONE)
  1.1909 +	{
  1.1910 +	  if (n_params == 0)
  1.1911 +	    ret = g_cclosure_marshal_VOID__VOID;
  1.1912 +	  else if (n_params == 1)
  1.1913 +	    {
  1.1914 +	      switch (params[0])
  1.1915 +		{
  1.1916 +		case G_TYPE_BOOLEAN:
  1.1917 +		  ret = g_cclosure_marshal_VOID__BOOLEAN;
  1.1918 +		  break;
  1.1919 +		case G_TYPE_UCHAR:
  1.1920 +		  ret = g_cclosure_marshal_VOID__UCHAR;
  1.1921 +		  break;
  1.1922 +		case G_TYPE_INT:
  1.1923 +		  ret = g_cclosure_marshal_VOID__INT;
  1.1924 +		  break;
  1.1925 +		case G_TYPE_UINT:
  1.1926 +		  ret = g_cclosure_marshal_VOID__UINT;
  1.1927 +		  break;
  1.1928 +		case G_TYPE_DOUBLE:
  1.1929 +		  ret = g_cclosure_marshal_VOID__DOUBLE;
  1.1930 +		  break;
  1.1931 +		case G_TYPE_STRING:
  1.1932 +		  ret = g_cclosure_marshal_VOID__STRING;
  1.1933 +		  break;
  1.1934 +		case G_TYPE_BOXED:
  1.1935 +		  ret = g_cclosure_marshal_VOID__BOXED;
  1.1936 +		  break;
  1.1937 +		}
  1.1938 +	    }
  1.1939 +	  else if (n_params == 3
  1.1940 +		   && params[0] == G_TYPE_STRING
  1.1941 +		   && params[1] == G_TYPE_STRING
  1.1942 +		   && params[2] == G_TYPE_STRING)
  1.1943 +	    {
  1.1944 +	      ret = _dbus_g_marshal_NONE__STRING_STRING_STRING;
  1.1945 +	    }
  1.1946 +	}
  1.1947 +    }
  1.1948 +
  1.1949 +  g_free (params);
  1.1950 +  return ret;
  1.1951 +}
  1.1952 +
  1.1953 +/**
  1.1954 + * dbus_g_object_register_marshaller:
  1.1955 + * @marshaller: a GClosureMarshal to be used for invocation
  1.1956 + * @rettype: a GType for the return type of the function
  1.1957 + * @:... The parameter #GTypes, followed by %G_TYPE_INVALID
  1.1958 + *
  1.1959 + * Register a #GClosureMarshal to be used for signal invocations,
  1.1960 + * giving its return type and a list of parameter types,
  1.1961 + * followed by %G_TYPE_INVALID.
  1.1962 + *
  1.1963 + * This function will not be needed once GLib includes libffi.
  1.1964 + */
  1.1965 + 	#ifdef __SYMBIAN32__
  1.1966 +	EXPORT_C
  1.1967 +	#endif
  1.1968 +void
  1.1969 +dbus_g_object_register_marshaller (GClosureMarshal  marshaller,
  1.1970 +				   GType            rettype,
  1.1971 +				   ...)
  1.1972 +{
  1.1973 +  va_list args;
  1.1974 +  GArray *types;
  1.1975 +  GType gtype;
  1.1976 +
  1.1977 +  va_start (args, rettype);
  1.1978 +
  1.1979 +  types = g_array_new (TRUE, TRUE, sizeof (GType));
  1.1980 +
  1.1981 +  while ((gtype = va_arg (args, GType)) != G_TYPE_INVALID)
  1.1982 +    g_array_append_val (types, gtype);
  1.1983 +
  1.1984 +  dbus_g_object_register_marshaller_array (marshaller, rettype,
  1.1985 +					   types->len, (GType*) types->data);
  1.1986 +
  1.1987 +  g_array_free (types, TRUE);
  1.1988 +  va_end (args);
  1.1989 +}
  1.1990 +
  1.1991 +/**
  1.1992 + * dbus_g_object_register_marshaller_array:
  1.1993 + * @marshaller: a #GClosureMarshal to be used for invocation
  1.1994 + * @rettype: a #GType for the return type of the function
  1.1995 + * @n_types: number of function parameters
  1.1996 + * @types: a C array of GTypes values
  1.1997 + *
  1.1998 + * Register a #GClosureMarshal to be used for signal invocations.
  1.1999 + * @see_also #dbus_g_object_register_marshaller
  1.2000 + */
  1.2001 + 	#ifdef __SYMBIAN32__
  1.2002 +	EXPORT_C
  1.2003 +	#endif
  1.2004 +void
  1.2005 +dbus_g_object_register_marshaller_array (GClosureMarshal  marshaller,
  1.2006 +					 GType            rettype,
  1.2007 +					 guint            n_types,
  1.2008 +					 const GType*     types)
  1.2009 +{
  1.2010 +  DBusGFuncSignature *sig;
  1.2011 +  guint i;
  1.2012 +
  1.2013 +  g_static_rw_lock_writer_lock (&globals_lock);
  1.2014 +
  1.2015 +  if (marshal_table == NULL)
  1.2016 +    marshal_table = g_hash_table_new_full (funcsig_hash,
  1.2017 +					   funcsig_equal,
  1.2018 +					   (GDestroyNotify) funcsig_free,
  1.2019 +					   NULL);
  1.2020 +  sig = g_new0 (DBusGFuncSignature, 1);
  1.2021 +  sig->rettype = G_TYPE_FUNDAMENTAL (rettype);
  1.2022 +  sig->n_params = n_types;
  1.2023 +  sig->params = g_new (GType, n_types);
  1.2024 +  for (i = 0; i < n_types; i++)
  1.2025 +    sig->params[i] = G_TYPE_FUNDAMENTAL (types[i]);
  1.2026 +#ifdef WINSCW
  1.2027 +  g_hash_table_insert (marshal_table, sig, marshaller);
  1.2028 +  #else
  1.2029 +  g_hash_table_insert (marshal_table, sig, (gpointer)marshaller);
  1.2030 +  #endif
  1.2031 +
  1.2032 +  g_static_rw_lock_writer_unlock (&globals_lock);
  1.2033 +}
  1.2034 +
  1.2035 +/**
  1.2036 + * dbus_g_method_get_sender:
  1.2037 + * @context: the method context
  1.2038 + *
  1.2039 + * Get the sender of a message so we can send a
  1.2040 + * "reply" later (i.e. send a message directly
  1.2041 + * to a service which invoked the method at a
  1.2042 + * later time).
  1.2043 + *
  1.2044 + * Returns: the unique name of the sender. It
  1.2045 + * is up to the caller to free the returned string.
  1.2046 + */
  1.2047 + 	#ifdef __SYMBIAN32__
  1.2048 +	EXPORT_C
  1.2049 +	#endif
  1.2050 +gchar *
  1.2051 +dbus_g_method_get_sender (DBusGMethodInvocation *context)
  1.2052 +{
  1.2053 +  const gchar *sender;
  1.2054 +
  1.2055 +  sender = dbus_message_get_sender (dbus_g_message_get_message (context->message));
  1.2056 +
  1.2057 +  if (sender == NULL)
  1.2058 +    return NULL;
  1.2059 +    
  1.2060 +  return strdup (sender);
  1.2061 +}
  1.2062 +
  1.2063 +/**
  1.2064 + * dbus_g_method_get_reply:
  1.2065 + * @context: the method context
  1.2066 + *
  1.2067 + * Get the reply message to append reply values
  1.2068 + * Used as a sidedoor when you can't generate dbus values
  1.2069 + * of the correct type due to glib binding limitations
  1.2070 + *
  1.2071 + * Returns: a #DBusMessage with the reply
  1.2072 + */
  1.2073 + 	#ifdef __SYMBIAN32__
  1.2074 +	EXPORT_C
  1.2075 +	#endif
  1.2076 +DBusMessage *
  1.2077 +dbus_g_method_get_reply (DBusGMethodInvocation *context)
  1.2078 +{
  1.2079 +  return dbus_message_new_method_return (dbus_g_message_get_message (context->message));
  1.2080 +}
  1.2081 +
  1.2082 +/**
  1.2083 + * dbus_g_method_send_reply:
  1.2084 + * Send a manually created reply message
  1.2085 + * @context: the method context
  1.2086 + * @reply: the reply message, will be unreffed
  1.2087 + *
  1.2088 + * Used as a sidedoor when you can't generate dbus values
  1.2089 + * of the correct type due to glib binding limitations
  1.2090 + */
  1.2091 + 	#ifdef __SYMBIAN32__
  1.2092 +	EXPORT_C
  1.2093 +	#endif
  1.2094 +void
  1.2095 +dbus_g_method_send_reply (DBusGMethodInvocation *context, DBusMessage *reply)
  1.2096 +{
  1.2097 +  dbus_connection_send (dbus_g_connection_get_connection (context->connection), reply, NULL);
  1.2098 +  dbus_message_unref (reply);
  1.2099 +
  1.2100 +  dbus_g_connection_unref (context->connection);
  1.2101 +  dbus_g_message_unref (context->message);
  1.2102 +  g_free (context);
  1.2103 +}
  1.2104 +
  1.2105 +
  1.2106 +/**
  1.2107 + * dbus_g_method_return:
  1.2108 + * @context: the method context
  1.2109 + *
  1.2110 + * Send a return message for a given method invocation, with arguments.
  1.2111 + * This function also frees the sending context.
  1.2112 + */
  1.2113 + 	#ifdef __SYMBIAN32__
  1.2114 +	EXPORT_C
  1.2115 +	#endif
  1.2116 +void
  1.2117 +dbus_g_method_return (DBusGMethodInvocation *context, ...)
  1.2118 +{
  1.2119 +  DBusMessage *reply;
  1.2120 +  DBusMessageIter iter;
  1.2121 +  va_list args;
  1.2122 +  char *out_sig;
  1.2123 +  GArray *argsig;
  1.2124 +  guint i;
  1.2125 +
  1.2126 +  reply = dbus_message_new_method_return (dbus_g_message_get_message (context->message));
  1.2127 +  out_sig = method_output_signature_from_object_info (context->object, context->method);
  1.2128 +  argsig = _dbus_gtypes_from_arg_signature (out_sig, FALSE);
  1.2129 +
  1.2130 +  dbus_message_iter_init_append (reply, &iter);
  1.2131 +
  1.2132 +  va_start (args, context);
  1.2133 +  for (i = 0; i < argsig->len; i++)
  1.2134 +    {
  1.2135 +      GValue value = {0,};
  1.2136 +      char *error;
  1.2137 +      g_value_init (&value, g_array_index (argsig, GType, i));
  1.2138 +      error = NULL;
  1.2139 +      G_VALUE_COLLECT (&value, args, G_VALUE_NOCOPY_CONTENTS, &error);
  1.2140 +      if (error)
  1.2141 +	{
  1.2142 +	  g_warning(error);
  1.2143 +	  g_free (error);
  1.2144 +	}
  1.2145 +      _dbus_gvalue_marshal (&iter, &value);
  1.2146 +    }
  1.2147 +  va_end (args);
  1.2148 +
  1.2149 +  dbus_connection_send (dbus_g_connection_get_connection (context->connection), reply, NULL);
  1.2150 +  dbus_message_unref (reply);
  1.2151 +
  1.2152 +  dbus_g_connection_unref (context->connection);
  1.2153 +  dbus_g_message_unref (context->message);
  1.2154 +  g_free (context);
  1.2155 +  g_free (out_sig);
  1.2156 +  g_array_free (argsig, TRUE);
  1.2157 +}
  1.2158 +
  1.2159 +/**
  1.2160 + * dbus_g_method_return_error:
  1.2161 + * @context: the method context
  1.2162 + * @error: the error to send
  1.2163 + *
  1.2164 + * Send a error message for a given method invocation.
  1.2165 + * This function also frees the sending context.
  1.2166 + */
  1.2167 + 	#ifdef __SYMBIAN32__
  1.2168 +	EXPORT_C
  1.2169 +	#endif
  1.2170 +void
  1.2171 +dbus_g_method_return_error (DBusGMethodInvocation *context, GError *error)
  1.2172 +{
  1.2173 +  DBusMessage *reply;
  1.2174 +  reply = gerror_to_dbus_error_message (context->object, dbus_g_message_get_message (context->message), error);
  1.2175 +  dbus_connection_send (dbus_g_connection_get_connection (context->connection), reply, NULL);
  1.2176 +  dbus_message_unref (reply);
  1.2177 +  g_free (context);
  1.2178 +}
  1.2179 +
  1.2180 +const char * _dbus_gobject_get_path (GObject *obj)
  1.2181 +{
  1.2182 +  return g_object_get_data (obj, "dbus_glib_object_path");
  1.2183 +}
  1.2184 +
  1.2185 +#ifdef DBUS_BUILD_TESTS
  1.2186 +#include <stdlib.h>
  1.2187 +
  1.2188 +static void
  1.2189 +_dummy_function (void)
  1.2190 +{
  1.2191 +}
  1.2192 +
  1.2193 +/* Data structures copied from one generated by current dbus-binding-tool;
  1.2194 + * we need to support this layout forever
  1.2195 + */
  1.2196 +static const DBusGMethodInfo dbus_glib_internal_test_methods[] = {
  1.2197 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 0 },
  1.2198 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 49 },
  1.2199 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 117 },
  1.2200 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 191 },
  1.2201 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 270 },
  1.2202 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 320 },
  1.2203 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 391 },
  1.2204 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 495 },
  1.2205 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 623 },
  1.2206 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 693 },
  1.2207 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 765 },
  1.2208 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 838 },
  1.2209 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 911 },
  1.2210 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 988 },
  1.2211 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1064 },
  1.2212 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1140 },
  1.2213 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1204 },
  1.2214 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1278 },
  1.2215 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1347 },
  1.2216 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1408 },
  1.2217 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1460 },
  1.2218 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1533 },
  1.2219 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1588 },
  1.2220 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1647 },
  1.2221 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1730 },
  1.2222 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1784 },
  1.2223 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1833 },
  1.2224 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1895 },
  1.2225 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1947 },
  1.2226 +  { (GCallback) _dummy_function, g_cclosure_marshal_VOID__VOID, 1999 },
  1.2227 +};
  1.2228 +
  1.2229 +const DBusGObjectInfo dbus_glib_internal_test_object_info = {
  1.2230 +  0,
  1.2231 +  dbus_glib_internal_test_methods,
  1.2232 +  30,
  1.2233 +"org.freedesktop.DBus.Tests.MyObject\0DoNothing\0S\0\0org.freedesktop.DBus.Tests.MyObject\0Increment\0S\0x\0I\0u\0arg1\0O\0F\0N\0u\0\0org.freedesktop.DBus.Tests.MyObject\0IncrementRetval\0S\0x\0I\0u\0arg1\0O\0F\0R\0u\0\0org.freedesktop.DBus.Tests.MyObject\0IncrementRetvalError\0S\0x\0I\0u\0arg1\0O\0F\0E\0u\0\0org.freedesktop.DBus.Tests.MyObject\0ThrowError\0S\0\0org.freedesktop.DBus.Tests.MyObject\0Uppercase\0S\0arg0\0I\0s\0arg1\0O\0F\0N\0s\0\0org.freedesktop.DBus.Tests.MyObject\0ManyArgs\0S\0x\0I\0u\0str\0I\0s\0trouble\0I\0d\0d_ret\0O\0F\0N\0d\0str_ret\0O\0F\0N\0s\0\0org.freedesktop.DBus.Tests.MyObject\0ManyReturn\0S\0arg0\0O\0F\0N\0u\0arg1\0O\0F\0N\0s\0arg2\0O\0F\0N\0i\0arg3\0O\0F\0N\0u\0arg4\0O\0F\0N\0u\0arg5\0O\0C\0N\0s\0\0org.freedesktop.DBus.Tests.MyObject\0Stringify\0S\0val\0I\0v\0arg1\0O\0F\0N\0s\0\0org.freedesktop.DBus.Tests.MyObject\0Unstringify\0S\0val\0I\0s\0arg1\0O\0F\0N\0v\0\0org.freedesktop.DBus.Tests.MyObject\0Recursive1\0S\0arg0\0I\0au\0arg1\0O\0F\0N\0u\0\0org.freedesktop.DBus.Tests.MyObject\0Recursive2\0S\0arg0\0I\0u\0arg1\0O\0F\0N\0au\0\0org.freedesktop.DBus.Tests.MyObject\0ManyUppercase\0S\0arg0\0I\0as\0arg1\0O\0F\0N\0as\0\0org.freedesktop.DBus.Tests.MyObject\0StrHashLen\0S\0arg0\0I\0a{ss}\0arg1\0O\0F\0N\0u\0\0org.freedesktop.DBus.Tests.MyObject\0SendCar\0S\0arg0\0I\0(suv)\0arg1\0O\0F\0N\0(uo)\0\0org.freedesktop.DBus.Tests.MyObject\0GetHash\0S\0arg0\0O\0F\0N\0a{ss}\0\0org.freedesktop.DBus.Tests.MyObject\0RecArrays\0S\0val\0I\0aas\0arg1\0O\0F\0N\0aau\0\0org.freedesktop.DBus.Tests.MyObject\0Objpath\0S\0arg0\0I\0o\0arg1\0O\0C\0N\0o\0\0org.freedesktop.DBus.Tests.MyObject\0GetObjs\0S\0arg0\0O\0F\0N\0ao\0\0org.freedesktop.DBus.Tests.MyObject\0IncrementVal\0S\0\0org.freedesktop.DBus.Tests.MyObject\0AsyncIncrement\0A\0x\0I\0u\0arg1\0O\0F\0N\0u\0\0org.freedesktop.DBus.Tests.MyObject\0AsyncThrowError\0A\0\0org.freedesktop.DBus.Tests.MyObject\0GetVal\0S\0arg0\0O\0F\0N\0u\0\0org.freedesktop.DBus.Tests.MyObject\0ManyStringify\0S\0arg0\0I\0a{sv}\0arg1\0O\0F\0N\0a{sv}\0\0org.freedesktop.DBus.Tests.MyObject\0EmitFrobnicate\0S\0\0org.freedesktop.DBus.Tests.MyObject\0Terminate\0S\0\0org.freedesktop.DBus.Tests.FooObject\0GetValue\0S\0arg0\0O\0F\0N\0u\0\0org.freedesktop.DBus.Tests.FooObject\0EmitSignals\0S\0\0org.freedesktop.DBus.Tests.FooObject\0EmitSignal2\0S\0\0org.freedesktop.DBus.Tests.FooObject\0Terminate\0S\0\0\0",
  1.2234 +"org.freedesktop.DBus.Tests.MyObject\0Frobnicate\0org.freedesktop.DBus.Tests.FooObject\0Sig0\0org.freedesktop.DBus.Tests.FooObject\0Sig1\0org.freedesktop.DBus.Tests.FooObject\0Sig2\0\0",
  1.2235 +"\0"
  1.2236 +};
  1.2237 +
  1.2238 +
  1.2239 +/**
  1.2240 + * @ingroup DBusGLibInternals
  1.2241 + * Unit test for GLib GObject integration ("skeletons")
  1.2242 + * Returns: #TRUE on success.
  1.2243 + */
  1.2244 +   	#ifdef __SYMBIAN32__
  1.2245 +	EXPORT_C
  1.2246 +	#endif
  1.2247 +gboolean
  1.2248 +_dbus_gobject_test (const char *test_data_dir)
  1.2249 +{
  1.2250 +  int i;
  1.2251 +  const char *arg;
  1.2252 +  const char *arg_name;
  1.2253 +  gboolean arg_in;
  1.2254 +  gboolean constval;
  1.2255 +  RetvalType retval;
  1.2256 +  const char *arg_signature;
  1.2257 +  const char *sigdata;
  1.2258 +  const char *iface;
  1.2259 +  const char *signame;
  1.2260 +  
  1.2261 +  static struct { const char *wincaps; const char *uscore; } name_pairs[] = {
  1.2262 +    { "SetFoo", "set_foo" },
  1.2263 +    { "Foo", "foo" },
  1.2264 +    { "GetFooBar", "get_foo_bar" },
  1.2265 +    { "Hello", "hello" }
  1.2266 +    
  1.2267 +    /* Impossible-to-handle cases */
  1.2268 +    /* { "FrobateUIHandler", "frobate_ui_handler" } */
  1.2269 +  };
  1.2270 +
  1.2271 +  /* Test lookup in our hardcoded object info; if these tests fail
  1.2272 +   * then it likely means you changed the generated object info in an
  1.2273 +   * incompatible way and broke the lookup functions.  In that case
  1.2274 +   * you need to bump the version and use a new structure instead. */
  1.2275 +  /* DoNothing */
  1.2276 +  arg = method_arg_info_from_object_info (&dbus_glib_internal_test_object_info,
  1.2277 +					  &(dbus_glib_internal_test_methods[0]));
  1.2278 +  g_assert (*arg == '\0');
  1.2279 +
  1.2280 +  /* Increment */
  1.2281 +  arg = method_arg_info_from_object_info (&dbus_glib_internal_test_object_info,
  1.2282 +					  &(dbus_glib_internal_test_methods[1]));
  1.2283 +  g_assert (*arg != '\0');
  1.2284 +  arg = arg_iterate (arg, &arg_name, &arg_in, &constval, &retval, &arg_signature);
  1.2285 +  g_assert (!strcmp (arg_name, "x"));
  1.2286 +  g_assert (arg_in == TRUE);
  1.2287 +  g_assert (!strcmp (arg_signature, "u"));
  1.2288 +  g_assert (*arg != '\0');
  1.2289 +  arg = arg_iterate (arg, &arg_name, &arg_in, &constval, &retval, &arg_signature);
  1.2290 +  g_assert (arg_in == FALSE);
  1.2291 +  g_assert (retval == RETVAL_NONE);
  1.2292 +  g_assert (!strcmp (arg_signature, "u"));
  1.2293 +  g_assert (*arg == '\0');
  1.2294 +
  1.2295 +  /* IncrementRetval */
  1.2296 +  arg = method_arg_info_from_object_info (&dbus_glib_internal_test_object_info,
  1.2297 +					  &(dbus_glib_internal_test_methods[2]));
  1.2298 +  g_assert (*arg != '\0');
  1.2299 +  arg = arg_iterate (arg, &arg_name, &arg_in, &constval, &retval, &arg_signature);
  1.2300 +  g_assert (!strcmp (arg_name, "x"));
  1.2301 +  g_assert (arg_in == TRUE);
  1.2302 +  g_assert (!strcmp (arg_signature, "u"));
  1.2303 +  g_assert (*arg != '\0');
  1.2304 +  arg = arg_iterate (arg, &arg_name, &arg_in, &constval, &retval, &arg_signature);
  1.2305 +  g_assert (retval == RETVAL_NOERROR);
  1.2306 +  g_assert (arg_in == FALSE);
  1.2307 +  g_assert (!strcmp (arg_signature, "u"));
  1.2308 +  g_assert (*arg == '\0');
  1.2309 +
  1.2310 +  /* IncrementRetvalError */
  1.2311 +  arg = method_arg_info_from_object_info (&dbus_glib_internal_test_object_info,
  1.2312 +					  &(dbus_glib_internal_test_methods[3]));
  1.2313 +  g_assert (*arg != '\0');
  1.2314 +  arg = arg_iterate (arg, &arg_name, &arg_in, &constval, &retval, &arg_signature);
  1.2315 +  g_assert (!strcmp (arg_name, "x"));
  1.2316 +  g_assert (arg_in == TRUE);
  1.2317 +  g_assert (!strcmp (arg_signature, "u"));
  1.2318 +  g_assert (*arg != '\0');
  1.2319 +  arg = arg_iterate (arg, &arg_name, &arg_in, &constval, &retval, &arg_signature);
  1.2320 +  g_assert (retval == RETVAL_ERROR);
  1.2321 +  g_assert (arg_in == FALSE);
  1.2322 +  g_assert (!strcmp (arg_signature, "u"));
  1.2323 +  g_assert (*arg == '\0');
  1.2324 +  
  1.2325 +  /* Stringify */
  1.2326 +  arg = method_arg_info_from_object_info (&dbus_glib_internal_test_object_info,
  1.2327 +					  &(dbus_glib_internal_test_methods[8]));
  1.2328 +  g_assert (*arg != '\0');
  1.2329 +  arg = arg_iterate (arg, &arg_name, &arg_in, &constval, &retval, &arg_signature);
  1.2330 +  g_assert (!strcmp (arg_name, "val"));
  1.2331 +  g_assert (arg_in == TRUE);
  1.2332 +  g_assert (!strcmp (arg_signature, "v"));
  1.2333 +  g_assert (*arg != '\0');
  1.2334 +  arg = arg_iterate (arg, &arg_name, &arg_in, &constval, &retval, &arg_signature);
  1.2335 +  g_assert (retval == RETVAL_NONE);
  1.2336 +  g_assert (arg_in == FALSE);
  1.2337 +  g_assert (!strcmp (arg_signature, "s"));
  1.2338 +  g_assert (*arg == '\0');
  1.2339 +
  1.2340 +  sigdata = dbus_glib_internal_test_object_info.exported_signals;
  1.2341 +  g_assert (*sigdata != '\0');
  1.2342 +  sigdata = propsig_iterate (sigdata, &iface, &signame);
  1.2343 +  g_assert (!strcmp (iface, "org.freedesktop.DBus.Tests.MyObject"));
  1.2344 +  g_assert (!strcmp (signame, "Frobnicate"));
  1.2345 +  g_assert (*sigdata != '\0');
  1.2346 +  sigdata = propsig_iterate (sigdata, &iface, &signame);
  1.2347 +  g_assert (!strcmp (iface, "org.freedesktop.DBus.Tests.FooObject"));
  1.2348 +  g_assert (!strcmp (signame, "Sig0"));
  1.2349 +  g_assert (*sigdata != '\0');
  1.2350 +  sigdata = propsig_iterate (sigdata, &iface, &signame);
  1.2351 +  g_assert (!strcmp (iface, "org.freedesktop.DBus.Tests.FooObject"));
  1.2352 +  g_assert (!strcmp (signame, "Sig1"));
  1.2353 +  g_assert (*sigdata != '\0');
  1.2354 +  sigdata = propsig_iterate (sigdata, &iface, &signame);
  1.2355 +  g_assert (!strcmp (iface, "org.freedesktop.DBus.Tests.FooObject"));
  1.2356 +  g_assert (!strcmp (signame, "Sig2"));
  1.2357 +  g_assert (*sigdata == '\0');
  1.2358 +  
  1.2359 +
  1.2360 +  i = 0;
  1.2361 +  while (i < (int) G_N_ELEMENTS (name_pairs))
  1.2362 +    {
  1.2363 +      char *uscore;
  1.2364 +      char *wincaps;
  1.2365 +
  1.2366 +      uscore = _dbus_gutils_wincaps_to_uscore (name_pairs[i].wincaps);
  1.2367 +      wincaps = uscore_to_wincaps (name_pairs[i].uscore);
  1.2368 +
  1.2369 +      if (strcmp (uscore, name_pairs[i].uscore) != 0)
  1.2370 +        {
  1.2371 +          g_printerr ("\"%s\" should have been converted to \"%s\" not \"%s\"\n",
  1.2372 +                      name_pairs[i].wincaps, name_pairs[i].uscore,
  1.2373 +                      uscore);
  1.2374 +          exit (1);
  1.2375 +        }
  1.2376 +      
  1.2377 +      if (strcmp (wincaps, name_pairs[i].wincaps) != 0)
  1.2378 +        {
  1.2379 +          g_printerr ("\"%s\" should have been converted to \"%s\" not \"%s\"\n",
  1.2380 +                      name_pairs[i].uscore, name_pairs[i].wincaps,
  1.2381 +                      wincaps);
  1.2382 +          exit (1);
  1.2383 +        }
  1.2384 +      
  1.2385 +      g_free (uscore);
  1.2386 +      g_free (wincaps);
  1.2387 +
  1.2388 +      ++i;
  1.2389 +    }
  1.2390 +  
  1.2391 +  return TRUE;
  1.2392 +}
  1.2393 +
  1.2394 +#endif /* DBUS_BUILD_TESTS */