Additional fixes for 2154acb3492d5ba19da36562e8409016da9cb79b
[platform/upstream/dbus.git] / dbus / dbus-internals.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-internals.h  random utility stuff (internal to D-Bus implementation)
3  *
4  * Copyright (C) 2002, 2003  Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23 #ifdef DBUS_INSIDE_DBUS_H
24 #error "You can't include dbus-internals.h in the public header dbus.h"
25 #endif
26
27 #ifndef DBUS_INTERNALS_H
28 #define DBUS_INTERNALS_H
29
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>
35
36 DBUS_BEGIN_DECLS
37
38 #define DBUS_SESSION_BUS_DEFAULT_ADDRESS        "autolaunch:"
39
40 void _dbus_warn               (const char *format,
41                                ...) _DBUS_GNUC_PRINTF (1, 2);
42
43 void _dbus_warn_check_failed  (const char *format,
44                                ...) _DBUS_GNUC_PRINTF (1, 2);
45
46
47 #if defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
48 #define _DBUS_FUNCTION_NAME __func__
49 #elif defined(__GNUC__) || defined(_MSC_VER)
50 #define _DBUS_FUNCTION_NAME __FUNCTION__
51 #else
52 #define _DBUS_FUNCTION_NAME "unknown function"
53 #endif
54
55 /*
56  * (code from GLib)
57  * 
58  * The _DBUS_LIKELY and _DBUS_UNLIKELY macros let the programmer give hints to 
59  * the compiler about the expected result of an expression. Some compilers
60  * can use this information for optimizations.
61  *
62  * The _DBUS_BOOLEAN_EXPR macro is intended to trigger a gcc warning when
63  * putting assignments in the macro arg
64  */
65 #if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
66 #define _DBUS_BOOLEAN_EXPR(expr)                \
67  __extension__ ({                               \
68    int _dbus_boolean_var_;                      \
69    if (expr)                                    \
70       _dbus_boolean_var_ = 1;                   \
71    else                                         \
72       _dbus_boolean_var_ = 0;                   \
73    _dbus_boolean_var_;                          \
74 })
75 #define _DBUS_LIKELY(expr) (__builtin_expect (_DBUS_BOOLEAN_EXPR(expr), 1))
76 #define _DBUS_UNLIKELY(expr) (__builtin_expect (_DBUS_BOOLEAN_EXPR(expr), 0))
77 #else
78 #define _DBUS_LIKELY(expr) (expr)
79 #define _DBUS_UNLIKELY(expr) (expr)
80 #endif
81
82 #ifdef DBUS_ENABLE_VERBOSE_MODE
83
84 /*
85  at least gnu cc and msvc compiler are known to 
86  have support for variable macro argument lists
87  add other compilers is required
88 */
89 #if defined(__GNUC__) || defined(_MSC_VER) 
90 #define DBUS_CPP_SUPPORTS_VARIABLE_MACRO_ARGUMENTS
91 #endif
92
93 #ifdef DBUS_CPP_SUPPORTS_VARIABLE_MACRO_ARGUMENTS
94 void _dbus_verbose_real       (const char *file, const int line, const char *function, 
95                                const char *format,...) _DBUS_GNUC_PRINTF (4, 5);
96 #  define _dbus_verbose(fmt,...) _dbus_verbose_real( __FILE__,__LINE__,__FUNCTION__,fmt, ## __VA_ARGS__)
97 #else
98 void _dbus_verbose_real       (const char *format,
99                                ...) _DBUS_GNUC_PRINTF (1, 2);
100 #  define _dbus_verbose _dbus_verbose_real
101 #endif
102 void _dbus_verbose_reset_real (void);
103 dbus_bool_t _dbus_is_verbose_real (void);
104
105 #  define _dbus_verbose_reset _dbus_verbose_reset_real
106 #  define _dbus_is_verbose _dbus_is_verbose_real
107 #else
108 #  ifdef HAVE_ISO_VARARGS
109 #    define _dbus_verbose(...)
110 #  elif defined (HAVE_GNUC_VARARGS)
111 #    define _dbus_verbose(format...)
112 #  else
113 static void _dbus_verbose(const char * x,...) {;}
114 #  endif
115 #  define _dbus_verbose_reset()
116 #  define _dbus_is_verbose() FALSE 
117 #endif /* !DBUS_ENABLE_VERBOSE_MODE */
118
119 const char* _dbus_strerror (int error_number);
120
121 #ifdef DBUS_DISABLE_ASSERT
122 #define _dbus_assert(condition)
123 #else
124 void _dbus_real_assert (dbus_bool_t  condition,
125                         const char  *condition_text,
126                         const char  *file,
127                         int          line,
128                         const char  *func);
129 #define _dbus_assert(condition)                                         \
130   _dbus_real_assert ((condition) != 0, #condition, __FILE__, __LINE__, _DBUS_FUNCTION_NAME)
131 #endif /* !DBUS_DISABLE_ASSERT */
132
133 #ifdef DBUS_DISABLE_ASSERT
134 #define _dbus_assert_not_reached(explanation)
135 #else
136 void _dbus_real_assert_not_reached (const char *explanation,
137                                     const char *file,
138                                     int         line) _DBUS_GNUC_NORETURN;
139 #define _dbus_assert_not_reached(explanation)                                   \
140   _dbus_real_assert_not_reached (explanation, __FILE__, __LINE__)
141 #endif /* !DBUS_DISABLE_ASSERT */
142
143 #ifdef DBUS_DISABLE_CHECKS
144 #define _dbus_return_if_fail(condition)
145 #define _dbus_return_val_if_fail(condition, val)
146 #else
147
148 extern const char *_dbus_return_if_fail_warning_format;
149
150 #define _dbus_return_if_fail(condition) do {                                       \
151    _dbus_assert ((*(const char*)_DBUS_FUNCTION_NAME) != '_');                      \
152   if (!(condition)) {                                                              \
153     _dbus_warn_check_failed (_dbus_return_if_fail_warning_format,                  \
154                              _DBUS_FUNCTION_NAME, #condition, __FILE__, __LINE__); \
155     return;                                                                        \
156   } } while (0)
157
158 #define _dbus_return_val_if_fail(condition, val) do {                                   \
159    _dbus_assert ((*(const char*)_DBUS_FUNCTION_NAME) != '_');                           \
160   if (!(condition)) {                                                                   \
161     _dbus_warn_check_failed (_dbus_return_if_fail_warning_format,                       \
162                              _DBUS_FUNCTION_NAME, #condition, __FILE__, __LINE__);      \
163     return (val);                                                                       \
164   } } while (0)
165
166 #endif /* !DBUS_DISABLE_ASSERT */
167
168 #define _DBUS_N_ELEMENTS(array) ((int) (sizeof ((array)) / sizeof ((array)[0])))
169
170 #define _DBUS_POINTER_TO_INT(pointer) ((long)(pointer))
171 #define _DBUS_INT_TO_POINTER(integer) ((void*)((long)(integer)))
172
173 #define _DBUS_ZERO(object) (memset (&(object), '\0', sizeof ((object))))
174
175 #define _DBUS_STRUCT_OFFSET(struct_type, member)        \
176     ((long) ((unsigned char*) &((struct_type*) 0)->member))
177
178 #ifdef DBUS_DISABLE_CHECKS
179 /* this is an assert and not an error, but in the typical --disable-checks case (you're trying
180  * to really minimize code size), disabling these assertions makes sense.
181  */
182 #define _DBUS_ASSERT_ERROR_IS_SET(error)
183 #define _DBUS_ASSERT_ERROR_IS_CLEAR(error)
184 #else
185 #define _DBUS_ASSERT_ERROR_IS_SET(error)   _dbus_assert ((error) == NULL || dbus_error_is_set ((error)))
186 #define _DBUS_ASSERT_ERROR_IS_CLEAR(error) _dbus_assert ((error) == NULL || !dbus_error_is_set ((error)))
187 #endif
188
189 #define _dbus_return_if_error_is_set(error) _dbus_return_if_fail ((error) == NULL || !dbus_error_is_set ((error)))
190 #define _dbus_return_val_if_error_is_set(error, val) _dbus_return_val_if_fail ((error) == NULL || !dbus_error_is_set ((error)), (val))
191
192 /* This alignment thing is from ORBit2 */
193 /* Align a value upward to a boundary, expressed as a number of bytes.
194  * E.g. align to an 8-byte boundary with argument of 8.
195  */
196
197 /*
198  *   (this + boundary - 1)
199  *          &
200  *    ~(boundary - 1)
201  */
202
203 #define _DBUS_ALIGN_VALUE(this, boundary) \
204   (( ((unsigned long)(this)) + (((unsigned long)(boundary)) -1)) & (~(((unsigned long)(boundary))-1)))
205
206 #define _DBUS_ALIGN_ADDRESS(this, boundary) \
207   ((void*)_DBUS_ALIGN_VALUE(this, boundary))
208
209
210 char*       _dbus_strdup                (const char  *str);
211 void*       _dbus_memdup                (const void  *mem,
212                                          size_t       n_bytes);
213 dbus_bool_t _dbus_string_array_contains (const char **array,
214                                          const char  *str);
215 char**      _dbus_dup_string_array      (const char **array);
216
217 #define _DBUS_INT16_MIN  ((dbus_int16_t) 0x8000)
218 #define _DBUS_INT16_MAX  ((dbus_int16_t) 0x7fff)
219 #define _DBUS_UINT16_MAX ((dbus_uint16_t)0xffff)
220 #define _DBUS_INT32_MIN  ((dbus_int32_t) 0x80000000)
221 #define _DBUS_INT32_MAX  ((dbus_int32_t) 0x7fffffff)
222 #define _DBUS_UINT32_MAX ((dbus_uint32_t)0xffffffff)
223 /* using 32-bit here is sort of bogus */
224 #define _DBUS_INT_MIN    _DBUS_INT32_MIN
225 #define _DBUS_INT_MAX    _DBUS_INT32_MAX
226 #define _DBUS_UINT_MAX   _DBUS_UINT32_MAX
227 #ifdef DBUS_HAVE_INT64
228 #define _DBUS_INT64_MAX  DBUS_INT64_CONSTANT  (0x7fffffffffffffff)
229 #define _DBUS_UINT64_MAX DBUS_UINT64_CONSTANT (0xffffffffffffffff)
230 #endif
231 #define _DBUS_ONE_KILOBYTE 1024
232 #define _DBUS_ONE_MEGABYTE 1024 * _DBUS_ONE_KILOBYTE
233 #define _DBUS_ONE_HOUR_IN_MILLISECONDS (1000 * 60 * 60)
234 #define _DBUS_USEC_PER_SECOND          (1000000)
235
236 #undef  MAX
237 #define MAX(a, b)  (((a) > (b)) ? (a) : (b))
238
239 #undef  MIN
240 #define MIN(a, b)  (((a) < (b)) ? (a) : (b))
241
242 #undef  ABS
243 #define ABS(a)     (((a) < 0) ? -(a) : (a))
244
245 #define _DBUS_ISASCII(c) ((c) != '\0' && (((c) & ~0x7f) == 0))
246
247 typedef void (* DBusForeachFunction) (void *element,
248                                       void *data);
249
250 dbus_bool_t _dbus_set_fd_nonblocking (int             fd,
251                                       DBusError      *error);
252
253 void _dbus_verbose_bytes           (const unsigned char *data,
254                                     int                  len,
255                                     int                  offset);
256 void _dbus_verbose_bytes_of_string (const DBusString    *str,
257                                     int                  start,
258                                     int                  len);
259
260 const char* _dbus_header_field_to_string (int header_field);
261
262 extern const char *_dbus_no_memory_message;
263 #define _DBUS_SET_OOM(error) dbus_set_error_const ((error), DBUS_ERROR_NO_MEMORY, _dbus_no_memory_message)
264
265 #ifdef DBUS_BUILD_TESTS
266 /* Memory debugging */
267 void        _dbus_set_fail_alloc_counter        (int  until_next_fail);
268 int         _dbus_get_fail_alloc_counter        (void);
269 void        _dbus_set_fail_alloc_failures       (int  failures_per_failure);
270 int         _dbus_get_fail_alloc_failures       (void);
271 dbus_bool_t _dbus_decrement_fail_alloc_counter  (void);
272 dbus_bool_t _dbus_disable_mem_pools             (void);
273 int         _dbus_get_malloc_blocks_outstanding (void);
274
275 typedef dbus_bool_t (* DBusTestMemoryFunction)  (void *data);
276 dbus_bool_t _dbus_test_oom_handling (const char             *description,
277                                      DBusTestMemoryFunction  func,
278                                      void                   *data);
279 #else
280 #define _dbus_set_fail_alloc_counter(n)
281 #define _dbus_get_fail_alloc_counter _DBUS_INT_MAX
282
283 /* These are constant expressions so that blocks
284  * they protect should be optimized away
285  */
286 #define _dbus_decrement_fail_alloc_counter() (FALSE)
287 #define _dbus_disable_mem_pools()            (FALSE)
288 #define _dbus_get_malloc_blocks_outstanding  (0)
289 #endif /* !DBUS_BUILD_TESTS */
290
291 typedef void (* DBusShutdownFunction) (void *data);
292 dbus_bool_t _dbus_register_shutdown_func (DBusShutdownFunction  function,
293                                           void                 *data);
294
295 extern int _dbus_current_generation;
296
297 /* Thread initializers */
298 #define _DBUS_LOCK_NAME(name)           _dbus_lock_##name
299 #define _DBUS_DECLARE_GLOBAL_LOCK(name) extern DBusMutex  *_dbus_lock_##name
300 #define _DBUS_DEFINE_GLOBAL_LOCK(name)  DBusMutex         *_dbus_lock_##name  
301 #define _DBUS_LOCK(name)                _dbus_mutex_lock   (_dbus_lock_##name)
302 #define _DBUS_UNLOCK(name)              _dbus_mutex_unlock (_dbus_lock_##name)
303
304 /* 1-5 */
305 _DBUS_DECLARE_GLOBAL_LOCK (list);
306 _DBUS_DECLARE_GLOBAL_LOCK (connection_slots);
307 _DBUS_DECLARE_GLOBAL_LOCK (pending_call_slots);
308 _DBUS_DECLARE_GLOBAL_LOCK (server_slots);
309 _DBUS_DECLARE_GLOBAL_LOCK (message_slots);
310 /* 5-10 */
311 _DBUS_DECLARE_GLOBAL_LOCK (bus);
312 _DBUS_DECLARE_GLOBAL_LOCK (bus_datas);
313 _DBUS_DECLARE_GLOBAL_LOCK (shutdown_funcs);
314 _DBUS_DECLARE_GLOBAL_LOCK (system_users);
315 _DBUS_DECLARE_GLOBAL_LOCK (message_cache);
316 /* 10-14 */
317 _DBUS_DECLARE_GLOBAL_LOCK (shared_connections);
318 _DBUS_DECLARE_GLOBAL_LOCK (win_fds);
319 _DBUS_DECLARE_GLOBAL_LOCK (sid_atom_cache);
320 _DBUS_DECLARE_GLOBAL_LOCK (machine_uuid);
321
322 #if !DBUS_USE_SYNC
323 _DBUS_DECLARE_GLOBAL_LOCK (atomic);
324 #define _DBUS_N_GLOBAL_LOCKS (15)
325 #else
326 #define _DBUS_N_GLOBAL_LOCKS (14)
327 #endif
328
329 dbus_bool_t _dbus_threads_init_debug (void);
330
331 dbus_bool_t   _dbus_address_append_escaped (DBusString       *escaped,
332                                             const DBusString *unescaped);
333
334 void          _dbus_set_bad_address        (DBusError         *error,
335                                             const char        *address_problem_type,
336                                             const char        *address_problem_field,
337                                             const char        *address_problem_other);
338
339 #define DBUS_UUID_LENGTH_BYTES 16
340 #define DBUS_UUID_LENGTH_WORDS (DBUS_UUID_LENGTH_BYTES / 4)
341 #define DBUS_UUID_LENGTH_HEX   (DBUS_UUID_LENGTH_BYTES * 2)
342
343 /**
344  * A globally unique ID ; we have one for each DBusServer, and also one for each
345  * machine with libdbus installed on it.
346  */
347 union DBusGUID
348 {
349   dbus_uint32_t as_uint32s[DBUS_UUID_LENGTH_WORDS];     /**< guid as four uint32 values */
350   char as_bytes[DBUS_UUID_LENGTH_BYTES];                /**< guid as 16 single-byte values */
351 };
352
353 void        _dbus_generate_uuid  (DBusGUID         *uuid);
354 dbus_bool_t _dbus_uuid_encode    (const DBusGUID   *uuid,
355                                   DBusString       *encoded);
356 dbus_bool_t _dbus_read_uuid_file (const DBusString *filename,
357                                   DBusGUID         *uuid,
358                                   dbus_bool_t       create_if_not_found,
359                                   DBusError        *error);
360
361 dbus_bool_t _dbus_get_local_machine_uuid_encoded (DBusString *uuid_str);
362
363 DBUS_END_DECLS
364
365 #endif /* DBUS_INTERNALS_H */