2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 #include "dynamic-string.h"
25 /* Initializes 'ds' as an empty string buffer. */
27 ds_init(struct ds *ds)
34 /* Sets 'ds''s length to 0, effectively clearing any existing content. Does
35 * not free any memory. */
37 ds_clear(struct ds *ds)
42 /* Reduces 'ds''s length to no more than 'new_length'. (If its length is
43 * already 'new_length' or less, does nothing.) */
45 ds_truncate(struct ds *ds, size_t new_length)
47 if (ds->length > new_length) {
48 ds->length = new_length;
49 ds->string[new_length] = '\0';
53 /* Ensures that at least 'min_length + 1' bytes (including space for a null
54 * terminator) are allocated for ds->string, allocating or reallocating memory
57 ds_reserve(struct ds *ds, size_t min_length)
59 if (min_length > ds->allocated || !ds->string) {
60 ds->allocated += MAX(min_length, ds->allocated);
61 ds->allocated = MAX(8, ds->allocated);
62 ds->string = xrealloc(ds->string, ds->allocated + 1);
66 /* Appends space for 'n' bytes to the end of 'ds->string', increasing
67 * 'ds->length' by the same amount, and returns the first appended byte. The
68 * caller should fill in all 'n' bytes starting at the return value. */
70 ds_put_uninit(struct ds *ds, size_t n)
72 ds_reserve(ds, ds->length + n);
74 ds->string[ds->length] = '\0';
75 return &ds->string[ds->length - n];
79 ds_put_char__(struct ds *ds, char c)
81 *ds_put_uninit(ds, 1) = c;
84 /* Appends unicode code point 'uc' to 'ds' in UTF-8 encoding. */
86 ds_put_utf8(struct ds *ds, int uc)
90 } else if (uc <= 0x7ff) {
91 ds_put_char(ds, 0xc0 | (uc >> 6));
92 ds_put_char(ds, 0x80 | (uc & 0x3f));
93 } else if (uc <= 0xffff) {
94 ds_put_char(ds, 0xe0 | (uc >> 12));
95 ds_put_char(ds, 0x80 | ((uc >> 6) & 0x3f));
96 ds_put_char(ds, 0x80 | (uc & 0x3f));
97 } else if (uc <= 0x10ffff) {
98 ds_put_char(ds, 0xf0 | (uc >> 18));
99 ds_put_char(ds, 0x80 | ((uc >> 12) & 0x3f));
100 ds_put_char(ds, 0x80 | ((uc >> 6) & 0x3f));
101 ds_put_char(ds, 0x80 | (uc & 0x3f));
103 /* Invalid code point. Insert the Unicode general substitute
104 * REPLACEMENT CHARACTER. */
105 ds_put_utf8(ds, 0xfffd);
110 ds_put_char_multiple(struct ds *ds, char c, size_t n)
112 memset(ds_put_uninit(ds, n), c, n);
116 ds_put_buffer(struct ds *ds, const char *s, size_t n)
118 memcpy(ds_put_uninit(ds, n), s, n);
122 ds_put_cstr(struct ds *ds, const char *s)
124 size_t s_len = strlen(s);
125 memcpy(ds_put_uninit(ds, s_len), s, s_len);
129 ds_put_and_free_cstr(struct ds *ds, char *s)
136 ds_put_format(struct ds *ds, const char *format, ...)
140 va_start(args, format);
141 ds_put_format_valist(ds, format, args);
146 ds_put_format_valist(struct ds *ds, const char *format, va_list args_)
152 va_copy(args, args_);
153 available = ds->string ? ds->allocated - ds->length + 1 : 0;
154 needed = vsnprintf(&ds->string[ds->length], available, format, args);
157 if (needed < available) {
158 ds->length += needed;
160 ds_reserve(ds, ds->length + needed);
162 va_copy(args, args_);
163 available = ds->allocated - ds->length + 1;
164 needed = vsnprintf(&ds->string[ds->length], available, format, args);
167 ovs_assert(needed < available);
168 ds->length += needed;
173 ds_put_printable(struct ds *ds, const char *s, size_t n)
175 ds_reserve(ds, ds->length + n);
177 unsigned char c = *s++;
178 if (c < 0x20 || c > 0x7e || c == '\\' || c == '"') {
179 ds_put_format(ds, "\\%03o", (int) c);
186 /* Writes the current time to 'string' based on 'template'.
187 * The current time is either local time or UTC based on 'utc'. */
189 ds_put_strftime(struct ds *ds, const char *template, bool utc)
192 time_t now = time_wall();
196 localtime_r(&now, &tm);
200 size_t avail = ds->string ? ds->allocated - ds->length + 1 : 0;
201 size_t used = strftime(&ds->string[ds->length], avail, template, &tm);
206 ds_reserve(ds, ds->length + (avail < 32 ? 64 : 2 * avail));
211 ds_get_line(struct ds *ds, FILE *file)
217 return ds->length ? 0 : EOF;
218 } else if (c == '\n') {
226 /* Reads a line from 'file' into 'ds', clearing anything initially in 'ds'.
227 * Deletes comments introduced by "#" and skips lines that contains only white
228 * space (after deleting comments).
230 * Returns 0 if successful, EOF if no non-blank line was found. */
232 ds_get_preprocessed_line(struct ds *ds, FILE *file)
234 while (!ds_get_line(ds, file)) {
235 char *line = ds_cstr(ds);
238 /* Delete comments. */
239 comment = strchr(line, '#');
244 /* Return successfully unless the line is all spaces. */
245 if (line[strspn(line, " \t\n")] != '\0') {
252 /* Reads a line from 'file' into 'ds' and does some preprocessing on it:
254 * - If the line begins with #, prints it on stdout and reads the next line.
256 * - Otherwise, if the line contains an # somewhere else, strips it and
257 * everything following it (as a comment).
259 * - If (after comment removal) the line contains only white space, prints
260 * a blank line on stdout and reads the next line.
262 * - Otherwise, returns the line to the caller.
264 * This is useful in some of the OVS tests, where we want to check that parsing
265 * and then re-formatting some kind of data does not change it, but we also
266 * want to be able to put comments in the input.
268 * Returns 0 if successful, EOF if no non-blank line was found. */
270 ds_get_test_line(struct ds *ds, FILE *file)
276 retval = ds_get_line(ds, file);
287 comment = strchr(s, '#');
291 if (s[strspn(s, " \t\n")] == '\0') {
301 ds_cstr(struct ds *ds)
306 ds->string[ds->length] = '\0';
311 ds_cstr_ro(const struct ds *ds)
313 return ds_cstr(CONST_CAST(struct ds *, ds));
316 /* Returns a null-terminated string representing the current contents of 'ds',
317 * which the caller is expected to free with free(), then clears the contents
320 ds_steal_cstr(struct ds *ds)
322 char *s = ds_cstr(ds);
328 ds_destroy(struct ds *ds)
333 /* Swaps the content of 'a' and 'b'. */
335 ds_swap(struct ds *a, struct ds *b)
342 /* Writes the 'size' bytes in 'buf' to 'string' as hex bytes arranged 16 per
343 * line. Numeric offsets are also included, starting at 'ofs' for the first
344 * byte in 'buf'. If 'ascii' is true then the corresponding ASCII characters
345 * are also rendered alongside. */
347 ds_put_hex_dump(struct ds *ds, const void *buf_, size_t size,
348 uintptr_t ofs, bool ascii)
350 const uint8_t *buf = buf_;
351 const size_t per_line = 16; /* Maximum bytes per line. */
355 size_t start, end, n;
358 /* Number of bytes on this line. */
359 start = ofs % per_line;
361 if (end - start > size)
366 ds_put_format(ds, "%08jx ", (uintmax_t) ROUND_DOWN(ofs, per_line));
367 for (i = 0; i < start; i++)
368 ds_put_format(ds, " ");
370 ds_put_format(ds, "%02hhx%c",
371 buf[i - start], i == per_line / 2 - 1? '-' : ' ');
374 for (; i < per_line; i++)
375 ds_put_format(ds, " ");
376 ds_put_format(ds, "|");
377 for (i = 0; i < start; i++)
378 ds_put_format(ds, " ");
379 for (; i < end; i++) {
380 int c = buf[i - start];
381 ds_put_char(ds, c >= 32 && c < 127 ? c : '.');
383 for (; i < per_line; i++)
384 ds_put_format(ds, " ");
385 ds_put_format(ds, "|");
387 ds_put_format(ds, "\n");
396 ds_last(const struct ds *ds)
398 return ds->length > 0 ? (unsigned char) ds->string[ds->length - 1] : EOF;
402 ds_chomp(struct ds *ds, int c)
404 if (ds->length > 0 && ds->string[ds->length - 1] == (char) c) {
405 ds->string[--ds->length] = '\0';