1 /* GDBus - GLib D-Bus Library
3 * Copyright (C) 2008-2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: David Zeuthen <davidz@redhat.com>
26 #include "gdbuserror.h"
28 #include "gioenumtypes.h"
30 #include "gdbusprivate.h"
37 * @short_description: Mapping D-Bus errors to and from GError
40 * All facilities that return errors from remote methods (such as
41 * g_dbus_connection_call_sync()) use #GError to represent both D-Bus
42 * errors (e.g. errors returned from the other peer) and locally
43 * in-process generated errors.
45 * To check if a returned #GError is an error from a remote peer, use
46 * g_dbus_error_is_remote_error(). To get the actual D-Bus error name,
47 * use g_dbus_error_get_remote_error(). Before presenting an error,
48 * always use g_dbus_error_strip_remote_error().
50 * In addition, facilities used to return errors to a remote peer also
51 * use #GError. See g_dbus_method_invocation_return_error() for
52 * discussion about how the D-Bus error name is set.
54 * Applications can associate a #GError error domain with a set of D-Bus errors in order to
55 * automatically map from D-Bus errors to #GError and back. This
56 * is typically done in the function returning the #GQuark for the
58 * |[<!-- language="C" -->
61 * #define FOO_BAR_ERROR (foo_bar_error_quark ())
62 * GQuark foo_bar_error_quark (void);
66 * FOO_BAR_ERROR_FAILED,
67 * FOO_BAR_ERROR_ANOTHER_ERROR,
68 * FOO_BAR_ERROR_SOME_THIRD_ERROR,
69 * FOO_BAR_N_ERRORS / *< skip >* /
74 * static const GDBusErrorEntry foo_bar_error_entries[] =
76 * {FOO_BAR_ERROR_FAILED, "org.project.Foo.Bar.Error.Failed"},
77 * {FOO_BAR_ERROR_ANOTHER_ERROR, "org.project.Foo.Bar.Error.AnotherError"},
78 * {FOO_BAR_ERROR_SOME_THIRD_ERROR, "org.project.Foo.Bar.Error.SomeThirdError"},
81 * // Ensure that every error code has an associated D-Bus error name
82 * G_STATIC_ASSERT (G_N_ELEMENTS (foo_bar_error_entries) == FOO_BAR_N_ERRORS);
85 * foo_bar_error_quark (void)
87 * static volatile gsize quark_volatile = 0;
88 * g_dbus_error_register_error_domain ("foo-bar-error-quark",
90 * foo_bar_error_entries,
91 * G_N_ELEMENTS (foo_bar_error_entries));
92 * return (GQuark) quark_volatile;
95 * With this setup, a D-Bus peer can transparently pass e.g. %FOO_BAR_ERROR_ANOTHER_ERROR and
96 * other peers will see the D-Bus error name org.project.Foo.Bar.Error.AnotherError.
98 * If the other peer is using GDBus, and has registered the association with
99 * g_dbus_error_register_error_domain() in advance (e.g. by invoking the %FOO_BAR_ERROR quark
100 * generation itself in the previous example) the peer will see also %FOO_BAR_ERROR_ANOTHER_ERROR instead
101 * of %G_IO_ERROR_DBUS_ERROR. Note that GDBus clients can still recover
102 * org.project.Foo.Bar.Error.AnotherError using g_dbus_error_get_remote_error().
104 * Note that the %G_DBUS_ERROR error domain is intended only
105 * for returning errors from a remote message bus process. Errors
106 * generated locally in-process by e.g. #GDBusConnection should use the
107 * %G_IO_ERROR domain.
110 static const GDBusErrorEntry g_dbus_error_entries
[] =
112 {G_DBUS_ERROR_FAILED
, "org.freedesktop.DBus.Error.Failed"},
113 {G_DBUS_ERROR_NO_MEMORY
, "org.freedesktop.DBus.Error.NoMemory"},
114 {G_DBUS_ERROR_SERVICE_UNKNOWN
, "org.freedesktop.DBus.Error.ServiceUnknown"},
115 {G_DBUS_ERROR_NAME_HAS_NO_OWNER
, "org.freedesktop.DBus.Error.NameHasNoOwner"},
116 {G_DBUS_ERROR_NO_REPLY
, "org.freedesktop.DBus.Error.NoReply"},
117 {G_DBUS_ERROR_IO_ERROR
, "org.freedesktop.DBus.Error.IOError"},
118 {G_DBUS_ERROR_BAD_ADDRESS
, "org.freedesktop.DBus.Error.BadAddress"},
119 {G_DBUS_ERROR_NOT_SUPPORTED
, "org.freedesktop.DBus.Error.NotSupported"},
120 {G_DBUS_ERROR_LIMITS_EXCEEDED
, "org.freedesktop.DBus.Error.LimitsExceeded"},
121 {G_DBUS_ERROR_ACCESS_DENIED
, "org.freedesktop.DBus.Error.AccessDenied"},
122 {G_DBUS_ERROR_AUTH_FAILED
, "org.freedesktop.DBus.Error.AuthFailed"},
123 {G_DBUS_ERROR_NO_SERVER
, "org.freedesktop.DBus.Error.NoServer"},
124 {G_DBUS_ERROR_TIMEOUT
, "org.freedesktop.DBus.Error.Timeout"},
125 {G_DBUS_ERROR_NO_NETWORK
, "org.freedesktop.DBus.Error.NoNetwork"},
126 {G_DBUS_ERROR_ADDRESS_IN_USE
, "org.freedesktop.DBus.Error.AddressInUse"},
127 {G_DBUS_ERROR_DISCONNECTED
, "org.freedesktop.DBus.Error.Disconnected"},
128 {G_DBUS_ERROR_INVALID_ARGS
, "org.freedesktop.DBus.Error.InvalidArgs"},
129 {G_DBUS_ERROR_FILE_NOT_FOUND
, "org.freedesktop.DBus.Error.FileNotFound"},
130 {G_DBUS_ERROR_FILE_EXISTS
, "org.freedesktop.DBus.Error.FileExists"},
131 {G_DBUS_ERROR_UNKNOWN_METHOD
, "org.freedesktop.DBus.Error.UnknownMethod"},
132 {G_DBUS_ERROR_TIMED_OUT
, "org.freedesktop.DBus.Error.TimedOut"},
133 {G_DBUS_ERROR_MATCH_RULE_NOT_FOUND
, "org.freedesktop.DBus.Error.MatchRuleNotFound"},
134 {G_DBUS_ERROR_MATCH_RULE_INVALID
, "org.freedesktop.DBus.Error.MatchRuleInvalid"},
135 {G_DBUS_ERROR_SPAWN_EXEC_FAILED
, "org.freedesktop.DBus.Error.Spawn.ExecFailed"},
136 {G_DBUS_ERROR_SPAWN_FORK_FAILED
, "org.freedesktop.DBus.Error.Spawn.ForkFailed"},
137 {G_DBUS_ERROR_SPAWN_CHILD_EXITED
, "org.freedesktop.DBus.Error.Spawn.ChildExited"},
138 {G_DBUS_ERROR_SPAWN_CHILD_SIGNALED
, "org.freedesktop.DBus.Error.Spawn.ChildSignaled"},
139 {G_DBUS_ERROR_SPAWN_FAILED
, "org.freedesktop.DBus.Error.Spawn.Failed"},
140 {G_DBUS_ERROR_SPAWN_SETUP_FAILED
, "org.freedesktop.DBus.Error.Spawn.FailedToSetup"},
141 {G_DBUS_ERROR_SPAWN_CONFIG_INVALID
, "org.freedesktop.DBus.Error.Spawn.ConfigInvalid"},
142 {G_DBUS_ERROR_SPAWN_SERVICE_INVALID
, "org.freedesktop.DBus.Error.Spawn.ServiceNotValid"},
143 {G_DBUS_ERROR_SPAWN_SERVICE_NOT_FOUND
, "org.freedesktop.DBus.Error.Spawn.ServiceNotFound"},
144 {G_DBUS_ERROR_SPAWN_PERMISSIONS_INVALID
, "org.freedesktop.DBus.Error.Spawn.PermissionsInvalid"},
145 {G_DBUS_ERROR_SPAWN_FILE_INVALID
, "org.freedesktop.DBus.Error.Spawn.FileInvalid"},
146 {G_DBUS_ERROR_SPAWN_NO_MEMORY
, "org.freedesktop.DBus.Error.Spawn.NoMemory"},
147 {G_DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN
, "org.freedesktop.DBus.Error.UnixProcessIdUnknown"},
148 {G_DBUS_ERROR_INVALID_SIGNATURE
, "org.freedesktop.DBus.Error.InvalidSignature"},
149 {G_DBUS_ERROR_INVALID_FILE_CONTENT
, "org.freedesktop.DBus.Error.InvalidFileContent"},
150 {G_DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN
, "org.freedesktop.DBus.Error.SELinuxSecurityContextUnknown"},
151 {G_DBUS_ERROR_ADT_AUDIT_DATA_UNKNOWN
, "org.freedesktop.DBus.Error.AdtAuditDataUnknown"},
152 {G_DBUS_ERROR_OBJECT_PATH_IN_USE
, "org.freedesktop.DBus.Error.ObjectPathInUse"},
153 {G_DBUS_ERROR_UNKNOWN_OBJECT
, "org.freedesktop.DBus.Error.UnknownObject"},
154 {G_DBUS_ERROR_UNKNOWN_INTERFACE
, "org.freedesktop.DBus.Error.UnknownInterface"},
155 {G_DBUS_ERROR_UNKNOWN_PROPERTY
, "org.freedesktop.DBus.Error.UnknownProperty"},
156 {G_DBUS_ERROR_PROPERTY_READ_ONLY
, "org.freedesktop.DBus.Error.PropertyReadOnly"},
160 g_dbus_error_quark (void)
162 G_STATIC_ASSERT (G_N_ELEMENTS (g_dbus_error_entries
) - 1 == G_DBUS_ERROR_PROPERTY_READ_ONLY
);
163 static volatile gsize quark_volatile
= 0;
164 g_dbus_error_register_error_domain ("g-dbus-error-quark",
166 g_dbus_error_entries
,
167 G_N_ELEMENTS (g_dbus_error_entries
));
168 return (GQuark
) quark_volatile
;
172 * g_dbus_error_register_error_domain:
173 * @error_domain_quark_name: The error domain name.
174 * @quark_volatile: A pointer where to store the #GQuark.
175 * @entries: (array length=num_entries): A pointer to @num_entries #GDBusErrorEntry struct items.
176 * @num_entries: Number of items to register.
178 * Helper function for associating a #GError error domain with D-Bus error names.
183 g_dbus_error_register_error_domain (const gchar
*error_domain_quark_name
,
184 volatile gsize
*quark_volatile
,
185 const GDBusErrorEntry
*entries
,
188 g_return_if_fail (error_domain_quark_name
!= NULL
);
189 g_return_if_fail (quark_volatile
!= NULL
);
190 g_return_if_fail (entries
!= NULL
);
191 g_return_if_fail (num_entries
> 0);
193 if (g_once_init_enter (quark_volatile
))
198 quark
= g_quark_from_static_string (error_domain_quark_name
);
200 for (n
= 0; n
< num_entries
; n
++)
202 g_warn_if_fail (g_dbus_error_register_error (quark
,
203 entries
[n
].error_code
,
204 entries
[n
].dbus_error_name
));
206 g_once_init_leave (quark_volatile
, quark
);
211 _g_dbus_error_decode_gerror (const gchar
*dbus_name
,
212 GQuark
*out_error_domain
,
213 gint
*out_error_code
)
218 gchar
*domain_quark_string
;
223 if (g_str_has_prefix (dbus_name
, "org.gtk.GDBus.UnmappedGError.Quark._"))
225 s
= g_string_new (NULL
);
227 for (n
= sizeof "org.gtk.GDBus.UnmappedGError.Quark._" - 1;
228 dbus_name
[n
] != '.' && dbus_name
[n
] != '\0';
231 if (g_ascii_isalnum (dbus_name
[n
]))
233 g_string_append_c (s
, dbus_name
[n
]);
235 else if (dbus_name
[n
] == '_')
242 nibble_top
= dbus_name
[n
];
243 if (nibble_top
>= '0' && nibble_top
<= '9')
245 else if (nibble_top
>= 'a' && nibble_top
<= 'f')
246 nibble_top
-= ('a' - 10);
252 nibble_bottom
= dbus_name
[n
];
253 if (nibble_bottom
>= '0' && nibble_bottom
<= '9')
254 nibble_bottom
-= '0';
255 else if (nibble_bottom
>= 'a' && nibble_bottom
<= 'f')
256 nibble_bottom
-= ('a' - 10);
260 g_string_append_c (s
, (nibble_top
<<4) | nibble_bottom
);
268 if (!g_str_has_prefix (dbus_name
+ n
, ".Code"))
271 domain_quark_string
= g_string_free (s
, FALSE
);
274 if (out_error_domain
!= NULL
)
275 *out_error_domain
= g_quark_from_string (domain_quark_string
);
276 g_free (domain_quark_string
);
278 if (out_error_code
!= NULL
)
279 *out_error_code
= atoi (dbus_name
+ n
+ sizeof ".Code" - 1);
287 g_string_free (s
, TRUE
);
292 /* ---------------------------------------------------------------------------------------------------- */
301 quark_code_pair_hash_func (const QuarkCodePair
*pair
)
304 val
= pair
->error_domain
+ pair
->error_code
;
305 return g_int_hash (&val
);
309 quark_code_pair_equal_func (const QuarkCodePair
*a
,
310 const QuarkCodePair
*b
)
312 return (a
->error_domain
== b
->error_domain
) && (a
->error_code
== b
->error_code
);
318 gchar
*dbus_error_name
;
322 registered_error_free (RegisteredError
*re
)
324 g_free (re
->dbus_error_name
);
328 G_LOCK_DEFINE_STATIC (error_lock
);
330 /* maps from QuarkCodePair* -> RegisteredError* */
331 static GHashTable
*quark_code_pair_to_re
= NULL
;
333 /* maps from gchar* -> RegisteredError* */
334 static GHashTable
*dbus_error_name_to_re
= NULL
;
337 * g_dbus_error_register_error:
338 * @error_domain: A #GQuark for a error domain.
339 * @error_code: An error code.
340 * @dbus_error_name: A D-Bus error name.
342 * Creates an association to map between @dbus_error_name and
343 * #GErrors specified by @error_domain and @error_code.
345 * This is typically done in the routine that returns the #GQuark for
348 * Returns: %TRUE if the association was created, %FALSE if it already
354 g_dbus_error_register_error (GQuark error_domain
,
356 const gchar
*dbus_error_name
)
362 g_return_val_if_fail (dbus_error_name
!= NULL
, FALSE
);
368 if (quark_code_pair_to_re
== NULL
)
370 g_assert (dbus_error_name_to_re
== NULL
); /* check invariant */
371 quark_code_pair_to_re
= g_hash_table_new ((GHashFunc
) quark_code_pair_hash_func
,
372 (GEqualFunc
) quark_code_pair_equal_func
);
373 dbus_error_name_to_re
= g_hash_table_new_full (g_str_hash
,
376 (GDestroyNotify
) registered_error_free
);
379 if (g_hash_table_lookup (dbus_error_name_to_re
, dbus_error_name
) != NULL
)
382 pair
.error_domain
= error_domain
;
383 pair
.error_code
= error_code
;
385 if (g_hash_table_lookup (quark_code_pair_to_re
, &pair
) != NULL
)
388 re
= g_new0 (RegisteredError
, 1);
390 re
->dbus_error_name
= g_strdup (dbus_error_name
);
392 g_hash_table_insert (quark_code_pair_to_re
, &(re
->pair
), re
);
393 g_hash_table_insert (dbus_error_name_to_re
, re
->dbus_error_name
, re
);
398 G_UNLOCK (error_lock
);
403 * g_dbus_error_unregister_error:
404 * @error_domain: A #GQuark for a error domain.
405 * @error_code: An error code.
406 * @dbus_error_name: A D-Bus error name.
408 * Destroys an association previously set up with g_dbus_error_register_error().
410 * Returns: %TRUE if the association was destroyed, %FALSE if it wasn't found.
415 g_dbus_error_unregister_error (GQuark error_domain
,
417 const gchar
*dbus_error_name
)
423 g_return_val_if_fail (dbus_error_name
!= NULL
, FALSE
);
429 if (dbus_error_name_to_re
== NULL
)
431 g_assert (quark_code_pair_to_re
== NULL
); /* check invariant */
435 re
= g_hash_table_lookup (dbus_error_name_to_re
, dbus_error_name
);
439 pair
.error_domain
= error_domain
;
440 pair
.error_code
= error_code
;
441 g_warn_if_fail (g_hash_table_lookup (quark_code_pair_to_re
, &pair
) == NULL
); /* check invariant */
447 g_warn_if_fail (g_hash_table_lookup (quark_code_pair_to_re
, &(re
->pair
)) == re
); /* check invariant */
449 g_warn_if_fail (g_hash_table_remove (quark_code_pair_to_re
, &(re
->pair
)));
450 g_warn_if_fail (g_hash_table_remove (dbus_error_name_to_re
, re
->dbus_error_name
));
452 /* destroy hashes if empty */
453 hash_size
= g_hash_table_size (dbus_error_name_to_re
);
456 g_warn_if_fail (g_hash_table_size (quark_code_pair_to_re
) == 0); /* check invariant */
458 g_hash_table_unref (dbus_error_name_to_re
);
459 dbus_error_name_to_re
= NULL
;
460 g_hash_table_unref (quark_code_pair_to_re
);
461 quark_code_pair_to_re
= NULL
;
465 g_warn_if_fail (g_hash_table_size (quark_code_pair_to_re
) == hash_size
); /* check invariant */
469 G_UNLOCK (error_lock
);
473 /* ---------------------------------------------------------------------------------------------------- */
476 * g_dbus_error_is_remote_error:
479 * Checks if @error represents an error received via D-Bus from a remote peer. If so,
480 * use g_dbus_error_get_remote_error() to get the name of the error.
482 * Returns: %TRUE if @error represents an error from a remote peer,
488 g_dbus_error_is_remote_error (const GError
*error
)
490 g_return_val_if_fail (error
!= NULL
, FALSE
);
491 return g_str_has_prefix (error
->message
, "GDBus.Error:");
496 * g_dbus_error_get_remote_error:
499 * Gets the D-Bus error name used for @error, if any.
501 * This function is guaranteed to return a D-Bus error name for all
502 * #GErrors returned from functions handling remote method calls
503 * (e.g. g_dbus_connection_call_finish()) unless
504 * g_dbus_error_strip_remote_error() has been used on @error.
506 * Returns: an allocated string or %NULL if the D-Bus error name
507 * could not be found. Free with g_free().
512 g_dbus_error_get_remote_error (const GError
*error
)
517 g_return_val_if_fail (error
!= NULL
, NULL
);
519 /* Ensure that e.g. G_DBUS_ERROR is registered using g_dbus_error_register_error() */
520 _g_dbus_initialize ();
527 if (quark_code_pair_to_re
!= NULL
)
530 pair
.error_domain
= error
->domain
;
531 pair
.error_code
= error
->code
;
532 g_assert (dbus_error_name_to_re
!= NULL
); /* check invariant */
533 re
= g_hash_table_lookup (quark_code_pair_to_re
, &pair
);
538 ret
= g_strdup (re
->dbus_error_name
);
542 if (g_str_has_prefix (error
->message
, "GDBus.Error:"))
546 begin
= error
->message
+ sizeof ("GDBus.Error:") -1;
547 end
= strstr (begin
, ":");
548 if (end
!= NULL
&& end
[1] == ' ')
550 ret
= g_strndup (begin
, end
- begin
);
555 G_UNLOCK (error_lock
);
560 /* ---------------------------------------------------------------------------------------------------- */
563 * g_dbus_error_new_for_dbus_error:
564 * @dbus_error_name: D-Bus error name.
565 * @dbus_error_message: D-Bus error message.
567 * Creates a #GError based on the contents of @dbus_error_name and
568 * @dbus_error_message.
570 * Errors registered with g_dbus_error_register_error() will be looked
571 * up using @dbus_error_name and if a match is found, the error domain
572 * and code is used. Applications can use g_dbus_error_get_remote_error()
573 * to recover @dbus_error_name.
575 * If a match against a registered error is not found and the D-Bus
576 * error name is in a form as returned by g_dbus_error_encode_gerror()
577 * the error domain and code encoded in the name is used to
578 * create the #GError. Also, @dbus_error_name is added to the error message
579 * such that it can be recovered with g_dbus_error_get_remote_error().
581 * Otherwise, a #GError with the error code %G_IO_ERROR_DBUS_ERROR
582 * in the #G_IO_ERROR error domain is returned. Also, @dbus_error_name is
583 * added to the error message such that it can be recovered with
584 * g_dbus_error_get_remote_error().
586 * In all three cases, @dbus_error_name can always be recovered from the
587 * returned #GError using the g_dbus_error_get_remote_error() function
588 * (unless g_dbus_error_strip_remote_error() hasn't been used on the returned error).
590 * This function is typically only used in object mappings to prepare
591 * #GError instances for applications. Regular applications should not use
594 * Returns: An allocated #GError. Free with g_error_free().
599 g_dbus_error_new_for_dbus_error (const gchar
*dbus_error_name
,
600 const gchar
*dbus_error_message
)
605 g_return_val_if_fail (dbus_error_name
!= NULL
, NULL
);
606 g_return_val_if_fail (dbus_error_message
!= NULL
, NULL
);
608 /* Ensure that e.g. G_DBUS_ERROR is registered using g_dbus_error_register_error() */
609 _g_dbus_initialize ();
614 if (dbus_error_name_to_re
!= NULL
)
616 g_assert (quark_code_pair_to_re
!= NULL
); /* check invariant */
617 re
= g_hash_table_lookup (dbus_error_name_to_re
, dbus_error_name
);
622 error
= g_error_new (re
->pair
.error_domain
,
624 "GDBus.Error:%s: %s",
630 GQuark error_domain
= 0;
633 if (_g_dbus_error_decode_gerror (dbus_error_name
,
637 error
= g_error_new (error_domain
,
639 "GDBus.Error:%s: %s",
645 error
= g_error_new (G_IO_ERROR
,
646 G_IO_ERROR_DBUS_ERROR
,
647 "GDBus.Error:%s: %s",
653 G_UNLOCK (error_lock
);
658 * g_dbus_error_set_dbus_error:
659 * @error: A pointer to a #GError or %NULL.
660 * @dbus_error_name: D-Bus error name.
661 * @dbus_error_message: D-Bus error message.
662 * @format: (nullable): printf()-style format to prepend to @dbus_error_message or %NULL.
663 * @...: Arguments for @format.
665 * Does nothing if @error is %NULL. Otherwise sets *@error to
666 * a new #GError created with g_dbus_error_new_for_dbus_error()
667 * with @dbus_error_message prepend with @format (unless %NULL).
672 g_dbus_error_set_dbus_error (GError
**error
,
673 const gchar
*dbus_error_name
,
674 const gchar
*dbus_error_message
,
678 g_return_if_fail (error
== NULL
|| *error
== NULL
);
679 g_return_if_fail (dbus_error_name
!= NULL
);
680 g_return_if_fail (dbus_error_message
!= NULL
);
687 *error
= g_dbus_error_new_for_dbus_error (dbus_error_name
, dbus_error_message
);
692 va_start (var_args
, format
);
693 g_dbus_error_set_dbus_error_valist (error
,
703 * g_dbus_error_set_dbus_error_valist:
704 * @error: A pointer to a #GError or %NULL.
705 * @dbus_error_name: D-Bus error name.
706 * @dbus_error_message: D-Bus error message.
707 * @format: (nullable): printf()-style format to prepend to @dbus_error_message or %NULL.
708 * @var_args: Arguments for @format.
710 * Like g_dbus_error_set_dbus_error() but intended for language bindings.
715 g_dbus_error_set_dbus_error_valist (GError
**error
,
716 const gchar
*dbus_error_name
,
717 const gchar
*dbus_error_message
,
721 g_return_if_fail (error
== NULL
|| *error
== NULL
);
722 g_return_if_fail (dbus_error_name
!= NULL
);
723 g_return_if_fail (dbus_error_message
!= NULL
);
732 message
= g_strdup_vprintf (format
, var_args
);
733 s
= g_strdup_printf ("%s: %s", message
, dbus_error_message
);
734 *error
= g_dbus_error_new_for_dbus_error (dbus_error_name
, s
);
740 *error
= g_dbus_error_new_for_dbus_error (dbus_error_name
, dbus_error_message
);
745 * g_dbus_error_strip_remote_error:
748 * Looks for extra information in the error message used to recover
749 * the D-Bus error name and strips it if found. If stripped, the
750 * message field in @error will correspond exactly to what was
751 * received on the wire.
753 * This is typically used when presenting errors to the end user.
755 * Returns: %TRUE if information was stripped, %FALSE otherwise.
760 g_dbus_error_strip_remote_error (GError
*error
)
764 g_return_val_if_fail (error
!= NULL
, FALSE
);
768 if (g_str_has_prefix (error
->message
, "GDBus.Error:"))
774 begin
= error
->message
+ sizeof ("GDBus.Error:") -1;
775 end
= strstr (begin
, ":");
776 if (end
!= NULL
&& end
[1] == ' ')
778 new_message
= g_strdup (end
+ 2);
779 g_free (error
->message
);
780 error
->message
= new_message
;
789 * g_dbus_error_encode_gerror:
792 * Creates a D-Bus error name to use for @error. If @error matches
793 * a registered error (cf. g_dbus_error_register_error()), the corresponding
794 * D-Bus error name will be returned.
796 * Otherwise the a name of the form
797 * `org.gtk.GDBus.UnmappedGError.Quark._ESCAPED_QUARK_NAME.Code_ERROR_CODE`
798 * will be used. This allows other GDBus applications to map the error
799 * on the wire back to a #GError using g_dbus_error_new_for_dbus_error().
801 * This function is typically only used in object mappings to put a
802 * #GError on the wire. Regular applications should not use it.
804 * Returns: A D-Bus error name (never %NULL). Free with g_free().
809 g_dbus_error_encode_gerror (const GError
*error
)
814 g_return_val_if_fail (error
!= NULL
, NULL
);
816 /* Ensure that e.g. G_DBUS_ERROR is registered using g_dbus_error_register_error() */
817 _g_dbus_initialize ();
823 if (quark_code_pair_to_re
!= NULL
)
826 pair
.error_domain
= error
->domain
;
827 pair
.error_code
= error
->code
;
828 g_assert (dbus_error_name_to_re
!= NULL
); /* check invariant */
829 re
= g_hash_table_lookup (quark_code_pair_to_re
, &pair
);
833 error_name
= g_strdup (re
->dbus_error_name
);
834 G_UNLOCK (error_lock
);
838 const gchar
*domain_as_string
;
842 G_UNLOCK (error_lock
);
844 /* We can't make a lot of assumptions about what domain_as_string
845 * looks like and D-Bus is extremely picky about error names so
846 * hex-encode it for transport across the wire.
848 domain_as_string
= g_quark_to_string (error
->domain
);
850 /* 0 is not a domain; neither are non-quark integers */
851 g_return_val_if_fail (domain_as_string
!= NULL
, NULL
);
853 s
= g_string_new ("org.gtk.GDBus.UnmappedGError.Quark._");
854 for (n
= 0; domain_as_string
[n
] != 0; n
++)
856 gint c
= domain_as_string
[n
];
857 if (g_ascii_isalnum (c
))
859 g_string_append_c (s
, c
);
865 g_string_append_c (s
, '_');
866 nibble_top
= ((int) domain_as_string
[n
]) >> 4;
867 nibble_bottom
= ((int) domain_as_string
[n
]) & 0x0f;
871 nibble_top
+= 'a' - 10;
872 if (nibble_bottom
< 10)
873 nibble_bottom
+= '0';
875 nibble_bottom
+= 'a' - 10;
876 g_string_append_c (s
, nibble_top
);
877 g_string_append_c (s
, nibble_bottom
);
880 g_string_append_printf (s
, ".Code%d", error
->code
);
881 error_name
= g_string_free (s
, FALSE
);