sl@0: /* -*- mode: C; c-file-style: "gnu" -*- */ sl@0: /* dbus-glib.h GLib integration sl@0: * sl@0: * Copyright (C) 2002, 2003 CodeFactory AB sl@0: * Copyright (C) 2003, 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: #ifndef DBUS_GLIB_H sl@0: #define DBUS_GLIB_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: G_BEGIN_DECLS sl@0: sl@0: #define DBUS_INSIDE_DBUS_GLIB_H 1 sl@0: sl@0: sl@0: /** sl@0: * Convert to DBusConnection with dbus_g_connection_get_connection() in dbus-glib-lowlevel.h sl@0: */ sl@0: typedef struct _DBusGConnection DBusGConnection; sl@0: /** sl@0: * Convert to DBusMessage with dbus_g_message_get_message() in dbus-glib-lowlevel.h sl@0: */ sl@0: typedef struct _DBusGMessage DBusGMessage; sl@0: sl@0: sl@0: #define DBUS_TYPE_G_CONNECTION (dbus_g_connection_get_g_type ()) sl@0: #define DBUS_TYPE_G_MESSAGE (dbus_g_message_get_g_type ()) sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: GType dbus_g_connection_get_g_type (void) G_GNUC_CONST; sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: GType dbus_g_message_get_g_type (void) G_GNUC_CONST; sl@0: sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGConnection* dbus_g_connection_ref (DBusGConnection *connection); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_connection_unref (DBusGConnection *connection); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGMessage* dbus_g_message_ref (DBusGMessage *message); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_message_unref (DBusGMessage *message); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_connection_flush (DBusGConnection *connection); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: GQuark dbus_g_error_quark (void); sl@0: #define DBUS_GERROR dbus_g_error_quark () sl@0: sl@0: typedef enum sl@0: { sl@0: #ifndef __SYMBIAN32__ sl@0: #include "dbus-glib-error-enum.h" sl@0: #else sl@0: #include sl@0: #endif //__SYMBIAN32__ sl@0: } DBusGError; sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: gboolean dbus_g_error_has_name (GError *error, sl@0: const char *name); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: const char * dbus_g_error_get_name (GError *error); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_thread_init (void); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGConnection* dbus_g_connection_open (const gchar *address, sl@0: GError **error); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGConnection* dbus_g_bus_get (DBusBusType type, sl@0: GError **error); sl@0: sl@0: typedef struct _DBusGObjectInfo DBusGObjectInfo; sl@0: typedef struct _DBusGMethodInfo DBusGMethodInfo; sl@0: sl@0: /** sl@0: * DBusGMethodInfo: sl@0: * @function: C method to invoke sl@0: * @marshaller: Marshaller to invoke method sl@0: * @data_offset: Offset into the introspection data sl@0: * sl@0: * Object typically generated by #dbus-binding-tool that sl@0: * stores a mapping from introspection data to a sl@0: * function pointer for a C method to be invoked. sl@0: */ sl@0: struct _DBusGMethodInfo sl@0: { sl@0: GCallback function; sl@0: GClosureMarshal marshaller; sl@0: int data_offset; sl@0: }; sl@0: sl@0: /** sl@0: * DBusGObjectInfo: sl@0: * @format_version: Allows us to change the rest of this struct sl@0: * by adding DBusGObjectInfo2, DBusGObjectInfo3, etc. sl@0: * @method_infos: Array of method pointers sl@0: * @n_method_infos: Length of the infos array sl@0: * @data: Introspection data sl@0: * @exported_signals: Exported signals sl@0: * @exported_properties: Exported properties sl@0: * sl@0: * Introspection data for a #GObject, normally autogenerated by sl@0: * a tool such as #dbus-binding-tool. sl@0: */ sl@0: struct _DBusGObjectInfo sl@0: { sl@0: int format_version; sl@0: sl@0: const DBusGMethodInfo *method_infos; sl@0: int n_method_infos; sl@0: const char *data; sl@0: const char *exported_signals; sl@0: const char *exported_properties; sl@0: }; sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_object_type_install_info (GType object_type, sl@0: const DBusGObjectInfo *info); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_error_domain_register (GQuark domain, sl@0: const char * default_iface, sl@0: GType code_enum); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_connection_register_g_object (DBusGConnection *connection, sl@0: const char *at_path, sl@0: GObject *object); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: GObject * dbus_g_connection_lookup_g_object (DBusGConnection *connection, sl@0: const char *at_path); sl@0: sl@0: #ifdef DBUS_COMPILATION sl@0: #include "dbus/dbus-gtype-specialized.h" sl@0: #else sl@0: #include sl@0: #endif sl@0: sl@0: /* definitions for some basic array types */ sl@0: #define DBUS_TYPE_G_BOOLEAN_ARRAY (dbus_g_type_get_collection ("GArray", G_TYPE_BOOLEAN)) sl@0: #define DBUS_TYPE_G_UCHAR_ARRAY (dbus_g_type_get_collection ("GArray", G_TYPE_UCHAR)) sl@0: #define DBUS_TYPE_G_UINT_ARRAY (dbus_g_type_get_collection ("GArray", G_TYPE_UINT)) sl@0: #define DBUS_TYPE_G_INT_ARRAY (dbus_g_type_get_collection ("GArray", G_TYPE_INT)) sl@0: #define DBUS_TYPE_G_UINT64_ARRAY (dbus_g_type_get_collection ("GArray", G_TYPE_UINT64)) sl@0: #define DBUS_TYPE_G_INT64_ARRAY (dbus_g_type_get_collection ("GArray", G_TYPE_INT64)) sl@0: #define DBUS_TYPE_G_OBJECT_ARRAY (dbus_g_type_get_collection ("GPtrArray", G_TYPE_OBJECT)) sl@0: sl@0: #define DBUS_TYPE_G_STRING_STRING_HASHTABLE (dbus_g_type_get_map ("GHashTable", G_TYPE_STRING, G_TYPE_STRING)) sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: GType dbus_g_object_path_get_g_type (void) G_GNUC_CONST; sl@0: #define DBUS_TYPE_G_OBJECT_PATH (dbus_g_object_path_get_g_type ()) sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_object_register_marshaller (GClosureMarshal marshaller, sl@0: GType rettype, sl@0: ...); sl@0: void dbus_g_object_register_marshaller_array(GClosureMarshal marshaller, sl@0: GType rettype, sl@0: guint n_types, sl@0: const GType* types); sl@0: sl@0: typedef struct _DBusGProxy DBusGProxy; sl@0: typedef struct _DBusGProxyClass DBusGProxyClass; sl@0: sl@0: #define DBUS_TYPE_G_PROXY (dbus_g_proxy_get_type ()) sl@0: #define DBUS_G_PROXY(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), DBUS_TYPE_G_PROXY, DBusGProxy)) sl@0: #define DBUS_G_PROXY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), DBUS_TYPE_G_PROXY, DBusGProxyClass)) sl@0: #define DBUS_IS_G_PROXY(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), DBUS_TYPE_G_PROXY)) sl@0: #define DBUS_IS_G_PROXY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), DBUS_TYPE_G_PROXY)) sl@0: #define DBUS_G_PROXY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), DBUS_TYPE_G_PROXY, DBusGProxyClass)) sl@0: sl@0: struct _DBusGProxy sl@0: { sl@0: GObject parent; sl@0: }; sl@0: sl@0: struct _DBusGProxyClass sl@0: { sl@0: GObjectClass parent_class; /**< Parent class */ sl@0: }; sl@0: sl@0: typedef struct _DBusGProxyCall DBusGProxyCall; sl@0: typedef void (* DBusGProxyCallNotify) (DBusGProxy *proxy, sl@0: DBusGProxyCall *call_id, sl@0: void *user_data); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: GType dbus_g_proxy_get_type (void) G_GNUC_CONST; sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGProxy* dbus_g_proxy_new_for_name (DBusGConnection *connection, sl@0: const char *name, sl@0: const char *path, sl@0: const char *interface); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGProxy* dbus_g_proxy_new_for_name_owner (DBusGConnection *connection, sl@0: const char *name, sl@0: const char *path, sl@0: const char *interface, sl@0: GError **error); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGProxy* dbus_g_proxy_new_from_proxy (DBusGProxy *proxy, sl@0: const char *interface, sl@0: const char *path_name); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGProxy* dbus_g_proxy_new_for_peer (DBusGConnection *connection, sl@0: const char *path_name, sl@0: const char *interface_name); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_proxy_set_interface (DBusGProxy *proxy, sl@0: const char *interface_name); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_proxy_add_signal (DBusGProxy *proxy, sl@0: const char *signal_name, sl@0: GType first_type, sl@0: ...); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_proxy_connect_signal (DBusGProxy *proxy, sl@0: const char *signal_name, sl@0: GCallback handler, sl@0: void *data, sl@0: GClosureNotify free_data_func); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_proxy_disconnect_signal (DBusGProxy *proxy, sl@0: const char *signal_name, sl@0: GCallback handler, sl@0: void *data); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: gboolean dbus_g_proxy_call (DBusGProxy *proxy, sl@0: const char *method, sl@0: GError **error, sl@0: GType first_arg_type, sl@0: ...); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: gboolean dbus_g_proxy_call_with_timeout (DBusGProxy *proxy, sl@0: const char *method, sl@0: int timeout, sl@0: GError **error, sl@0: GType first_arg_type, sl@0: ...); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_proxy_call_no_reply (DBusGProxy *proxy, sl@0: const char *method, sl@0: GType first_arg_type, sl@0: ...); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGProxyCall * dbus_g_proxy_begin_call (DBusGProxy *proxy, sl@0: const char *method, sl@0: DBusGProxyCallNotify notify, sl@0: gpointer data, sl@0: GDestroyNotify destroy, sl@0: GType first_arg_type, sl@0: ...); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: DBusGProxyCall * dbus_g_proxy_begin_call_with_timeout (DBusGProxy *proxy, sl@0: const char *method, sl@0: DBusGProxyCallNotify notify, sl@0: gpointer user_data, sl@0: GDestroyNotify destroy, sl@0: int timeout, sl@0: GType first_arg_type, sl@0: ...); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: gboolean dbus_g_proxy_end_call (DBusGProxy *proxy, sl@0: DBusGProxyCall *call, sl@0: GError **error, sl@0: GType first_arg_type, sl@0: ...); sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_proxy_cancel_call (DBusGProxy *proxy, sl@0: DBusGProxyCall *call); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: const char* dbus_g_proxy_get_path (DBusGProxy *proxy); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: const char* dbus_g_proxy_get_bus_name (DBusGProxy *proxy); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: const char* dbus_g_proxy_get_interface (DBusGProxy *proxy); sl@0: sl@0: typedef struct _DBusGMethodInvocation DBusGMethodInvocation; sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_method_return (DBusGMethodInvocation *context, ...); sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: IMPORT_C sl@0: #endif sl@0: void dbus_g_method_return_error (DBusGMethodInvocation *context, GError *error); sl@0: sl@0: /* Probably possible to replace this with a closure */ sl@0: typedef struct { sl@0: GCallback cb; sl@0: gpointer userdata; sl@0: } DBusGAsyncData; sl@0: sl@0: #undef DBUS_INSIDE_DBUS_GLIB_H sl@0: sl@0: G_END_DECLS sl@0: sl@0: #endif /* DBUS_GLIB_H */