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 */
47 dbus_bool_t _dbus_string_init (DBusString *str,
49 void _dbus_string_init_const (DBusString *str,
51 void _dbus_string_free (DBusString *str);
52 void _dbus_string_lock (DBusString *str);
54 void _dbus_string_get_data (DBusString *str,
56 void _dbus_string_get_const_data (const DBusString *str,
57 const char **data_return);
58 void _dbus_string_get_data_len (DBusString *str,
62 void _dbus_string_get_const_data_len (const DBusString *str,
63 const char **data_return,
66 dbus_bool_t _dbus_string_steal_data (DBusString *str,
68 dbus_bool_t _dbus_string_steal_data_len (DBusString *str,
73 int _dbus_string_get_length (const DBusString *str);
75 dbus_bool_t _dbus_string_lengthen (DBusString *str,
76 int additional_length);
77 void _dbus_string_shorten (DBusString *str,
78 int length_to_remove);
79 dbus_bool_t _dbus_string_set_length (DBusString *str,
81 dbus_bool_t _dbus_string_align_length (DBusString *str,
84 dbus_bool_t _dbus_string_append (DBusString *str,
86 dbus_bool_t _dbus_string_append_len (DBusString *str,
89 dbus_bool_t _dbus_string_append_int (DBusString *str,
91 dbus_bool_t _dbus_string_append_double (DBusString *str,
93 dbus_bool_t _dbus_string_append_byte (DBusString *str,
95 dbus_bool_t _dbus_string_append_unichar (DBusString *str,
99 void _dbus_string_delete (DBusString *str,
102 dbus_bool_t _dbus_string_move (DBusString *source,
106 dbus_bool_t _dbus_string_copy (const DBusString *source,
110 dbus_bool_t _dbus_string_move_len (DBusString *source,
115 dbus_bool_t _dbus_string_copy_len (const DBusString *source,
122 void _dbus_string_get_unichar (const DBusString *str,
124 dbus_unichar_t *ch_return,
127 dbus_bool_t _dbus_string_parse_int (const DBusString *str,
131 dbus_bool_t _dbus_string_parse_double (const DBusString *str,
136 dbus_bool_t _dbus_string_find (const DBusString *str,
141 dbus_bool_t _dbus_string_find_blank (const DBusString *str,
145 void _dbus_string_skip_blank (const DBusString *str,
149 dbus_bool_t _dbus_string_equal (const DBusString *a,
150 const DBusString *b);
152 dbus_bool_t _dbus_string_equal_c_str (const DBusString *a,
155 dbus_bool_t _dbus_string_base64_encode (const DBusString *source,
159 dbus_bool_t _dbus_string_base64_decode (const DBusString *source,
164 dbus_bool_t _dbus_string_validate_ascii (const DBusString *str,
170 #endif /* DBUS_STRING_H */