gio/: fully remove gioalias hacks
[platform/upstream/glib.git] / gio / gdbuserror.c
1 /* GDBus - GLib D-Bus Library
2  *
3  * Copyright (C) 2008-2010 Red Hat, Inc.
4  *
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.
9  *
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.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: David Zeuthen <davidz@redhat.com>
21  */
22
23 #include "config.h"
24
25 #include <stdlib.h>
26 #include <string.h>
27
28 #include "gdbuserror.h"
29 #include "gioenums.h"
30 #include "gioenumtypes.h"
31 #include "gioerror.h"
32 #include "gdbusprivate.h"
33
34 #include "glibintl.h"
35
36 /**
37  * SECTION:gdbuserror
38  * @title: GDBusError
39  * @short_description: Mapping D-Bus errors to and from #GError
40  * @include: gio/gio.h
41  *
42  * All facilities that return errors from remote methods (such as
43  * g_dbus_connection_call_sync()) use #GError to represent both D-Bus
44  * errors (e.g. errors returned from the other peer) and locally
45  * in-process generated errors.
46  *
47  * To check if a returned #GError is an error from a remote peer, use
48  * g_dbus_error_is_remote_error(). To get the actual D-Bus error name,
49  * use g_dbus_error_get_remote_error(). Before presenting an error,
50  * always use g_dbus_error_strip_remote_error().
51  *
52  * In addition, facilities used to return errors to a remote peer also
53  * use #GError. See g_dbus_method_invocation_return_error() for
54  * discussion about how the D-Bus error name is set.
55  *
56  * Applications can associate a #GError error domain with a set of D-Bus errors in order to
57  * automatically map from D-Bus errors to #GError and back. This
58  * is typically done in the function returning the #GQuark for the
59  * error domain:
60  * <example id="error-registration"><title>Error Registration</title><programlisting>
61  * /<!-- -->* foo-bar-error.h: *<!-- -->/
62  *
63  * #define FOO_BAR_ERROR (foo_bar_error_quark ())
64  * GQuark foo_bar_error_quark (void);
65  *
66  * typedef enum
67  * {
68  *   FOO_BAR_ERROR_FAILED,
69  *   FOO_BAR_ERROR_ANOTHER_ERROR,
70  *   FOO_BAR_ERROR_SOME_THIRD_ERROR,
71  * } FooBarError;
72  *
73  * /<!-- -->* foo-bar-error.c: *<!-- -->/
74  *
75  * static const GDBusErrorEntry foo_bar_error_entries[] =
76  * {
77  *   {FOO_BAR_ERROR_FAILED,           "org.project.Foo.Bar.Error.Failed"},
78  *   {FOO_BAR_ERROR_ANOTHER_ERROR,    "org.project.Foo.Bar.Error.AnotherError"},
79  *   {FOO_BAR_ERROR_SOME_THIRD_ERROR, "org.project.Foo.Bar.Error.SomeThirdError"},
80  * };
81  *
82  * GQuark
83  * foo_bar_error_quark (void)
84  * {
85  *   static volatile gsize quark_volatile = 0;
86  *   g_dbus_error_register_error_domain ("foo-bar-error-quark",
87  *                                       &quark_volatile,
88  *                                       foo_bar_error_entries,
89  *                                       G_N_ELEMENTS (foo_bar_error_entries));
90  *   G_STATIC_ASSERT (G_N_ELEMENTS (foo_bar_error_entries) - 1 == FOO_BAR_ERROR_SOME_THIRD_ERROR);
91  *   return (GQuark) quark_volatile;
92  * }
93  * </programlisting></example>
94  * With this setup, a D-Bus peer can transparently pass e.g. %FOO_BAR_ERROR_ANOTHER_ERROR and
95  * other peers will see the D-Bus error name <literal>org.project.Foo.Bar.Error.AnotherError</literal>.
96  * If the other peer is using GDBus, the peer will see also %FOO_BAR_ERROR_ANOTHER_ERROR instead
97  * of %G_IO_ERROR_DBUS_ERROR. Note that GDBus clients can still recover
98  * <literal>org.project.Foo.Bar.Error.AnotherError</literal> using g_dbus_error_get_remote_error().
99  *
100  * Note that errors in the %G_DBUS_ERROR error domain is intended only
101  * for returning errors from a remote message bus process. Errors
102  * generated locally in-process by e.g. #GDBusConnection is from the
103  * %G_IO_ERROR domain.
104  */
105
106 static const GDBusErrorEntry g_dbus_error_entries[] =
107 {
108   {G_DBUS_ERROR_FAILED,                           "org.freedesktop.DBus.Error.Failed"},
109   {G_DBUS_ERROR_NO_MEMORY,                        "org.freedesktop.DBus.Error.NoMemory"},
110   {G_DBUS_ERROR_SERVICE_UNKNOWN,                  "org.freedesktop.DBus.Error.ServiceUnknown"},
111   {G_DBUS_ERROR_NAME_HAS_NO_OWNER,                "org.freedesktop.DBus.Error.NameHasNoOwner"},
112   {G_DBUS_ERROR_NO_REPLY,                         "org.freedesktop.DBus.Error.NoReply"},
113   {G_DBUS_ERROR_IO_ERROR,                         "org.freedesktop.DBus.Error.IOError"},
114   {G_DBUS_ERROR_BAD_ADDRESS,                      "org.freedesktop.DBus.Error.BadAddress"},
115   {G_DBUS_ERROR_NOT_SUPPORTED,                    "org.freedesktop.DBus.Error.NotSupported"},
116   {G_DBUS_ERROR_LIMITS_EXCEEDED,                  "org.freedesktop.DBus.Error.LimitsExceeded"},
117   {G_DBUS_ERROR_ACCESS_DENIED,                    "org.freedesktop.DBus.Error.AccessDenied"},
118   {G_DBUS_ERROR_AUTH_FAILED,                      "org.freedesktop.DBus.Error.AuthFailed"},
119   {G_DBUS_ERROR_NO_SERVER,                        "org.freedesktop.DBus.Error.NoServer"},
120   {G_DBUS_ERROR_TIMEOUT,                          "org.freedesktop.DBus.Error.Timeout"},
121   {G_DBUS_ERROR_NO_NETWORK,                       "org.freedesktop.DBus.Error.NoNetwork"},
122   {G_DBUS_ERROR_ADDRESS_IN_USE,                   "org.freedesktop.DBus.Error.AddressInUse"},
123   {G_DBUS_ERROR_DISCONNECTED,                     "org.freedesktop.DBus.Error.Disconnected"},
124   {G_DBUS_ERROR_INVALID_ARGS,                     "org.freedesktop.DBus.Error.InvalidArgs"},
125   {G_DBUS_ERROR_FILE_NOT_FOUND,                   "org.freedesktop.DBus.Error.FileNotFound"},
126   {G_DBUS_ERROR_FILE_EXISTS,                      "org.freedesktop.DBus.Error.FileExists"},
127   {G_DBUS_ERROR_UNKNOWN_METHOD,                   "org.freedesktop.DBus.Error.UnknownMethod"},
128   {G_DBUS_ERROR_TIMED_OUT,                        "org.freedesktop.DBus.Error.TimedOut"},
129   {G_DBUS_ERROR_MATCH_RULE_NOT_FOUND,             "org.freedesktop.DBus.Error.MatchRuleNotFound"},
130   {G_DBUS_ERROR_MATCH_RULE_INVALID,               "org.freedesktop.DBus.Error.MatchRuleInvalid"},
131   {G_DBUS_ERROR_SPAWN_EXEC_FAILED,                "org.freedesktop.DBus.Error.Spawn.ExecFailed"},
132   {G_DBUS_ERROR_SPAWN_FORK_FAILED,                "org.freedesktop.DBus.Error.Spawn.ForkFailed"},
133   {G_DBUS_ERROR_SPAWN_CHILD_EXITED,               "org.freedesktop.DBus.Error.Spawn.ChildExited"},
134   {G_DBUS_ERROR_SPAWN_CHILD_SIGNALED,             "org.freedesktop.DBus.Error.Spawn.ChildSignaled"},
135   {G_DBUS_ERROR_SPAWN_FAILED,                     "org.freedesktop.DBus.Error.Spawn.Failed"},
136   {G_DBUS_ERROR_SPAWN_SETUP_FAILED,               "org.freedesktop.DBus.Error.Spawn.FailedToSetup"},
137   {G_DBUS_ERROR_SPAWN_CONFIG_INVALID,             "org.freedesktop.DBus.Error.Spawn.ConfigInvalid"},
138   {G_DBUS_ERROR_SPAWN_SERVICE_INVALID,            "org.freedesktop.DBus.Error.Spawn.ServiceNotValid"},
139   {G_DBUS_ERROR_SPAWN_SERVICE_NOT_FOUND,          "org.freedesktop.DBus.Error.Spawn.ServiceNotFound"},
140   {G_DBUS_ERROR_SPAWN_PERMISSIONS_INVALID,        "org.freedesktop.DBus.Error.Spawn.PermissionsInvalid"},
141   {G_DBUS_ERROR_SPAWN_FILE_INVALID,               "org.freedesktop.DBus.Error.Spawn.FileInvalid"},
142   {G_DBUS_ERROR_SPAWN_NO_MEMORY,                  "org.freedesktop.DBus.Error.Spawn.NoMemory"},
143   {G_DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN,          "org.freedesktop.DBus.Error.UnixProcessIdUnknown"},
144   {G_DBUS_ERROR_INVALID_SIGNATURE,                "org.freedesktop.DBus.Error.InvalidSignature"},
145   {G_DBUS_ERROR_INVALID_FILE_CONTENT,             "org.freedesktop.DBus.Error.InvalidFileContent"},
146   {G_DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN, "org.freedesktop.DBus.Error.SELinuxSecurityContextUnknown"},
147   {G_DBUS_ERROR_ADT_AUDIT_DATA_UNKNOWN,           "org.freedesktop.DBus.Error.AdtAuditDataUnknown"},
148   {G_DBUS_ERROR_OBJECT_PATH_IN_USE,               "org.freedesktop.DBus.Error.ObjectPathInUse"},
149 };
150
151 GQuark
152 g_dbus_error_quark (void)
153 {
154   G_STATIC_ASSERT (G_N_ELEMENTS (g_dbus_error_entries) - 1 == G_DBUS_ERROR_OBJECT_PATH_IN_USE);
155   static volatile gsize quark_volatile = 0;
156   g_dbus_error_register_error_domain ("g-dbus-error-quark",
157                                       &quark_volatile,
158                                       g_dbus_error_entries,
159                                       G_N_ELEMENTS (g_dbus_error_entries));
160   return (GQuark) quark_volatile;
161 }
162
163 /**
164  * g_dbus_error_register_error_domain:
165  * @error_domain_quark_name: The error domain name.
166  * @quark_volatile: A pointer where to store the #GQuark.
167  * @entries: A pointer to @num_entries #GDBusErrorEntry struct items.
168  * @num_entries: Number of items to register.
169  *
170  * Helper function for associating a #GError error domain with D-Bus error names.
171  *
172  * Since: 2.26
173  */
174 void
175 g_dbus_error_register_error_domain (const gchar           *error_domain_quark_name,
176                                     volatile gsize        *quark_volatile,
177                                     const GDBusErrorEntry *entries,
178                                     guint                  num_entries)
179 {
180   g_return_if_fail (error_domain_quark_name != NULL);
181   g_return_if_fail (quark_volatile != NULL);
182   g_return_if_fail (entries != NULL);
183   g_return_if_fail (num_entries > 0);
184
185   if (g_once_init_enter (quark_volatile))
186     {
187       guint n;
188       GQuark quark;
189
190       quark = g_quark_from_static_string (error_domain_quark_name);
191
192       for (n = 0; n < num_entries; n++)
193         {
194           g_warn_if_fail (g_dbus_error_register_error (quark,
195                                                        entries[n].error_code,
196                                                        entries[n].dbus_error_name));
197         }
198       g_once_init_leave (quark_volatile, quark);
199     }
200 }
201
202 static gboolean
203 _g_dbus_error_decode_gerror (const gchar *dbus_name,
204                              GQuark      *out_error_domain,
205                              gint        *out_error_code)
206 {
207   gboolean ret;
208   guint n;
209   GString *s;
210   gchar *domain_quark_string;
211
212   ret = FALSE;
213   s = NULL;
214
215   if (g_str_has_prefix (dbus_name, "org.gtk.GDBus.UnmappedGError.Quark._"))
216     {
217       s = g_string_new (NULL);
218
219       for (n = sizeof "org.gtk.GDBus.UnmappedGError.Quark._" - 1;
220            dbus_name[n] != '.' && dbus_name[n] != '\0';
221            n++)
222         {
223           if (g_ascii_isalnum (dbus_name[n]))
224             {
225               g_string_append_c (s, dbus_name[n]);
226             }
227           else if (dbus_name[n] == '_')
228             {
229               guint nibble_top;
230               guint nibble_bottom;
231
232               n++;
233
234               nibble_top = dbus_name[n];
235               if (nibble_top >= '0' && nibble_top <= '9')
236                 nibble_top -= '0';
237               else if (nibble_top >= 'a' && nibble_top <= 'f')
238                 nibble_top -= ('a' - 10);
239               else
240                 goto not_mapped;
241
242               n++;
243
244               nibble_bottom = dbus_name[n];
245               if (nibble_bottom >= '0' && nibble_bottom <= '9')
246                 nibble_bottom -= '0';
247               else if (nibble_bottom >= 'a' && nibble_bottom <= 'f')
248                 nibble_bottom -= ('a' - 10);
249               else
250                 goto not_mapped;
251
252               g_string_append_c (s, (nibble_top<<4) | nibble_bottom);
253             }
254           else
255             {
256               goto not_mapped;
257             }
258         }
259
260       if (!g_str_has_prefix (dbus_name + n, ".Code"))
261         goto not_mapped;
262
263       domain_quark_string = g_string_free (s, FALSE);
264       s = NULL;
265
266       if (out_error_domain != NULL)
267         *out_error_domain = g_quark_from_string (domain_quark_string);
268       g_free (domain_quark_string);
269
270       if (out_error_code != NULL)
271         *out_error_code = atoi (dbus_name + n + sizeof ".Code" - 1);
272
273       ret = TRUE;
274     }
275
276  not_mapped:
277
278   if (s != NULL)
279     g_string_free (s, TRUE);
280
281   return ret;
282 }
283
284 /* ---------------------------------------------------------------------------------------------------- */
285
286 typedef struct
287 {
288   GQuark error_domain;
289   gint   error_code;
290 } QuarkCodePair;
291
292 static guint
293 quark_code_pair_hash_func (const QuarkCodePair *pair)
294 {
295   gint val;
296   val = pair->error_domain + pair->error_code;
297   return g_int_hash (&val);
298 }
299
300 static gboolean
301 quark_code_pair_equal_func (const QuarkCodePair *a,
302                             const QuarkCodePair *b)
303 {
304   return (a->error_domain == b->error_domain) && (a->error_code == b->error_code);
305 }
306
307 typedef struct
308 {
309   QuarkCodePair pair;
310   gchar *dbus_error_name;
311 } RegisteredError;
312
313 static void
314 registered_error_free (RegisteredError *re)
315 {
316   g_free (re->dbus_error_name);
317   g_free (re);
318 }
319
320 G_LOCK_DEFINE_STATIC (error_lock);
321
322 /* maps from QuarkCodePair* -> RegisteredError* */
323 static GHashTable *quark_code_pair_to_re = NULL;
324
325 /* maps from gchar* -> RegisteredError* */
326 static GHashTable *dbus_error_name_to_re = NULL;
327
328 /**
329  * g_dbus_error_register_error:
330  * @error_domain: A #GQuark for a error domain.
331  * @error_code: An error code.
332  * @dbus_error_name: A D-Bus error name.
333  *
334  * Creates an association to map between @dbus_error_name and
335  * #GError<!-- -->s specified by @error_domain and @error_code.
336  *
337  * This is typically done in the routine that returns the #GQuark for
338  * an error domain.
339  *
340  * Returns: %TRUE if the association was created, %FALSE if it already
341  * exists.
342  *
343  * Since: 2.26
344  */
345 gboolean
346 g_dbus_error_register_error (GQuark       error_domain,
347                              gint         error_code,
348                              const gchar *dbus_error_name)
349 {
350   gboolean ret;
351   QuarkCodePair pair;
352   RegisteredError *re;
353
354   g_return_val_if_fail (dbus_error_name != NULL, FALSE);
355
356   ret = FALSE;
357
358   G_LOCK (error_lock);
359
360   if (quark_code_pair_to_re == NULL)
361     {
362       g_assert (dbus_error_name_to_re == NULL); /* check invariant */
363       quark_code_pair_to_re = g_hash_table_new ((GHashFunc) quark_code_pair_hash_func,
364                                                 (GEqualFunc) quark_code_pair_equal_func);
365       dbus_error_name_to_re = g_hash_table_new_full (g_str_hash,
366                                                      g_str_equal,
367                                                      NULL,
368                                                      (GDestroyNotify) registered_error_free);
369     }
370
371   if (g_hash_table_lookup (dbus_error_name_to_re, dbus_error_name) != NULL)
372     goto out;
373
374   pair.error_domain = error_domain;
375   pair.error_code = error_code;
376
377   if (g_hash_table_lookup (quark_code_pair_to_re, &pair) != NULL)
378     goto out;
379
380   re = g_new0 (RegisteredError, 1);
381   re->pair = pair;
382   re->dbus_error_name = g_strdup (dbus_error_name);
383
384   g_hash_table_insert (quark_code_pair_to_re, &(re->pair), re);
385   g_hash_table_insert (dbus_error_name_to_re, re->dbus_error_name, re);
386
387   ret = TRUE;
388
389  out:
390   G_UNLOCK (error_lock);
391   return ret;
392 }
393
394 /**
395  * g_dbus_error_unregister_error:
396  * @error_domain: A #GQuark for a error domain.
397  * @error_code: An error code.
398  * @dbus_error_name: A D-Bus error name.
399  *
400  * Destroys an association previously set up with g_dbus_error_register_error().
401  *
402  * Returns: %TRUE if the association was destroyed, %FALSE if it wasn't found.
403  *
404  * Since: 2.26
405  */
406 gboolean
407 g_dbus_error_unregister_error (GQuark       error_domain,
408                                gint         error_code,
409                                const gchar *dbus_error_name)
410 {
411   gboolean ret;
412   RegisteredError *re;
413   guint hash_size;
414
415   g_return_val_if_fail (dbus_error_name != NULL, FALSE);
416
417   ret = FALSE;
418
419   G_LOCK (error_lock);
420
421   if (dbus_error_name_to_re == NULL)
422     {
423       g_assert (quark_code_pair_to_re == NULL); /* check invariant */
424       goto out;
425     }
426
427   re = g_hash_table_lookup (dbus_error_name_to_re, dbus_error_name);
428   if (re == NULL)
429     {
430       QuarkCodePair pair;
431       pair.error_domain = error_domain;
432       pair.error_code = error_code;
433       g_warn_if_fail (g_hash_table_lookup (quark_code_pair_to_re, &pair) == NULL); /* check invariant */
434       goto out;
435     }
436   g_warn_if_fail (g_hash_table_lookup (quark_code_pair_to_re, &(re->pair)) == re); /* check invariant */
437
438   g_warn_if_fail (g_hash_table_remove (quark_code_pair_to_re, &(re->pair)));
439   g_warn_if_fail (g_hash_table_remove (dbus_error_name_to_re, re));
440
441   /* destroy hashes if empty */
442   hash_size = g_hash_table_size (dbus_error_name_to_re);
443   if (hash_size == 0)
444     {
445       g_warn_if_fail (g_hash_table_size (quark_code_pair_to_re) == 0); /* check invariant */
446
447       g_hash_table_unref (dbus_error_name_to_re);
448       dbus_error_name_to_re = NULL;
449       g_hash_table_unref (quark_code_pair_to_re);
450       quark_code_pair_to_re = NULL;
451     }
452   else
453     {
454       g_warn_if_fail (g_hash_table_size (quark_code_pair_to_re) == hash_size); /* check invariant */
455     }
456
457  out:
458   G_UNLOCK (error_lock);
459   return ret;
460 }
461
462 /* ---------------------------------------------------------------------------------------------------- */
463
464 /**
465  * g_dbus_error_is_remote_error:
466  * @error: A #GError.
467  *
468  * Checks if @error represents an error received via D-Bus from a remote peer. If so,
469  * use g_dbus_error_get_remote_error() to get the name of the error.
470  *
471  * Returns: %TRUE if @error represents an error from a remote peer,
472  * %FALSE otherwise.
473  *
474  * Since: 2.26
475  */
476 gboolean
477 g_dbus_error_is_remote_error (const GError *error)
478 {
479   g_return_val_if_fail (error != NULL, FALSE);
480   return g_str_has_prefix (error->message, "GDBus.Error:");
481 }
482
483
484 /**
485  * g_dbus_error_get_remote_error:
486  * @error: A #GError.
487  *
488  * Gets the D-Bus error name used for @error, if any.
489  *
490  * This function is guaranteed to return a D-Bus error name for all
491  * #GError<!-- -->s returned from functions handling remote method
492  * calls (e.g. g_dbus_connection_call_finish()) unless
493  * g_dbus_error_strip_remote_error() has been used on @error.
494  *
495  * Returns: An allocated string or %NULL if the D-Bus error name could not be found. Free with g_free().
496  *
497  * Since: 2.26
498  */
499 gchar *
500 g_dbus_error_get_remote_error (const GError *error)
501 {
502   RegisteredError *re;
503   gchar *ret;
504
505   g_return_val_if_fail (error != NULL, NULL);
506
507   /* Ensure that e.g. G_DBUS_ERROR is registered using g_dbus_error_register_error() */
508   _g_dbus_initialize ();
509
510   ret = NULL;
511
512   G_LOCK (error_lock);
513
514   re = NULL;
515   if (quark_code_pair_to_re != NULL)
516     {
517       QuarkCodePair pair;
518       pair.error_domain = error->domain;
519       pair.error_code = error->code;
520       g_assert (dbus_error_name_to_re != NULL); /* check invariant */
521       re = g_hash_table_lookup (quark_code_pair_to_re, &pair);
522     }
523
524   if (re != NULL)
525     {
526       ret = g_strdup (re->dbus_error_name);
527     }
528   else
529     {
530       if (g_str_has_prefix (error->message, "GDBus.Error:"))
531         {
532           const gchar *begin;
533           const gchar *end;
534           begin = error->message + sizeof ("GDBus.Error:") -1;
535           end = strstr (begin, ":");
536           if (end != NULL && end[1] == ' ')
537             {
538               ret = g_strndup (begin, end - begin);
539             }
540         }
541     }
542
543   G_UNLOCK (error_lock);
544
545   return ret;
546 }
547
548 /* ---------------------------------------------------------------------------------------------------- */
549
550 /**
551  * g_dbus_error_new_for_dbus_error:
552  * @dbus_error_name: D-Bus error name.
553  * @dbus_error_message: D-Bus error message.
554  *
555  * Creates a #GError based on the contents of @dbus_error_name and
556  * @dbus_error_message.
557  *
558  * Errors registered with g_dbus_error_register_error() will be looked
559  * up using @dbus_error_name and if a match is found, the error domain
560  * and code is used. Applications can use g_dbus_error_get_remote_error()
561  * to recover @dbus_error_name.
562  *
563  * If a match against a registered error is not found and the D-Bus
564  * error name is in a form as returned by g_dbus_error_encode_gerror()
565  * the error domain and code encoded in the name is used to
566  * create the #GError. Also, @dbus_error_name is added to the error message
567  * such that it can be recovered with g_dbus_error_get_remote_error().
568  *
569  * Otherwise, a #GError with the error code %G_IO_ERROR_DBUS_ERROR
570  * in the #G_IO_ERROR error domain is returned. Also, @dbus_error_name is
571  * added to the error message such that it can be recovered with
572  * g_dbus_error_get_remote_error().
573  *
574  * In all three cases, @dbus_error_name can always be recovered from the
575  * returned #GError using the g_dbus_error_get_remote_error() function
576  * (unless g_dbus_error_strip_remote_error() hasn't been used on the returned error).
577  *
578  * This function is typically only used in object mappings to prepare
579  * #GError instances for applications. Regular applications should not use
580  * it.
581  *
582  * Returns: An allocated #GError. Free with g_error_free().
583  *
584  * Since: 2.26
585  */
586 GError *
587 g_dbus_error_new_for_dbus_error (const gchar *dbus_error_name,
588                                  const gchar *dbus_error_message)
589 {
590   GError *error;
591   RegisteredError *re;
592
593   g_return_val_if_fail (dbus_error_name != NULL, NULL);
594   g_return_val_if_fail (dbus_error_message != NULL, NULL);
595
596   /* Ensure that e.g. G_DBUS_ERROR is registered using g_dbus_error_register_error() */
597   _g_dbus_initialize ();
598
599   G_LOCK (error_lock);
600
601   re = NULL;
602   if (dbus_error_name_to_re != NULL)
603     {
604       g_assert (quark_code_pair_to_re != NULL); /* check invariant */
605       re = g_hash_table_lookup (dbus_error_name_to_re, dbus_error_name);
606     }
607
608   if (re != NULL)
609     {
610       error = g_error_new (re->pair.error_domain,
611                            re->pair.error_code,
612                            "GDBus.Error:%s: %s",
613                            dbus_error_name,
614                            dbus_error_message);
615     }
616   else
617     {
618       GQuark error_domain = 0;
619       gint error_code = 0;
620
621       if (_g_dbus_error_decode_gerror (dbus_error_name,
622                                        &error_domain,
623                                        &error_code))
624         {
625           error = g_error_new (error_domain,
626                                error_code,
627                                "GDBus.Error:%s: %s",
628                                dbus_error_name,
629                                dbus_error_message);
630         }
631       else
632         {
633           error = g_error_new (G_IO_ERROR,
634                                G_IO_ERROR_DBUS_ERROR,
635                                "GDBus.Error:%s: %s",
636                                dbus_error_name,
637                                dbus_error_message);
638         }
639     }
640
641   G_UNLOCK (error_lock);
642   return error;
643 }
644
645 /**
646  * g_dbus_error_set_dbus_error:
647  * @error: A pointer to a #GError or %NULL.
648  * @dbus_error_name: D-Bus error name.
649  * @dbus_error_message: D-Bus error message.
650  * @format: printf()-style format to prepend to @dbus_error_message or %NULL.
651  * @...: Arguments for @format.
652  *
653  * Does nothing if @error is %NULL. Otherwise sets *@error to
654  * a new #GError created with g_dbus_error_new_for_dbus_error()
655  * with @dbus_error_message prepend with @format (unless %NULL).
656  *
657  * Since: 2.26
658  */
659 void
660 g_dbus_error_set_dbus_error (GError      **error,
661                              const gchar  *dbus_error_name,
662                              const gchar  *dbus_error_message,
663                              const gchar  *format,
664                              ...)
665 {
666   g_return_if_fail (error == NULL || *error == NULL);
667   g_return_if_fail (dbus_error_name != NULL);
668   g_return_if_fail (dbus_error_message != NULL);
669
670   if (error == NULL)
671     return;
672
673   if (format == NULL)
674     {
675       *error = g_dbus_error_new_for_dbus_error (dbus_error_name, dbus_error_message);
676     }
677   else
678     {
679       va_list var_args;
680       va_start (var_args, format);
681       g_dbus_error_set_dbus_error_valist (error,
682                                           dbus_error_name,
683                                           dbus_error_message,
684                                           format,
685                                           var_args);
686       va_end (var_args);
687     }
688 }
689
690 /**
691  * g_dbus_error_set_dbus_error_valist:
692  * @error: A pointer to a #GError or %NULL.
693  * @dbus_error_name: D-Bus error name.
694  * @dbus_error_message: D-Bus error message.
695  * @format: printf()-style format to prepend to @dbus_error_message or %NULL.
696  * @var_args: Arguments for @format.
697  *
698  * Like g_dbus_error_set_dbus_error() but intended for language bindings.
699  *
700  * Since: 2.26
701  */
702 void
703 g_dbus_error_set_dbus_error_valist (GError      **error,
704                                     const gchar  *dbus_error_name,
705                                     const gchar  *dbus_error_message,
706                                     const gchar  *format,
707                                     va_list       var_args)
708 {
709   g_return_if_fail (error == NULL || *error == NULL);
710   g_return_if_fail (dbus_error_name != NULL);
711   g_return_if_fail (dbus_error_message != NULL);
712
713   if (error == NULL)
714     return;
715
716   if (format != NULL)
717     {
718       gchar *message;
719       gchar *s;
720       message = g_strdup_vprintf (format, var_args);
721       s = g_strdup_printf ("%s: %s", message, dbus_error_message);
722       *error = g_dbus_error_new_for_dbus_error (dbus_error_name, s);
723       g_free (s);
724       g_free (message);
725     }
726   else
727     {
728       *error = g_dbus_error_new_for_dbus_error (dbus_error_name, dbus_error_message);
729     }
730 }
731
732 /**
733  * g_dbus_error_strip_remote_error:
734  * @error: A #GError.
735  *
736  * Looks for extra information in the error message used to recover
737  * the D-Bus error name and strips it if found. If stripped, the
738  * message field in @error will correspond exactly to what was
739  * received on the wire.
740  *
741  * This is typically used when presenting errors to the end user.
742  *
743  * Returns: %TRUE if information was stripped, %FALSE otherwise.
744  *
745  * Since: 2.26
746  */
747 gboolean
748 g_dbus_error_strip_remote_error (GError *error)
749 {
750   gboolean ret;
751
752   g_return_val_if_fail (error != NULL, FALSE);
753
754   ret = FALSE;
755
756   if (g_str_has_prefix (error->message, "GDBus.Error:"))
757     {
758       const gchar *begin;
759       const gchar *end;
760       gchar *new_message;
761
762       begin = error->message + sizeof ("GDBus.Error:") -1;
763       end = strstr (begin, ":");
764       if (end != NULL && end[1] == ' ')
765         {
766           new_message = g_strdup (end + 2);
767           g_free (error->message);
768           error->message = new_message;
769           ret = TRUE;
770         }
771     }
772
773   return ret;
774 }
775
776 /**
777  * g_dbus_error_encode_gerror:
778  * @error: A #GError.
779  *
780  * Creates a D-Bus error name to use for @error. If @error matches
781  * a registered error (cf. g_dbus_error_register_error()), the corresponding
782  * D-Bus error name will be returned.
783  *
784  * Otherwise the a name of the form
785  * <literal>org.gtk.GDBus.UnmappedGError.Quark._ESCAPED_QUARK_NAME.Code_ERROR_CODE</literal>
786  * will be used. This allows other GDBus applications to map the error
787  * on the wire back to a #GError using g_dbus_error_new_for_dbus_error().
788  *
789  * This function is typically only used in object mappings to put a
790  * #GError on the wire. Regular applications should not use it.
791  *
792  * Returns: A D-Bus error name (never %NULL). Free with g_free().
793  *
794  * Since: 2.26
795  */
796 gchar *
797 g_dbus_error_encode_gerror (const GError *error)
798 {
799   RegisteredError *re;
800   gchar *error_name;
801
802   g_return_val_if_fail (error != NULL, NULL);
803
804   /* Ensure that e.g. G_DBUS_ERROR is registered using g_dbus_error_register_error() */
805   _g_dbus_initialize ();
806
807   error_name = NULL;
808
809   G_LOCK (error_lock);
810   re = NULL;
811   if (quark_code_pair_to_re != NULL)
812     {
813       QuarkCodePair pair;
814       pair.error_domain = error->domain;
815       pair.error_code = error->code;
816       g_assert (dbus_error_name_to_re != NULL); /* check invariant */
817       re = g_hash_table_lookup (quark_code_pair_to_re, &pair);
818     }
819   if (re != NULL)
820     {
821       error_name = g_strdup (re->dbus_error_name);
822       G_UNLOCK (error_lock);
823     }
824   else
825     {
826       const gchar *domain_as_string;
827       GString *s;
828       guint n;
829
830       G_UNLOCK (error_lock);
831
832       /* We can't make a lot of assumptions about what domain_as_string
833        * looks like and D-Bus is extremely picky about error names so
834        * hex-encode it for transport across the wire.
835        */
836       domain_as_string = g_quark_to_string (error->domain);
837       s = g_string_new ("org.gtk.GDBus.UnmappedGError.Quark._");
838       for (n = 0; domain_as_string[n] != 0; n++)
839         {
840           gint c = domain_as_string[n];
841           if (g_ascii_isalnum (c))
842             {
843               g_string_append_c (s, c);
844             }
845           else
846             {
847               guint nibble_top;
848               guint nibble_bottom;
849               g_string_append_c (s, '_');
850               nibble_top = ((int) domain_as_string[n]) >> 4;
851               nibble_bottom = ((int) domain_as_string[n]) & 0x0f;
852               if (nibble_top < 10)
853                 nibble_top += '0';
854               else
855                 nibble_top += 'a' - 10;
856               if (nibble_bottom < 10)
857                 nibble_bottom += '0';
858               else
859                 nibble_bottom += 'a' - 10;
860               g_string_append_c (s, nibble_top);
861               g_string_append_c (s, nibble_bottom);
862             }
863         }
864       g_string_append_printf (s, ".Code%d", error->code);
865       error_name = g_string_free (s, FALSE);
866     }
867
868   return error_name;
869 }