Merge branch 'dbus-1.4'
[platform/upstream/dbus.git] / dbus / dbus-string.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-string.h String utility class (internal to D-Bus implementation)
3  * 
4  * Copyright (C) 2002, 2003 Red Hat, Inc.
5  * Copyright (C) 2006 Ralf Habacker <ralf.habacker@freenet.de>
6  *
7  * Licensed under the Academic Free License version 2.1
8  * 
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  * 
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  *
23  */
24
25 #ifndef DBUS_STRING_H
26 #define DBUS_STRING_H
27
28 #include <dbus/dbus-macros.h>
29 #include <dbus/dbus-types.h>
30 #include <dbus/dbus-memory.h>
31
32 #include <stdarg.h>
33
34 DBUS_BEGIN_DECLS
35
36 /**
37  * DBusString object
38  */
39
40 typedef struct DBusString DBusString;
41
42 struct DBusString
43 {
44 #if defined(DBUS_WIN) && defined(_DEBUG)
45   const char *dummy1; /**< placeholder */
46 #else
47   const void *dummy1; /**< placeholder */
48 #endif
49   int   dummy2;       /**< placeholder */
50   int   dummy3;       /**< placeholder */
51   unsigned int dummy_bit1 : 1; /**< placeholder */
52   unsigned int dummy_bit2 : 1; /**< placeholder */
53   unsigned int dummy_bit3 : 1; /**< placeholder */
54   unsigned int dummy_bits : 3; /**< placeholder */
55 };
56
57 #ifdef DBUS_DISABLE_ASSERT
58 /* Some simple inlining hacks; the current linker is not smart enough
59  * to inline non-exported symbols across files in the library.
60  * Note that these break type safety (due to the casts)
61  */
62 #define _dbus_string_get_data(s) ((char*)(((DBusString*)(s))->dummy1))
63 #define _dbus_string_get_length(s) (((DBusString*)(s))->dummy2)
64 #define _dbus_string_set_byte(s, i, b) ((((unsigned char*)(((DBusString*)(s))->dummy1))[(i)]) = (unsigned char) (b))
65 #define _dbus_string_get_byte(s, i) (((const unsigned char*)(((DBusString*)(s))->dummy1))[(i)])
66 #define _dbus_string_get_const_data(s) ((const char*)(((DBusString*)(s))->dummy1))
67 #define _dbus_string_get_const_data_len(s,start,len) (((const char*)(((DBusString*)(s))->dummy1)) + (start))
68 #endif
69
70 dbus_bool_t   _dbus_string_init                  (DBusString        *str);
71 void          _dbus_string_init_const            (DBusString        *str,
72                                                   const char        *value);
73 void          _dbus_string_init_const_len        (DBusString        *str,
74                                                   const char        *value,
75                                                   int                len);
76 dbus_bool_t   _dbus_string_init_preallocated     (DBusString        *str,
77                                                   int                allocate_size);
78 void          _dbus_string_free                  (DBusString        *str);
79 void          _dbus_string_lock                  (DBusString        *str);
80 dbus_bool_t   _dbus_string_compact               (DBusString        *str,
81                                                   int                max_waste);
82 #ifndef _dbus_string_get_data
83 char*         _dbus_string_get_data              (DBusString        *str);
84 #endif /* _dbus_string_get_data */
85 #ifndef _dbus_string_get_const_data
86 const char*   _dbus_string_get_const_data        (const DBusString  *str);
87 #endif /* _dbus_string_get_const_data */
88 char*         _dbus_string_get_data_len          (DBusString        *str,
89                                                   int                start,
90                                                   int                len);
91 #ifndef _dbus_string_get_const_data_len
92 const char*   _dbus_string_get_const_data_len    (const DBusString  *str,
93                                                   int                start,
94                                                   int                len);
95 #endif
96 #ifndef _dbus_string_set_byte
97 void          _dbus_string_set_byte              (DBusString        *str,
98                                                   int                i,
99                                                   unsigned char      byte);
100 #endif
101 #ifndef _dbus_string_get_byte
102 unsigned char _dbus_string_get_byte              (const DBusString  *str,
103                                                   int                start);
104 #endif /* _dbus_string_get_byte */
105 dbus_bool_t   _dbus_string_insert_bytes          (DBusString        *str,
106                                                   int                i,
107                                                   int                n_bytes,
108                                                   unsigned char      byte);
109 dbus_bool_t   _dbus_string_insert_byte           (DBusString        *str,
110                                                   int                i,
111                                                   unsigned char      byte);
112 dbus_bool_t   _dbus_string_steal_data            (DBusString        *str,
113                                                   char             **data_return);
114 dbus_bool_t   _dbus_string_steal_data_len        (DBusString        *str,
115                                                   char             **data_return,
116                                                   int                start,
117                                                   int                len);
118 dbus_bool_t   _dbus_string_copy_data             (const DBusString  *str,
119                                                   char             **data_return);
120 dbus_bool_t   _dbus_string_copy_data_len         (const DBusString  *str,
121                                                   char             **data_return,
122                                                   int                start,
123                                                   int                len);
124 void          _dbus_string_copy_to_buffer        (const DBusString  *str,
125                                                   char              *buffer,
126                                                   int                len);
127 void          _dbus_string_copy_to_buffer_with_nul (const DBusString  *str,
128                                                     char              *buffer,
129                                                     int                avail_len);
130 #ifndef _dbus_string_get_length
131 int           _dbus_string_get_length            (const DBusString  *str);
132 #endif /* !_dbus_string_get_length */
133
134 dbus_bool_t   _dbus_string_lengthen              (DBusString        *str,
135                                                   int                additional_length);
136 void          _dbus_string_shorten               (DBusString        *str,
137                                                   int                length_to_remove);
138 dbus_bool_t   _dbus_string_set_length            (DBusString        *str,
139                                                   int                length);
140 dbus_bool_t   _dbus_string_align_length          (DBusString        *str,
141                                                   int                alignment);
142 dbus_bool_t   _dbus_string_alloc_space           (DBusString        *str,
143                                                   int                extra_bytes);
144 dbus_bool_t   _dbus_string_append                (DBusString        *str,
145                                                   const char        *buffer);
146 dbus_bool_t   _dbus_string_append_len            (DBusString        *str,
147                                                   const char        *buffer,
148                                                   int                len);
149 dbus_bool_t   _dbus_string_append_int            (DBusString        *str,
150                                                   long               value);
151 dbus_bool_t   _dbus_string_append_uint           (DBusString        *str,
152                                                   unsigned long      value);
153 dbus_bool_t   _dbus_string_append_double         (DBusString        *str,
154                                                   double             value);
155 dbus_bool_t   _dbus_string_append_byte           (DBusString        *str,
156                                                   unsigned char      byte);
157 dbus_bool_t   _dbus_string_append_unichar        (DBusString        *str,
158                                                   dbus_unichar_t     ch);
159 dbus_bool_t   _dbus_string_append_4_aligned      (DBusString        *str,
160                                                   const unsigned char octets[4]);
161 dbus_bool_t   _dbus_string_append_8_aligned      (DBusString        *str,
162                                                   const unsigned char octets[8]);
163 dbus_bool_t   _dbus_string_append_printf         (DBusString        *str,
164                                                   const char        *format,
165                                                   ...) _DBUS_GNUC_PRINTF (2, 3);
166 dbus_bool_t   _dbus_string_append_printf_valist  (DBusString        *str,
167                                                   const char        *format,
168                                                   va_list            args);
169 dbus_bool_t   _dbus_string_insert_2_aligned      (DBusString        *str,
170                                                   int                insert_at,
171                                                   const unsigned char octets[2]);
172 dbus_bool_t   _dbus_string_insert_4_aligned      (DBusString        *str,
173                                                   int                insert_at,
174                                                   const unsigned char octets[4]);
175 dbus_bool_t   _dbus_string_insert_8_aligned      (DBusString        *str,
176                                                   int                insert_at,
177                                                   const unsigned char octets[8]);
178 dbus_bool_t   _dbus_string_insert_alignment      (DBusString        *str,
179                                                   int               *insert_at,
180                                                   int                alignment);
181 void          _dbus_string_delete                (DBusString        *str,
182                                                   int                start,
183                                                   int                len);
184 dbus_bool_t   _dbus_string_move                  (DBusString        *source,
185                                                   int                start,
186                                                   DBusString        *dest,
187                                                   int                insert_at);
188 dbus_bool_t   _dbus_string_copy                  (const DBusString  *source,
189                                                   int                start,
190                                                   DBusString        *dest,
191                                                   int                insert_at);
192 dbus_bool_t   _dbus_string_move_len              (DBusString        *source,
193                                                   int                start,
194                                                   int                len,
195                                                   DBusString        *dest,
196                                                   int                insert_at);
197 dbus_bool_t   _dbus_string_copy_len              (const DBusString  *source,
198                                                   int                start,
199                                                   int                len,
200                                                   DBusString        *dest,
201                                                   int                insert_at);
202 dbus_bool_t   _dbus_string_replace_len           (const DBusString  *source,
203                                                   int                start,
204                                                   int                len,
205                                                   DBusString        *dest,
206                                                   int                replace_at,
207                                                   int                replace_len);
208 dbus_bool_t   _dbus_string_split_on_byte         (DBusString        *source,
209                                                   unsigned char      byte,
210                                                   DBusString        *tail);
211 void          _dbus_string_get_unichar           (const DBusString  *str,
212                                                   int                start,
213                                                   dbus_unichar_t    *ch_return,
214                                                   int               *end_return);
215 dbus_bool_t   _dbus_string_parse_int             (const DBusString  *str,
216                                                   int                start,
217                                                   long              *value_return,
218                                                   int               *end_return);
219 dbus_bool_t   _dbus_string_parse_uint            (const DBusString  *str,
220                                                   int                start,
221                                                   unsigned long     *value_return,
222                                                   int               *end_return);
223 dbus_bool_t   _dbus_string_parse_double          (const DBusString  *str,
224                                                   int                start,
225                                                   double            *value,
226                                                   int               *end_return);
227 dbus_bool_t   _dbus_string_find                  (const DBusString  *str,
228                                                   int                start,
229                                                   const char        *substr,
230                                                   int               *found);
231 dbus_bool_t   _dbus_string_find_eol               (const DBusString *str,
232                                                   int               start,
233                                                   int               *found,
234                                                   int               *found_len);
235 dbus_bool_t   _dbus_string_find_to               (const DBusString  *str,
236                                                   int                start,
237                                                   int                end,
238                                                   const char        *substr,
239                                                   int               *found);
240 dbus_bool_t   _dbus_string_find_byte_backward    (const DBusString  *str,
241                                                   int                start,
242                                                   unsigned char      byte,
243                                                   int               *found);
244 dbus_bool_t   _dbus_string_find_blank            (const DBusString  *str,
245                                                   int                start,
246                                                   int               *found);
247 void          _dbus_string_skip_blank            (const DBusString  *str,
248                                                   int                start,
249                                                   int               *end);
250 void          _dbus_string_skip_white            (const DBusString  *str,
251                                                   int                start,
252                                                   int               *end);
253 void          _dbus_string_skip_white_reverse    (const DBusString  *str,
254                                                   int                end,
255                                                   int               *start);
256 dbus_bool_t   _dbus_string_equal                 (const DBusString  *a,
257                                                   const DBusString  *b);
258 dbus_bool_t   _dbus_string_equal_c_str           (const DBusString  *a,
259                                                   const char        *c_str);
260 dbus_bool_t   _dbus_string_equal_len             (const DBusString  *a,
261                                                   const DBusString  *b,
262                                                   int                len);
263 dbus_bool_t   _dbus_string_equal_substring       (const DBusString  *a,
264                                                   int                a_start,
265                                                   int                a_len,
266                                                   const DBusString  *b,
267                                                   int                b_start);
268 dbus_bool_t   _dbus_string_starts_with_c_str     (const DBusString  *a,
269                                                   const char        *c_str);
270 dbus_bool_t   _dbus_string_ends_with_c_str       (const DBusString  *a,
271                                                   const char        *c_str);
272 dbus_bool_t   _dbus_string_pop_line              (DBusString        *source,
273                                                   DBusString        *dest);
274 void          _dbus_string_delete_first_word     (DBusString        *str);
275 void          _dbus_string_delete_leading_blanks (DBusString        *str);
276 void          _dbus_string_chop_white            (DBusString        *str); 
277 dbus_bool_t   _dbus_string_append_byte_as_hex    (DBusString        *str,
278                                                   int                byte);
279 dbus_bool_t   _dbus_string_hex_encode            (const DBusString  *source,
280                                                   int                start,
281                                                   DBusString        *dest,
282                                                   int                insert_at);
283 dbus_bool_t   _dbus_string_hex_decode            (const DBusString  *source,
284                                                   int                start,
285                                                   int               *end_return,
286                                                   DBusString        *dest,
287                                                   int                insert_at);
288 void          _dbus_string_tolower_ascii         (const DBusString  *str,
289                                                   int                start,
290                                                   int                len);
291 void          _dbus_string_toupper_ascii         (const DBusString  *str,
292                                                   int                start,
293                                                   int                len);
294 dbus_bool_t   _dbus_string_validate_ascii        (const DBusString  *str,
295                                                   int                start,
296                                                   int                len);
297 dbus_bool_t   _dbus_string_validate_utf8         (const DBusString  *str,
298                                                   int                start,
299                                                   int                len);
300 dbus_bool_t   _dbus_string_validate_nul          (const DBusString  *str,
301                                                   int                start,
302                                                   int                len);
303 void          _dbus_string_zero                  (DBusString        *str);
304
305
306 /**
307  * We allocate 1 byte for nul termination, plus 7 bytes for possible
308  * align_offset, so we always need 8 bytes on top of the string's
309  * length to be in the allocated block.
310  */
311 #define _DBUS_STRING_ALLOCATION_PADDING 8
312
313 /**
314  * Defines a static const variable with type #DBusString called "name"
315  * containing the given string literal.
316  *
317  * @param name the name of the variable
318  * @param str the string value
319  */
320 #define _DBUS_STRING_DEFINE_STATIC(name, str)                           \
321   static const char _dbus_static_string_##name[] = str;                 \
322   static const DBusString name = { _dbus_static_string_##name,          \
323                                    sizeof(_dbus_static_string_##name),  \
324                                    sizeof(_dbus_static_string_##name) + \
325                                    _DBUS_STRING_ALLOCATION_PADDING,     \
326                                    TRUE, TRUE, FALSE, 0 }
327
328 DBUS_END_DECLS
329
330 #endif /* DBUS_STRING_H */