23 #ifdef DBUS_INSIDE_DBUS_H
24 #error "You can't include dbus-internals.h in the public header dbus.h"
27 #ifndef DBUS_INTERNALS_H
28 #define DBUS_INTERNALS_H
30 #include <dbus/dbus-memory.h>
31 #include <dbus/dbus-types.h>
32 #include <dbus/dbus-errors.h>
33 #include <dbus/dbus-sysdeps.h>
34 #include <dbus/dbus-threads-internal.h>
38 #ifndef DBUS_SESSION_BUS_DEFAULT_ADDRESS
39 #define DBUS_SESSION_BUS_DEFAULT_ADDRESS "autolaunch:"
43 ...) _DBUS_GNUC_PRINTF (1, 2);
46 ...) _DBUS_GNUC_PRINTF (1, 2);
49 #if defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
50 #define _DBUS_FUNCTION_NAME __func__
51 #elif defined(__GNUC__) || defined(_MSC_VER)
52 #define _DBUS_FUNCTION_NAME __FUNCTION__
54 #define _DBUS_FUNCTION_NAME "unknown function"
67 #if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
68 #define _DBUS_BOOLEAN_EXPR(expr) \
70 int _dbus_boolean_var_; \
72 _dbus_boolean_var_ = 1; \
74 _dbus_boolean_var_ = 0; \
77 #define _DBUS_LIKELY(expr) (__builtin_expect (_DBUS_BOOLEAN_EXPR(expr), 1))
78 #define _DBUS_UNLIKELY(expr) (__builtin_expect (_DBUS_BOOLEAN_EXPR(expr), 0))
80 #define _DBUS_LIKELY(expr) (expr)
81 #define _DBUS_UNLIKELY(expr) (expr)
84 #ifdef DBUS_ENABLE_VERBOSE_MODE
91 #if defined(__GNUC__) || defined(_MSC_VER)
92 #define DBUS_CPP_SUPPORTS_VARIABLE_MACRO_ARGUMENTS
95 #ifdef DBUS_CPP_SUPPORTS_VARIABLE_MACRO_ARGUMENTS
96 void _dbus_verbose_real (
const char *file,
const int line,
const char *
function,
97 const char *format,...) _DBUS_GNUC_PRINTF (4, 5);
98 # define _dbus_verbose(fmt,...) _dbus_verbose_real( __FILE__,__LINE__,__FUNCTION__,fmt, ## __VA_ARGS__)
100 void _dbus_verbose_real (
const char *format,
101 ...) _DBUS_GNUC_PRINTF (1, 2);
102 # define _dbus_verbose _dbus_verbose_real
104 void _dbus_verbose_reset_real (
void);
107 # define _dbus_verbose_reset _dbus_verbose_reset_real
108 # define _dbus_is_verbose _dbus_is_verbose_real
110 # ifdef HAVE_ISO_VARARGS
111 # define _dbus_verbose(...) do { } while (0)
112 # elif defined (HAVE_GNUC_VARARGS)
113 # define _dbus_verbose(format...) do { } while (0)
115 static void _dbus_verbose(
const char * x,...) {;}
117 # define _dbus_verbose_reset() do { } while (0)
118 # define _dbus_is_verbose() FALSE
121 void _dbus_trace_ref (
const char *obj_name,
129 const char* _dbus_strerror (
int error_number);
131 #ifdef DBUS_DISABLE_ASSERT
132 #define _dbus_assert(condition) do { } while (0)
135 const char *condition_text,
139 #define _dbus_assert(condition) \
140 _dbus_real_assert ((condition) != 0, #condition, __FILE__, __LINE__, _DBUS_FUNCTION_NAME)
143 #ifdef DBUS_DISABLE_ASSERT
144 #define _dbus_assert_not_reached(explanation) do { } while (0)
148 int line) _DBUS_GNUC_NORETURN;
149 #define _dbus_assert_not_reached(explanation) \
150 _dbus_real_assert_not_reached (explanation, __FILE__, __LINE__)
153 #ifdef DBUS_DISABLE_CHECKS
154 #define _dbus_return_if_fail(condition)
155 #define _dbus_return_val_if_fail(condition, val)
160 #define _dbus_return_if_fail(condition) do { \
161 _dbus_assert ((*(const char*)_DBUS_FUNCTION_NAME) != '_'); \
162 if (!(condition)) { \
163 _dbus_warn_check_failed (_dbus_return_if_fail_warning_format, \
164 _DBUS_FUNCTION_NAME, #condition, __FILE__, __LINE__); \
168 #define _dbus_return_val_if_fail(condition, val) do { \
169 _dbus_assert ((*(const char*)_DBUS_FUNCTION_NAME) != '_'); \
170 if (!(condition)) { \
171 _dbus_warn_check_failed (_dbus_return_if_fail_warning_format, \
172 _DBUS_FUNCTION_NAME, #condition, __FILE__, __LINE__); \
178 #define _DBUS_N_ELEMENTS(array) ((int) (sizeof ((array)) / sizeof ((array)[0])))
180 #define _DBUS_POINTER_TO_INT(pointer) ((intptr_t)(pointer))
181 #define _DBUS_INT_TO_POINTER(integer) ((void*)((intptr_t)(integer)))
183 #define _DBUS_ZERO(object) (memset (&(object), '\0', sizeof ((object))))
185 #define _DBUS_STRUCT_OFFSET(struct_type, member) \
186 ((intptr_t) ((unsigned char*) &((struct_type*) 0)->member))
188 #ifdef DBUS_DISABLE_CHECKS
192 #define _DBUS_ASSERT_ERROR_IS_SET(error) do { } while (0)
193 #define _DBUS_ASSERT_ERROR_IS_CLEAR(error) do { } while (0)
195 #define _DBUS_ASSERT_ERROR_IS_SET(error) _dbus_assert ((error) == NULL || dbus_error_is_set ((error)))
196 #define _DBUS_ASSERT_ERROR_IS_CLEAR(error) _dbus_assert ((error) == NULL || !dbus_error_is_set ((error)))
199 #define _dbus_return_if_error_is_set(error) _dbus_return_if_fail ((error) == NULL || !dbus_error_is_set ((error)))
200 #define _dbus_return_val_if_error_is_set(error, val) _dbus_return_val_if_fail ((error) == NULL || !dbus_error_is_set ((error)), (val))
213 #define _DBUS_ALIGN_VALUE(this, boundary) \
214 (( ((uintptr_t)(this)) + (((uintptr_t)(boundary)) -1)) & (~(((uintptr_t)(boundary))-1)))
216 #define _DBUS_ALIGN_ADDRESS(this, boundary) \
217 ((void*)_DBUS_ALIGN_VALUE(this, boundary))
227 #define _DBUS_INT16_MIN ((dbus_int16_t) 0x8000)
228 #define _DBUS_INT16_MAX ((dbus_int16_t) 0x7fff)
229 #define _DBUS_UINT16_MAX ((dbus_uint16_t)0xffff)
230 #define _DBUS_INT32_MIN ((dbus_int32_t) 0x80000000)
231 #define _DBUS_INT32_MAX ((dbus_int32_t) 0x7fffffff)
232 #define _DBUS_UINT32_MAX ((dbus_uint32_t)0xffffffff)
234 #define _DBUS_INT_MIN _DBUS_INT32_MIN
235 #define _DBUS_INT_MAX _DBUS_INT32_MAX
236 #define _DBUS_UINT_MAX _DBUS_UINT32_MAX
237 #ifdef DBUS_HAVE_INT64
238 #define _DBUS_INT64_MAX DBUS_INT64_CONSTANT (0x7fffffffffffffff)
239 #define _DBUS_UINT64_MAX DBUS_UINT64_CONSTANT (0xffffffffffffffff)
241 #define _DBUS_ONE_KILOBYTE 1024
242 #define _DBUS_ONE_MEGABYTE 1024 * _DBUS_ONE_KILOBYTE
243 #define _DBUS_ONE_HOUR_IN_MILLISECONDS (1000 * 60 * 60)
244 #define _DBUS_USEC_PER_SECOND (1000000)
247 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
250 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
253 #define ABS(a) (((a) < 0) ? -(a) : (a))
255 #define _DBUS_ISASCII(c) ((c) != '\0' && (((c) & ~0x7f) == 0))
271 #define _DBUS_SET_OOM(error) dbus_set_error_const ((error), DBUS_ERROR_NO_MEMORY, _dbus_no_memory_message)
273 #ifdef DBUS_BUILD_TESTS
275 void _dbus_set_fail_alloc_counter (
int until_next_fail);
276 int _dbus_get_fail_alloc_counter (
void);
277 void _dbus_set_fail_alloc_failures (
int failures_per_failure);
278 int _dbus_get_fail_alloc_failures (
void);
279 dbus_bool_t _dbus_decrement_fail_alloc_counter (
void);
281 int _dbus_get_malloc_blocks_outstanding (
void);
283 typedef dbus_bool_t (* DBusTestMemoryFunction) (
void *data);
284 dbus_bool_t _dbus_test_oom_handling (
const char *description,
285 DBusTestMemoryFunction func,
288 #define _dbus_set_fail_alloc_counter(n)
289 #define _dbus_get_fail_alloc_counter _DBUS_INT_MAX
294 #define _dbus_decrement_fail_alloc_counter() (FALSE)
295 #define _dbus_disable_mem_pools() (FALSE)
296 #define _dbus_get_malloc_blocks_outstanding (0)
299 typedef void (* DBusShutdownFunction) (
void *data);
306 #define _DBUS_LOCK_NAME(name) _dbus_lock_##name
307 #define _DBUS_DECLARE_GLOBAL_LOCK(name) extern DBusRMutex *_dbus_lock_##name
308 #define _DBUS_DEFINE_GLOBAL_LOCK(name) DBusRMutex *_dbus_lock_##name
309 #define _DBUS_LOCK(name) _dbus_rmutex_lock (_dbus_lock_##name)
310 #define _DBUS_UNLOCK(name) _dbus_rmutex_unlock (_dbus_lock_##name)
332 #define _DBUS_N_GLOBAL_LOCKS (15)
334 #define _DBUS_N_GLOBAL_LOCKS (14)
343 const char *address_problem_type,
344 const char *address_problem_field,
345 const char *address_problem_other);
347 #define DBUS_UUID_LENGTH_BYTES 16
348 #define DBUS_UUID_LENGTH_WORDS (DBUS_UUID_LENGTH_BYTES / 4)
349 #define DBUS_UUID_LENGTH_HEX (DBUS_UUID_LENGTH_BYTES * 2)
371 #define _DBUS_PASTE2(a, b) a ## b
372 #define _DBUS_PASTE(a, b) _DBUS_PASTE2 (a, b)
373 #define _DBUS_STATIC_ASSERT(expr) \
374 typedef struct { char _assertion[(expr) ? 1 : -1]; } \
375 _DBUS_PASTE (_DBUS_STATIC_ASSERT_, __LINE__)
unsigned int dbus_uint32_t
A 32-bit unsigned integer on all platforms.
dbus_bool_t _dbus_uuid_encode(const DBusGUID *uuid, DBusString *encoded)
Hex-encode a UUID.
#define DBUS_BEGIN_DECLS
Macro used prior to declaring functions in the D-Bus header files.
void _dbus_real_assert(dbus_bool_t condition, const char *condition_text, const char *file, int line, const char *func)
Internals of _dbus_assert(); it's a function rather than a macro with the inline code so that the ass...
dbus_uint32_t as_uint32s[DBUS_UUID_LENGTH_WORDS]
guid as four uint32 values
const char * _dbus_return_if_fail_warning_format
String used in _dbus_return_if_fail macro.
char as_bytes[DBUS_UUID_LENGTH_BYTES]
guid as 16 single-byte values
void _dbus_warn_check_failed(const char *format,...)
Prints a "critical" warning to stderr when an assertion fails; differs from _dbus_warn primarily in t...
A globally unique ID ; we have one for each DBusServer, and also one for each machine with libdbus in...
dbus_bool_t _dbus_get_local_machine_uuid_encoded(DBusString *uuid_str)
Gets the hex-encoded UUID of the machine this function is executed on.
void _dbus_real_assert_not_reached(const char *explanation, const char *file, int line)
Internals of _dbus_assert_not_reached(); it's a function rather than a macro with the inline code so ...
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
const char * _dbus_no_memory_message
Fixed "out of memory" error message, just to avoid making up a different string every time and wastin...
void _dbus_warn(const char *format,...)
Prints a warning message to stderr.
void * _dbus_memdup(const void *mem, size_t n_bytes)
Duplicates a block of memory.
void _dbus_set_bad_address(DBusError *error, const char *address_problem_type, const char *address_problem_field, const char *address_problem_other)
Sets DBUS_ERROR_BAD_ADDRESS.
int _dbus_current_generation
_dbus_current_generation is used to track each time that dbus_shutdown() is called, so we can reinit things after it's been called.
Object representing an exception.
dbus_bool_t _dbus_address_append_escaped(DBusString *escaped, const DBusString *unescaped)
Appends an escaped version of one string to another string, using the D-Bus address escaping mechanis...
char ** _dbus_dup_string_array(const char **array)
Duplicates a string array.
dbus_bool_t _dbus_read_uuid_file(const DBusString *filename, DBusGUID *uuid, dbus_bool_t create_if_not_found, DBusError *error)
Reads (and optionally writes) a uuid to a file.
dbus_bool_t _dbus_string_array_contains(const char **array, const char *str)
Checks whether a string array contains the given string.
void(* DBusForeachFunction)(void *element, void *data)
Used to iterate over each item in a collection, such as a DBusList.
void _dbus_generate_uuid(DBusGUID *uuid)
Generates a new UUID.
dbus_bool_t _dbus_register_shutdown_func(DBusShutdownFunction function, void *data)
Register a cleanup function to be called exactly once the next time dbus_shutdown() is called...
void _dbus_verbose_bytes_of_string(const DBusString *str, int start, int len)
Dump the given part of the string to verbose log.
char * _dbus_strdup(const char *str)
Duplicates a string.
#define _DBUS_DECLARE_GLOBAL_LOCK(name)
Expands to declaration of a global lock defined with _DBUS_DEFINE_GLOBAL_LOCK.
#define DBUS_END_DECLS
Macro used after declaring functions in the D-Bus header files.
void _dbus_verbose_bytes(const unsigned char *data, int len, int offset)
If in verbose mode, print a block of binary data.