Revert "_dbus_string_to_lower(): new function"
[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 <config.h>
29
30 #include <dbus/dbus-macros.h>
31 #include <dbus/dbus-types.h>
32 #include <dbus/dbus-memory.h>
33
34 #include <stdarg.h>
35
36 DBUS_BEGIN_DECLS
37
38 /**
39  * DBusString object
40  */
41
42 typedef struct DBusString DBusString;
43
44 struct DBusString
45 {
46   const void *dummy1; /**< placeholder */
47   int   dummy2;       /**< placeholder */
48   int   dummy3;       /**< placeholder */
49   int   dummy4;       /**< placeholder */
50   unsigned int dummy5 : 1; /**< placeholder */
51   unsigned int dummy6 : 1; /**< placeholder */
52   unsigned int dummy7 : 1; /**< placeholder */
53   unsigned int dummy8 : 3; /**< placeholder */
54 };
55
56 #ifdef DBUS_DISABLE_ASSERT
57 /* Some simple inlining hacks; the current linker is not smart enough
58  * to inline non-exported symbols across files in the library.
59  * Note that these break type safety (due to the casts)
60  */
61 #define _dbus_string_get_data(s) ((char*)(((DBusString*)(s))->dummy1))
62 #define _dbus_string_get_length(s) (((DBusString*)(s))->dummy2)
63 #define _dbus_string_set_byte(s, i, b) ((((unsigned char*)(((DBusString*)(s))->dummy1))[(i)]) = (unsigned char) (b))
64 #define _dbus_string_get_byte(s, i) (((const unsigned char*)(((DBusString*)(s))->dummy1))[(i)])
65 #define _dbus_string_get_const_data(s) ((const char*)(((DBusString*)(s))->dummy1))
66 #define _dbus_string_get_const_data_len(s,start,len) (((const char*)(((DBusString*)(s))->dummy1)) + (start))
67 #endif
68
69 dbus_bool_t   _dbus_string_init                  (DBusString        *str);
70 void          _dbus_string_init_const            (DBusString        *str,
71                                                   const char        *value);
72 void          _dbus_string_init_const_len        (DBusString        *str,
73                                                   const char        *value,
74                                                   int                len);
75 dbus_bool_t   _dbus_string_init_preallocated     (DBusString        *str,
76                                                   int                allocate_size);
77 void          _dbus_string_free                  (DBusString        *str);
78 void          _dbus_string_lock                  (DBusString        *str);
79 dbus_bool_t   _dbus_string_compact               (DBusString        *str,
80                                                   int                max_waste);
81 #ifndef _dbus_string_get_data
82 char*         _dbus_string_get_data              (DBusString        *str);
83 #endif /* _dbus_string_get_data */
84 #ifndef _dbus_string_get_const_data
85 const char*   _dbus_string_get_const_data        (const DBusString  *str);
86 #endif /* _dbus_string_get_const_data */
87 char*         _dbus_string_get_data_len          (DBusString        *str,
88                                                   int                start,
89                                                   int                len);
90 #ifndef _dbus_string_get_const_data_len
91 const char*   _dbus_string_get_const_data_len    (const DBusString  *str,
92                                                   int                start,
93                                                   int                len);
94 #endif
95 #ifndef _dbus_string_set_byte
96 void          _dbus_string_set_byte              (DBusString        *str,
97                                                   int                i,
98                                                   unsigned char      byte);
99 #endif
100 #ifndef _dbus_string_get_byte
101 unsigned char _dbus_string_get_byte              (const DBusString  *str,
102                                                   int                start);
103 #endif /* _dbus_string_get_byte */
104 dbus_bool_t   _dbus_string_insert_bytes          (DBusString        *str,
105                                                   int                i,
106                                                   int                n_bytes,
107                                                   unsigned char      byte);
108 dbus_bool_t   _dbus_string_insert_byte           (DBusString        *str,
109                                                   int                i,
110                                                   unsigned char      byte);
111 dbus_bool_t   _dbus_string_steal_data            (DBusString        *str,
112                                                   char             **data_return);
113 dbus_bool_t   _dbus_string_steal_data_len        (DBusString        *str,
114                                                   char             **data_return,
115                                                   int                start,
116                                                   int                len);
117 dbus_bool_t   _dbus_string_copy_data             (const DBusString  *str,
118                                                   char             **data_return);
119 dbus_bool_t   _dbus_string_copy_data_len         (const DBusString  *str,
120                                                   char             **data_return,
121                                                   int                start,
122                                                   int                len);
123 void          _dbus_string_copy_to_buffer        (const DBusString  *str,
124                                                   char              *buffer,
125                                                   int                len);
126 void          _dbus_string_copy_to_buffer_with_nul (const DBusString  *str,
127                                                     char              *buffer,
128                                                     int                avail_len);
129 #ifndef _dbus_string_get_length
130 int           _dbus_string_get_length            (const DBusString  *str);
131 #endif /* !_dbus_string_get_length */
132
133 dbus_bool_t   _dbus_string_lengthen              (DBusString        *str,
134                                                   int                additional_length);
135 void          _dbus_string_shorten               (DBusString        *str,
136                                                   int                length_to_remove);
137 dbus_bool_t   _dbus_string_set_length            (DBusString        *str,
138                                                   int                length);
139 dbus_bool_t   _dbus_string_align_length          (DBusString        *str,
140                                                   int                alignment);
141 dbus_bool_t   _dbus_string_alloc_space           (DBusString        *str,
142                                                   int                extra_bytes);
143 dbus_bool_t   _dbus_string_append                (DBusString        *str,
144                                                   const char        *buffer);
145 dbus_bool_t   _dbus_string_append_len            (DBusString        *str,
146                                                   const char        *buffer,
147                                                   int                len);
148 dbus_bool_t   _dbus_string_append_int            (DBusString        *str,
149                                                   long               value);
150 dbus_bool_t   _dbus_string_append_uint           (DBusString        *str,
151                                                   unsigned long      value);
152 dbus_bool_t   _dbus_string_append_double         (DBusString        *str,
153                                                   double             value);
154 dbus_bool_t   _dbus_string_append_byte           (DBusString        *str,
155                                                   unsigned char      byte);
156 dbus_bool_t   _dbus_string_append_unichar        (DBusString        *str,
157                                                   dbus_unichar_t     ch);
158 dbus_bool_t   _dbus_string_append_4_aligned      (DBusString        *str,
159                                                   const unsigned char octets[4]);
160 dbus_bool_t   _dbus_string_append_8_aligned      (DBusString        *str,
161                                                   const unsigned char octets[8]);
162 dbus_bool_t   _dbus_string_append_printf         (DBusString        *str,
163                                                   const char        *format,
164                                                   ...) _DBUS_GNUC_PRINTF (2, 3);
165 dbus_bool_t   _dbus_string_append_printf_valist  (DBusString        *str,
166                                                   const char        *format,
167                                                   va_list            args);
168 dbus_bool_t   _dbus_string_insert_2_aligned      (DBusString        *str,
169                                                   int                insert_at,
170                                                   const unsigned char octets[2]);
171 dbus_bool_t   _dbus_string_insert_4_aligned      (DBusString        *str,
172                                                   int                insert_at,
173                                                   const unsigned char octets[4]);
174 dbus_bool_t   _dbus_string_insert_8_aligned      (DBusString        *str,
175                                                   int                insert_at,
176                                                   const unsigned char octets[8]);
177 dbus_bool_t   _dbus_string_insert_alignment      (DBusString        *str,
178                                                   int               *insert_at,
179                                                   int                alignment);
180 void          _dbus_string_delete                (DBusString        *str,
181                                                   int                start,
182                                                   int                len);
183 dbus_bool_t   _dbus_string_move                  (DBusString        *source,
184                                                   int                start,
185                                                   DBusString        *dest,
186                                                   int                insert_at);
187 dbus_bool_t   _dbus_string_copy                  (const DBusString  *source,
188                                                   int                start,
189                                                   DBusString        *dest,
190                                                   int                insert_at);
191 dbus_bool_t   _dbus_string_move_len              (DBusString        *source,
192                                                   int                start,
193                                                   int                len,
194                                                   DBusString        *dest,
195                                                   int                insert_at);
196 dbus_bool_t   _dbus_string_copy_len              (const DBusString  *source,
197                                                   int                start,
198                                                   int                len,
199                                                   DBusString        *dest,
200                                                   int                insert_at);
201 dbus_bool_t   _dbus_string_replace_len           (const DBusString  *source,
202                                                   int                start,
203                                                   int                len,
204                                                   DBusString        *dest,
205                                                   int                replace_at,
206                                                   int                replace_len);
207 dbus_bool_t   _dbus_string_split_on_byte         (DBusString        *source,
208                                                   unsigned char      byte,
209                                                   DBusString        *tail);
210 void          _dbus_string_get_unichar           (const DBusString  *str,
211                                                   int                start,
212                                                   dbus_unichar_t    *ch_return,
213                                                   int               *end_return);
214 dbus_bool_t   _dbus_string_parse_int             (const DBusString  *str,
215                                                   int                start,
216                                                   long              *value_return,
217                                                   int               *end_return);
218 dbus_bool_t   _dbus_string_parse_uint            (const DBusString  *str,
219                                                   int                start,
220                                                   unsigned long     *value_return,
221                                                   int               *end_return);
222 dbus_bool_t   _dbus_string_parse_double          (const DBusString  *str,
223                                                   int                start,
224                                                   double            *value,
225                                                   int               *end_return);
226 dbus_bool_t   _dbus_string_find                  (const DBusString  *str,
227                                                   int                start,
228                                                   const char        *substr,
229                                                   int               *found);
230 dbus_bool_t   _dbus_string_find_eol               (const DBusString *str,
231                                                   int               start,
232                                                   int               *found,
233                                                   int               *found_len);
234 dbus_bool_t   _dbus_string_find_to               (const DBusString  *str,
235                                                   int                start,
236                                                   int                end,
237                                                   const char        *substr,
238                                                   int               *found);
239 dbus_bool_t   _dbus_string_find_byte_backward    (const DBusString  *str,
240                                                   int                start,
241                                                   unsigned char      byte,
242                                                   int               *found);
243 dbus_bool_t   _dbus_string_find_blank            (const DBusString  *str,
244                                                   int                start,
245                                                   int               *found);
246 void          _dbus_string_skip_blank            (const DBusString  *str,
247                                                   int                start,
248                                                   int               *end);
249 void          _dbus_string_skip_white            (const DBusString  *str,
250                                                   int                start,
251                                                   int               *end);
252 void          _dbus_string_skip_white_reverse    (const DBusString  *str,
253                                                   int                end,
254                                                   int               *start);
255 dbus_bool_t   _dbus_string_equal                 (const DBusString  *a,
256                                                   const DBusString  *b);
257 dbus_bool_t   _dbus_string_equal_c_str           (const DBusString  *a,
258                                                   const char        *c_str);
259 dbus_bool_t   _dbus_string_equal_len             (const DBusString  *a,
260                                                   const DBusString  *b,
261                                                   int                len);
262 dbus_bool_t   _dbus_string_equal_substring       (const DBusString  *a,
263                                                   int                a_start,
264                                                   int                a_len,
265                                                   const DBusString  *b,
266                                                   int                b_start);
267 dbus_bool_t   _dbus_string_starts_with_c_str     (const DBusString  *a,
268                                                   const char        *c_str);
269 dbus_bool_t   _dbus_string_ends_with_c_str       (const DBusString  *a,
270                                                   const char        *c_str);
271 dbus_bool_t   _dbus_string_pop_line              (DBusString        *source,
272                                                   DBusString        *dest);
273 void          _dbus_string_delete_first_word     (DBusString        *str);
274 void          _dbus_string_delete_leading_blanks (DBusString        *str);
275 void          _dbus_string_chop_white            (DBusString        *str); 
276 dbus_bool_t   _dbus_string_append_byte_as_hex    (DBusString        *str,
277                                                   int                byte);
278 dbus_bool_t   _dbus_string_hex_encode            (const DBusString  *source,
279                                                   int                start,
280                                                   DBusString        *dest,
281                                                   int                insert_at);
282 dbus_bool_t   _dbus_string_hex_decode            (const DBusString  *source,
283                                                   int                start,
284                                                   int               *end_return,
285                                                   DBusString        *dest,
286                                                   int                insert_at);
287 dbus_bool_t   _dbus_string_validate_ascii        (const DBusString  *str,
288                                                   int                start,
289                                                   int                len);
290 dbus_bool_t   _dbus_string_validate_utf8         (const DBusString  *str,
291                                                   int                start,
292                                                   int                len);
293 dbus_bool_t   _dbus_string_validate_nul          (const DBusString  *str,
294                                                   int                start,
295                                                   int                len);
296 void          _dbus_string_zero                  (DBusString        *str);
297
298
299 /**
300  * We allocate 1 byte for nul termination, plus 7 bytes for possible
301  * align_offset, so we always need 8 bytes on top of the string's
302  * length to be in the allocated block.
303  */
304 #define _DBUS_STRING_ALLOCATION_PADDING 8
305
306 /**
307  * Defines a static const variable with type #DBusString called "name"
308  * containing the given string literal.
309  *
310  * @param name the name of the variable
311  * @param str the string value
312  */
313 #define _DBUS_STRING_DEFINE_STATIC(name, str)                           \
314   static const char _dbus_static_string_##name[] = str;                 \
315   static const DBusString name = { _dbus_static_string_##name,          \
316                                    sizeof(_dbus_static_string_##name),  \
317                                    sizeof(_dbus_static_string_##name) + \
318                                    _DBUS_STRING_ALLOCATION_PADDING,     \
319                                    sizeof(_dbus_static_string_##name),  \
320                                    TRUE, TRUE, FALSE, 0 }
321
322 DBUS_END_DECLS
323
324 #endif /* DBUS_STRING_H */