1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-string.h String utility class (internal to D-BUS implementation)
4 * Copyright (C) 2002 Red Hat, Inc.
6 * Licensed under the Academic Free License version 1.2
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>
34 typedef struct DBusString DBusString;
38 void *dummy1; /**< placeholder */
39 int dummy2; /**< placeholder */
40 int dummy3; /**< placeholder */
41 int dummy4; /**< placeholder */
42 unsigned int dummy5 : 1; /**< placeholder */
43 unsigned int dummy6 : 1; /**< placeholder */
44 unsigned int dummy7 : 1; /**< placeholder */
45 unsigned int dummy8 : 3; /**< placeholder */
48 dbus_bool_t _dbus_string_init (DBusString *str);
49 void _dbus_string_init_const (DBusString *str,
51 void _dbus_string_init_const_len (DBusString *str,
54 void _dbus_string_free (DBusString *str);
55 void _dbus_string_lock (DBusString *str);
56 char* _dbus_string_get_data (DBusString *str);
57 const char* _dbus_string_get_const_data (const DBusString *str);
58 char* _dbus_string_get_data_len (DBusString *str,
61 const char* _dbus_string_get_const_data_len (const DBusString *str,
64 void _dbus_string_set_byte (DBusString *str,
67 unsigned char _dbus_string_get_byte (const DBusString *str,
69 dbus_bool_t _dbus_string_insert_byte (DBusString *str,
72 dbus_bool_t _dbus_string_steal_data (DBusString *str,
74 dbus_bool_t _dbus_string_steal_data_len (DBusString *str,
78 dbus_bool_t _dbus_string_copy_data (const DBusString *str,
80 dbus_bool_t _dbus_string_copy_data_len (const DBusString *str,
84 int _dbus_string_get_length (const DBusString *str);
85 dbus_bool_t _dbus_string_lengthen (DBusString *str,
86 int additional_length);
87 void _dbus_string_shorten (DBusString *str,
88 int length_to_remove);
89 dbus_bool_t _dbus_string_set_length (DBusString *str,
91 dbus_bool_t _dbus_string_align_length (DBusString *str,
93 dbus_bool_t _dbus_string_append (DBusString *str,
95 dbus_bool_t _dbus_string_append_len (DBusString *str,
98 dbus_bool_t _dbus_string_append_int (DBusString *str,
100 dbus_bool_t _dbus_string_append_uint (DBusString *str,
101 unsigned long value);
102 dbus_bool_t _dbus_string_append_double (DBusString *str,
104 dbus_bool_t _dbus_string_append_byte (DBusString *str,
106 dbus_bool_t _dbus_string_append_unichar (DBusString *str,
108 void _dbus_string_delete (DBusString *str,
111 dbus_bool_t _dbus_string_move (DBusString *source,
115 dbus_bool_t _dbus_string_copy (const DBusString *source,
119 dbus_bool_t _dbus_string_move_len (DBusString *source,
124 dbus_bool_t _dbus_string_copy_len (const DBusString *source,
129 dbus_bool_t _dbus_string_replace_len (const DBusString *source,
135 void _dbus_string_get_unichar (const DBusString *str,
137 dbus_unichar_t *ch_return,
139 dbus_bool_t _dbus_string_parse_int (const DBusString *str,
143 dbus_bool_t _dbus_string_parse_uint (const DBusString *str,
145 unsigned long *value_return,
147 dbus_bool_t _dbus_string_parse_double (const DBusString *str,
151 dbus_bool_t _dbus_string_find (const DBusString *str,
155 dbus_bool_t _dbus_string_find_to (const DBusString *str,
160 dbus_bool_t _dbus_string_find_byte_backward (const DBusString *str,
164 dbus_bool_t _dbus_string_find_blank (const DBusString *str,
167 void _dbus_string_skip_blank (const DBusString *str,
170 void _dbus_string_skip_white (const DBusString *str,
173 dbus_bool_t _dbus_string_equal (const DBusString *a,
174 const DBusString *b);
175 dbus_bool_t _dbus_string_equal_c_str (const DBusString *a,
177 dbus_bool_t _dbus_string_equal_len (const DBusString *a,
180 dbus_bool_t _dbus_string_starts_with_c_str (const DBusString *a,
182 dbus_bool_t _dbus_string_ends_with_c_str (const DBusString *a,
184 dbus_bool_t _dbus_string_pop_line (DBusString *source,
186 void _dbus_string_delete_first_word (DBusString *str);
187 void _dbus_string_delete_leading_blanks (DBusString *str);
188 dbus_bool_t _dbus_string_base64_encode (const DBusString *source,
192 dbus_bool_t _dbus_string_base64_decode (const DBusString *source,
196 dbus_bool_t _dbus_string_hex_encode (const DBusString *source,
200 dbus_bool_t _dbus_string_hex_decode (const DBusString *source,
204 dbus_bool_t _dbus_string_validate_ascii (const DBusString *str,
207 dbus_bool_t _dbus_string_validate_utf8 (const DBusString *str,
210 dbus_bool_t _dbus_string_validate_nul (const DBusString *str,
213 void _dbus_string_zero (DBusString *str);
218 #endif /* DBUS_STRING_H */