Update contrib.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-glib.c General GLib binding stuff
4 * Copyright (C) 2004 Red Hat, Inc.
5 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #endif //__SYMBIAN32__
29 #include "dbus-glib.h"
30 #include "dbus-glib-lowlevel.h"
31 #include "dbus-gtest.h"
32 #include "dbus-gutils.h"
33 #include "dbus-gobject.h"
38 #define _(x) dgettext (GETTEXT_PACKAGE, x)
47 #include "libdbus_glib_wsd_solution.h"
51 * SECTION:dbus-gconnection
52 * @short_description: DBus Connection
53 * @see_also: #DBusConnection
56 * A #DBusGConnection is a boxed type abstracting a DBusConnection.
60 * dbus_g_connection_flush:
61 * @connection: the #DBusGConnection to flush
63 * Blocks until outgoing calls and signal emissions have been sent.
69 dbus_g_connection_flush (DBusGConnection *connection)
71 dbus_connection_flush (DBUS_CONNECTION_FROM_G_CONNECTION (connection));
75 * dbus_g_connection_ref:
76 * @gconnection the #DBusGConnection to ref
78 * Increment refcount on a #DBusGConnection
80 * Returns: the connection that was ref'd
86 dbus_g_connection_ref (DBusGConnection *gconnection)
90 c = DBUS_CONNECTION_FROM_G_CONNECTION (gconnection);
91 dbus_connection_ref (c);
97 * dbus_g_connection_unref:
98 * @gconnection: the connection to unref
100 * Decrement refcount on a #DBusGConnection
106 dbus_g_connection_unref (DBusGConnection *gconnection)
110 c = DBUS_CONNECTION_FROM_G_CONNECTION (gconnection);
111 dbus_connection_unref (c);
116 * SECTION:dbus-gmessage
117 * @short_description: DBus Message
118 * @see_also: #DBusMessage
121 * A #DBusGConnection is a boxed type abstracting a DBusMessage.
125 * dbus_g_message_ref:
126 * @gmessage: the message to ref
128 * Increment refcount on a #DBusGMessage
130 * Returns: the message that was ref'd
136 dbus_g_message_ref (DBusGMessage *gmessage)
140 c = DBUS_MESSAGE_FROM_G_MESSAGE (gmessage);
141 dbus_message_ref (c);
146 * dbus_g_message_unref:
147 * @gmessage: the message to unref
149 * Decrement refcount on a #DBusGMessage
155 dbus_g_message_unref (DBusGMessage *gmessage)
159 c = DBUS_MESSAGE_FROM_G_MESSAGE (gmessage);
160 dbus_message_unref (c);
164 * SECTION:dbus-gerror
165 * @short_description: DBus GError
169 * #DBusGError is the #GError used by DBus.
173 * dbus_g_error_quark:
175 * The implementation of #DBUS_GERROR error domain. See documentation
176 * for #GError in GLib reference manual.
178 * Returns: the error domain quark for use with #GError
182 GET_STATIC_VAR_FROM_TLS(quark,dbus_glib,GQuark )
183 #define quark (*GET_DBUS_WSD_VAR_NAME(quark,dbus_glib,s)())
190 dbus_g_error_quark (void)
193 static GQuark quark=0;
196 quark = g_quark_from_static_string ("dbus-glib-error-quark");
201 * dbus_g_error_has_name:
202 * @error: the GError given from the remote method
203 * @name: the D-BUS error name
204 * @msg: the D-BUS error detailed message
206 * Determine whether D-BUS error name for a remote exception matches
207 * the given name. This function is intended to be invoked on a
208 * GError returned from an invocation of a remote method, e.g. via
209 * dbus_g_proxy_end_call. It will silently return FALSE for errors
210 * which are not remote D-BUS exceptions (i.e. with a domain other
211 * than DBUS_GERROR or a code other than
212 * DBUS_GERROR_REMOTE_EXCEPTION).
214 * Returns: TRUE iff the remote error has the given name
220 dbus_g_error_has_name (GError *error, const char *name)
222 g_return_val_if_fail (error != NULL, FALSE);
224 if (error->domain != DBUS_GERROR
225 || error->code != DBUS_GERROR_REMOTE_EXCEPTION)
228 return !strcmp (dbus_g_error_get_name (error), name);
232 * dbus_g_error_get_name:
233 * @error: the #GError given from the remote method
234 * @name: the D-BUS error name
235 * @msg: the D-BUS error detailed message
237 * This function may only be invoked on a #GError returned from an
238 * invocation of a remote method, e.g. via dbus_g_proxy_end_call.
239 * Moreover, you must ensure that the error's domain is #DBUS_GERROR,
240 * and the code is #DBUS_GERROR_REMOTE_EXCEPTION.
242 * Returns: the D-BUS name for a remote exception.
248 dbus_g_error_get_name (GError *error)
250 g_return_val_if_fail (error != NULL, NULL);
251 g_return_val_if_fail (error->domain == DBUS_GERROR, NULL);
252 g_return_val_if_fail (error->code == DBUS_GERROR_REMOTE_EXCEPTION, NULL);
254 return error->message + strlen (error->message) + 1;
258 * dbus_connection_get_g_type:
259 * Get the GLib type ID for a #DBusConnection boxed type.
261 * Returns: the GLib type
265 GET_STATIC_VAR_FROM_TLS(our_type,dbus_glib,GType )
266 #define our_type (*GET_DBUS_WSD_VAR_NAME(our_type,dbus_glib,p)())
274 dbus_connection_get_g_type (void)
278 static GType our_type = 0;
280 // RETURN_WSD_VAR(our_type,dbus_glib,p) //(libdbus_glib_ImpurePtr()->GET_DBUS_WSD_VAR_NAME(var,filename,prefix))
281 // #define GET_DBUS_WSD_VAR_NAME(var,filename,prefix) _##prefix##_##filename##_##var
285 #define our_type RETURN_WSD_VAR(our_type,dbus_glib,p)
286 // #define our_type (*GET_DBUS_WSD_VAR_NAME(our_type,dbus_glib,p)()) //(*_p_dbus_glib_our_type())
294 our_type = g_boxed_type_register_static ("DBusConnection",
295 (GBoxedCopyFunc) dbus_connection_ref,
296 (GBoxedFreeFunc) dbus_connection_unref);
303 * dbus_message_get_g_type:
304 * Get the GLib type ID for a #DBusMessage boxed type.
306 * Returns: the GLib type
311 GET_STATIC_VAR_FROM_TLS(out_type,dbus_glib,GType )
312 #define our_type (*GET_DBUS_WSD_VAR_NAME(our_type,dbus_glib,q)())
319 dbus_message_get_g_type (void)
323 static GType our_type = 0;
328 #define our_type RETURN_WSD_VAR(our_type,dbus_glib,q)
333 our_type = g_boxed_type_register_static ("DBusMessage",
334 (GBoxedCopyFunc) dbus_message_ref,
335 (GBoxedFreeFunc) dbus_message_unref);
341 * dbus_g_connection_get_g_type:
342 * Get the GLib type ID for a DBusGConnection boxed type.
344 * Returns: the GLib type
352 dbus_g_connection_get_g_type (void)
355 static GType our_type = 0;
360 #define our_type RETURN_WSD_VAR(our_type,dbus_glib,r)
365 our_type = g_boxed_type_register_static ("DBusGConnection",
366 (GBoxedCopyFunc) dbus_g_connection_ref,
367 (GBoxedFreeFunc) dbus_g_connection_unref);
373 * dbus_g_message_get_g_type:
374 * Get the GLib type ID for a #DBusGMessage boxed type.
376 * Returns: the GLib type
382 dbus_g_message_get_g_type (void)
385 static GType our_type = 0;
390 #define our_type RETURN_WSD_VAR(our_type,dbus_glib,s)
395 our_type = g_boxed_type_register_static ("DBusGMessage",
396 (GBoxedCopyFunc) dbus_g_message_ref,
397 (GBoxedFreeFunc) dbus_g_message_unref);
403 * SECTION:dbus-glib-lowlevel
404 * @short_description: DBus lower level functions
405 * @stability: Unstable
407 * These functions can be used to access lower level of DBus.
411 * dbus_g_connection_get_connection:
412 * @gconnection: a #DBusGConnection
414 * Get the #DBusConnection corresponding to this #DBusGConnection.
415 * The return value does not have its refcount incremented.
417 * Returns: #DBusConnection
423 dbus_g_connection_get_connection (DBusGConnection *gconnection)
425 g_return_val_if_fail (gconnection, NULL);
426 return DBUS_CONNECTION_FROM_G_CONNECTION (gconnection);
430 dbus_int32_t GET_DBUS_WSD_VAR_NAME(_dbus_gmain_connection_slot,dbus_gmain,dbus_int32_t)();
431 #define _dbus_gmain_connection_slot (GET_DBUS_WSD_VAR_NAME(_dbus_gmain_connection_slot,dbus_gmain,g)())
433 extern dbus_int32_t _dbus_gmain_connection_slot;
436 * dbus_connection_get_g_connection:
437 * @connection: a #DBusConnection
439 * Get the #DBusGConnection corresponding to this #DBusConnection. This only
440 * makes sense if the #DBusConnection was originally a #DBusGConnection that was
441 * registered with the GLib main loop. The return value does not have its
442 * refcount incremented.
444 * Returns: #DBusGConnection
450 dbus_connection_get_g_connection (DBusConnection *connection)
452 g_return_val_if_fail (connection, NULL);
453 g_return_val_if_fail (dbus_connection_get_data (connection, _dbus_gmain_connection_slot), NULL);
455 return DBUS_G_CONNECTION_FROM_CONNECTION (connection);
460 * dbus_g_message_get_message:
461 * @gmessage: a #DBusGMessage
463 * Get the #DBusMessage corresponding to this #DBusGMessage.
464 * The return value does not have its refcount incremented.
466 * Returns: #DBusMessage
472 dbus_g_message_get_message (DBusGMessage *gmessage)
474 return DBUS_MESSAGE_FROM_G_MESSAGE (gmessage);
477 #ifdef DBUS_BUILD_TESTS
480 * @ingroup DBusGLibInternals
481 * Unit test for general glib stuff
482 * Returns: #TRUE on success.
488 _dbus_glib_test (const char *test_data_dir)
491 GError *gerror = NULL;
493 dbus_error_init (&err);
494 dbus_set_error_const (&err, DBUS_ERROR_NO_MEMORY, "Out of memory!");
496 dbus_set_g_error (&gerror, &err);
497 g_assert (gerror != NULL);
498 g_assert (gerror->domain == DBUS_GERROR);
499 g_assert (gerror->code == DBUS_GERROR_NO_MEMORY);
500 g_assert (!strcmp (gerror->message, "Out of memory!"));
502 dbus_error_init (&err);
503 g_clear_error (&gerror);
508 #endif /* DBUS_BUILD_TESTS */