str: Make str_format_26adic() able to use lowercase.
[pspp] / src / libpspp / str.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 2009, 2010, 2011, 2012, 2014 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include "str.h"
20
21 #include <ctype.h>
22 #include <errno.h>
23 #include <stdint.h>
24 #include <stdlib.h>
25 #include <unistr.h>
26
27 #include "libpspp/cast.h"
28 #include "libpspp/message.h"
29 #include "libpspp/pool.h"
30
31 #include "gl/c-ctype.h"
32 #include "gl/c-vasnprintf.h"
33 #include "gl/relocatable.h"
34 #include "gl/minmax.h"
35 #include "gl/xalloc.h"
36 #include "gl/xmemdup0.h"
37 #include "gl/xsize.h"
38 \f
39 /* Reverses the order of NBYTES bytes at address P, thus converting
40    between little- and big-endian byte orders.  */
41 void
42 buf_reverse (char *p, size_t nbytes)
43 {
44   char *h = p, *t = &h[nbytes - 1];
45   char temp;
46
47   nbytes /= 2;
48   while (nbytes--)
49     {
50       temp = *h;
51       *h++ = *t;
52       *t-- = temp;
53     }
54 }
55
56 /* Compares the SIZE bytes in A to those in B, disregarding case,
57    and returns a strcmp()-type result. */
58 int
59 buf_compare_case (const char *a_, const char *b_, size_t size)
60 {
61   const unsigned char *a = (unsigned char *) a_;
62   const unsigned char *b = (unsigned char *) b_;
63
64   while (size-- > 0)
65     {
66       unsigned char ac = toupper (*a++);
67       unsigned char bc = toupper (*b++);
68
69       if (ac != bc)
70         return ac > bc ? 1 : -1;
71     }
72
73   return 0;
74 }
75
76 /* Compares A of length A_LEN to B of length B_LEN.  The shorter
77    string is considered to be padded with spaces to the length of
78    the longer. */
79 int
80 buf_compare_rpad (const char *a, size_t a_len, const char *b, size_t b_len)
81 {
82   size_t min_len;
83   int result;
84
85   min_len = a_len < b_len ? a_len : b_len;
86   result = memcmp (a, b, min_len);
87   if (result != 0)
88     return result;
89   else
90     {
91       size_t idx;
92
93       if (a_len < b_len)
94         {
95           for (idx = min_len; idx < b_len; idx++)
96             if (' ' != b[idx])
97               return ' ' > b[idx] ? 1 : -1;
98         }
99       else
100         {
101           for (idx = min_len; idx < a_len; idx++)
102             if (a[idx] != ' ')
103               return a[idx] > ' ' ? 1 : -1;
104         }
105       return 0;
106     }
107 }
108
109 /* Compares strin A to string B.  The shorter string is
110    considered to be padded with spaces to the length of the
111    longer. */
112 int
113 str_compare_rpad (const char *a, const char *b)
114 {
115   return buf_compare_rpad (a, strlen (a), b, strlen (b));
116 }
117
118 /* Copies string SRC to buffer DST, of size DST_SIZE bytes.
119    DST is truncated to DST_SIZE bytes or padded on the right with
120    copies of PAD as needed. */
121 void
122 buf_copy_str_rpad (char *dst, size_t dst_size, const char *src, char pad)
123 {
124   size_t src_len = strlen (src);
125   if (src_len >= dst_size)
126     memcpy (dst, src, dst_size);
127   else
128     {
129       memcpy (dst, src, src_len);
130       memset (&dst[src_len], pad, dst_size - src_len);
131     }
132 }
133
134 /* Copies string SRC to buffer DST, of size DST_SIZE bytes.
135    DST is truncated to DST_SIZE bytes or padded on the left with
136    copies of PAD as needed. */
137 void
138 buf_copy_str_lpad (char *dst, size_t dst_size, const char *src, char pad)
139 {
140   size_t src_len = strlen (src);
141   if (src_len >= dst_size)
142     memcpy (dst, src, dst_size);
143   else
144     {
145       size_t pad_cnt = dst_size - src_len;
146       memset (&dst[0], pad, pad_cnt);
147       memcpy (dst + pad_cnt, src, src_len);
148     }
149 }
150
151 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
152    DST is truncated to DST_SIZE bytes or padded on the left with
153    copies of PAD as needed. */
154 void
155 buf_copy_lpad (char *dst, size_t dst_size,
156                const char *src, size_t src_size,
157                char pad)
158 {
159   if (src_size >= dst_size)
160     memmove (dst, src, dst_size);
161   else
162     {
163       memset (dst, pad, dst_size - src_size);
164       memmove (&dst[dst_size - src_size], src, src_size);
165     }
166 }
167
168 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
169    DST is truncated to DST_SIZE bytes or padded on the right with
170    copies of PAD as needed. */
171 void
172 buf_copy_rpad (char *dst, size_t dst_size,
173                const char *src, size_t src_size,
174                char pad)
175 {
176   if (src_size >= dst_size)
177     memmove (dst, src, dst_size);
178   else
179     {
180       memmove (dst, src, src_size);
181       memset (&dst[src_size], pad, dst_size - src_size);
182     }
183 }
184
185 /* Copies string SRC to string DST, which is in a buffer DST_SIZE
186    bytes long.
187    Truncates DST to DST_SIZE - 1 bytes or right-pads with
188    spaces to DST_SIZE - 1 bytes if necessary. */
189 void
190 str_copy_rpad (char *dst, size_t dst_size, const char *src)
191 {
192   if (dst_size > 0) 
193     {
194       size_t src_len = strlen (src);
195       if (src_len < dst_size - 1)
196         {
197           memcpy (dst, src, src_len);
198           memset (&dst[src_len], ' ', dst_size - 1 - src_len);
199         }
200       else
201         memcpy (dst, src, dst_size - 1);
202       dst[dst_size - 1] = 0;
203     }
204 }
205
206 /* Copies SRC to DST, which is in a buffer DST_SIZE bytes long.
207    Truncates DST to DST_SIZE - 1 bytes, if necessary. */
208 void
209 str_copy_trunc (char *dst, size_t dst_size, const char *src)
210 {
211   size_t src_len = strlen (src);
212   assert (dst_size > 0);
213   if (src_len + 1 < dst_size)
214     memcpy (dst, src, src_len + 1);
215   else
216     {
217       memcpy (dst, src, dst_size - 1);
218       dst[dst_size - 1] = '\0';
219     }
220 }
221
222 /* Copies buffer SRC, of SRC_LEN bytes,
223    to DST, which is in a buffer DST_SIZE bytes long.
224    Truncates DST to DST_SIZE - 1 bytes, if necessary. */
225 void
226 str_copy_buf_trunc (char *dst, size_t dst_size,
227                     const char *src, size_t src_size)
228 {
229   size_t dst_len;
230   assert (dst_size > 0);
231
232   dst_len = src_size < dst_size ? src_size : dst_size - 1;
233   memcpy (dst, src, dst_len);
234   dst[dst_len] = '\0';
235 }
236
237 /* Converts each byte in S to uppercase.
238
239    This is suitable only for ASCII strings.  Use utf8_to_upper() for UTF-8
240    strings.*/
241 void
242 str_uppercase (char *s)
243 {
244   for (; *s != '\0'; s++)
245     *s = c_toupper ((unsigned char) *s);
246 }
247
248 /* Converts each byte in S to lowercase.
249
250    This is suitable only for ASCII strings.  Use utf8_to_lower() for UTF-8
251    strings.*/
252 void
253 str_lowercase (char *s)
254 {
255   for (; *s != '\0'; s++)
256     *s = c_tolower ((unsigned char) *s);
257 }
258
259 /* Converts NUMBER into a string in 26-adic notation in BUFFER,
260    which has room for SIZE bytes.  Uses uppercase if UPPERCASE is
261    true, otherwise lowercase, Returns true if successful, false
262    if NUMBER, plus a trailing null, is too large to fit in the
263    available space.
264
265    26-adic notation is "spreadsheet column numbering": 1 = A, 2 =
266    B, 3 = C, ... 26 = Z, 27 = AA, 28 = AB, 29 = AC, ...
267
268    26-adic notation is the special case of a k-adic numeration
269    system (aka bijective base-k numeration) with k=26.  In k-adic
270    numeration, the digits are {1, 2, 3, ..., k} (there is no
271    digit 0), and integer 0 is represented by the empty string.
272    For more information, see
273    http://en.wikipedia.org/wiki/Bijective_numeration. */
274 bool
275 str_format_26adic (unsigned long int number, bool uppercase,
276                    char buffer[], size_t size)
277 {
278   const char *alphabet
279     = uppercase ? "ABCDEFGHIJKLMNOPQRSTUVWXYZ" : "abcdefghijklmnopqrstuvwxyz";
280   size_t length = 0;
281
282   while (number-- > 0)
283     {
284       if (length >= size)
285         goto overflow;
286       buffer[length++] = alphabet[number % 26];
287       number /= 26;
288     }
289
290   if (length >= size)
291     goto overflow;
292   buffer[length] = '\0';
293
294   buf_reverse (buffer, length);
295   return true;
296
297 overflow:
298   if (length > 0)
299     buffer[0] = '\0';
300   return false;
301 }
302
303 /* Sets the SIZE bytes starting at BLOCK to C,
304    and returns the byte following BLOCK. */
305 void *
306 mempset (void *block, int c, size_t size)
307 {
308   memset (block, c, size);
309   return (char *) block + size;
310 }
311 \f
312 /* Substrings. */
313
314 /* Returns a substring whose contents are the CNT bytes
315    starting at the (0-based) position START in SS. */
316 struct substring
317 ss_substr (struct substring ss, size_t start, size_t cnt)
318 {
319   if (start < ss.length)
320     return ss_buffer (ss.string + start, MIN (cnt, ss.length - start));
321   else
322     return ss_buffer (ss.string + ss.length, 0);
323 }
324
325 /* Returns a substring whose contents are the first CNT
326    bytes in SS. */
327 struct substring
328 ss_head (struct substring ss, size_t cnt)
329 {
330   return ss_buffer (ss.string, MIN (cnt, ss.length));
331 }
332
333 /* Returns a substring whose contents are the last CNT bytes
334    in SS. */
335 struct substring
336 ss_tail (struct substring ss, size_t cnt)
337 {
338   if (cnt < ss.length)
339     return ss_buffer (ss.string + (ss.length - cnt), cnt);
340   else
341     return ss;
342 }
343
344 /* Makes a malloc()'d, null-terminated copy of the contents of OLD
345    and stores it in NEW. */
346 void
347 ss_alloc_substring (struct substring *new, struct substring old)
348 {
349   new->string = xmemdup0 (old.string, old.length);
350   new->length = old.length;
351 }
352
353 /* Allocates room for a CNT-byte string in NEW. */
354 void
355 ss_alloc_uninit (struct substring *new, size_t cnt)
356 {
357   new->string = xmalloc (cnt);
358   new->length = cnt;
359 }
360
361 void
362 ss_realloc (struct substring *ss, size_t size)
363 {
364   ss->string = xrealloc (ss->string, size);
365 }
366
367 /* Makes a pool_alloc_unaligned()'d, null-terminated copy of the contents of
368    OLD in POOL, and stores it in NEW. */
369 void
370 ss_alloc_substring_pool (struct substring *new, struct substring old,
371                          struct pool *pool)
372 {
373   new->string = pool_alloc_unaligned (pool, old.length + 1);
374   new->length = old.length;
375   memcpy (new->string, old.string, old.length);
376   new->string[old.length] = '\0';
377 }
378
379 /* Allocates room for a CNT-byte string in NEW in POOL. */
380 void
381 ss_alloc_uninit_pool (struct substring *new, size_t cnt, struct pool *pool)
382 {
383   new->string = pool_alloc_unaligned (pool, cnt);
384   new->length = cnt;
385 }
386
387 /* Frees the string that SS points to. */
388 void
389 ss_dealloc (struct substring *ss)
390 {
391   free (ss->string);
392 }
393
394 /* Truncates SS to at most CNT bytes in length. */
395 void
396 ss_truncate (struct substring *ss, size_t cnt)
397 {
398   if (ss->length > cnt)
399     ss->length = cnt;
400 }
401
402 /* Removes trailing bytes in TRIM_SET from SS.
403    Returns number of bytes removed. */
404 size_t
405 ss_rtrim (struct substring *ss, struct substring trim_set)
406 {
407   size_t cnt = 0;
408   while (cnt < ss->length
409          && ss_find_byte (trim_set,
410                           ss->string[ss->length - cnt - 1]) != SIZE_MAX)
411     cnt++;
412   ss->length -= cnt;
413   return cnt;
414 }
415
416 /* Removes leading bytes in TRIM_SET from SS.
417    Returns number of bytes removed. */
418 size_t
419 ss_ltrim (struct substring *ss, struct substring trim_set)
420 {
421   size_t cnt = ss_span (*ss, trim_set);
422   ss_advance (ss, cnt);
423   return cnt;
424 }
425
426 /* Trims leading and trailing bytes in TRIM_SET from SS. */
427 void
428 ss_trim (struct substring *ss, struct substring trim_set)
429 {
430   ss_ltrim (ss, trim_set);
431   ss_rtrim (ss, trim_set);
432 }
433
434 /* If the last byte in SS is C, removes it and returns true.
435    Otherwise, returns false without changing the string. */
436 bool
437 ss_chomp_byte (struct substring *ss, char c)
438 {
439   if (ss_last (*ss) == c)
440     {
441       ss->length--;
442       return true;
443     }
444   else
445     return false;
446 }
447
448 /* If SS ends with SUFFIX, removes it and returns true.
449    Otherwise, returns false without changing the string. */
450 bool
451 ss_chomp (struct substring *ss, struct substring suffix)
452 {
453   if (ss_ends_with (*ss, suffix))
454     {
455       ss->length -= suffix.length;
456       return true;
457     }
458   else
459     return false;
460 }
461
462 /* Divides SS into tokens separated by any of the DELIMITERS.
463    Each call replaces TOKEN by the next token in SS, or by an
464    empty string if no tokens remain.  Returns true if a token was
465    obtained, false otherwise.
466
467    Before the first call, initialize *SAVE_IDX to 0.  Do not
468    modify *SAVE_IDX between calls.
469
470    SS divides into exactly one more tokens than it contains
471    delimiters.  That is, a delimiter at the start or end of SS or
472    a pair of adjacent delimiters yields an empty token, and the
473    empty string contains a single token. */
474 bool
475 ss_separate (struct substring ss, struct substring delimiters,
476              size_t *save_idx, struct substring *token)
477 {
478   if (*save_idx <= ss_length (ss))
479     {
480       struct substring tmp = ss_substr (ss, *save_idx, SIZE_MAX);
481       size_t length = ss_cspan (tmp, delimiters);
482       *token = ss_head (tmp, length);
483       *save_idx += length + 1;
484       return true;
485     }
486   else
487     {
488       *token = ss_empty ();
489       return false;
490     }
491 }
492
493 /* Divides SS into tokens separated by any of the DELIMITERS,
494    merging adjacent delimiters so that the empty string is never
495    produced as a token.  Each call replaces TOKEN by the next
496    token in SS, or by an empty string if no tokens remain, and
497    then skips past the first delimiter following the token.
498    Returns true if a token was obtained, false otherwise.
499
500    Before the first call, initialize *SAVE_IDX to 0.  Do not
501    modify *SAVE_IDX between calls. */
502 bool
503 ss_tokenize (struct substring ss, struct substring delimiters,
504              size_t *save_idx, struct substring *token)
505 {
506   bool found_token;
507
508   ss_advance (&ss, *save_idx);
509   *save_idx += ss_ltrim (&ss, delimiters);
510   ss_get_bytes (&ss, ss_cspan (ss, delimiters), token);
511
512   found_token = ss_length (*token) > 0;
513   *save_idx += ss_length (*token) + found_token;
514   return found_token;
515 }
516
517 /* Removes the first CNT bytes from SS. */
518 void
519 ss_advance (struct substring *ss, size_t cnt)
520 {
521   if (cnt > ss->length)
522     cnt = ss->length;
523   ss->string += cnt;
524   ss->length -= cnt;
525 }
526
527 /* If the first byte in SS is C, removes it and returns true.
528    Otherwise, returns false without changing the string. */
529 bool
530 ss_match_byte (struct substring *ss, char c)
531 {
532   if (ss_first (*ss) == c)
533     {
534       ss->string++;
535       ss->length--;
536       return true;
537     }
538   else
539     return false;
540 }
541
542 /* If the first byte in SS is in MATCH, removes it and
543    returns the byte that was removed.
544    Otherwise, returns EOF without changing the string. */
545 int
546 ss_match_byte_in (struct substring *ss, struct substring match)
547 {
548   int c = EOF;
549   if (ss->length > 0
550       && memchr (match.string, ss->string[0], match.length) != NULL)
551     {
552       c = ss->string[0];
553       ss->string++;
554       ss->length--;
555     }
556   return c;
557 }
558
559 /* If SS begins with TARGET, removes it and returns true.
560    Otherwise, returns false without changing SS. */
561 bool
562 ss_match_string (struct substring *ss, const struct substring target)
563 {
564   size_t length = ss_length (target);
565   if (ss_equals (ss_head (*ss, length), target))
566     {
567       ss_advance (ss, length);
568       return true;
569     }
570   else
571     return false;
572 }
573
574 /* Removes the first byte from SS and returns it.
575    If SS is empty, returns EOF without modifying SS. */
576 int
577 ss_get_byte (struct substring *ss)
578 {
579   int c = ss_first (*ss);
580   if (c != EOF)
581     {
582       ss->string++;
583       ss->length--;
584     }
585   return c;
586 }
587
588 /* Stores the prefix of SS up to the first DELIMITER in OUT (if
589    any).  Trims those same bytes from SS.  DELIMITER is
590    removed from SS but not made part of OUT.  Returns true if
591    DELIMITER was found (and removed), false otherwise. */
592 bool
593 ss_get_until (struct substring *ss, char delimiter, struct substring *out)
594 {
595   ss_get_bytes (ss, ss_cspan (*ss, ss_buffer (&delimiter, 1)), out);
596   return ss_match_byte (ss, delimiter);
597 }
598
599 /* Stores the first CNT bytes in SS in OUT (or fewer, if SS
600    is shorter than CNT bytes).  Trims the same bytes
601    from the beginning of SS.  Returns CNT. */
602 size_t
603 ss_get_bytes (struct substring *ss, size_t cnt, struct substring *out)
604 {
605   *out = ss_head (*ss, cnt);
606   ss_advance (ss, cnt);
607   return cnt;
608 }
609
610 /* Parses and removes an optionally signed decimal integer from
611    the beginning of SS.  Returns 0 if an error occurred,
612    otherwise the number of bytes removed from SS.  Stores
613    the integer's value into *VALUE. */
614 size_t
615 ss_get_long (struct substring *ss, long *value)
616 {
617   char tmp[64];
618   size_t length;
619
620   length = ss_span (*ss, ss_cstr ("+-"));
621   length += ss_span (ss_substr (*ss, length, SIZE_MAX), ss_cstr (CC_DIGITS));
622   if (length > 0 && length < sizeof tmp)
623     {
624       char *tail;
625
626       memcpy (tmp, ss_data (*ss), length);
627       tmp[length] = '\0';
628
629       *value = strtol (tmp, &tail, 10);
630       if (tail - tmp == length)
631         {
632           ss_advance (ss, length);
633           return length;
634         }
635     }
636   *value = 0;
637   return 0;
638 }
639
640 /* Returns true if SS is empty (has length 0 bytes),
641    false otherwise. */
642 bool
643 ss_is_empty (struct substring ss)
644 {
645   return ss.length == 0;
646 }
647
648 /* Returns the number of bytes in SS. */
649 size_t
650 ss_length (struct substring ss)
651 {
652   return ss.length;
653 }
654
655 /* Returns a pointer to the bytes in SS. */
656 char *
657 ss_data (struct substring ss)
658 {
659   return ss.string;
660 }
661
662 /* Returns a pointer just past the last byte in SS. */
663 char *
664 ss_end (struct substring ss)
665 {
666   return ss.string + ss.length;
667 }
668
669 /* Returns the byte in position IDX in SS, as a value in the
670    range of unsigned char.  Returns EOF if IDX is out of the
671    range of indexes for SS. */
672 int
673 ss_at (struct substring ss, size_t idx)
674 {
675   return idx < ss.length ? (unsigned char) ss.string[idx] : EOF;
676 }
677
678 /* Returns the first byte in SS as a value in the range of
679    unsigned char.  Returns EOF if SS is the empty string. */
680 int
681 ss_first (struct substring ss)
682 {
683   return ss_at (ss, 0);
684 }
685
686 /* Returns the last byte in SS as a value in the range of
687    unsigned char.  Returns EOF if SS is the empty string. */
688 int
689 ss_last (struct substring ss)
690 {
691   return ss.length > 0 ? (unsigned char) ss.string[ss.length - 1] : EOF;
692 }
693
694 /* Returns true if SS ends with SUFFIX, false otherwise. */
695 bool
696 ss_ends_with (struct substring ss, struct substring suffix)
697 {
698   return (ss.length >= suffix.length
699           && !memcmp (&ss.string[ss.length - suffix.length], suffix.string,
700                       suffix.length));
701 }
702
703 /* Returns the number of contiguous bytes at the beginning
704    of SS that are in SKIP_SET. */
705 size_t
706 ss_span (struct substring ss, struct substring skip_set)
707 {
708   size_t i;
709   for (i = 0; i < ss.length; i++)
710     if (ss_find_byte (skip_set, ss.string[i]) == SIZE_MAX)
711       break;
712   return i;
713 }
714
715 /* Returns the number of contiguous bytes at the beginning
716    of SS that are not in SKIP_SET. */
717 size_t
718 ss_cspan (struct substring ss, struct substring stop_set)
719 {
720   size_t i;
721   for (i = 0; i < ss.length; i++)
722     if (ss_find_byte (stop_set, ss.string[i]) != SIZE_MAX)
723       break;
724   return i;
725 }
726
727 /* Returns the offset in SS of the first instance of C,
728    or SIZE_MAX if C does not occur in SS. */
729 size_t
730 ss_find_byte (struct substring ss, char c)
731 {
732   const char *p = memchr (ss.string, c, ss.length);
733   return p != NULL ? p - ss.string : SIZE_MAX;
734 }
735
736 /* Compares A and B and returns a strcmp()-type comparison
737    result. */
738 int
739 ss_compare (struct substring a, struct substring b)
740 {
741   int retval = memcmp (a.string, b.string, MIN (a.length, b.length));
742   if (retval == 0)
743     retval = a.length < b.length ? -1 : a.length > b.length;
744   return retval;
745 }
746
747 /* Compares A and B case-insensitively and returns a
748    strcmp()-type comparison result. */
749 int
750 ss_compare_case (struct substring a, struct substring b)
751 {
752   int retval = memcasecmp (a.string, b.string, MIN (a.length, b.length));
753   if (retval == 0)
754     retval = a.length < b.length ? -1 : a.length > b.length;
755   return retval;
756 }
757
758 /* Compares A and B and returns true if their contents are
759    identical, false otherwise. */
760 int
761 ss_equals (struct substring a, struct substring b)
762 {
763   return a.length == b.length && !memcmp (a.string, b.string, a.length);
764 }
765
766 /* Compares A and B and returns true if their contents are
767    identical except possibly for case differences, false
768    otherwise. */
769 int
770 ss_equals_case (struct substring a, struct substring b)
771 {
772   return a.length == b.length && !memcasecmp (a.string, b.string, a.length);
773 }
774
775 /* Returns the position in SS that the byte at P occupies.
776    P must point within SS or one past its end. */
777 size_t
778 ss_pointer_to_position (struct substring ss, const char *p)
779 {
780   size_t pos = p - ss.string;
781   assert (pos <= ss.length);
782   return pos;
783 }
784
785 /* Allocates and returns a null-terminated string that contains
786    SS. */
787 char *
788 ss_xstrdup (struct substring ss)
789 {
790   char *s = xmalloc (ss.length + 1);
791   memcpy (s, ss.string, ss.length);
792   s[ss.length] = '\0';
793   return s;
794 }
795 /* UTF-8. */
796
797 /* Returns the character represented by the UTF-8 sequence at the start of S.
798    The return value is either a Unicode code point in the range 0 to 0x10ffff,
799    or UINT32_MAX if S is empty. */
800 ucs4_t
801 ss_first_mb (struct substring s)
802 {
803   return ss_at_mb (s, 0);
804 }
805
806 /* Returns the number of bytes in the UTF-8 character at the beginning of S.
807
808    The return value is 0 if S is empty, otherwise between 1 and 4. */
809 int
810 ss_first_mblen (struct substring s)
811 {
812   return ss_at_mblen (s, 0);
813 }
814
815 /* Advances S past the UTF-8 character at its beginning.  Returns the Unicode
816    code point that was skipped (in the range 0 to 0x10ffff), or UINT32_MAX if S
817    was not modified because it was initially empty. */
818 ucs4_t
819 ss_get_mb (struct substring *s)
820 {
821   if (s->length > 0)
822     {
823       ucs4_t uc;
824       int n;
825
826       n = u8_mbtouc (&uc, CHAR_CAST (const uint8_t *, s->string), s->length);
827       s->string += n;
828       s->length -= n;
829       return uc;
830     }
831   else
832     return UINT32_MAX;
833 }
834
835 /* Returns the character represented by the UTF-8 sequence starting OFS bytes
836    into S.  The return value is either a Unicode code point in the range 0 to
837    0x10ffff, or UINT32_MAX if OFS is past the last byte in S.
838
839    (Returns 0xfffd if OFS points into the middle, not the beginning, of a UTF-8
840    sequence.)  */
841 ucs4_t
842 ss_at_mb (struct substring s, size_t ofs)
843 {
844   if (s.length > ofs)
845     {
846       ucs4_t uc;
847       u8_mbtouc (&uc, CHAR_CAST (const uint8_t *, s.string + ofs),
848                  s.length - ofs);
849       return uc;
850     }
851   else
852     return UINT32_MAX;
853 }
854
855 /* Returns the number of bytes represented by the UTF-8 sequence starting OFS
856    bytes into S.  The return value is 0 if OFS is past the last byte in S,
857    otherwise between 1 and 4. */
858 int
859 ss_at_mblen (struct substring s, size_t ofs)
860 {
861   if (s.length > ofs)
862     {
863       ucs4_t uc;
864       return u8_mbtouc (&uc, CHAR_CAST (const uint8_t *, s.string + ofs),
865                         s.length - ofs);
866     }
867   else
868     return 0;
869 }
870 \f
871 /* Initializes ST as an empty string. */
872 void
873 ds_init_empty (struct string *st)
874 {
875   st->ss = ss_empty ();
876   st->capacity = 0;
877 }
878
879 /* Initializes ST with initial contents S. */
880 void
881 ds_init_string (struct string *st, const struct string *s)
882 {
883   ds_init_substring (st, ds_ss (s));
884 }
885
886 /* Initializes ST with initial contents SS. */
887 void
888 ds_init_substring (struct string *st, struct substring ss)
889 {
890   st->capacity = MAX (8, ss.length * 2);
891   st->ss.string = xmalloc (st->capacity + 1);
892   memcpy (st->ss.string, ss.string, ss.length);
893   st->ss.length = ss.length;
894 }
895
896 /* Initializes ST with initial contents S. */
897 void
898 ds_init_cstr (struct string *st, const char *s)
899 {
900   ds_init_substring (st, ss_cstr (s));
901 }
902
903 /* Frees ST. */
904 void
905 ds_destroy (struct string *st)
906 {
907   if (st != NULL)
908     {
909       ss_dealloc (&st->ss);
910       st->ss.string = NULL;
911       st->ss.length = 0;
912       st->capacity = 0;
913     }
914 }
915
916 /* Swaps the contents of strings A and B. */
917 void
918 ds_swap (struct string *a, struct string *b)
919 {
920   struct string tmp = *a;
921   *a = *b;
922   *b = tmp;
923 }
924
925 /* Helper function for ds_register_pool. */
926 static void
927 free_string (void *st_)
928 {
929   struct string *st = st_;
930   ds_destroy (st);
931 }
932
933 /* Arranges for ST to be destroyed automatically as part of
934    POOL. */
935 void
936 ds_register_pool (struct string *st, struct pool *pool)
937 {
938   pool_register (pool, free_string, st);
939 }
940
941 /* Cancels the arrangement for ST to be destroyed automatically
942    as part of POOL. */
943 void
944 ds_unregister_pool (struct string *st, struct pool *pool)
945 {
946   pool_unregister (pool, st);
947 }
948
949 /* Copies SRC into DST.
950    DST and SRC may be the same string. */
951 void
952 ds_assign_string (struct string *dst, const struct string *src)
953 {
954   ds_assign_substring (dst, ds_ss (src));
955 }
956
957 /* Replaces DST by SS.
958    SS may be a substring of DST. */
959 void
960 ds_assign_substring (struct string *dst, struct substring ss)
961 {
962   dst->ss.length = ss.length;
963   ds_extend (dst, ss.length);
964   memmove (dst->ss.string, ss.string, ss.length);
965 }
966
967 /* Replaces DST by null-terminated string SRC.  SRC may overlap
968    with DST. */
969 void
970 ds_assign_cstr (struct string *dst, const char *src)
971 {
972   ds_assign_substring (dst, ss_cstr (src));
973 }
974
975 /* Truncates ST to zero length. */
976 void
977 ds_clear (struct string *st)
978 {
979   st->ss.length = 0;
980 }
981
982 /* Returns a substring that contains ST. */
983 struct substring
984 ds_ss (const struct string *st)
985 {
986   return st->ss;
987 }
988
989 /* Returns a substring that contains CNT bytes from ST
990    starting at position START.
991
992    If START is greater than or equal to the length of ST, then
993    the substring will be the empty string.  If START + CNT
994    exceeds the length of ST, then the substring will only be
995    ds_length(ST) - START bytes long. */
996 struct substring
997 ds_substr (const struct string *st, size_t start, size_t cnt)
998 {
999   return ss_substr (ds_ss (st), start, cnt);
1000 }
1001
1002 /* Returns a substring that contains the first CNT bytes in
1003    ST.  If CNT exceeds the length of ST, then the substring will
1004    contain all of ST. */
1005 struct substring
1006 ds_head (const struct string *st, size_t cnt)
1007 {
1008   return ss_head (ds_ss (st), cnt);
1009 }
1010
1011 /* Returns a substring that contains the last CNT bytes in
1012    ST.  If CNT exceeds the length of ST, then the substring will
1013    contain all of ST. */
1014 struct substring
1015 ds_tail (const struct string *st, size_t cnt)
1016 {
1017   return ss_tail (ds_ss (st), cnt);
1018 }
1019
1020 /* Ensures that ST can hold at least MIN_CAPACITY bytes plus a null
1021    terminator. */
1022 void
1023 ds_extend (struct string *st, size_t min_capacity)
1024 {
1025   if (min_capacity > st->capacity)
1026     {
1027       st->capacity *= 2;
1028       if (st->capacity < min_capacity)
1029         st->capacity = 2 * min_capacity;
1030
1031       st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
1032     }
1033 }
1034
1035 /* Shrink ST to the minimum capacity need to contain its content. */
1036 void
1037 ds_shrink (struct string *st)
1038 {
1039   if (st->capacity != st->ss.length)
1040     {
1041       st->capacity = st->ss.length;
1042       st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
1043     }
1044 }
1045
1046 /* Truncates ST to at most LENGTH bytes long. */
1047 void
1048 ds_truncate (struct string *st, size_t length)
1049 {
1050   ss_truncate (&st->ss, length);
1051 }
1052
1053 /* Removes trailing bytes in TRIM_SET from ST.
1054    Returns number of bytes removed. */
1055 size_t
1056 ds_rtrim (struct string *st, struct substring trim_set)
1057 {
1058   return ss_rtrim (&st->ss, trim_set);
1059 }
1060
1061 /* Removes leading bytes in TRIM_SET from ST.
1062    Returns number of bytes removed. */
1063 size_t
1064 ds_ltrim (struct string *st, struct substring trim_set)
1065 {
1066   size_t cnt = ds_span (st, trim_set);
1067   if (cnt > 0)
1068     ds_assign_substring (st, ds_substr (st, cnt, SIZE_MAX));
1069   return cnt;
1070 }
1071
1072 /* Trims leading and trailing bytes in TRIM_SET from ST.
1073    Returns number of bytes removed. */
1074 size_t
1075 ds_trim (struct string *st, struct substring trim_set)
1076 {
1077   size_t cnt = ds_rtrim (st, trim_set);
1078   return cnt + ds_ltrim (st, trim_set);
1079 }
1080
1081 /* If the last byte in ST is C, removes it and returns true.
1082    Otherwise, returns false without modifying ST. */
1083 bool
1084 ds_chomp_byte (struct string *st, char c)
1085 {
1086   return ss_chomp_byte (&st->ss, c);
1087 }
1088
1089 /* If ST ends with SUFFIX, removes it and returns true.
1090    Otherwise, returns false without modifying ST. */
1091 bool
1092 ds_chomp (struct string *st, struct substring suffix)
1093 {
1094   return ss_chomp (&st->ss, suffix);
1095 }
1096
1097 /* Divides ST into tokens separated by any of the DELIMITERS.
1098    Each call replaces TOKEN by the next token in ST, or by an
1099    empty string if no tokens remain.  Returns true if a token was
1100    obtained, false otherwise.
1101
1102    Before the first call, initialize *SAVE_IDX to 0.  Do not
1103    modify *SAVE_IDX between calls.
1104
1105    ST divides into exactly one more tokens than it contains
1106    delimiters.  That is, a delimiter at the start or end of ST or
1107    a pair of adjacent delimiters yields an empty token, and the
1108    empty string contains a single token. */
1109 bool
1110 ds_separate (const struct string *st, struct substring delimiters,
1111              size_t *save_idx, struct substring *token)
1112 {
1113   return ss_separate (ds_ss (st), delimiters, save_idx, token);
1114 }
1115
1116 /* Divides ST into tokens separated by any of the DELIMITERS,
1117    merging adjacent delimiters so that the empty string is never
1118    produced as a token.  Each call replaces TOKEN by the next
1119    token in ST, or by an empty string if no tokens remain.
1120    Returns true if a token was obtained, false otherwise.
1121
1122    Before the first call, initialize *SAVE_IDX to 0.  Do not
1123    modify *SAVE_IDX between calls. */
1124 bool
1125 ds_tokenize (const struct string *st, struct substring delimiters,
1126              size_t *save_idx, struct substring *token)
1127 {
1128   return ss_tokenize (ds_ss (st), delimiters, save_idx, token);
1129 }
1130
1131 /* Pad ST on the right with copies of PAD until ST is at least
1132    LENGTH bytes in size.  If ST is initially LENGTH
1133    bytes or longer, this is a no-op. */
1134 void
1135 ds_rpad (struct string *st, size_t length, char pad)
1136 {
1137   if (length > st->ss.length)
1138     ds_put_byte_multiple (st, pad, length - st->ss.length);
1139 }
1140
1141 /* Sets the length of ST to exactly NEW_LENGTH,
1142    either by truncating bytes from the end,
1143    or by padding on the right with PAD. */
1144 void
1145 ds_set_length (struct string *st, size_t new_length, char pad)
1146 {
1147   if (st->ss.length < new_length)
1148     ds_rpad (st, new_length, pad);
1149   else
1150     st->ss.length = new_length;
1151 }
1152
1153 /* Removes N bytes from ST starting at offset START. */
1154 void
1155 ds_remove (struct string *st, size_t start, size_t n)
1156 {
1157   if (n > 0 && start < st->ss.length)
1158     {
1159       if (st->ss.length - start <= n)
1160         {
1161           /* All bytes at or beyond START are deleted. */
1162           st->ss.length = start;
1163         }
1164       else
1165         {
1166           /* Some bytes remain and must be shifted into
1167              position. */
1168           memmove (st->ss.string + st->ss.length,
1169                    st->ss.string + st->ss.length + n,
1170                    st->ss.length - start - n);
1171           st->ss.length -= n;
1172         }
1173     }
1174   else
1175     {
1176       /* There are no bytes to delete or no bytes at or
1177          beyond START, hence deletion is a no-op. */
1178     }
1179 }
1180
1181 /* Returns true if ST is empty, false otherwise. */
1182 bool
1183 ds_is_empty (const struct string *st)
1184 {
1185   return ss_is_empty (st->ss);
1186 }
1187
1188 /* Returns the length of ST. */
1189 size_t
1190 ds_length (const struct string *st)
1191 {
1192   return ss_length (ds_ss (st));
1193 }
1194
1195 /* Returns the string data inside ST. */
1196 char *
1197 ds_data (const struct string *st)
1198 {
1199   return ss_data (ds_ss (st));
1200 }
1201
1202 /* Returns a pointer to the null terminator ST.
1203    This might not be an actual null byte unless ds_c_str() has
1204    been called since the last modification to ST. */
1205 char *
1206 ds_end (const struct string *st)
1207 {
1208   return ss_end (ds_ss (st));
1209 }
1210
1211 /* Returns the byte in position IDX in ST, as a value in the
1212    range of unsigned char.  Returns EOF if IDX is out of the
1213    range of indexes for ST. */
1214 int
1215 ds_at (const struct string *st, size_t idx)
1216 {
1217   return ss_at (ds_ss (st), idx);
1218 }
1219
1220 /* Returns the first byte in ST as a value in the range of
1221    unsigned char.  Returns EOF if ST is the empty string. */
1222 int
1223 ds_first (const struct string *st)
1224 {
1225   return ss_first (ds_ss (st));
1226 }
1227
1228 /* Returns the last byte in ST as a value in the range of
1229    unsigned char.  Returns EOF if ST is the empty string. */
1230 int
1231 ds_last (const struct string *st)
1232 {
1233   return ss_last (ds_ss (st));
1234 }
1235
1236 /* Returns true if ST ends with SUFFIX, false otherwise. */
1237 bool
1238 ds_ends_with (const struct string *st, struct substring suffix)
1239 {
1240   return ss_ends_with (st->ss, suffix);
1241 }
1242
1243 /* Returns the number of consecutive bytes at the beginning
1244    of ST that are in SKIP_SET. */
1245 size_t
1246 ds_span (const struct string *st, struct substring skip_set)
1247 {
1248   return ss_span (ds_ss (st), skip_set);
1249 }
1250
1251 /* Returns the number of consecutive bytes at the beginning
1252    of ST that are not in STOP_SET.  */
1253 size_t
1254 ds_cspan (const struct string *st, struct substring stop_set)
1255 {
1256   return ss_cspan (ds_ss (st), stop_set);
1257 }
1258
1259 /* Returns the position of the first occurrence of byte C in
1260    ST at or after position OFS, or SIZE_MAX if there is no such
1261    occurrence. */
1262 size_t
1263 ds_find_byte (const struct string *st, char c)
1264 {
1265   return ss_find_byte (ds_ss (st), c);
1266 }
1267
1268 /* Compares A and B and returns a strcmp()-type comparison
1269    result. */
1270 int
1271 ds_compare (const struct string *a, const struct string *b)
1272 {
1273   return ss_compare (ds_ss (a), ds_ss (b));
1274 }
1275
1276 /* Returns the position in ST that the byte at P occupies.
1277    P must point within ST or one past its end. */
1278 size_t
1279 ds_pointer_to_position (const struct string *st, const char *p)
1280 {
1281   return ss_pointer_to_position (ds_ss (st), p);
1282 }
1283
1284 /* Allocates and returns a null-terminated string that contains
1285    ST. */
1286 char *
1287 ds_xstrdup (const struct string *st)
1288 {
1289   return ss_xstrdup (ds_ss (st));
1290 }
1291
1292 /* Returns the allocation size of ST. */
1293 size_t
1294 ds_capacity (const struct string *st)
1295 {
1296   return st->capacity;
1297 }
1298
1299 /* Returns the value of ST as a null-terminated string. */
1300 char *
1301 ds_cstr (const struct string *st_)
1302 {
1303   struct string *st = CONST_CAST (struct string *, st_);
1304   if (st->ss.string == NULL)
1305     ds_extend (st, 1);
1306   st->ss.string[st->ss.length] = '\0';
1307   return st->ss.string;
1308 }
1309
1310 /* Returns the value of ST as a null-terminated string and then
1311    reinitialized ST as an empty string.  The caller must free the
1312    returned string with free(). */
1313 char *
1314 ds_steal_cstr (struct string *st)
1315 {
1316   char *s = ds_cstr (st);
1317   ds_init_empty (st);
1318   return s;
1319 }
1320
1321 /* Reads bytes from STREAM and appends them to ST, stopping
1322    after MAX_LENGTH bytes, after appending a newline, or
1323    after an I/O error or end of file was encountered, whichever
1324    comes first.  Returns true if at least one byte was added
1325    to ST, false if no bytes were read before an I/O error or
1326    end of file (or if MAX_LENGTH was 0).
1327
1328    This function treats LF and CR LF sequences as new-line,
1329    translating each of them to a single '\n' in ST. */
1330 bool
1331 ds_read_line (struct string *st, FILE *stream, size_t max_length)
1332 {
1333   size_t length;
1334
1335   for (length = 0; length < max_length; length++)
1336     {
1337       int c = getc (stream);
1338       switch (c)
1339         {
1340         case EOF:
1341           return length > 0;
1342
1343         case '\n':
1344           ds_put_byte (st, c);
1345           return true;
1346
1347         case '\r':
1348           c = getc (stream);
1349           if (c == '\n')
1350             {
1351               /* CR followed by LF is special: translate to \n. */
1352               ds_put_byte (st, '\n');
1353               return true;
1354             }
1355           else
1356             {
1357               /* CR followed by anything else is just CR. */
1358               ds_put_byte (st, '\r');
1359               if (c == EOF)
1360                 return true;
1361               ungetc (c, stream);
1362             }
1363           break;
1364
1365         default:
1366           ds_put_byte (st, c);
1367         }
1368     }
1369
1370   return length > 0;
1371 }
1372
1373 /* Removes a comment introduced by `#' from ST,
1374    ignoring occurrences inside quoted strings. */
1375 static void
1376 remove_comment (struct string *st)
1377 {
1378   char *cp;
1379   int quote = 0;
1380
1381   for (cp = ds_data (st); cp < ds_end (st); cp++)
1382     if (quote)
1383       {
1384         if (*cp == quote)
1385           quote = 0;
1386         else if (*cp == '\\')
1387           cp++;
1388       }
1389     else if (*cp == '\'' || *cp == '"')
1390       quote = *cp;
1391     else if (*cp == '#')
1392       {
1393         ds_truncate (st, cp - ds_cstr (st));
1394         break;
1395       }
1396 }
1397
1398 /* Reads a line from STREAM into ST, then preprocesses as follows:
1399
1400    - Splices lines terminated with `\'.
1401
1402    - Deletes comments introduced by `#' outside of single or double
1403      quotes.
1404
1405    - Deletes trailing white space.
1406
1407    Returns true if a line was successfully read, false on
1408    failure.  If LINE_NUMBER is non-null, then *LINE_NUMBER is
1409    incremented by the number of lines read. */
1410 bool
1411 ds_read_config_line (struct string *st, int *line_number, FILE *stream)
1412 {
1413   ds_clear (st);
1414   do
1415     {
1416       if (!ds_read_line (st, stream, SIZE_MAX))
1417         return false;
1418       (*line_number)++;
1419       ds_rtrim (st, ss_cstr (CC_SPACES));
1420     }
1421   while (ds_chomp_byte (st, '\\'));
1422
1423   remove_comment (st);
1424   return true;
1425 }
1426
1427 /* Attempts to read SIZE * CNT bytes from STREAM and append them
1428    to ST.
1429    Returns true if all the requested data was read, false otherwise. */
1430 bool
1431 ds_read_stream (struct string *st, size_t size, size_t cnt, FILE *stream)
1432 {
1433   if (size != 0)
1434     {
1435       size_t try_bytes = xtimes (cnt, size);
1436       if (size_in_bounds_p (xsum (ds_length (st), try_bytes)))
1437         {
1438           char *buffer = ds_put_uninit (st, try_bytes);
1439           size_t got_bytes = fread (buffer, 1, try_bytes, stream);
1440           ds_truncate (st, ds_length (st) - (try_bytes - got_bytes));
1441           return got_bytes == try_bytes;
1442         }
1443       else
1444         {
1445           errno = ENOMEM;
1446           return false;
1447         }
1448     }
1449   else
1450     return true;
1451 }
1452
1453 /* Concatenates S onto ST. */
1454 void
1455 ds_put_cstr (struct string *st, const char *s)
1456 {
1457   if (s != NULL)
1458     ds_put_substring (st, ss_cstr (s));
1459 }
1460
1461 /* Concatenates SS to ST. */
1462 void
1463 ds_put_substring (struct string *st, struct substring ss)
1464 {
1465   memcpy (ds_put_uninit (st, ss_length (ss)), ss_data (ss), ss_length (ss));
1466 }
1467
1468 /* Returns ds_end(ST) and THEN increases the length by INCR. */
1469 char *
1470 ds_put_uninit (struct string *st, size_t incr)
1471 {
1472   char *end;
1473   ds_extend (st, ds_length (st) + incr);
1474   end = ds_end (st);
1475   st->ss.length += incr;
1476   return end;
1477 }
1478
1479 /* Moves the bytes in ST following offset OFS + OLD_LEN in ST to offset OFS +
1480    NEW_LEN and returns the byte at offset OFS.  The first min(OLD_LEN, NEW_LEN)
1481    bytes at the returned position are unchanged; if NEW_LEN > OLD_LEN then the
1482    following NEW_LEN - OLD_LEN bytes are initially indeterminate.
1483
1484    The intention is that the caller should write NEW_LEN bytes at the returned
1485    position, to effectively replace the OLD_LEN bytes previously at that
1486    position. */
1487 char *
1488 ds_splice_uninit (struct string *st,
1489                   size_t ofs, size_t old_len, size_t new_len)
1490 {
1491   if (new_len != old_len)
1492     {
1493       if (new_len > old_len)
1494         ds_extend (st, ds_length (st) + (new_len - old_len));
1495       memmove (ds_data (st) + (ofs + new_len),
1496                ds_data (st) + (ofs + old_len),
1497                ds_length (st) - (ofs + old_len));
1498       st->ss.length += new_len - old_len;
1499     }
1500   return ds_data (st) + ofs;
1501 }
1502
1503 /* Formats FORMAT as a printf string and appends the result to ST. */
1504 void
1505 ds_put_format (struct string *st, const char *format, ...)
1506 {
1507   va_list args;
1508
1509   va_start (args, format);
1510   ds_put_vformat (st, format, args);
1511   va_end (args);
1512 }
1513
1514 /* Formats FORMAT as a printf string as if in the C locale and appends the result to ST. */
1515 void
1516 ds_put_c_format (struct string *st, const char *format, ...)
1517 {
1518   va_list args;
1519
1520   va_start (args, format);
1521   ds_put_c_vformat (st, format, args);
1522   va_end (args);
1523 }
1524
1525
1526 /* Formats FORMAT as a printf string, using fmt_func (a snprintf like function) 
1527    and appends the result to ST. */
1528 static void
1529 ds_put_vformat_int (struct string *st, const char *format, va_list args_,
1530                     int (*fmt_func) (char *, size_t, const char *, va_list))
1531 {
1532   int avail, needed;
1533   va_list args;
1534
1535   va_copy (args, args_);
1536   avail = st->ss.string != NULL ? st->capacity - st->ss.length + 1 : 0;
1537   needed = fmt_func (st->ss.string + st->ss.length, avail, format, args);
1538   va_end (args);
1539
1540   if (needed >= avail)
1541     {
1542       va_copy (args, args_);
1543       fmt_func (ds_put_uninit (st, needed), needed + 1, format, args);
1544       va_end (args);
1545     }
1546   else
1547     {
1548       /* Some old libc's returned -1 when the destination string
1549          was too short. */
1550       while (needed == -1)
1551         {
1552           ds_extend (st, (st->capacity + 1) * 2);
1553           avail = st->capacity - st->ss.length + 1;
1554
1555           va_copy (args, args_);
1556           needed = fmt_func (ds_end (st), avail, format, args);
1557           va_end (args);
1558         }
1559       st->ss.length += needed;
1560     }
1561 }
1562
1563
1564 static int
1565 vasnwrapper (char *str, size_t size,  const char *format, va_list ap)
1566 {
1567   c_vasnprintf (str, &size, format, ap);
1568   return size;
1569 }
1570
1571 /* Formats FORMAT as a printf string and appends the result to ST. */
1572 void
1573 ds_put_vformat (struct string *st, const char *format, va_list args_)
1574 {
1575   ds_put_vformat_int (st, format, args_, vsnprintf);
1576 }
1577
1578 /* Formats FORMAT as a printf string, as if in the C locale, 
1579    and appends the result to ST. */
1580 void
1581 ds_put_c_vformat (struct string *st, const char *format, va_list args_)
1582 {
1583   ds_put_vformat_int (st, format, args_, vasnwrapper);
1584 }
1585
1586 /* Appends byte CH to ST. */
1587 void
1588 ds_put_byte (struct string *st, int ch)
1589 {
1590   ds_put_uninit (st, 1)[0] = ch;
1591 }
1592
1593 /* Appends CNT copies of byte CH to ST. */
1594 void
1595 ds_put_byte_multiple (struct string *st, int ch, size_t cnt)
1596 {
1597   memset (ds_put_uninit (st, cnt), ch, cnt);
1598 }
1599
1600 /* Appends Unicode code point UC to ST in UTF-8 encoding. */
1601 void
1602 ds_put_unichar (struct string *st, ucs4_t uc)
1603 {
1604   ds_extend (st, ds_length (st) + 6);
1605   st->ss.length += u8_uctomb (CHAR_CAST (uint8_t *, ds_end (st)), uc, 6);
1606 }
1607
1608 /* If relocation has been enabled, replace ST,
1609    with its relocated version */
1610 void
1611 ds_relocate (struct string *st)
1612 {
1613   const char *orig = ds_cstr (st);
1614   const char *rel = relocate (orig);
1615
1616   if ( orig != rel)
1617     {
1618       ds_clear (st);
1619       ds_put_cstr (st, rel);
1620       /* The documentation for relocate says that casting away const
1621         and then freeing is appropriate ... */
1622       free (CONST_CAST (char *, rel));
1623     }
1624 }
1625
1626
1627 \f
1628
1629 /* Operations on uint8_t "strings" */
1630
1631 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
1632    DST is truncated to DST_SIZE bytes or padded on the right with
1633    copies of PAD as needed. */
1634 void
1635 u8_buf_copy_rpad (uint8_t *dst, size_t dst_size,
1636                   const uint8_t *src, size_t src_size,
1637                   char pad)
1638 {
1639   if (src_size >= dst_size)
1640     memmove (dst, src, dst_size);
1641   else
1642     {
1643       memmove (dst, src, src_size);
1644       memset (&dst[src_size], pad, dst_size - src_size);
1645     }
1646 }