2 * Copyright (c) 2008, 2009, 2010 Nicira Networks.
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"
27 ds_init(struct ds *ds)
35 ds_clear(struct ds *ds)
41 ds_truncate(struct ds *ds, size_t new_length)
43 if (ds->length > new_length) {
44 ds->length = new_length;
45 ds->string[new_length] = '\0';
50 ds_reserve(struct ds *ds, size_t min_length)
52 if (min_length > ds->allocated || !ds->string) {
53 ds->allocated += MAX(min_length, ds->allocated);
54 ds->allocated = MAX(8, ds->allocated);
55 ds->string = xrealloc(ds->string, ds->allocated + 1);
60 ds_put_uninit(struct ds *ds, size_t n)
62 ds_reserve(ds, ds->length + n);
64 ds->string[ds->length] = '\0';
65 return &ds->string[ds->length - n];
69 ds_put_char__(struct ds *ds, char c)
71 *ds_put_uninit(ds, 1) = c;
74 /* Appends unicode code point 'uc' to 'ds' in UTF-8 encoding. */
76 ds_put_utf8(struct ds *ds, int uc)
80 } else if (uc <= 0x7ff) {
81 ds_put_char(ds, 0xc0 | (uc >> 6));
82 ds_put_char(ds, 0x80 | (uc & 0x3f));
83 } else if (uc <= 0xffff) {
84 ds_put_char(ds, 0xe0 | (uc >> 12));
85 ds_put_char(ds, 0x80 | ((uc >> 6) & 0x3f));
86 ds_put_char(ds, 0x80 | (uc & 0x3f));
87 } else if (uc <= 0x10ffff) {
88 ds_put_char(ds, 0xf0 | (uc >> 18));
89 ds_put_char(ds, 0x80 | ((uc >> 12) & 0x3f));
90 ds_put_char(ds, 0x80 | ((uc >> 6) & 0x3f));
91 ds_put_char(ds, 0x80 | (uc & 0x3f));
93 /* Invalid code point. Insert the Unicode general substitute
94 * REPLACEMENT CHARACTER. */
95 ds_put_utf8(ds, 0xfffd);
100 ds_put_char_multiple(struct ds *ds, char c, size_t n)
102 memset(ds_put_uninit(ds, n), c, n);
106 ds_put_buffer(struct ds *ds, const char *s, size_t n)
108 memcpy(ds_put_uninit(ds, n), s, n);
112 ds_put_cstr(struct ds *ds, const char *s)
114 size_t s_len = strlen(s);
115 memcpy(ds_put_uninit(ds, s_len), s, s_len);
119 ds_put_and_free_cstr(struct ds *ds, char *s)
126 ds_put_format(struct ds *ds, const char *format, ...)
130 va_start(args, format);
131 ds_put_format_valist(ds, format, args);
136 ds_put_format_valist(struct ds *ds, const char *format, va_list args_)
142 va_copy(args, args_);
143 available = ds->string ? ds->allocated - ds->length + 1 : 0;
144 needed = vsnprintf(&ds->string[ds->length], available, format, args);
147 if (needed < available) {
148 ds->length += needed;
152 ds_reserve(ds, ds->length + needed);
154 va_copy(args, args_);
155 available = ds->allocated - ds->length + 1;
156 needed = vsnprintf(&ds->string[ds->length], available, format, args);
159 assert(needed < available);
160 ds->length += needed;
165 ds_put_printable(struct ds *ds, const char *s, size_t n)
167 ds_reserve(ds, ds->length + n);
169 unsigned char c = *s++;
170 if (c < 0x20 || c > 0x7e || c == '\\' || c == '"') {
171 ds_put_format(ds, "\\%03o", (int) c);
179 ds_put_strftime(struct ds *ds, const char *template, const struct tm *tm)
182 time_t now = time_wall();
183 tm = localtime(&now);
186 size_t avail = ds->string ? ds->allocated - ds->length + 1 : 0;
187 size_t used = strftime(&ds->string[ds->length], avail, template, tm);
192 ds_reserve(ds, ds->length + (avail < 32 ? 64 : 2 * avail));
197 ds_get_line(struct ds *ds, FILE *file)
203 return ds->length ? 0 : EOF;
204 } else if (c == '\n') {
213 ds_cstr(struct ds *ds)
218 ds->string[ds->length] = '\0';
223 ds_cstr_ro(const struct ds *ds)
225 return ds_cstr((struct ds *) ds);
228 /* Returns a null-terminated string representing the current contents of 'ds',
229 * which the caller is expected to free with free(), then clears the contents
232 ds_steal_cstr(struct ds *ds)
234 char *s = ds_cstr(ds);
240 ds_destroy(struct ds *ds)
245 /* Swaps the content of 'a' and 'b'. */
247 ds_swap(struct ds *a, struct ds *b)
254 /* Writes the 'size' bytes in 'buf' to 'string' as hex bytes arranged 16 per
255 * line. Numeric offsets are also included, starting at 'ofs' for the first
256 * byte in 'buf'. If 'ascii' is true then the corresponding ASCII characters
257 * are also rendered alongside. */
259 ds_put_hex_dump(struct ds *ds, const void *buf_, size_t size,
260 uintptr_t ofs, bool ascii)
262 const uint8_t *buf = buf_;
263 const size_t per_line = 16; /* Maximum bytes per line. */
267 size_t start, end, n;
270 /* Number of bytes on this line. */
271 start = ofs % per_line;
273 if (end - start > size)
278 ds_put_format(ds, "%08jx ", (uintmax_t) ROUND_DOWN(ofs, per_line));
279 for (i = 0; i < start; i++)
280 ds_put_format(ds, " ");
282 ds_put_format(ds, "%02hhx%c",
283 buf[i - start], i == per_line / 2 - 1? '-' : ' ');
286 for (; i < per_line; i++)
287 ds_put_format(ds, " ");
288 ds_put_format(ds, "|");
289 for (i = 0; i < start; i++)
290 ds_put_format(ds, " ");
291 for (; i < end; i++) {
292 int c = buf[i - start];
293 ds_put_char(ds, c >= 32 && c < 127 ? c : '.');
295 for (; i < per_line; i++)
296 ds_put_format(ds, " ");
297 ds_put_format(ds, "|");
299 ds_put_format(ds, "\n");
308 ds_last(const struct ds *ds)
310 return ds->length > 0 ? (unsigned char) ds->string[ds->length - 1] : EOF;
314 ds_chomp(struct ds *ds, int c)
316 if (ds->length > 0 && ds->string[ds->length - 1] == (char) c) {
317 ds->string[--ds->length] = '\0';