1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-string.h String utility class (internal to D-BUS implementation)
4 * Copyright (C) 2002, 2003 Red Hat, Inc.
6 * Licensed under the Academic Free License version 2.1
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include <dbus/dbus-memory.h>
30 #include <dbus/dbus-types.h>
31 #include <dbus/dbus-sysdeps.h>
42 const void *dummy1; /**< placeholder */
43 int dummy2; /**< placeholder */
44 int dummy3; /**< placeholder */
45 int dummy4; /**< placeholder */
46 unsigned int dummy5 : 1; /**< placeholder */
47 unsigned int dummy6 : 1; /**< placeholder */
48 unsigned int dummy7 : 1; /**< placeholder */
49 unsigned int dummy8 : 3; /**< placeholder */
52 #ifdef DBUS_DISABLE_ASSERT
53 /* Some simple inlining hacks; the current linker is not smart enough
54 * to inline non-exported symbols across files in the library.
55 * Note that these break type safety (due to the casts)
57 #define _dbus_string_get_data(s) ((char*)(((DBusString*)(s))->dummy1))
58 #define _dbus_string_get_length(s) (((DBusString*)(s))->dummy2)
59 #define _dbus_string_set_byte(s, i, b) ((((unsigned char*)(((DBusString*)(s))->dummy1))[(i)]) = (unsigned char) (b))
60 #define _dbus_string_get_byte(s, i) (((const unsigned char*)(((DBusString*)(s))->dummy1))[(i)])
61 #define _dbus_string_get_const_data(s) ((const char*)(((DBusString*)(s))->dummy1))
62 #define _dbus_string_get_const_data_len(s,start,len) (((const char*)(((DBusString*)(s))->dummy1)) + (start))
65 dbus_bool_t _dbus_string_init (DBusString *str);
66 void _dbus_string_init_const (DBusString *str,
68 void _dbus_string_init_const_len (DBusString *str,
71 dbus_bool_t _dbus_string_init_preallocated (DBusString *str,
73 void _dbus_string_free (DBusString *str);
74 void _dbus_string_lock (DBusString *str);
75 #ifndef _dbus_string_get_data
76 char* _dbus_string_get_data (DBusString *str);
77 #endif /* _dbus_string_get_data */
78 #ifndef _dbus_string_get_const_data
79 const char* _dbus_string_get_const_data (const DBusString *str);
80 #endif /* _dbus_string_get_const_data */
81 char* _dbus_string_get_data_len (DBusString *str,
84 #ifndef _dbus_string_get_const_data_len
85 const char* _dbus_string_get_const_data_len (const DBusString *str,
89 #ifndef _dbus_string_set_byte
90 void _dbus_string_set_byte (DBusString *str,
94 #ifndef _dbus_string_get_byte
95 unsigned char _dbus_string_get_byte (const DBusString *str,
97 #endif /* _dbus_string_get_byte */
98 dbus_bool_t _dbus_string_insert_bytes (DBusString *str,
102 dbus_bool_t _dbus_string_insert_byte (DBusString *str,
105 dbus_bool_t _dbus_string_steal_data (DBusString *str,
107 dbus_bool_t _dbus_string_steal_data_len (DBusString *str,
111 dbus_bool_t _dbus_string_copy_data (const DBusString *str,
113 dbus_bool_t _dbus_string_copy_data_len (const DBusString *str,
117 void _dbus_string_copy_to_buffer (const DBusString *str,
120 #ifndef _dbus_string_get_length
121 int _dbus_string_get_length (const DBusString *str);
122 #endif /* !_dbus_string_get_length */
124 dbus_bool_t _dbus_string_lengthen (DBusString *str,
125 int additional_length);
126 void _dbus_string_shorten (DBusString *str,
127 int length_to_remove);
128 dbus_bool_t _dbus_string_set_length (DBusString *str,
130 dbus_bool_t _dbus_string_align_length (DBusString *str,
132 dbus_bool_t _dbus_string_alloc_space (DBusString *str,
134 dbus_bool_t _dbus_string_append (DBusString *str,
136 dbus_bool_t _dbus_string_append_len (DBusString *str,
139 dbus_bool_t _dbus_string_append_int (DBusString *str,
141 dbus_bool_t _dbus_string_append_uint (DBusString *str,
142 unsigned long value);
143 dbus_bool_t _dbus_string_append_double (DBusString *str,
145 dbus_bool_t _dbus_string_append_byte (DBusString *str,
147 dbus_bool_t _dbus_string_append_unichar (DBusString *str,
149 dbus_bool_t _dbus_string_append_4_aligned (DBusString *str,
150 const unsigned char octets[4]);
151 dbus_bool_t _dbus_string_append_8_aligned (DBusString *str,
152 const unsigned char octets[8]);
153 dbus_bool_t _dbus_string_append_printf (DBusString *str,
155 ...) _DBUS_GNUC_PRINTF (2, 3);
156 dbus_bool_t _dbus_string_append_printf_valist (DBusString *str,
159 dbus_bool_t _dbus_string_insert_2_aligned (DBusString *str,
161 const unsigned char octets[2]);
162 dbus_bool_t _dbus_string_insert_4_aligned (DBusString *str,
164 const unsigned char octets[4]);
165 dbus_bool_t _dbus_string_insert_8_aligned (DBusString *str,
167 const unsigned char octets[8]);
168 dbus_bool_t _dbus_string_insert_alignment (DBusString *str,
171 void _dbus_string_delete (DBusString *str,
174 dbus_bool_t _dbus_string_move (DBusString *source,
178 dbus_bool_t _dbus_string_copy (const DBusString *source,
182 dbus_bool_t _dbus_string_move_len (DBusString *source,
187 dbus_bool_t _dbus_string_copy_len (const DBusString *source,
192 dbus_bool_t _dbus_string_replace_len (const DBusString *source,
198 void _dbus_string_get_unichar (const DBusString *str,
200 dbus_unichar_t *ch_return,
202 dbus_bool_t _dbus_string_parse_int (const DBusString *str,
206 dbus_bool_t _dbus_string_parse_uint (const DBusString *str,
208 unsigned long *value_return,
210 dbus_bool_t _dbus_string_parse_double (const DBusString *str,
214 dbus_bool_t _dbus_string_find (const DBusString *str,
218 dbus_bool_t _dbus_string_find_to (const DBusString *str,
223 dbus_bool_t _dbus_string_find_byte_backward (const DBusString *str,
227 dbus_bool_t _dbus_string_find_blank (const DBusString *str,
230 void _dbus_string_skip_blank (const DBusString *str,
233 void _dbus_string_skip_white (const DBusString *str,
236 dbus_bool_t _dbus_string_equal (const DBusString *a,
237 const DBusString *b);
238 dbus_bool_t _dbus_string_equal_c_str (const DBusString *a,
240 dbus_bool_t _dbus_string_equal_len (const DBusString *a,
243 dbus_bool_t _dbus_string_equal_substring (const DBusString *a,
248 dbus_bool_t _dbus_string_starts_with_c_str (const DBusString *a,
250 dbus_bool_t _dbus_string_ends_with_c_str (const DBusString *a,
252 dbus_bool_t _dbus_string_pop_line (DBusString *source,
254 void _dbus_string_delete_first_word (DBusString *str);
255 void _dbus_string_delete_leading_blanks (DBusString *str);
256 dbus_bool_t _dbus_string_append_byte_as_hex (DBusString *str,
258 dbus_bool_t _dbus_string_hex_encode (const DBusString *source,
262 dbus_bool_t _dbus_string_hex_decode (const DBusString *source,
267 dbus_bool_t _dbus_string_validate_ascii (const DBusString *str,
270 dbus_bool_t _dbus_string_validate_utf8 (const DBusString *str,
273 dbus_bool_t _dbus_string_validate_nul (const DBusString *str,
276 void _dbus_string_zero (DBusString *str);
280 * We allocate 1 byte for nul termination, plus 7 bytes for possible
281 * align_offset, so we always need 8 bytes on top of the string's
282 * length to be in the allocated block.
284 #define _DBUS_STRING_ALLOCATION_PADDING 8
287 * Defines a static const variable with type #DBusString called "name"
288 * containing the given string literal.
290 * @param name the name of the variable
291 * @param str the string value
293 #define _DBUS_STRING_DEFINE_STATIC(name, str) \
294 static const char _dbus_static_string_##name[] = str; \
295 static const DBusString name = { _dbus_static_string_##name, \
296 sizeof(_dbus_static_string_##name), \
297 sizeof(_dbus_static_string_##name) + \
298 _DBUS_STRING_ALLOCATION_PADDING, \
299 sizeof(_dbus_static_string_##name), \
300 TRUE, TRUE, FALSE, 0 }
304 #endif /* DBUS_STRING_H */