sl@0: /* -*- mode: C; c-file-style: "gnu" -*- */ sl@0: /* dbus-glib.c General GLib binding stuff sl@0: * sl@0: * Copyright (C) 2004 Red Hat, Inc. sl@0: * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. sl@0: * Licensed under the Academic Free License version 2.1 sl@0: * sl@0: * This program is free software; you can redistribute it and/or modify sl@0: * it under the terms of the GNU General Public License as published by sl@0: * the Free Software Foundation; either version 2 of the License, or sl@0: * (at your option) any later version. sl@0: * sl@0: * This program is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the sl@0: * GNU General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU General Public License sl@0: * along with this program; if not, write to the Free Software sl@0: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA sl@0: * sl@0: */ sl@0: sl@0: #ifndef __SYMBIAN32__ sl@0: #include sl@0: #else sl@0: #include "config.h" sl@0: #endif //__SYMBIAN32__ sl@0: #include "dbus-glib.h" sl@0: #include "dbus-glib-lowlevel.h" sl@0: #include "dbus-gtest.h" sl@0: #include "dbus-gutils.h" sl@0: #include "dbus-gobject.h" sl@0: #include sl@0: sl@0: #ifndef __SYMBIAN32__ sl@0: #include sl@0: #define _(x) dgettext (GETTEXT_PACKAGE, x) sl@0: #define N_(x) x sl@0: #else sl@0: sl@0: #define _(x) x sl@0: #define N_(x) x sl@0: #endif sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: #include "libdbus_glib_wsd_solution.h" sl@0: #endif sl@0: sl@0: /** sl@0: * SECTION:dbus-gconnection sl@0: * @short_description: DBus Connection sl@0: * @see_also: #DBusConnection sl@0: * @stability: Stable sl@0: * sl@0: * A #DBusGConnection is a boxed type abstracting a DBusConnection. sl@0: */ sl@0: sl@0: /** sl@0: * dbus_g_connection_flush: sl@0: * @connection: the #DBusGConnection to flush sl@0: * sl@0: * Blocks until outgoing calls and signal emissions have been sent. sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: void sl@0: dbus_g_connection_flush (DBusGConnection *connection) sl@0: { sl@0: dbus_connection_flush (DBUS_CONNECTION_FROM_G_CONNECTION (connection)); sl@0: } sl@0: sl@0: /** sl@0: * dbus_g_connection_ref: sl@0: * @gconnection the #DBusGConnection to ref sl@0: * sl@0: * Increment refcount on a #DBusGConnection sl@0: * sl@0: * Returns: the connection that was ref'd sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: DBusGConnection* sl@0: dbus_g_connection_ref (DBusGConnection *gconnection) sl@0: { sl@0: DBusConnection *c; sl@0: sl@0: c = DBUS_CONNECTION_FROM_G_CONNECTION (gconnection); sl@0: dbus_connection_ref (c); sl@0: return gconnection; sl@0: } sl@0: sl@0: sl@0: /** sl@0: * dbus_g_connection_unref: sl@0: * @gconnection: the connection to unref sl@0: * sl@0: * Decrement refcount on a #DBusGConnection sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: void sl@0: dbus_g_connection_unref (DBusGConnection *gconnection) sl@0: { sl@0: DBusConnection *c; sl@0: sl@0: c = DBUS_CONNECTION_FROM_G_CONNECTION (gconnection); sl@0: dbus_connection_unref (c); sl@0: } sl@0: sl@0: sl@0: /** sl@0: * SECTION:dbus-gmessage sl@0: * @short_description: DBus Message sl@0: * @see_also: #DBusMessage sl@0: * @stability: Stable sl@0: * sl@0: * A #DBusGConnection is a boxed type abstracting a DBusMessage. sl@0: */ sl@0: sl@0: /** sl@0: * dbus_g_message_ref: sl@0: * @gmessage: the message to ref sl@0: * sl@0: * Increment refcount on a #DBusGMessage sl@0: * sl@0: * Returns: the message that was ref'd sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: DBusGMessage* sl@0: dbus_g_message_ref (DBusGMessage *gmessage) sl@0: { sl@0: DBusMessage *c; sl@0: sl@0: c = DBUS_MESSAGE_FROM_G_MESSAGE (gmessage); sl@0: dbus_message_ref (c); sl@0: return gmessage; sl@0: } sl@0: sl@0: /** sl@0: * dbus_g_message_unref: sl@0: * @gmessage: the message to unref sl@0: * sl@0: * Decrement refcount on a #DBusGMessage sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: void sl@0: dbus_g_message_unref (DBusGMessage *gmessage) sl@0: { sl@0: DBusMessage *c; sl@0: sl@0: c = DBUS_MESSAGE_FROM_G_MESSAGE (gmessage); sl@0: dbus_message_unref (c); sl@0: } sl@0: sl@0: /** sl@0: * SECTION:dbus-gerror sl@0: * @short_description: DBus GError sl@0: * @see_also: #GError sl@0: * @stability: Stable sl@0: * sl@0: * #DBusGError is the #GError used by DBus. sl@0: */ sl@0: sl@0: /** sl@0: * dbus_g_error_quark: sl@0: * sl@0: * The implementation of #DBUS_GERROR error domain. See documentation sl@0: * for #GError in GLib reference manual. sl@0: * sl@0: * Returns: the error domain quark for use with #GError sl@0: */ sl@0: sl@0: #if EMULATOR sl@0: GET_STATIC_VAR_FROM_TLS(quark,dbus_glib,GQuark ) sl@0: #define quark (*GET_DBUS_WSD_VAR_NAME(quark,dbus_glib,s)()) sl@0: sl@0: #endif sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: GQuark sl@0: dbus_g_error_quark (void) sl@0: { sl@0: #ifndef EMULATOR sl@0: static GQuark quark=0; sl@0: #endif sl@0: if (quark == 0) sl@0: quark = g_quark_from_static_string ("dbus-glib-error-quark"); sl@0: return quark; sl@0: } sl@0: sl@0: /** sl@0: * dbus_g_error_has_name: sl@0: * @error: the GError given from the remote method sl@0: * @name: the D-BUS error name sl@0: * @msg: the D-BUS error detailed message sl@0: * sl@0: * Determine whether D-BUS error name for a remote exception matches sl@0: * the given name. This function is intended to be invoked on a sl@0: * GError returned from an invocation of a remote method, e.g. via sl@0: * dbus_g_proxy_end_call. It will silently return FALSE for errors sl@0: * which are not remote D-BUS exceptions (i.e. with a domain other sl@0: * than DBUS_GERROR or a code other than sl@0: * DBUS_GERROR_REMOTE_EXCEPTION). sl@0: * sl@0: * Returns: TRUE iff the remote error has the given name sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: gboolean sl@0: dbus_g_error_has_name (GError *error, const char *name) sl@0: { sl@0: g_return_val_if_fail (error != NULL, FALSE); sl@0: sl@0: if (error->domain != DBUS_GERROR sl@0: || error->code != DBUS_GERROR_REMOTE_EXCEPTION) sl@0: return FALSE; sl@0: sl@0: return !strcmp (dbus_g_error_get_name (error), name); sl@0: } sl@0: sl@0: /** sl@0: * dbus_g_error_get_name: sl@0: * @error: the #GError given from the remote method sl@0: * @name: the D-BUS error name sl@0: * @msg: the D-BUS error detailed message sl@0: * sl@0: * This function may only be invoked on a #GError returned from an sl@0: * invocation of a remote method, e.g. via dbus_g_proxy_end_call. sl@0: * Moreover, you must ensure that the error's domain is #DBUS_GERROR, sl@0: * and the code is #DBUS_GERROR_REMOTE_EXCEPTION. sl@0: * sl@0: * Returns: the D-BUS name for a remote exception. sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: const char * sl@0: dbus_g_error_get_name (GError *error) sl@0: { sl@0: g_return_val_if_fail (error != NULL, NULL); sl@0: g_return_val_if_fail (error->domain == DBUS_GERROR, NULL); sl@0: g_return_val_if_fail (error->code == DBUS_GERROR_REMOTE_EXCEPTION, NULL); sl@0: sl@0: return error->message + strlen (error->message) + 1; sl@0: } sl@0: sl@0: /** sl@0: * dbus_connection_get_g_type: sl@0: * Get the GLib type ID for a #DBusConnection boxed type. sl@0: * sl@0: * Returns: the GLib type sl@0: */ sl@0: /* sl@0: #if EMULATOR sl@0: GET_STATIC_VAR_FROM_TLS(our_type,dbus_glib,GType ) sl@0: #define our_type (*GET_DBUS_WSD_VAR_NAME(our_type,dbus_glib,p)()) sl@0: #endif sl@0: */ sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: GType sl@0: dbus_connection_get_g_type (void) sl@0: { sl@0: #ifndef EMULATOR sl@0: sl@0: static GType our_type = 0; sl@0: #else sl@0: // RETURN_WSD_VAR(our_type,dbus_glib,p) //(libdbus_glib_ImpurePtr()->GET_DBUS_WSD_VAR_NAME(var,filename,prefix)) sl@0: // #define GET_DBUS_WSD_VAR_NAME(var,filename,prefix) _##prefix##_##filename##_##var sl@0: #ifdef our_type sl@0: #undef our_type sl@0: #endif sl@0: #define our_type RETURN_WSD_VAR(our_type,dbus_glib,p) sl@0: // #define our_type (*GET_DBUS_WSD_VAR_NAME(our_type,dbus_glib,p)()) //(*_p_dbus_glib_our_type()) sl@0: sl@0: sl@0: #endif sl@0: sl@0: sl@0: sl@0: if (our_type == 0) sl@0: our_type = g_boxed_type_register_static ("DBusConnection", sl@0: (GBoxedCopyFunc) dbus_connection_ref, sl@0: (GBoxedFreeFunc) dbus_connection_unref); sl@0: sl@0: return our_type; sl@0: sl@0: } sl@0: sl@0: /** sl@0: * dbus_message_get_g_type: sl@0: * Get the GLib type ID for a #DBusMessage boxed type. sl@0: * sl@0: * Returns: the GLib type sl@0: */ sl@0: sl@0: /* sl@0: #if EMULATOR sl@0: GET_STATIC_VAR_FROM_TLS(out_type,dbus_glib,GType ) sl@0: #define our_type (*GET_DBUS_WSD_VAR_NAME(our_type,dbus_glib,q)()) sl@0: #endif*/ sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: GType sl@0: dbus_message_get_g_type (void) sl@0: { sl@0: sl@0: #ifndef EMULATOR sl@0: static GType our_type = 0; sl@0: #else sl@0: #ifdef our_type sl@0: #undef our_type sl@0: #endif sl@0: #define our_type RETURN_WSD_VAR(our_type,dbus_glib,q) sl@0: #endif sl@0: sl@0: sl@0: if (our_type == 0) sl@0: our_type = g_boxed_type_register_static ("DBusMessage", sl@0: (GBoxedCopyFunc) dbus_message_ref, sl@0: (GBoxedFreeFunc) dbus_message_unref); sl@0: sl@0: return our_type; sl@0: } sl@0: sl@0: /** sl@0: * dbus_g_connection_get_g_type: sl@0: * Get the GLib type ID for a DBusGConnection boxed type. sl@0: * sl@0: * Returns: the GLib type sl@0: */ sl@0: sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: GType sl@0: dbus_g_connection_get_g_type (void) sl@0: { sl@0: #ifndef EMULATOR sl@0: static GType our_type = 0; sl@0: #else sl@0: #ifdef our_type sl@0: #undef our_type sl@0: #endif sl@0: #define our_type RETURN_WSD_VAR(our_type,dbus_glib,r) sl@0: #endif sl@0: sl@0: sl@0: if (our_type == 0) sl@0: our_type = g_boxed_type_register_static ("DBusGConnection", sl@0: (GBoxedCopyFunc) dbus_g_connection_ref, sl@0: (GBoxedFreeFunc) dbus_g_connection_unref); sl@0: sl@0: return our_type; sl@0: } sl@0: sl@0: /** sl@0: * dbus_g_message_get_g_type: sl@0: * Get the GLib type ID for a #DBusGMessage boxed type. sl@0: * sl@0: * Returns: the GLib type sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: GType sl@0: dbus_g_message_get_g_type (void) sl@0: { sl@0: #ifndef EMULATOR sl@0: static GType our_type = 0; sl@0: #else sl@0: #ifdef our_type sl@0: #undef our_type sl@0: #endif sl@0: #define our_type RETURN_WSD_VAR(our_type,dbus_glib,s) sl@0: sl@0: #endif sl@0: sl@0: if (our_type == 0) sl@0: our_type = g_boxed_type_register_static ("DBusGMessage", sl@0: (GBoxedCopyFunc) dbus_g_message_ref, sl@0: (GBoxedFreeFunc) dbus_g_message_unref); sl@0: sl@0: return our_type; sl@0: } sl@0: sl@0: /** sl@0: * SECTION:dbus-glib-lowlevel sl@0: * @short_description: DBus lower level functions sl@0: * @stability: Unstable sl@0: * sl@0: * These functions can be used to access lower level of DBus. sl@0: */ sl@0: sl@0: /** sl@0: * dbus_g_connection_get_connection: sl@0: * @gconnection: a #DBusGConnection sl@0: * sl@0: * Get the #DBusConnection corresponding to this #DBusGConnection. sl@0: * The return value does not have its refcount incremented. sl@0: * sl@0: * Returns: #DBusConnection sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: DBusConnection* sl@0: dbus_g_connection_get_connection (DBusGConnection *gconnection) sl@0: { sl@0: g_return_val_if_fail (gconnection, NULL); sl@0: return DBUS_CONNECTION_FROM_G_CONNECTION (gconnection); sl@0: } sl@0: sl@0: #if EMULATOR sl@0: dbus_int32_t GET_DBUS_WSD_VAR_NAME(_dbus_gmain_connection_slot,dbus_gmain,dbus_int32_t)(); sl@0: #define _dbus_gmain_connection_slot (GET_DBUS_WSD_VAR_NAME(_dbus_gmain_connection_slot,dbus_gmain,g)()) sl@0: #else sl@0: extern dbus_int32_t _dbus_gmain_connection_slot; sl@0: #endif sl@0: /** sl@0: * dbus_connection_get_g_connection: sl@0: * @connection: a #DBusConnection sl@0: * sl@0: * Get the #DBusGConnection corresponding to this #DBusConnection. This only sl@0: * makes sense if the #DBusConnection was originally a #DBusGConnection that was sl@0: * registered with the GLib main loop. The return value does not have its sl@0: * refcount incremented. sl@0: * sl@0: * Returns: #DBusGConnection sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: DBusGConnection* sl@0: dbus_connection_get_g_connection (DBusConnection *connection) sl@0: { sl@0: g_return_val_if_fail (connection, NULL); sl@0: g_return_val_if_fail (dbus_connection_get_data (connection, _dbus_gmain_connection_slot), NULL); sl@0: sl@0: return DBUS_G_CONNECTION_FROM_CONNECTION (connection); sl@0: } sl@0: sl@0: sl@0: /** sl@0: * dbus_g_message_get_message: sl@0: * @gmessage: a #DBusGMessage sl@0: * sl@0: * Get the #DBusMessage corresponding to this #DBusGMessage. sl@0: * The return value does not have its refcount incremented. sl@0: * sl@0: * Returns: #DBusMessage sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: DBusMessage* sl@0: dbus_g_message_get_message (DBusGMessage *gmessage) sl@0: { sl@0: return DBUS_MESSAGE_FROM_G_MESSAGE (gmessage); sl@0: } sl@0: sl@0: #ifdef DBUS_BUILD_TESTS sl@0: sl@0: /** sl@0: * @ingroup DBusGLibInternals sl@0: * Unit test for general glib stuff sl@0: * Returns: #TRUE on success. sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: gboolean sl@0: _dbus_glib_test (const char *test_data_dir) sl@0: { sl@0: DBusError err; sl@0: GError *gerror = NULL; sl@0: sl@0: dbus_error_init (&err); sl@0: dbus_set_error_const (&err, DBUS_ERROR_NO_MEMORY, "Out of memory!"); sl@0: sl@0: dbus_set_g_error (&gerror, &err); sl@0: g_assert (gerror != NULL); sl@0: g_assert (gerror->domain == DBUS_GERROR); sl@0: g_assert (gerror->code == DBUS_GERROR_NO_MEMORY); sl@0: g_assert (!strcmp (gerror->message, "Out of memory!")); sl@0: sl@0: dbus_error_init (&err); sl@0: g_clear_error (&gerror); sl@0: sl@0: return TRUE; sl@0: } sl@0: sl@0: #endif /* DBUS_BUILD_TESTS */