sl@0
|
1 |
/* -*- mode: C; c-file-style: "gnu" -*- */
|
sl@0
|
2 |
/* dbus-glib.c General GLib binding stuff
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (C) 2004 Red Hat, Inc.
|
sl@0
|
5 |
* Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
6 |
* Licensed under the Academic Free License version 2.1
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* This program is free software; you can redistribute it and/or modify
|
sl@0
|
9 |
* it under the terms of the GNU General Public License as published by
|
sl@0
|
10 |
* the Free Software Foundation; either version 2 of the License, or
|
sl@0
|
11 |
* (at your option) any later version.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* This program is distributed in the hope that it will be useful,
|
sl@0
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
sl@0
|
16 |
* GNU General Public License for more details.
|
sl@0
|
17 |
*
|
sl@0
|
18 |
* You should have received a copy of the GNU General Public License
|
sl@0
|
19 |
* along with this program; if not, write to the Free Software
|
sl@0
|
20 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
sl@0
|
21 |
*
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef __SYMBIAN32__
|
sl@0
|
25 |
#include <config.h>
|
sl@0
|
26 |
#else
|
sl@0
|
27 |
#include "config.h"
|
sl@0
|
28 |
#endif //__SYMBIAN32__
|
sl@0
|
29 |
#include "dbus-glib.h"
|
sl@0
|
30 |
#include "dbus-glib-lowlevel.h"
|
sl@0
|
31 |
#include "dbus-gtest.h"
|
sl@0
|
32 |
#include "dbus-gutils.h"
|
sl@0
|
33 |
#include "dbus-gobject.h"
|
sl@0
|
34 |
#include <string.h>
|
sl@0
|
35 |
|
sl@0
|
36 |
#ifndef __SYMBIAN32__
|
sl@0
|
37 |
#include <libintl.h>
|
sl@0
|
38 |
#define _(x) dgettext (GETTEXT_PACKAGE, x)
|
sl@0
|
39 |
#define N_(x) x
|
sl@0
|
40 |
#else
|
sl@0
|
41 |
|
sl@0
|
42 |
#define _(x) x
|
sl@0
|
43 |
#define N_(x) x
|
sl@0
|
44 |
#endif
|
sl@0
|
45 |
|
sl@0
|
46 |
#ifdef __SYMBIAN32__
|
sl@0
|
47 |
#include "libdbus_glib_wsd_solution.h"
|
sl@0
|
48 |
#endif
|
sl@0
|
49 |
|
sl@0
|
50 |
/**
|
sl@0
|
51 |
* SECTION:dbus-gconnection
|
sl@0
|
52 |
* @short_description: DBus Connection
|
sl@0
|
53 |
* @see_also: #DBusConnection
|
sl@0
|
54 |
* @stability: Stable
|
sl@0
|
55 |
*
|
sl@0
|
56 |
* A #DBusGConnection is a boxed type abstracting a DBusConnection.
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
* dbus_g_connection_flush:
|
sl@0
|
61 |
* @connection: the #DBusGConnection to flush
|
sl@0
|
62 |
*
|
sl@0
|
63 |
* Blocks until outgoing calls and signal emissions have been sent.
|
sl@0
|
64 |
*/
|
sl@0
|
65 |
#ifdef __SYMBIAN32__
|
sl@0
|
66 |
EXPORT_C
|
sl@0
|
67 |
#endif
|
sl@0
|
68 |
void
|
sl@0
|
69 |
dbus_g_connection_flush (DBusGConnection *connection)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
dbus_connection_flush (DBUS_CONNECTION_FROM_G_CONNECTION (connection));
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
* dbus_g_connection_ref:
|
sl@0
|
76 |
* @gconnection the #DBusGConnection to ref
|
sl@0
|
77 |
*
|
sl@0
|
78 |
* Increment refcount on a #DBusGConnection
|
sl@0
|
79 |
*
|
sl@0
|
80 |
* Returns: the connection that was ref'd
|
sl@0
|
81 |
*/
|
sl@0
|
82 |
#ifdef __SYMBIAN32__
|
sl@0
|
83 |
EXPORT_C
|
sl@0
|
84 |
#endif
|
sl@0
|
85 |
DBusGConnection*
|
sl@0
|
86 |
dbus_g_connection_ref (DBusGConnection *gconnection)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
DBusConnection *c;
|
sl@0
|
89 |
|
sl@0
|
90 |
c = DBUS_CONNECTION_FROM_G_CONNECTION (gconnection);
|
sl@0
|
91 |
dbus_connection_ref (c);
|
sl@0
|
92 |
return gconnection;
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
* dbus_g_connection_unref:
|
sl@0
|
98 |
* @gconnection: the connection to unref
|
sl@0
|
99 |
*
|
sl@0
|
100 |
* Decrement refcount on a #DBusGConnection
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
#ifdef __SYMBIAN32__
|
sl@0
|
103 |
EXPORT_C
|
sl@0
|
104 |
#endif
|
sl@0
|
105 |
void
|
sl@0
|
106 |
dbus_g_connection_unref (DBusGConnection *gconnection)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
DBusConnection *c;
|
sl@0
|
109 |
|
sl@0
|
110 |
c = DBUS_CONNECTION_FROM_G_CONNECTION (gconnection);
|
sl@0
|
111 |
dbus_connection_unref (c);
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
|
sl@0
|
115 |
/**
|
sl@0
|
116 |
* SECTION:dbus-gmessage
|
sl@0
|
117 |
* @short_description: DBus Message
|
sl@0
|
118 |
* @see_also: #DBusMessage
|
sl@0
|
119 |
* @stability: Stable
|
sl@0
|
120 |
*
|
sl@0
|
121 |
* A #DBusGConnection is a boxed type abstracting a DBusMessage.
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
* dbus_g_message_ref:
|
sl@0
|
126 |
* @gmessage: the message to ref
|
sl@0
|
127 |
*
|
sl@0
|
128 |
* Increment refcount on a #DBusGMessage
|
sl@0
|
129 |
*
|
sl@0
|
130 |
* Returns: the message that was ref'd
|
sl@0
|
131 |
*/
|
sl@0
|
132 |
#ifdef __SYMBIAN32__
|
sl@0
|
133 |
EXPORT_C
|
sl@0
|
134 |
#endif
|
sl@0
|
135 |
DBusGMessage*
|
sl@0
|
136 |
dbus_g_message_ref (DBusGMessage *gmessage)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
DBusMessage *c;
|
sl@0
|
139 |
|
sl@0
|
140 |
c = DBUS_MESSAGE_FROM_G_MESSAGE (gmessage);
|
sl@0
|
141 |
dbus_message_ref (c);
|
sl@0
|
142 |
return gmessage;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
* dbus_g_message_unref:
|
sl@0
|
147 |
* @gmessage: the message to unref
|
sl@0
|
148 |
*
|
sl@0
|
149 |
* Decrement refcount on a #DBusGMessage
|
sl@0
|
150 |
*/
|
sl@0
|
151 |
#ifdef __SYMBIAN32__
|
sl@0
|
152 |
EXPORT_C
|
sl@0
|
153 |
#endif
|
sl@0
|
154 |
void
|
sl@0
|
155 |
dbus_g_message_unref (DBusGMessage *gmessage)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
DBusMessage *c;
|
sl@0
|
158 |
|
sl@0
|
159 |
c = DBUS_MESSAGE_FROM_G_MESSAGE (gmessage);
|
sl@0
|
160 |
dbus_message_unref (c);
|
sl@0
|
161 |
}
|
sl@0
|
162 |
|
sl@0
|
163 |
/**
|
sl@0
|
164 |
* SECTION:dbus-gerror
|
sl@0
|
165 |
* @short_description: DBus GError
|
sl@0
|
166 |
* @see_also: #GError
|
sl@0
|
167 |
* @stability: Stable
|
sl@0
|
168 |
*
|
sl@0
|
169 |
* #DBusGError is the #GError used by DBus.
|
sl@0
|
170 |
*/
|
sl@0
|
171 |
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
* dbus_g_error_quark:
|
sl@0
|
174 |
*
|
sl@0
|
175 |
* The implementation of #DBUS_GERROR error domain. See documentation
|
sl@0
|
176 |
* for #GError in GLib reference manual.
|
sl@0
|
177 |
*
|
sl@0
|
178 |
* Returns: the error domain quark for use with #GError
|
sl@0
|
179 |
*/
|
sl@0
|
180 |
|
sl@0
|
181 |
#if EMULATOR
|
sl@0
|
182 |
GET_STATIC_VAR_FROM_TLS(quark,dbus_glib,GQuark )
|
sl@0
|
183 |
#define quark (*GET_DBUS_WSD_VAR_NAME(quark,dbus_glib,s)())
|
sl@0
|
184 |
|
sl@0
|
185 |
#endif
|
sl@0
|
186 |
#ifdef __SYMBIAN32__
|
sl@0
|
187 |
EXPORT_C
|
sl@0
|
188 |
#endif
|
sl@0
|
189 |
GQuark
|
sl@0
|
190 |
dbus_g_error_quark (void)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
#ifndef EMULATOR
|
sl@0
|
193 |
static GQuark quark=0;
|
sl@0
|
194 |
#endif
|
sl@0
|
195 |
if (quark == 0)
|
sl@0
|
196 |
quark = g_quark_from_static_string ("dbus-glib-error-quark");
|
sl@0
|
197 |
return quark;
|
sl@0
|
198 |
}
|
sl@0
|
199 |
|
sl@0
|
200 |
/**
|
sl@0
|
201 |
* dbus_g_error_has_name:
|
sl@0
|
202 |
* @error: the GError given from the remote method
|
sl@0
|
203 |
* @name: the D-BUS error name
|
sl@0
|
204 |
* @msg: the D-BUS error detailed message
|
sl@0
|
205 |
*
|
sl@0
|
206 |
* Determine whether D-BUS error name for a remote exception matches
|
sl@0
|
207 |
* the given name. This function is intended to be invoked on a
|
sl@0
|
208 |
* GError returned from an invocation of a remote method, e.g. via
|
sl@0
|
209 |
* dbus_g_proxy_end_call. It will silently return FALSE for errors
|
sl@0
|
210 |
* which are not remote D-BUS exceptions (i.e. with a domain other
|
sl@0
|
211 |
* than DBUS_GERROR or a code other than
|
sl@0
|
212 |
* DBUS_GERROR_REMOTE_EXCEPTION).
|
sl@0
|
213 |
*
|
sl@0
|
214 |
* Returns: TRUE iff the remote error has the given name
|
sl@0
|
215 |
*/
|
sl@0
|
216 |
#ifdef __SYMBIAN32__
|
sl@0
|
217 |
EXPORT_C
|
sl@0
|
218 |
#endif
|
sl@0
|
219 |
gboolean
|
sl@0
|
220 |
dbus_g_error_has_name (GError *error, const char *name)
|
sl@0
|
221 |
{
|
sl@0
|
222 |
g_return_val_if_fail (error != NULL, FALSE);
|
sl@0
|
223 |
|
sl@0
|
224 |
if (error->domain != DBUS_GERROR
|
sl@0
|
225 |
|| error->code != DBUS_GERROR_REMOTE_EXCEPTION)
|
sl@0
|
226 |
return FALSE;
|
sl@0
|
227 |
|
sl@0
|
228 |
return !strcmp (dbus_g_error_get_name (error), name);
|
sl@0
|
229 |
}
|
sl@0
|
230 |
|
sl@0
|
231 |
/**
|
sl@0
|
232 |
* dbus_g_error_get_name:
|
sl@0
|
233 |
* @error: the #GError given from the remote method
|
sl@0
|
234 |
* @name: the D-BUS error name
|
sl@0
|
235 |
* @msg: the D-BUS error detailed message
|
sl@0
|
236 |
*
|
sl@0
|
237 |
* This function may only be invoked on a #GError returned from an
|
sl@0
|
238 |
* invocation of a remote method, e.g. via dbus_g_proxy_end_call.
|
sl@0
|
239 |
* Moreover, you must ensure that the error's domain is #DBUS_GERROR,
|
sl@0
|
240 |
* and the code is #DBUS_GERROR_REMOTE_EXCEPTION.
|
sl@0
|
241 |
*
|
sl@0
|
242 |
* Returns: the D-BUS name for a remote exception.
|
sl@0
|
243 |
*/
|
sl@0
|
244 |
#ifdef __SYMBIAN32__
|
sl@0
|
245 |
EXPORT_C
|
sl@0
|
246 |
#endif
|
sl@0
|
247 |
const char *
|
sl@0
|
248 |
dbus_g_error_get_name (GError *error)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
g_return_val_if_fail (error != NULL, NULL);
|
sl@0
|
251 |
g_return_val_if_fail (error->domain == DBUS_GERROR, NULL);
|
sl@0
|
252 |
g_return_val_if_fail (error->code == DBUS_GERROR_REMOTE_EXCEPTION, NULL);
|
sl@0
|
253 |
|
sl@0
|
254 |
return error->message + strlen (error->message) + 1;
|
sl@0
|
255 |
}
|
sl@0
|
256 |
|
sl@0
|
257 |
/**
|
sl@0
|
258 |
* dbus_connection_get_g_type:
|
sl@0
|
259 |
* Get the GLib type ID for a #DBusConnection boxed type.
|
sl@0
|
260 |
*
|
sl@0
|
261 |
* Returns: the GLib type
|
sl@0
|
262 |
*/
|
sl@0
|
263 |
/*
|
sl@0
|
264 |
#if EMULATOR
|
sl@0
|
265 |
GET_STATIC_VAR_FROM_TLS(our_type,dbus_glib,GType )
|
sl@0
|
266 |
#define our_type (*GET_DBUS_WSD_VAR_NAME(our_type,dbus_glib,p)())
|
sl@0
|
267 |
#endif
|
sl@0
|
268 |
*/
|
sl@0
|
269 |
|
sl@0
|
270 |
#ifdef __SYMBIAN32__
|
sl@0
|
271 |
EXPORT_C
|
sl@0
|
272 |
#endif
|
sl@0
|
273 |
GType
|
sl@0
|
274 |
dbus_connection_get_g_type (void)
|
sl@0
|
275 |
{
|
sl@0
|
276 |
#ifndef EMULATOR
|
sl@0
|
277 |
|
sl@0
|
278 |
static GType our_type = 0;
|
sl@0
|
279 |
#else
|
sl@0
|
280 |
// RETURN_WSD_VAR(our_type,dbus_glib,p) //(libdbus_glib_ImpurePtr()->GET_DBUS_WSD_VAR_NAME(var,filename,prefix))
|
sl@0
|
281 |
// #define GET_DBUS_WSD_VAR_NAME(var,filename,prefix) _##prefix##_##filename##_##var
|
sl@0
|
282 |
#ifdef our_type
|
sl@0
|
283 |
#undef our_type
|
sl@0
|
284 |
#endif
|
sl@0
|
285 |
#define our_type RETURN_WSD_VAR(our_type,dbus_glib,p)
|
sl@0
|
286 |
// #define our_type (*GET_DBUS_WSD_VAR_NAME(our_type,dbus_glib,p)()) //(*_p_dbus_glib_our_type())
|
sl@0
|
287 |
|
sl@0
|
288 |
|
sl@0
|
289 |
#endif
|
sl@0
|
290 |
|
sl@0
|
291 |
|
sl@0
|
292 |
|
sl@0
|
293 |
if (our_type == 0)
|
sl@0
|
294 |
our_type = g_boxed_type_register_static ("DBusConnection",
|
sl@0
|
295 |
(GBoxedCopyFunc) dbus_connection_ref,
|
sl@0
|
296 |
(GBoxedFreeFunc) dbus_connection_unref);
|
sl@0
|
297 |
|
sl@0
|
298 |
return our_type;
|
sl@0
|
299 |
|
sl@0
|
300 |
}
|
sl@0
|
301 |
|
sl@0
|
302 |
/**
|
sl@0
|
303 |
* dbus_message_get_g_type:
|
sl@0
|
304 |
* Get the GLib type ID for a #DBusMessage boxed type.
|
sl@0
|
305 |
*
|
sl@0
|
306 |
* Returns: the GLib type
|
sl@0
|
307 |
*/
|
sl@0
|
308 |
|
sl@0
|
309 |
/*
|
sl@0
|
310 |
#if EMULATOR
|
sl@0
|
311 |
GET_STATIC_VAR_FROM_TLS(out_type,dbus_glib,GType )
|
sl@0
|
312 |
#define our_type (*GET_DBUS_WSD_VAR_NAME(our_type,dbus_glib,q)())
|
sl@0
|
313 |
#endif*/
|
sl@0
|
314 |
|
sl@0
|
315 |
#ifdef __SYMBIAN32__
|
sl@0
|
316 |
EXPORT_C
|
sl@0
|
317 |
#endif
|
sl@0
|
318 |
GType
|
sl@0
|
319 |
dbus_message_get_g_type (void)
|
sl@0
|
320 |
{
|
sl@0
|
321 |
|
sl@0
|
322 |
#ifndef EMULATOR
|
sl@0
|
323 |
static GType our_type = 0;
|
sl@0
|
324 |
#else
|
sl@0
|
325 |
#ifdef our_type
|
sl@0
|
326 |
#undef our_type
|
sl@0
|
327 |
#endif
|
sl@0
|
328 |
#define our_type RETURN_WSD_VAR(our_type,dbus_glib,q)
|
sl@0
|
329 |
#endif
|
sl@0
|
330 |
|
sl@0
|
331 |
|
sl@0
|
332 |
if (our_type == 0)
|
sl@0
|
333 |
our_type = g_boxed_type_register_static ("DBusMessage",
|
sl@0
|
334 |
(GBoxedCopyFunc) dbus_message_ref,
|
sl@0
|
335 |
(GBoxedFreeFunc) dbus_message_unref);
|
sl@0
|
336 |
|
sl@0
|
337 |
return our_type;
|
sl@0
|
338 |
}
|
sl@0
|
339 |
|
sl@0
|
340 |
/**
|
sl@0
|
341 |
* dbus_g_connection_get_g_type:
|
sl@0
|
342 |
* Get the GLib type ID for a DBusGConnection boxed type.
|
sl@0
|
343 |
*
|
sl@0
|
344 |
* Returns: the GLib type
|
sl@0
|
345 |
*/
|
sl@0
|
346 |
|
sl@0
|
347 |
|
sl@0
|
348 |
#ifdef __SYMBIAN32__
|
sl@0
|
349 |
EXPORT_C
|
sl@0
|
350 |
#endif
|
sl@0
|
351 |
GType
|
sl@0
|
352 |
dbus_g_connection_get_g_type (void)
|
sl@0
|
353 |
{
|
sl@0
|
354 |
#ifndef EMULATOR
|
sl@0
|
355 |
static GType our_type = 0;
|
sl@0
|
356 |
#else
|
sl@0
|
357 |
#ifdef our_type
|
sl@0
|
358 |
#undef our_type
|
sl@0
|
359 |
#endif
|
sl@0
|
360 |
#define our_type RETURN_WSD_VAR(our_type,dbus_glib,r)
|
sl@0
|
361 |
#endif
|
sl@0
|
362 |
|
sl@0
|
363 |
|
sl@0
|
364 |
if (our_type == 0)
|
sl@0
|
365 |
our_type = g_boxed_type_register_static ("DBusGConnection",
|
sl@0
|
366 |
(GBoxedCopyFunc) dbus_g_connection_ref,
|
sl@0
|
367 |
(GBoxedFreeFunc) dbus_g_connection_unref);
|
sl@0
|
368 |
|
sl@0
|
369 |
return our_type;
|
sl@0
|
370 |
}
|
sl@0
|
371 |
|
sl@0
|
372 |
/**
|
sl@0
|
373 |
* dbus_g_message_get_g_type:
|
sl@0
|
374 |
* Get the GLib type ID for a #DBusGMessage boxed type.
|
sl@0
|
375 |
*
|
sl@0
|
376 |
* Returns: the GLib type
|
sl@0
|
377 |
*/
|
sl@0
|
378 |
#ifdef __SYMBIAN32__
|
sl@0
|
379 |
EXPORT_C
|
sl@0
|
380 |
#endif
|
sl@0
|
381 |
GType
|
sl@0
|
382 |
dbus_g_message_get_g_type (void)
|
sl@0
|
383 |
{
|
sl@0
|
384 |
#ifndef EMULATOR
|
sl@0
|
385 |
static GType our_type = 0;
|
sl@0
|
386 |
#else
|
sl@0
|
387 |
#ifdef our_type
|
sl@0
|
388 |
#undef our_type
|
sl@0
|
389 |
#endif
|
sl@0
|
390 |
#define our_type RETURN_WSD_VAR(our_type,dbus_glib,s)
|
sl@0
|
391 |
|
sl@0
|
392 |
#endif
|
sl@0
|
393 |
|
sl@0
|
394 |
if (our_type == 0)
|
sl@0
|
395 |
our_type = g_boxed_type_register_static ("DBusGMessage",
|
sl@0
|
396 |
(GBoxedCopyFunc) dbus_g_message_ref,
|
sl@0
|
397 |
(GBoxedFreeFunc) dbus_g_message_unref);
|
sl@0
|
398 |
|
sl@0
|
399 |
return our_type;
|
sl@0
|
400 |
}
|
sl@0
|
401 |
|
sl@0
|
402 |
/**
|
sl@0
|
403 |
* SECTION:dbus-glib-lowlevel
|
sl@0
|
404 |
* @short_description: DBus lower level functions
|
sl@0
|
405 |
* @stability: Unstable
|
sl@0
|
406 |
*
|
sl@0
|
407 |
* These functions can be used to access lower level of DBus.
|
sl@0
|
408 |
*/
|
sl@0
|
409 |
|
sl@0
|
410 |
/**
|
sl@0
|
411 |
* dbus_g_connection_get_connection:
|
sl@0
|
412 |
* @gconnection: a #DBusGConnection
|
sl@0
|
413 |
*
|
sl@0
|
414 |
* Get the #DBusConnection corresponding to this #DBusGConnection.
|
sl@0
|
415 |
* The return value does not have its refcount incremented.
|
sl@0
|
416 |
*
|
sl@0
|
417 |
* Returns: #DBusConnection
|
sl@0
|
418 |
*/
|
sl@0
|
419 |
#ifdef __SYMBIAN32__
|
sl@0
|
420 |
EXPORT_C
|
sl@0
|
421 |
#endif
|
sl@0
|
422 |
DBusConnection*
|
sl@0
|
423 |
dbus_g_connection_get_connection (DBusGConnection *gconnection)
|
sl@0
|
424 |
{
|
sl@0
|
425 |
g_return_val_if_fail (gconnection, NULL);
|
sl@0
|
426 |
return DBUS_CONNECTION_FROM_G_CONNECTION (gconnection);
|
sl@0
|
427 |
}
|
sl@0
|
428 |
|
sl@0
|
429 |
#if EMULATOR
|
sl@0
|
430 |
dbus_int32_t GET_DBUS_WSD_VAR_NAME(_dbus_gmain_connection_slot,dbus_gmain,dbus_int32_t)();
|
sl@0
|
431 |
#define _dbus_gmain_connection_slot (GET_DBUS_WSD_VAR_NAME(_dbus_gmain_connection_slot,dbus_gmain,g)())
|
sl@0
|
432 |
#else
|
sl@0
|
433 |
extern dbus_int32_t _dbus_gmain_connection_slot;
|
sl@0
|
434 |
#endif
|
sl@0
|
435 |
/**
|
sl@0
|
436 |
* dbus_connection_get_g_connection:
|
sl@0
|
437 |
* @connection: a #DBusConnection
|
sl@0
|
438 |
*
|
sl@0
|
439 |
* Get the #DBusGConnection corresponding to this #DBusConnection. This only
|
sl@0
|
440 |
* makes sense if the #DBusConnection was originally a #DBusGConnection that was
|
sl@0
|
441 |
* registered with the GLib main loop. The return value does not have its
|
sl@0
|
442 |
* refcount incremented.
|
sl@0
|
443 |
*
|
sl@0
|
444 |
* Returns: #DBusGConnection
|
sl@0
|
445 |
*/
|
sl@0
|
446 |
#ifdef __SYMBIAN32__
|
sl@0
|
447 |
EXPORT_C
|
sl@0
|
448 |
#endif
|
sl@0
|
449 |
DBusGConnection*
|
sl@0
|
450 |
dbus_connection_get_g_connection (DBusConnection *connection)
|
sl@0
|
451 |
{
|
sl@0
|
452 |
g_return_val_if_fail (connection, NULL);
|
sl@0
|
453 |
g_return_val_if_fail (dbus_connection_get_data (connection, _dbus_gmain_connection_slot), NULL);
|
sl@0
|
454 |
|
sl@0
|
455 |
return DBUS_G_CONNECTION_FROM_CONNECTION (connection);
|
sl@0
|
456 |
}
|
sl@0
|
457 |
|
sl@0
|
458 |
|
sl@0
|
459 |
/**
|
sl@0
|
460 |
* dbus_g_message_get_message:
|
sl@0
|
461 |
* @gmessage: a #DBusGMessage
|
sl@0
|
462 |
*
|
sl@0
|
463 |
* Get the #DBusMessage corresponding to this #DBusGMessage.
|
sl@0
|
464 |
* The return value does not have its refcount incremented.
|
sl@0
|
465 |
*
|
sl@0
|
466 |
* Returns: #DBusMessage
|
sl@0
|
467 |
*/
|
sl@0
|
468 |
#ifdef __SYMBIAN32__
|
sl@0
|
469 |
EXPORT_C
|
sl@0
|
470 |
#endif
|
sl@0
|
471 |
DBusMessage*
|
sl@0
|
472 |
dbus_g_message_get_message (DBusGMessage *gmessage)
|
sl@0
|
473 |
{
|
sl@0
|
474 |
return DBUS_MESSAGE_FROM_G_MESSAGE (gmessage);
|
sl@0
|
475 |
}
|
sl@0
|
476 |
|
sl@0
|
477 |
#ifdef DBUS_BUILD_TESTS
|
sl@0
|
478 |
|
sl@0
|
479 |
/**
|
sl@0
|
480 |
* @ingroup DBusGLibInternals
|
sl@0
|
481 |
* Unit test for general glib stuff
|
sl@0
|
482 |
* Returns: #TRUE on success.
|
sl@0
|
483 |
*/
|
sl@0
|
484 |
#ifdef __SYMBIAN32__
|
sl@0
|
485 |
EXPORT_C
|
sl@0
|
486 |
#endif
|
sl@0
|
487 |
gboolean
|
sl@0
|
488 |
_dbus_glib_test (const char *test_data_dir)
|
sl@0
|
489 |
{
|
sl@0
|
490 |
DBusError err;
|
sl@0
|
491 |
GError *gerror = NULL;
|
sl@0
|
492 |
|
sl@0
|
493 |
dbus_error_init (&err);
|
sl@0
|
494 |
dbus_set_error_const (&err, DBUS_ERROR_NO_MEMORY, "Out of memory!");
|
sl@0
|
495 |
|
sl@0
|
496 |
dbus_set_g_error (&gerror, &err);
|
sl@0
|
497 |
g_assert (gerror != NULL);
|
sl@0
|
498 |
g_assert (gerror->domain == DBUS_GERROR);
|
sl@0
|
499 |
g_assert (gerror->code == DBUS_GERROR_NO_MEMORY);
|
sl@0
|
500 |
g_assert (!strcmp (gerror->message, "Out of memory!"));
|
sl@0
|
501 |
|
sl@0
|
502 |
dbus_error_init (&err);
|
sl@0
|
503 |
g_clear_error (&gerror);
|
sl@0
|
504 |
|
sl@0
|
505 |
return TRUE;
|
sl@0
|
506 |
}
|
sl@0
|
507 |
|
sl@0
|
508 |
#endif /* DBUS_BUILD_TESTS */
|