chiark / gitweb /
tree-wide: drop 'This file is part of systemd' blurb
[elogind.git] / src / libelogind / sd-bus / bus-error.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5   Copyright 2013 Lennart Poettering
6 ***/
7
8 #include <stdbool.h>
9
10 #include "sd-bus.h"
11
12 #include "macro.h"
13
14 bool bus_error_is_dirty(sd_bus_error *e);
15
16 const char *bus_error_message(const sd_bus_error *e, int error);
17
18 int bus_error_setfv(sd_bus_error *e, const char *name, const char *format, va_list ap) _printf_(3,0);
19 int bus_error_set_errnofv(sd_bus_error *e, int error, const char *format, va_list ap) _printf_(3,0);
20
21 #define BUS_ERROR_OOM SD_BUS_ERROR_MAKE_CONST(SD_BUS_ERROR_NO_MEMORY, "Out of memory")
22 #define BUS_ERROR_FAILED SD_BUS_ERROR_MAKE_CONST(SD_BUS_ERROR_FAILED, "Operation failed")
23
24 /*
25  * There are two ways to register error maps with the error translation
26  * logic: by using BUS_ERROR_MAP_ELF_REGISTER, which however only
27  * works when linked into the same ELF module, or via
28  * sd_bus_error_add_map() which is the official, external API, that
29  * works from any module.
30  *
31  * Note that BUS_ERROR_MAP_ELF_REGISTER has to be used as decorator in
32  * the bus error table, and BUS_ERROR_MAP_ELF_USE has to be used at
33  * least once per compilation unit (i.e. per library), to ensure that
34  * the error map is really added to the final binary.
35  */
36
37 #define BUS_ERROR_MAP_ELF_REGISTER                                      \
38         __attribute__ ((__section__("BUS_ERROR_MAP")))                  \
39         __attribute__ ((__used__))                                      \
40         __attribute__ ((aligned(8)))
41
42 #define BUS_ERROR_MAP_ELF_USE(errors)                                   \
43         extern const sd_bus_error_map errors[];                         \
44         __attribute__ ((used)) static const sd_bus_error_map * const CONCATENATE(errors ## _copy_, __COUNTER__) = errors;
45
46 /* We use something exotic as end marker, to ensure people build the
47  * maps using the macsd-ros. */
48 #define BUS_ERROR_MAP_END_MARKER -'x'
49
50 BUS_ERROR_MAP_ELF_USE(bus_standard_errors);