3 * ====================================================================
4 * Copyright (c) 2000-2006 CollabNet. All rights reserved.
6 * This software is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at http://subversion.tigris.org/license-1.html.
9 * If newer versions of this license are posted there, you may use a
10 * newer version instead, at your option.
12 * This software consists of voluntary contributions made by many
13 * individuals. For exact contribution history, see the revision
14 * history and logs, available at http://subversion.tigris.org/.
15 * ====================================================================
19 * @brief Counted-length strings for Subversion, plus some C string goodies.
21 * There are two string datatypes: @c svn_string_t and @c svn_stringbuf_t.
22 * The former is a simple pointer/length pair useful for passing around
23 * strings (or arbitrary bytes) with a counted length. @c svn_stringbuf_t is
24 * buffered to enable efficient appending of strings without an allocation
25 * and copy for each append operation.
27 * @c svn_string_t contains a <tt>const char *</tt> for its data, so it is
28 * most appropriate for constant data and for functions which expect constant,
29 * counted data. Functions should generally use <tt>const @c svn_string_t
30 * *</tt> as their parameter to indicate they are expecting a constant,
33 * @c svn_stringbuf_t uses a plain <tt>char *</tt> for its data, so it is
34 * most appropriate for modifiable data.
38 * 1. Null termination:
40 * Both structures maintain a significant invariant:
42 * <tt>s->data[s->len] == '\\0'</tt>
44 * The functions defined within this header file will maintain
45 * the invariant (which does imply that memory is
46 * allocated/defined as @c len+1 bytes). If code outside of the
47 * @c svn_string.h functions manually builds these structures,
48 * then they must enforce this invariant.
50 * Note that an @c svn_string(buf)_t may contain binary data,
51 * which means that strlen(s->data) does not have to equal @c
52 * s->len. The NULL terminator is provided to make it easier to
53 * pass @c s->data to C string interfaces.
58 * All the functions assume their input data is non-NULL,
59 * unless otherwise documented, and may seg fault if passed
60 * NULL. The input data may *contain* null bytes, of course, just
61 * the data pointer itself must not be NULL.
69 #include <apr_tables.h>
70 #include <apr_pools.h> /* APR memory pools for everyone. */
71 #include <apr_strings.h>
73 #include "svn_types.h"
77 #endif /* __cplusplus */
80 * @defgroup svn_string String handling
86 /** A simple counted string. */
87 typedef struct svn_string_t
89 const char *data
; /**< pointer to the bytestring */
90 apr_size_t len
; /**< length of bytestring */
93 /** A buffered string, capable of appending without an allocation and copy
95 typedef struct svn_stringbuf_t
97 /** a pool from which this string was originally allocated, and is not
98 * necessarily specific to this string. This is used only for allocating
99 * more memory from when the string needs to grow.
103 /** pointer to the bytestring */
106 /** length of bytestring */
109 /** total size of buffer allocated */
110 apr_size_t blocksize
;
114 /** svn_string_t functions.
116 * @defgroup svn_string_svn_string_t svn_string_t functions
120 /** Create a new bytestring containing a C string (NULL-terminated). */
121 svn_string_t
*svn_string_create(const char *cstring
,
124 /** Create a new bytestring containing a generic string of bytes
125 * (NOT NULL-terminated) */
126 svn_string_t
*svn_string_ncreate(const char *bytes
,
130 /** Create a new string with the contents of the given stringbuf */
131 svn_string_t
*svn_string_create_from_buf(const svn_stringbuf_t
*strbuf
,
134 /** Create a new bytestring by formatting @a cstring (NULL-terminated)
135 * from varargs, which are as appropriate for apr_psprintf().
137 svn_string_t
*svn_string_createf(apr_pool_t
*pool
,
140 __attribute__((format(printf
, 2, 3)));
142 /** Create a new bytestring by formatting @a cstring (NULL-terminated)
143 * from a @c va_list (see svn_stringbuf_createf()).
145 svn_string_t
*svn_string_createv(apr_pool_t
*pool
,
148 __attribute__((format(printf
, 2, 0)));
150 /** Return TRUE if a bytestring is empty (has length zero). */
151 svn_boolean_t
svn_string_isempty(const svn_string_t
*str
);
153 /** Return a duplicate of @a original_string. */
154 svn_string_t
*svn_string_dup(const svn_string_t
*original_string
,
157 /** Return @c TRUE iff @a str1 and @a str2 have identical length and data. */
158 svn_boolean_t
svn_string_compare(const svn_string_t
*str1
,
159 const svn_string_t
*str2
);
161 /** Return offset of first non-whitespace character in @a str, or return
162 * @a str->len if none.
164 apr_size_t
svn_string_first_non_whitespace(const svn_string_t
*str
);
166 /** Return position of last occurrence of @a ch in @a str, or return
167 * @a str->len if no occurrence.
169 apr_size_t
svn_string_find_char_backward(const svn_string_t
*str
, char ch
);
174 /** svn_stringbuf_t functions.
176 * @defgroup svn_string_svn_stringbuf_t svn_stringbuf_t functions
180 /** Create a new bytestring containing a C string (NULL-terminated). */
181 svn_stringbuf_t
*svn_stringbuf_create(const char *cstring
,
183 /** Create a new bytestring containing a generic string of bytes
184 * (NON-NULL-terminated)
186 svn_stringbuf_t
*svn_stringbuf_ncreate(const char *bytes
,
190 /** Create a new stringbuf with the contents of the given string */
191 svn_stringbuf_t
*svn_stringbuf_create_from_string(const svn_string_t
*str
,
194 /** Create a new bytestring by formatting @a cstring (NULL-terminated)
195 * from varargs, which are as appropriate for apr_psprintf().
197 svn_stringbuf_t
*svn_stringbuf_createf(apr_pool_t
*pool
,
200 __attribute__((format(printf
, 2, 3)));
202 /** Create a new bytestring by formatting @a cstring (NULL-terminated)
203 * from a @c va_list (see svn_stringbuf_createf()).
205 svn_stringbuf_t
*svn_stringbuf_createv(apr_pool_t
*pool
,
208 __attribute__((format(printf
, 2, 0)));
210 /** Make sure that the string @a str has at least @a minimum_size bytes of
211 * space available in the memory block.
213 * (@a minimum_size should include space for the terminating NULL character.)
215 void svn_stringbuf_ensure(svn_stringbuf_t
*str
,
216 apr_size_t minimum_size
);
218 /** Set a bytestring @a str to @a value */
219 void svn_stringbuf_set(svn_stringbuf_t
*str
, const char *value
);
221 /** Set a bytestring @a str to empty (0 length). */
222 void svn_stringbuf_setempty(svn_stringbuf_t
*str
);
224 /** Return @c TRUE if a bytestring is empty (has length zero). */
225 svn_boolean_t
svn_stringbuf_isempty(const svn_stringbuf_t
*str
);
227 /** Chop @a nbytes bytes off end of @a str, but not more than @a str->len. */
228 void svn_stringbuf_chop(svn_stringbuf_t
*str
, apr_size_t nbytes
);
230 /** Fill bytestring @a str with character @a c. */
231 void svn_stringbuf_fillchar(svn_stringbuf_t
*str
, unsigned char c
);
233 /** Append an array of bytes onto @a targetstr.
235 * reallocs if necessary. @a targetstr is affected, nothing else is.
237 void svn_stringbuf_appendbytes(svn_stringbuf_t
*targetstr
,
241 /** Append an @c svn_stringbuf_t onto @a targetstr.
243 * reallocs if necessary. @a targetstr is affected, nothing else is.
245 void svn_stringbuf_appendstr(svn_stringbuf_t
*targetstr
,
246 const svn_stringbuf_t
*appendstr
);
248 /** Append a C string onto @a targetstr.
250 * reallocs if necessary. @a targetstr is affected, nothing else is.
252 void svn_stringbuf_appendcstr(svn_stringbuf_t
*targetstr
,
255 /** Return a duplicate of @a original_string. */
256 svn_stringbuf_t
*svn_stringbuf_dup(const svn_stringbuf_t
*original_string
,
260 /** Return @c TRUE iff @a str1 and @a str2 have identical length and data. */
261 svn_boolean_t
svn_stringbuf_compare(const svn_stringbuf_t
*str1
,
262 const svn_stringbuf_t
*str2
);
264 /** Return offset of first non-whitespace character in @a str, or return
265 * @a str->len if none.
267 apr_size_t
svn_stringbuf_first_non_whitespace(const svn_stringbuf_t
*str
);
269 /** Strip whitespace from both sides of @a str (modified in place). */
270 void svn_stringbuf_strip_whitespace(svn_stringbuf_t
*str
);
272 /** Return position of last occurrence of @a ch in @a str, or return
273 * @a str->len if no occurrence.
275 apr_size_t
svn_stringbuf_find_char_backward(const svn_stringbuf_t
*str
,
278 /** Return @c TRUE iff @a str1 and @a str2 have identical length and data. */
279 svn_boolean_t
svn_string_compare_stringbuf(const svn_string_t
*str1
,
280 const svn_stringbuf_t
*str2
);
287 * @defgroup svn_string_cstrings c string functions
291 /** Divide @a input into substrings along @a sep_chars boundaries, return an
292 * array of copies of those substrings, allocating both the array and
293 * the copies in @a pool.
295 * None of the elements added to the array contain any of the
296 * characters in @a sep_chars, and none of the new elements are empty
297 * (thus, it is possible that the returned array will have length
300 * If @a chop_whitespace is TRUE, then remove leading and trailing
301 * whitespace from the returned strings.
303 apr_array_header_t
*svn_cstring_split(const char *input
,
304 const char *sep_chars
,
305 svn_boolean_t chop_whitespace
,
308 /** Like svn_cstring_split(), but append to existing @a array instead of
309 * creating a new one. Allocate the copied substrings in @a pool
310 * (i.e., caller decides whether or not to pass @a array->pool as @a pool).
312 void svn_cstring_split_append(apr_array_header_t
*array
,
314 const char *sep_chars
,
315 svn_boolean_t chop_whitespace
,
319 /** Return @c TRUE iff @a str matches any of the elements of @a list, a list
320 * of zero or more glob patterns.
322 svn_boolean_t
svn_cstring_match_glob_list(const char *str
,
323 apr_array_header_t
*list
);
326 * Return the number of line breaks in @a msg, allowing any kind of newline
327 * termination (CR, LF, CRLF, or LFCR), even inconsistent.
331 int svn_cstring_count_newlines(const char *msg
);
334 * Return a cstring which is the concatenation of @a strings (an array
335 * of char *) each followed by @a separator (that is, @a separator
336 * will also end the resulting string). Allocate the result in @a pool.
337 * If @a strings is empty, then return the empty string.
342 svn_cstring_join(apr_array_header_t
*strings
,
343 const char *separator
,
353 #endif /* __cplusplus */
355 #endif /* SVN_STRING_H */