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 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 * <example id="error-registration"><title>Error Registration</title><programlisting>
59 * /<!-- -->* foo-bar-error.h: *<!-- -->/
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 >*<!-- -->/
72 * /<!-- -->* foo-bar-error.c: *<!-- -->/
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;
94 * </programlisting></example>
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 <literal>org.project.Foo.Bar.Error.AnotherError</literal>.
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 * <literal>org.project.Foo.Bar.Error.AnotherError</literal> using g_dbus_error_get_remote_error().
104 * Note that errors in 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 is from 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"},
156 g_dbus_error_quark (void)
158 G_STATIC_ASSERT (G_N_ELEMENTS (g_dbus_error_entries) - 1 == G_DBUS_ERROR_OBJECT_PATH_IN_USE);
159 static volatile gsize quark_volatile = 0;
160 g_dbus_error_register_error_domain ("g-dbus-error-quark",
162 g_dbus_error_entries,
163 G_N_ELEMENTS (g_dbus_error_entries));
164 return (GQuark) quark_volatile;
168 * g_dbus_error_register_error_domain:
169 * @error_domain_quark_name: The error domain name.
170 * @quark_volatile: A pointer where to store the #GQuark.
171 * @entries: A pointer to @num_entries #GDBusErrorEntry struct items.
172 * @num_entries: Number of items to register.
174 * Helper function for associating a #GError error domain with D-Bus error names.
179 g_dbus_error_register_error_domain (const gchar *error_domain_quark_name,
180 volatile gsize *quark_volatile,
181 const GDBusErrorEntry *entries,
184 g_return_if_fail (error_domain_quark_name != NULL);
185 g_return_if_fail (quark_volatile != NULL);
186 g_return_if_fail (entries != NULL);
187 g_return_if_fail (num_entries > 0);
189 if (g_once_init_enter (quark_volatile))
194 quark = g_quark_from_static_string (error_domain_quark_name);
196 for (n = 0; n < num_entries; n++)
198 g_warn_if_fail (g_dbus_error_register_error (quark,
199 entries[n].error_code,
200 entries[n].dbus_error_name));
202 g_once_init_leave (quark_volatile, quark);
207 _g_dbus_error_decode_gerror (const gchar *dbus_name,
208 GQuark *out_error_domain,
209 gint *out_error_code)
214 gchar *domain_quark_string;
219 if (g_str_has_prefix (dbus_name, "org.gtk.GDBus.UnmappedGError.Quark._"))
221 s = g_string_new (NULL);
223 for (n = sizeof "org.gtk.GDBus.UnmappedGError.Quark._" - 1;
224 dbus_name[n] != '.' && dbus_name[n] != '\0';
227 if (g_ascii_isalnum (dbus_name[n]))
229 g_string_append_c (s, dbus_name[n]);
231 else if (dbus_name[n] == '_')
238 nibble_top = dbus_name[n];
239 if (nibble_top >= '0' && nibble_top <= '9')
241 else if (nibble_top >= 'a' && nibble_top <= 'f')
242 nibble_top -= ('a' - 10);
248 nibble_bottom = dbus_name[n];
249 if (nibble_bottom >= '0' && nibble_bottom <= '9')
250 nibble_bottom -= '0';
251 else if (nibble_bottom >= 'a' && nibble_bottom <= 'f')
252 nibble_bottom -= ('a' - 10);
256 g_string_append_c (s, (nibble_top<<4) | nibble_bottom);
264 if (!g_str_has_prefix (dbus_name + n, ".Code"))
267 domain_quark_string = g_string_free (s, FALSE);
270 if (out_error_domain != NULL)
271 *out_error_domain = g_quark_from_string (domain_quark_string);
272 g_free (domain_quark_string);
274 if (out_error_code != NULL)
275 *out_error_code = atoi (dbus_name + n + sizeof ".Code" - 1);
283 g_string_free (s, TRUE);
288 /* ---------------------------------------------------------------------------------------------------- */
297 quark_code_pair_hash_func (const QuarkCodePair *pair)
300 val = pair->error_domain + pair->error_code;
301 return g_int_hash (&val);
305 quark_code_pair_equal_func (const QuarkCodePair *a,
306 const QuarkCodePair *b)
308 return (a->error_domain == b->error_domain) && (a->error_code == b->error_code);
314 gchar *dbus_error_name;
318 registered_error_free (RegisteredError *re)
320 g_free (re->dbus_error_name);
324 G_LOCK_DEFINE_STATIC (error_lock);
326 /* maps from QuarkCodePair* -> RegisteredError* */
327 static GHashTable *quark_code_pair_to_re = NULL;
329 /* maps from gchar* -> RegisteredError* */
330 static GHashTable *dbus_error_name_to_re = NULL;
333 * g_dbus_error_register_error:
334 * @error_domain: A #GQuark for a error domain.
335 * @error_code: An error code.
336 * @dbus_error_name: A D-Bus error name.
338 * Creates an association to map between @dbus_error_name and
339 * #GError<!-- -->s specified by @error_domain and @error_code.
341 * This is typically done in the routine that returns the #GQuark for
344 * Returns: %TRUE if the association was created, %FALSE if it already
350 g_dbus_error_register_error (GQuark error_domain,
352 const gchar *dbus_error_name)
358 g_return_val_if_fail (dbus_error_name != NULL, FALSE);
364 if (quark_code_pair_to_re == NULL)
366 g_assert (dbus_error_name_to_re == NULL); /* check invariant */
367 quark_code_pair_to_re = g_hash_table_new ((GHashFunc) quark_code_pair_hash_func,
368 (GEqualFunc) quark_code_pair_equal_func);
369 dbus_error_name_to_re = g_hash_table_new_full (g_str_hash,
372 (GDestroyNotify) registered_error_free);
375 if (g_hash_table_lookup (dbus_error_name_to_re, dbus_error_name) != NULL)
378 pair.error_domain = error_domain;
379 pair.error_code = error_code;
381 if (g_hash_table_lookup (quark_code_pair_to_re, &pair) != NULL)
384 re = g_new0 (RegisteredError, 1);
386 re->dbus_error_name = g_strdup (dbus_error_name);
388 g_hash_table_insert (quark_code_pair_to_re, &(re->pair), re);
389 g_hash_table_insert (dbus_error_name_to_re, re->dbus_error_name, re);
394 G_UNLOCK (error_lock);
399 * g_dbus_error_unregister_error:
400 * @error_domain: A #GQuark for a error domain.
401 * @error_code: An error code.
402 * @dbus_error_name: A D-Bus error name.
404 * Destroys an association previously set up with g_dbus_error_register_error().
406 * Returns: %TRUE if the association was destroyed, %FALSE if it wasn't found.
411 g_dbus_error_unregister_error (GQuark error_domain,
413 const gchar *dbus_error_name)
419 g_return_val_if_fail (dbus_error_name != NULL, FALSE);
425 if (dbus_error_name_to_re == NULL)
427 g_assert (quark_code_pair_to_re == NULL); /* check invariant */
431 re = g_hash_table_lookup (dbus_error_name_to_re, dbus_error_name);
435 pair.error_domain = error_domain;
436 pair.error_code = error_code;
437 g_warn_if_fail (g_hash_table_lookup (quark_code_pair_to_re, &pair) == NULL); /* check invariant */
443 g_warn_if_fail (g_hash_table_lookup (quark_code_pair_to_re, &(re->pair)) == re); /* check invariant */
445 g_warn_if_fail (g_hash_table_remove (quark_code_pair_to_re, &(re->pair)));
446 g_warn_if_fail (g_hash_table_remove (dbus_error_name_to_re, re->dbus_error_name));
448 /* destroy hashes if empty */
449 hash_size = g_hash_table_size (dbus_error_name_to_re);
452 g_warn_if_fail (g_hash_table_size (quark_code_pair_to_re) == 0); /* check invariant */
454 g_hash_table_unref (dbus_error_name_to_re);
455 dbus_error_name_to_re = NULL;
456 g_hash_table_unref (quark_code_pair_to_re);
457 quark_code_pair_to_re = NULL;
461 g_warn_if_fail (g_hash_table_size (quark_code_pair_to_re) == hash_size); /* check invariant */
465 G_UNLOCK (error_lock);
469 /* ---------------------------------------------------------------------------------------------------- */
472 * g_dbus_error_is_remote_error:
475 * Checks if @error represents an error received via D-Bus from a remote peer. If so,
476 * use g_dbus_error_get_remote_error() to get the name of the error.
478 * Returns: %TRUE if @error represents an error from a remote peer,
484 g_dbus_error_is_remote_error (const GError *error)
486 g_return_val_if_fail (error != NULL, FALSE);
487 return g_str_has_prefix (error->message, "GDBus.Error:");
492 * g_dbus_error_get_remote_error:
495 * Gets the D-Bus error name used for @error, if any.
497 * This function is guaranteed to return a D-Bus error name for all
498 * #GError<!-- -->s returned from functions handling remote method
499 * calls (e.g. g_dbus_connection_call_finish()) unless
500 * g_dbus_error_strip_remote_error() has been used on @error.
502 * Returns: An allocated string or %NULL if the D-Bus error name could not be found. Free with g_free().
507 g_dbus_error_get_remote_error (const GError *error)
512 g_return_val_if_fail (error != NULL, NULL);
514 /* Ensure that e.g. G_DBUS_ERROR is registered using g_dbus_error_register_error() */
515 _g_dbus_initialize ();
522 if (quark_code_pair_to_re != NULL)
525 pair.error_domain = error->domain;
526 pair.error_code = error->code;
527 g_assert (dbus_error_name_to_re != NULL); /* check invariant */
528 re = g_hash_table_lookup (quark_code_pair_to_re, &pair);
533 ret = g_strdup (re->dbus_error_name);
537 if (g_str_has_prefix (error->message, "GDBus.Error:"))
541 begin = error->message + sizeof ("GDBus.Error:") -1;
542 end = strstr (begin, ":");
543 if (end != NULL && end[1] == ' ')
545 ret = g_strndup (begin, end - begin);
550 G_UNLOCK (error_lock);
555 /* ---------------------------------------------------------------------------------------------------- */
558 * g_dbus_error_new_for_dbus_error:
559 * @dbus_error_name: D-Bus error name.
560 * @dbus_error_message: D-Bus error message.
562 * Creates a #GError based on the contents of @dbus_error_name and
563 * @dbus_error_message.
565 * Errors registered with g_dbus_error_register_error() will be looked
566 * up using @dbus_error_name and if a match is found, the error domain
567 * and code is used. Applications can use g_dbus_error_get_remote_error()
568 * to recover @dbus_error_name.
570 * If a match against a registered error is not found and the D-Bus
571 * error name is in a form as returned by g_dbus_error_encode_gerror()
572 * the error domain and code encoded in the name is used to
573 * create the #GError. Also, @dbus_error_name is added to the error message
574 * such that it can be recovered with g_dbus_error_get_remote_error().
576 * Otherwise, a #GError with the error code %G_IO_ERROR_DBUS_ERROR
577 * in the #G_IO_ERROR error domain is returned. Also, @dbus_error_name is
578 * added to the error message such that it can be recovered with
579 * g_dbus_error_get_remote_error().
581 * In all three cases, @dbus_error_name can always be recovered from the
582 * returned #GError using the g_dbus_error_get_remote_error() function
583 * (unless g_dbus_error_strip_remote_error() hasn't been used on the returned error).
585 * This function is typically only used in object mappings to prepare
586 * #GError instances for applications. Regular applications should not use
589 * Returns: An allocated #GError. Free with g_error_free().
594 g_dbus_error_new_for_dbus_error (const gchar *dbus_error_name,
595 const gchar *dbus_error_message)
600 g_return_val_if_fail (dbus_error_name != NULL, NULL);
601 g_return_val_if_fail (dbus_error_message != NULL, NULL);
603 /* Ensure that e.g. G_DBUS_ERROR is registered using g_dbus_error_register_error() */
604 _g_dbus_initialize ();
609 if (dbus_error_name_to_re != NULL)
611 g_assert (quark_code_pair_to_re != NULL); /* check invariant */
612 re = g_hash_table_lookup (dbus_error_name_to_re, dbus_error_name);
617 error = g_error_new (re->pair.error_domain,
619 "GDBus.Error:%s: %s",
625 GQuark error_domain = 0;
628 if (_g_dbus_error_decode_gerror (dbus_error_name,
632 error = g_error_new (error_domain,
634 "GDBus.Error:%s: %s",
640 error = g_error_new (G_IO_ERROR,
641 G_IO_ERROR_DBUS_ERROR,
642 "GDBus.Error:%s: %s",
648 G_UNLOCK (error_lock);
653 * g_dbus_error_set_dbus_error:
654 * @error: A pointer to a #GError or %NULL.
655 * @dbus_error_name: D-Bus error name.
656 * @dbus_error_message: D-Bus error message.
657 * @format: (allow-none): printf()-style format to prepend to @dbus_error_message or %NULL.
658 * @...: Arguments for @format.
660 * Does nothing if @error is %NULL. Otherwise sets *@error to
661 * a new #GError created with g_dbus_error_new_for_dbus_error()
662 * with @dbus_error_message prepend with @format (unless %NULL).
667 g_dbus_error_set_dbus_error (GError **error,
668 const gchar *dbus_error_name,
669 const gchar *dbus_error_message,
673 g_return_if_fail (error == NULL || *error == NULL);
674 g_return_if_fail (dbus_error_name != NULL);
675 g_return_if_fail (dbus_error_message != NULL);
682 *error = g_dbus_error_new_for_dbus_error (dbus_error_name, dbus_error_message);
687 va_start (var_args, format);
688 g_dbus_error_set_dbus_error_valist (error,
698 * g_dbus_error_set_dbus_error_valist:
699 * @error: A pointer to a #GError or %NULL.
700 * @dbus_error_name: D-Bus error name.
701 * @dbus_error_message: D-Bus error message.
702 * @format: (allow-none): printf()-style format to prepend to @dbus_error_message or %NULL.
703 * @var_args: Arguments for @format.
705 * Like g_dbus_error_set_dbus_error() but intended for language bindings.
710 g_dbus_error_set_dbus_error_valist (GError **error,
711 const gchar *dbus_error_name,
712 const gchar *dbus_error_message,
716 g_return_if_fail (error == NULL || *error == NULL);
717 g_return_if_fail (dbus_error_name != NULL);
718 g_return_if_fail (dbus_error_message != NULL);
727 message = g_strdup_vprintf (format, var_args);
728 s = g_strdup_printf ("%s: %s", message, dbus_error_message);
729 *error = g_dbus_error_new_for_dbus_error (dbus_error_name, s);
735 *error = g_dbus_error_new_for_dbus_error (dbus_error_name, dbus_error_message);
740 * g_dbus_error_strip_remote_error:
743 * Looks for extra information in the error message used to recover
744 * the D-Bus error name and strips it if found. If stripped, the
745 * message field in @error will correspond exactly to what was
746 * received on the wire.
748 * This is typically used when presenting errors to the end user.
750 * Returns: %TRUE if information was stripped, %FALSE otherwise.
755 g_dbus_error_strip_remote_error (GError *error)
759 g_return_val_if_fail (error != NULL, FALSE);
763 if (g_str_has_prefix (error->message, "GDBus.Error:"))
769 begin = error->message + sizeof ("GDBus.Error:") -1;
770 end = strstr (begin, ":");
771 if (end != NULL && end[1] == ' ')
773 new_message = g_strdup (end + 2);
774 g_free (error->message);
775 error->message = new_message;
784 * g_dbus_error_encode_gerror:
787 * Creates a D-Bus error name to use for @error. If @error matches
788 * a registered error (cf. g_dbus_error_register_error()), the corresponding
789 * D-Bus error name will be returned.
791 * Otherwise the a name of the form
792 * <literal>org.gtk.GDBus.UnmappedGError.Quark._ESCAPED_QUARK_NAME.Code_ERROR_CODE</literal>
793 * will be used. This allows other GDBus applications to map the error
794 * on the wire back to a #GError using g_dbus_error_new_for_dbus_error().
796 * This function is typically only used in object mappings to put a
797 * #GError on the wire. Regular applications should not use it.
799 * Returns: A D-Bus error name (never %NULL). Free with g_free().
804 g_dbus_error_encode_gerror (const GError *error)
809 g_return_val_if_fail (error != NULL, NULL);
811 /* Ensure that e.g. G_DBUS_ERROR is registered using g_dbus_error_register_error() */
812 _g_dbus_initialize ();
818 if (quark_code_pair_to_re != NULL)
821 pair.error_domain = error->domain;
822 pair.error_code = error->code;
823 g_assert (dbus_error_name_to_re != NULL); /* check invariant */
824 re = g_hash_table_lookup (quark_code_pair_to_re, &pair);
828 error_name = g_strdup (re->dbus_error_name);
829 G_UNLOCK (error_lock);
833 const gchar *domain_as_string;
837 G_UNLOCK (error_lock);
839 /* We can't make a lot of assumptions about what domain_as_string
840 * looks like and D-Bus is extremely picky about error names so
841 * hex-encode it for transport across the wire.
843 domain_as_string = g_quark_to_string (error->domain);
845 /* 0 is not a domain; neither are non-quark integers */
846 g_return_val_if_fail (domain_as_string != NULL, NULL);
848 s = g_string_new ("org.gtk.GDBus.UnmappedGError.Quark._");
849 for (n = 0; domain_as_string[n] != 0; n++)
851 gint c = domain_as_string[n];
852 if (g_ascii_isalnum (c))
854 g_string_append_c (s, c);
860 g_string_append_c (s, '_');
861 nibble_top = ((int) domain_as_string[n]) >> 4;
862 nibble_bottom = ((int) domain_as_string[n]) & 0x0f;
866 nibble_top += 'a' - 10;
867 if (nibble_bottom < 10)
868 nibble_bottom += '0';
870 nibble_bottom += 'a' - 10;
871 g_string_append_c (s, nibble_top);
872 g_string_append_c (s, nibble_bottom);
875 g_string_append_printf (s, ".Code%d", error->code);
876 error_name = g_string_free (s, FALSE);