os/ossrv/ossrv_pub/dbus-glib/inc/dbus-glib.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* -*- mode: C; c-file-style: "gnu" -*- */
sl@0
     2
/* dbus-glib.h GLib integration
sl@0
     3
 *
sl@0
     4
 * Copyright (C) 2002, 2003  CodeFactory AB
sl@0
     5
 * Copyright (C) 2003, 2004 Red Hat, Inc.
sl@0
     6
 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
sl@0
     7
 * Licensed under the Academic Free License version 2.1
sl@0
     8
 * 
sl@0
     9
 * This program is free software; you can redistribute it and/or modify
sl@0
    10
 * it under the terms of the GNU General Public License as published by
sl@0
    11
 * the Free Software Foundation; either version 2 of the License, or
sl@0
    12
 * (at your option) any later version.
sl@0
    13
 *
sl@0
    14
 * This program is distributed in the hope that it will be useful,
sl@0
    15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
sl@0
    17
 * GNU General Public License for more details.
sl@0
    18
 * 
sl@0
    19
 * You should have received a copy of the GNU General Public License
sl@0
    20
 * along with this program; if not, write to the Free Software
sl@0
    21
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
sl@0
    22
 *
sl@0
    23
 */
sl@0
    24
#ifndef DBUS_GLIB_H
sl@0
    25
#define DBUS_GLIB_H
sl@0
    26
sl@0
    27
#include <glib-object.h>
sl@0
    28
#include <dbus/dbus-shared.h>
sl@0
    29
sl@0
    30
G_BEGIN_DECLS
sl@0
    31
sl@0
    32
#define DBUS_INSIDE_DBUS_GLIB_H 1
sl@0
    33
sl@0
    34
sl@0
    35
/**
sl@0
    36
 * Convert to DBusConnection with dbus_g_connection_get_connection() in dbus-glib-lowlevel.h
sl@0
    37
 */
sl@0
    38
typedef struct _DBusGConnection DBusGConnection;
sl@0
    39
/**
sl@0
    40
 * Convert to DBusMessage with dbus_g_message_get_message() in dbus-glib-lowlevel.h
sl@0
    41
 */
sl@0
    42
typedef struct _DBusGMessage DBusGMessage;
sl@0
    43
sl@0
    44
sl@0
    45
#define DBUS_TYPE_G_CONNECTION   (dbus_g_connection_get_g_type ())
sl@0
    46
#define DBUS_TYPE_G_MESSAGE      (dbus_g_message_get_g_type ())
sl@0
    47
#ifdef __SYMBIAN32__
sl@0
    48
IMPORT_C
sl@0
    49
#endif
sl@0
    50
GType dbus_g_connection_get_g_type   (void) G_GNUC_CONST;
sl@0
    51
#ifdef __SYMBIAN32__
sl@0
    52
IMPORT_C
sl@0
    53
#endif
sl@0
    54
GType dbus_g_message_get_g_type      (void) G_GNUC_CONST;
sl@0
    55
sl@0
    56
sl@0
    57
#ifdef __SYMBIAN32__
sl@0
    58
IMPORT_C
sl@0
    59
#endif
sl@0
    60
DBusGConnection*  dbus_g_connection_ref          (DBusGConnection        *connection);
sl@0
    61
#ifdef __SYMBIAN32__
sl@0
    62
IMPORT_C
sl@0
    63
#endif
sl@0
    64
void              dbus_g_connection_unref        (DBusGConnection        *connection);
sl@0
    65
#ifdef __SYMBIAN32__
sl@0
    66
IMPORT_C
sl@0
    67
#endif
sl@0
    68
DBusGMessage*     dbus_g_message_ref             (DBusGMessage           *message);
sl@0
    69
#ifdef __SYMBIAN32__
sl@0
    70
IMPORT_C
sl@0
    71
#endif
sl@0
    72
void              dbus_g_message_unref           (DBusGMessage           *message);
sl@0
    73
sl@0
    74
#ifdef __SYMBIAN32__
sl@0
    75
IMPORT_C
sl@0
    76
#endif
sl@0
    77
void              dbus_g_connection_flush        (DBusGConnection        *connection);
sl@0
    78
sl@0
    79
#ifdef __SYMBIAN32__
sl@0
    80
IMPORT_C
sl@0
    81
#endif
sl@0
    82
GQuark dbus_g_error_quark (void);
sl@0
    83
#define DBUS_GERROR dbus_g_error_quark ()
sl@0
    84
sl@0
    85
typedef enum
sl@0
    86
{
sl@0
    87
#ifndef __SYMBIAN32__	
sl@0
    88
#include "dbus-glib-error-enum.h" 
sl@0
    89
#else
sl@0
    90
#include <dbus/dbus-glib-error-enum.h>
sl@0
    91
#endif //__SYMBIAN32__
sl@0
    92
} DBusGError;
sl@0
    93
sl@0
    94
#ifdef __SYMBIAN32__
sl@0
    95
IMPORT_C
sl@0
    96
#endif
sl@0
    97
gboolean         dbus_g_error_has_name    (GError      *error,
sl@0
    98
					   const char  *name);
sl@0
    99
#ifdef __SYMBIAN32__
sl@0
   100
IMPORT_C
sl@0
   101
#endif
sl@0
   102
const char *     dbus_g_error_get_name    (GError      *error);
sl@0
   103
sl@0
   104
#ifdef __SYMBIAN32__
sl@0
   105
IMPORT_C
sl@0
   106
#endif
sl@0
   107
void             dbus_g_thread_init (void);
sl@0
   108
sl@0
   109
#ifdef __SYMBIAN32__
sl@0
   110
IMPORT_C
sl@0
   111
#endif
sl@0
   112
DBusGConnection* dbus_g_connection_open (const gchar  *address,
sl@0
   113
                                         GError      **error);
sl@0
   114
#ifdef __SYMBIAN32__
sl@0
   115
IMPORT_C
sl@0
   116
#endif
sl@0
   117
DBusGConnection* dbus_g_bus_get         (DBusBusType   type,
sl@0
   118
                                         GError      **error);
sl@0
   119
sl@0
   120
typedef struct _DBusGObjectInfo DBusGObjectInfo;
sl@0
   121
typedef struct _DBusGMethodInfo DBusGMethodInfo;
sl@0
   122
sl@0
   123
/**
sl@0
   124
 * DBusGMethodInfo:
sl@0
   125
 * @function: C method to invoke
sl@0
   126
 * @marshaller: Marshaller to invoke method 
sl@0
   127
 * @data_offset: Offset into the introspection data
sl@0
   128
 *
sl@0
   129
 * Object typically generated by #dbus-binding-tool that
sl@0
   130
 * stores a mapping from introspection data to a
sl@0
   131
 * function pointer for a C method to be invoked.
sl@0
   132
 */
sl@0
   133
struct _DBusGMethodInfo
sl@0
   134
{
sl@0
   135
  GCallback                 function;    
sl@0
   136
  GClosureMarshal           marshaller;  
sl@0
   137
  int                       data_offset; 
sl@0
   138
};
sl@0
   139
sl@0
   140
/**
sl@0
   141
 * DBusGObjectInfo:
sl@0
   142
 * @format_version: Allows us to change the rest of this struct
sl@0
   143
 *   by adding DBusGObjectInfo2, DBusGObjectInfo3, etc.
sl@0
   144
 * @method_infos:  Array of method pointers 
sl@0
   145
 * @n_method_infos: Length of the infos array 
sl@0
   146
 * @data: Introspection data 
sl@0
   147
 * @exported_signals: Exported signals
sl@0
   148
 * @exported_properties: Exported properties 
sl@0
   149
 *
sl@0
   150
 * Introspection data for a #GObject, normally autogenerated by
sl@0
   151
 * a tool such as #dbus-binding-tool.
sl@0
   152
 */
sl@0
   153
struct _DBusGObjectInfo
sl@0
   154
{
sl@0
   155
  int   format_version;
sl@0
   156
                       
sl@0
   157
  const DBusGMethodInfo *method_infos;
sl@0
   158
  int   n_method_infos;                
sl@0
   159
  const char *data; 
sl@0
   160
  const char *exported_signals;  
sl@0
   161
  const char *exported_properties; 
sl@0
   162
};
sl@0
   163
sl@0
   164
#ifdef __SYMBIAN32__
sl@0
   165
IMPORT_C
sl@0
   166
#endif
sl@0
   167
void       dbus_g_object_type_install_info     (GType                 object_type,
sl@0
   168
                                                const DBusGObjectInfo *info);
sl@0
   169
sl@0
   170
#ifdef __SYMBIAN32__
sl@0
   171
IMPORT_C
sl@0
   172
#endif
sl@0
   173
void       dbus_g_error_domain_register        (GQuark                domain,
sl@0
   174
						const char *          default_iface,
sl@0
   175
						GType                 code_enum);
sl@0
   176
sl@0
   177
#ifdef __SYMBIAN32__
sl@0
   178
IMPORT_C
sl@0
   179
#endif
sl@0
   180
void       dbus_g_connection_register_g_object (DBusGConnection       *connection,
sl@0
   181
						const char            *at_path,
sl@0
   182
						GObject               *object);
sl@0
   183
#ifdef __SYMBIAN32__
sl@0
   184
IMPORT_C
sl@0
   185
#endif
sl@0
   186
GObject *  dbus_g_connection_lookup_g_object   (DBusGConnection       *connection,
sl@0
   187
						const char            *at_path);
sl@0
   188
sl@0
   189
#ifdef DBUS_COMPILATION
sl@0
   190
#include "dbus/dbus-gtype-specialized.h"
sl@0
   191
#else
sl@0
   192
#include <dbus/dbus-gtype-specialized.h>
sl@0
   193
#endif
sl@0
   194
sl@0
   195
/* definitions for some basic array types */
sl@0
   196
#define DBUS_TYPE_G_BOOLEAN_ARRAY  (dbus_g_type_get_collection ("GArray", G_TYPE_BOOLEAN))
sl@0
   197
#define DBUS_TYPE_G_UCHAR_ARRAY    (dbus_g_type_get_collection ("GArray", G_TYPE_UCHAR))
sl@0
   198
#define DBUS_TYPE_G_UINT_ARRAY     (dbus_g_type_get_collection ("GArray", G_TYPE_UINT))
sl@0
   199
#define DBUS_TYPE_G_INT_ARRAY      (dbus_g_type_get_collection ("GArray", G_TYPE_INT))
sl@0
   200
#define DBUS_TYPE_G_UINT64_ARRAY   (dbus_g_type_get_collection ("GArray", G_TYPE_UINT64))
sl@0
   201
#define DBUS_TYPE_G_INT64_ARRAY    (dbus_g_type_get_collection ("GArray", G_TYPE_INT64))
sl@0
   202
#define DBUS_TYPE_G_OBJECT_ARRAY   (dbus_g_type_get_collection ("GPtrArray", G_TYPE_OBJECT))
sl@0
   203
sl@0
   204
#define DBUS_TYPE_G_STRING_STRING_HASHTABLE (dbus_g_type_get_map ("GHashTable", G_TYPE_STRING, G_TYPE_STRING))
sl@0
   205
sl@0
   206
#ifdef __SYMBIAN32__
sl@0
   207
IMPORT_C
sl@0
   208
#endif
sl@0
   209
GType        dbus_g_object_path_get_g_type         (void) G_GNUC_CONST;
sl@0
   210
#define DBUS_TYPE_G_OBJECT_PATH (dbus_g_object_path_get_g_type ())
sl@0
   211
sl@0
   212
#ifdef __SYMBIAN32__
sl@0
   213
IMPORT_C
sl@0
   214
#endif
sl@0
   215
void         dbus_g_object_register_marshaller      (GClosureMarshal  marshaller,
sl@0
   216
						     GType            rettype,
sl@0
   217
						     ...);
sl@0
   218
void         dbus_g_object_register_marshaller_array(GClosureMarshal  marshaller,
sl@0
   219
						     GType            rettype,
sl@0
   220
						     guint            n_types,
sl@0
   221
						     const GType*     types);
sl@0
   222
sl@0
   223
typedef struct _DBusGProxy       DBusGProxy;
sl@0
   224
typedef struct _DBusGProxyClass  DBusGProxyClass;
sl@0
   225
sl@0
   226
#define DBUS_TYPE_G_PROXY              (dbus_g_proxy_get_type ())
sl@0
   227
#define DBUS_G_PROXY(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), DBUS_TYPE_G_PROXY, DBusGProxy))
sl@0
   228
#define DBUS_G_PROXY_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), DBUS_TYPE_G_PROXY, DBusGProxyClass))
sl@0
   229
#define DBUS_IS_G_PROXY(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), DBUS_TYPE_G_PROXY))
sl@0
   230
#define DBUS_IS_G_PROXY_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), DBUS_TYPE_G_PROXY))
sl@0
   231
#define DBUS_G_PROXY_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), DBUS_TYPE_G_PROXY, DBusGProxyClass))
sl@0
   232
sl@0
   233
struct _DBusGProxy
sl@0
   234
{
sl@0
   235
  GObject parent;
sl@0
   236
};
sl@0
   237
sl@0
   238
struct _DBusGProxyClass
sl@0
   239
{
sl@0
   240
  GObjectClass parent_class;  /**< Parent class */
sl@0
   241
};
sl@0
   242
sl@0
   243
typedef struct _DBusGProxyCall DBusGProxyCall;
sl@0
   244
typedef void (* DBusGProxyCallNotify) (DBusGProxy       *proxy,
sl@0
   245
				       DBusGProxyCall   *call_id,
sl@0
   246
				       void             *user_data);
sl@0
   247
sl@0
   248
#ifdef __SYMBIAN32__
sl@0
   249
IMPORT_C
sl@0
   250
#endif
sl@0
   251
GType             dbus_g_proxy_get_type              (void) G_GNUC_CONST;
sl@0
   252
#ifdef __SYMBIAN32__
sl@0
   253
IMPORT_C
sl@0
   254
#endif
sl@0
   255
DBusGProxy*       dbus_g_proxy_new_for_name          (DBusGConnection   *connection,
sl@0
   256
                                                      const char        *name,
sl@0
   257
                                                      const char        *path,
sl@0
   258
                                                      const char        *interface);
sl@0
   259
#ifdef __SYMBIAN32__
sl@0
   260
IMPORT_C
sl@0
   261
#endif
sl@0
   262
DBusGProxy*       dbus_g_proxy_new_for_name_owner    (DBusGConnection   *connection,
sl@0
   263
                                                      const char        *name,
sl@0
   264
                                                      const char        *path,
sl@0
   265
                                                      const char        *interface,
sl@0
   266
                                                      GError           **error);
sl@0
   267
#ifdef __SYMBIAN32__
sl@0
   268
IMPORT_C
sl@0
   269
#endif
sl@0
   270
DBusGProxy*       dbus_g_proxy_new_from_proxy        (DBusGProxy        *proxy,
sl@0
   271
                                                      const char        *interface,
sl@0
   272
                                                      const char        *path_name);
sl@0
   273
#ifdef __SYMBIAN32__
sl@0
   274
IMPORT_C
sl@0
   275
#endif
sl@0
   276
DBusGProxy*       dbus_g_proxy_new_for_peer          (DBusGConnection   *connection,
sl@0
   277
                                                      const char        *path_name,
sl@0
   278
                                                      const char        *interface_name);
sl@0
   279
sl@0
   280
#ifdef __SYMBIAN32__
sl@0
   281
IMPORT_C
sl@0
   282
#endif
sl@0
   283
void              dbus_g_proxy_set_interface         (DBusGProxy        *proxy,
sl@0
   284
						      const char        *interface_name);
sl@0
   285
#ifdef __SYMBIAN32__
sl@0
   286
IMPORT_C
sl@0
   287
#endif
sl@0
   288
void              dbus_g_proxy_add_signal            (DBusGProxy        *proxy,
sl@0
   289
						      const char        *signal_name,
sl@0
   290
						      GType              first_type, 
sl@0
   291
						      ...);
sl@0
   292
sl@0
   293
#ifdef __SYMBIAN32__
sl@0
   294
IMPORT_C
sl@0
   295
#endif
sl@0
   296
void              dbus_g_proxy_connect_signal        (DBusGProxy        *proxy,
sl@0
   297
                                                      const char        *signal_name,
sl@0
   298
                                                      GCallback          handler,
sl@0
   299
                                                      void              *data,
sl@0
   300
                                                      GClosureNotify     free_data_func);
sl@0
   301
#ifdef __SYMBIAN32__
sl@0
   302
IMPORT_C
sl@0
   303
#endif
sl@0
   304
void              dbus_g_proxy_disconnect_signal     (DBusGProxy        *proxy,
sl@0
   305
                                                      const char        *signal_name,
sl@0
   306
                                                      GCallback          handler,
sl@0
   307
                                                      void              *data);
sl@0
   308
sl@0
   309
#ifdef __SYMBIAN32__
sl@0
   310
IMPORT_C
sl@0
   311
#endif
sl@0
   312
gboolean          dbus_g_proxy_call                  (DBusGProxy        *proxy,
sl@0
   313
						      const char        *method,
sl@0
   314
						      GError           **error,
sl@0
   315
						      GType              first_arg_type,
sl@0
   316
						      ...);
sl@0
   317
sl@0
   318
#ifdef __SYMBIAN32__
sl@0
   319
IMPORT_C
sl@0
   320
#endif
sl@0
   321
gboolean          dbus_g_proxy_call_with_timeout     (DBusGProxy        *proxy,
sl@0
   322
				                      const char       *method,
sl@0
   323
	                   			      int timeout,
sl@0
   324
                   				      GError           **error,
sl@0
   325
                   				      GType              first_arg_type,
sl@0
   326
				                      ...);
sl@0
   327
sl@0
   328
#ifdef __SYMBIAN32__
sl@0
   329
IMPORT_C
sl@0
   330
#endif
sl@0
   331
void              dbus_g_proxy_call_no_reply         (DBusGProxy        *proxy,
sl@0
   332
                                                      const char        *method,
sl@0
   333
                                                      GType              first_arg_type,
sl@0
   334
                                                      ...);
sl@0
   335
sl@0
   336
#ifdef __SYMBIAN32__
sl@0
   337
IMPORT_C
sl@0
   338
#endif
sl@0
   339
DBusGProxyCall *  dbus_g_proxy_begin_call            (DBusGProxy        *proxy,
sl@0
   340
                                                      const char        *method,
sl@0
   341
						      DBusGProxyCallNotify notify,
sl@0
   342
						      gpointer           data,
sl@0
   343
						      GDestroyNotify     destroy,
sl@0
   344
                                                      GType              first_arg_type,
sl@0
   345
                                                      ...);
sl@0
   346
#ifdef __SYMBIAN32__
sl@0
   347
IMPORT_C
sl@0
   348
#endif
sl@0
   349
DBusGProxyCall * dbus_g_proxy_begin_call_with_timeout (DBusGProxy        *proxy,
sl@0
   350
		                                       const char       *method,
sl@0
   351
		                                       DBusGProxyCallNotify notify,
sl@0
   352
                                                       gpointer       user_data,
sl@0
   353
                                                       GDestroyNotify   destroy,
sl@0
   354
                                                       int timeout,
sl@0
   355
                                                       GType             first_arg_type,
sl@0
   356
				                       ...);
sl@0
   357
sl@0
   358
#ifdef __SYMBIAN32__
sl@0
   359
IMPORT_C
sl@0
   360
#endif
sl@0
   361
gboolean          dbus_g_proxy_end_call              (DBusGProxy        *proxy,
sl@0
   362
                                                      DBusGProxyCall    *call,
sl@0
   363
                                                      GError           **error,
sl@0
   364
                                                      GType              first_arg_type,
sl@0
   365
                                                      ...);
sl@0
   366
#ifdef __SYMBIAN32__
sl@0
   367
IMPORT_C
sl@0
   368
#endif
sl@0
   369
void              dbus_g_proxy_cancel_call           (DBusGProxy        *proxy,
sl@0
   370
                                                      DBusGProxyCall    *call);
sl@0
   371
sl@0
   372
#ifdef __SYMBIAN32__
sl@0
   373
IMPORT_C
sl@0
   374
#endif
sl@0
   375
const char*       dbus_g_proxy_get_path              (DBusGProxy        *proxy);
sl@0
   376
sl@0
   377
#ifdef __SYMBIAN32__
sl@0
   378
IMPORT_C
sl@0
   379
#endif
sl@0
   380
const char*       dbus_g_proxy_get_bus_name          (DBusGProxy        *proxy);
sl@0
   381
sl@0
   382
#ifdef __SYMBIAN32__
sl@0
   383
IMPORT_C
sl@0
   384
#endif
sl@0
   385
const char*       dbus_g_proxy_get_interface         (DBusGProxy        *proxy);
sl@0
   386
sl@0
   387
typedef struct _DBusGMethodInvocation DBusGMethodInvocation;
sl@0
   388
sl@0
   389
#ifdef __SYMBIAN32__
sl@0
   390
IMPORT_C
sl@0
   391
#endif
sl@0
   392
void              dbus_g_method_return               (DBusGMethodInvocation *context, ...);
sl@0
   393
sl@0
   394
#ifdef __SYMBIAN32__
sl@0
   395
IMPORT_C
sl@0
   396
#endif
sl@0
   397
void              dbus_g_method_return_error         (DBusGMethodInvocation *context, GError *error);
sl@0
   398
sl@0
   399
/* Probably possible to replace this with a closure */
sl@0
   400
typedef struct {
sl@0
   401
  GCallback cb;
sl@0
   402
  gpointer userdata;
sl@0
   403
} DBusGAsyncData;
sl@0
   404
sl@0
   405
#undef DBUS_INSIDE_DBUS_GLIB_H
sl@0
   406
sl@0
   407
G_END_DECLS
sl@0
   408
sl@0
   409
#endif /* DBUS_GLIB_H */