Patch #6386. Thanks to John Darrington for review and for the
[pspp-builds.git] / src / libpspp / str.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006 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
26 #include <libpspp/message.h>
27 #include <libpspp/pool.h>
28
29 #include "minmax.h"
30 #include "xalloc.h"
31 #include "xsize.h"
32 \f
33 /* Reverses the order of NBYTES bytes at address P, thus converting
34    between little- and big-endian byte orders.  */
35 void
36 buf_reverse (char *p, size_t nbytes)
37 {
38   char *h = p, *t = &h[nbytes - 1];
39   char temp;
40
41   nbytes /= 2;
42   while (nbytes--)
43     {
44       temp = *h;
45       *h++ = *t;
46       *t-- = temp;
47     }
48 }
49
50 /* Finds the last NEEDLE of length NEEDLE_LEN in a HAYSTACK of length
51    HAYSTACK_LEN.  Returns a pointer to the needle found. */
52 char *
53 buf_find_reverse (const char *haystack, size_t haystack_len,
54                  const char *needle, size_t needle_len)
55 {
56   int i;
57   for (i = haystack_len - needle_len; i >= 0; i--)
58     if (!memcmp (needle, &haystack[i], needle_len))
59       return (char *) &haystack[i];
60   return 0;
61 }
62
63 /* Compares the SIZE bytes in A to those in B, disregarding case,
64    and returns a strcmp()-type result. */
65 int
66 buf_compare_case (const char *a_, const char *b_, size_t size)
67 {
68   const unsigned char *a = (unsigned char *) a_;
69   const unsigned char *b = (unsigned char *) b_;
70
71   while (size-- > 0)
72     {
73       unsigned char ac = toupper (*a++);
74       unsigned char bc = toupper (*b++);
75
76       if (ac != bc)
77         return ac > bc ? 1 : -1;
78     }
79
80   return 0;
81 }
82
83 /* Compares A of length A_LEN to B of length B_LEN.  The shorter
84    string is considered to be padded with spaces to the length of
85    the longer. */
86 int
87 buf_compare_rpad (const char *a, size_t a_len, const char *b, size_t b_len)
88 {
89   size_t min_len;
90   int result;
91
92   min_len = a_len < b_len ? a_len : b_len;
93   result = memcmp (a, b, min_len);
94   if (result != 0)
95     return result;
96   else
97     {
98       size_t idx;
99
100       if (a_len < b_len)
101         {
102           for (idx = min_len; idx < b_len; idx++)
103             if (' ' != b[idx])
104               return ' ' > b[idx] ? 1 : -1;
105         }
106       else
107         {
108           for (idx = min_len; idx < a_len; idx++)
109             if (a[idx] != ' ')
110               return a[idx] > ' ' ? 1 : -1;
111         }
112       return 0;
113     }
114 }
115
116 /* Compares strin A to string B.  The shorter string is
117    considered to be padded with spaces to the length of the
118    longer. */
119 int
120 str_compare_rpad (const char *a, const char *b)
121 {
122   return buf_compare_rpad (a, strlen (a), b, strlen (b));
123 }
124
125 /* Copies string SRC to buffer DST, of size DST_SIZE bytes.
126    DST is truncated to DST_SIZE bytes or padded on the right with
127    spaces as needed. */
128 void
129 buf_copy_str_rpad (char *dst, size_t dst_size, const char *src)
130 {
131   size_t src_len = strlen (src);
132   if (src_len >= dst_size)
133     memcpy (dst, src, dst_size);
134   else
135     {
136       memcpy (dst, src, src_len);
137       memset (&dst[src_len], ' ', dst_size - src_len);
138     }
139 }
140
141 /* Copies string SRC to buffer DST, of size DST_SIZE bytes.
142    DST is truncated to DST_SIZE bytes or padded on the left with
143    spaces as needed. */
144 void
145 buf_copy_str_lpad (char *dst, size_t dst_size, const char *src)
146 {
147   size_t src_len = strlen (src);
148   if (src_len >= dst_size)
149     memcpy (dst, src, dst_size);
150   else
151     {
152       size_t pad_cnt = dst_size - src_len;
153       memset (&dst[0], ' ', pad_cnt);
154       memcpy (dst + pad_cnt, src, src_len);
155     }
156 }
157
158 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
159    DST is truncated to DST_SIZE bytes or padded on the left with
160    spaces as needed. */
161 void
162 buf_copy_lpad (char *dst, size_t dst_size,
163                const char *src, size_t src_size)
164 {
165   if (src_size >= dst_size)
166     memmove (dst, src, dst_size);
167   else
168     {
169       memset (dst, ' ', dst_size - src_size);
170       memmove (&dst[dst_size - src_size], src, src_size);
171     }
172 }
173
174 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
175    DST is truncated to DST_SIZE bytes or padded on the right with
176    spaces as needed. */
177 void
178 buf_copy_rpad (char *dst, size_t dst_size,
179                const char *src, size_t src_size)
180 {
181   if (src_size >= dst_size)
182     memmove (dst, src, dst_size);
183   else
184     {
185       memmove (dst, src, src_size);
186       memset (&dst[src_size], ' ', dst_size - src_size);
187     }
188 }
189
190 /* Copies string SRC to string DST, which is in a buffer DST_SIZE
191    bytes long.
192    Truncates DST to DST_SIZE - 1 characters or right-pads with
193    spaces to DST_SIZE - 1 characters if necessary. */
194 void
195 str_copy_rpad (char *dst, size_t dst_size, const char *src)
196 {
197   size_t src_len = strlen (src);
198   if (src_len < dst_size - 1)
199     {
200       memcpy (dst, src, src_len);
201       memset (&dst[src_len], ' ', dst_size - 1 - src_len);
202     }
203   else
204     memcpy (dst, src, dst_size - 1);
205   dst[dst_size - 1] = 0;
206 }
207
208 /* Copies SRC to DST, which is in a buffer DST_SIZE bytes long.
209    Truncates DST to DST_SIZE - 1 characters, if necessary. */
210 void
211 str_copy_trunc (char *dst, size_t dst_size, const char *src)
212 {
213   size_t src_len = strlen (src);
214   assert (dst_size > 0);
215   if (src_len + 1 < dst_size)
216     memcpy (dst, src, src_len + 1);
217   else
218     {
219       memcpy (dst, src, dst_size - 1);
220       dst[dst_size - 1] = '\0';
221     }
222 }
223
224 /* Copies buffer SRC, of SRC_LEN bytes,
225    to DST, which is in a buffer DST_SIZE bytes long.
226    Truncates DST to DST_SIZE - 1 characters, if necessary. */
227 void
228 str_copy_buf_trunc (char *dst, size_t dst_size,
229                     const char *src, size_t src_size)
230 {
231   size_t dst_len;
232   assert (dst_size > 0);
233
234   dst_len = src_size < dst_size ? src_size : dst_size - 1;
235   memcpy (dst, src, dst_len);
236   dst[dst_len] = '\0';
237 }
238
239 /* Converts each character in S to uppercase. */
240 void
241 str_uppercase (char *s)
242 {
243   for (; *s != '\0'; s++)
244     *s = toupper ((unsigned char) *s);
245 }
246
247 /* Converts each character in S to lowercase. */
248 void
249 str_lowercase (char *s)
250 {
251   for (; *s != '\0'; s++)
252     *s = tolower ((unsigned char) *s);
253 }
254
255 /* Converts NUMBER into a string in 26-adic notation in BUFFER,
256    which has room for SIZE bytes.  Returns true if successful,
257    false if NUMBER, plus a trailing null, is too large to fit in
258    the available space.
259
260    26-adic notation is "spreadsheet column numbering": 1 = A, 2 =
261    B, 3 = C, ... 26 = Z, 27 = AA, 28 = AB, 29 = AC, ...
262
263    26-adic notation is the special case of a k-adic numeration
264    system (aka bijective base-k numeration) with k=26.  In k-adic
265    numeration, the digits are {1, 2, 3, ..., k} (there is no
266    digit 0), and integer 0 is represented by the empty string.
267    For more information, see
268    http://en.wikipedia.org/wiki/Bijective_numeration. */
269 bool
270 str_format_26adic (unsigned long int number, char buffer[], size_t size)
271 {
272   size_t length = 0;
273
274   while (number-- > 0)
275     {
276       if (length >= size)
277         return false;
278       buffer[length++] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"[number % 26];
279       number /= 26;
280     }
281
282   if (length >= size)
283     return false;
284   buffer[length] = '\0';
285
286   buf_reverse (buffer, length);
287   return true;
288 }
289
290 /* Formats FORMAT into DST, as with sprintf(), and returns the
291    address of the terminating null written to DST. */
292 char *
293 spprintf (char *dst, const char *format, ...)
294 {
295   va_list args;
296   int count;
297
298   va_start (args, format);
299   count = vsprintf (dst, format, args);
300   va_end (args);
301
302   return dst + count;
303 }
304
305 /* Sets the SIZE bytes starting at BLOCK to C,
306    and returns the byte following BLOCK. */
307 void *
308 mempset (void *block, int c, size_t size)
309 {
310   memset (block, c, size);
311   return (char *) block + size;
312 }
313 \f
314 /* Substrings. */
315
316 /* Returns an empty substring. */
317 struct substring
318 ss_empty (void)
319 {
320   struct substring ss;
321   ss.string = NULL;
322   ss.length = 0;
323   return ss;
324 }
325
326 /* Returns a substring whose contents are the given C-style
327    string CSTR. */
328 struct substring
329 ss_cstr (const char *cstr)
330 {
331   return ss_buffer (cstr, strlen (cstr));
332 }
333
334 /* Returns a substring whose contents are the CNT characters in
335    BUFFER. */
336 struct substring
337 ss_buffer (const char *buffer, size_t cnt)
338 {
339   struct substring ss;
340   ss.string = (char *) buffer;
341   ss.length = cnt;
342   return ss;
343 }
344
345 /* Returns a substring whose contents are the CNT characters
346    starting at the (0-based) position START in SS. */
347 struct substring
348 ss_substr (struct substring ss, size_t start, size_t cnt)
349 {
350   if (start < ss.length)
351     return ss_buffer (ss.string + start, MIN (cnt, ss.length - start));
352   else
353     return ss_buffer (ss.string + ss.length, 0);
354 }
355
356 /* Returns a substring whose contents are the first CNT
357    characters in SS. */
358 struct substring
359 ss_head (struct substring ss, size_t cnt)
360 {
361   return ss_buffer (ss.string, MIN (cnt, ss.length));
362 }
363
364 /* Returns a substring whose contents are the last CNT characters
365    in SS. */
366 struct substring
367 ss_tail (struct substring ss, size_t cnt)
368 {
369   if (cnt < ss.length)
370     return ss_buffer (ss.string + (ss.length - cnt), cnt);
371   else
372     return ss;
373 }
374
375 /* Makes a malloc()'d copy of the contents of OLD
376    and stores it in NEW. */
377 void
378 ss_alloc_substring (struct substring *new, struct substring old)
379 {
380   new->string = xmalloc (old.length);
381   new->length = old.length;
382   memcpy (new->string, old.string, old.length);
383 }
384
385 /* Allocates room for a CNT-character string in NEW. */
386 void
387 ss_alloc_uninit (struct substring *new, size_t cnt)
388 {
389   new->string = xmalloc (cnt);
390   new->length = cnt;
391 }
392
393 /* Makes a pool_alloc_unaligned()'d copy of the contents of OLD
394    in POOL, and stores it in NEW. */
395 void
396 ss_alloc_substring_pool (struct substring *new, struct substring old,
397                          struct pool *pool)
398 {
399   new->string = pool_alloc_unaligned (pool, old.length);
400   new->length = old.length;
401   memcpy (new->string, old.string, old.length);
402 }
403
404 /* Allocates room for a CNT-character string in NEW in POOL. */
405 void
406 ss_alloc_uninit_pool (struct substring *new, size_t cnt, struct pool *pool)
407 {
408   new->string = pool_alloc_unaligned (pool, cnt);
409   new->length = cnt;
410 }
411
412 /* Frees the string that SS points to. */
413 void
414 ss_dealloc (struct substring *ss)
415 {
416   free (ss->string);
417 }
418
419 /* Truncates SS to at most CNT characters in length. */
420 void
421 ss_truncate (struct substring *ss, size_t cnt)
422 {
423   if (ss->length > cnt)
424     ss->length = cnt;
425 }
426
427 /* Removes trailing characters in TRIM_SET from SS.
428    Returns number of characters removed. */
429 size_t
430 ss_rtrim (struct substring *ss, struct substring trim_set)
431 {
432   size_t cnt = 0;
433   while (cnt < ss->length
434          && ss_find_char (trim_set,
435                           ss->string[ss->length - cnt - 1]) != SIZE_MAX)
436     cnt++;
437   ss->length -= cnt;
438   return cnt;
439 }
440
441 /* Removes leading characters in TRIM_SET from SS.
442    Returns number of characters removed. */
443 size_t
444 ss_ltrim (struct substring *ss, struct substring trim_set)
445 {
446   size_t cnt = ss_span (*ss, trim_set);
447   ss_advance (ss, cnt);
448   return cnt;
449 }
450
451 /* Trims leading and trailing characters in TRIM_SET from SS. */
452 void
453 ss_trim (struct substring *ss, struct substring trim_set)
454 {
455   ss_ltrim (ss, trim_set);
456   ss_rtrim (ss, trim_set);
457 }
458
459 /* If the last character in SS is C, removes it and returns true.
460    Otherwise, returns false without changing the string. */
461 bool
462 ss_chomp (struct substring *ss, char c)
463 {
464   if (ss_last (*ss) == c)
465     {
466       ss->length--;
467       return true;
468     }
469   else
470     return false;
471 }
472
473 /* Divides SS into tokens separated by any of the DELIMITERS.
474    Each call replaces TOKEN by the next token in SS, or by an
475    empty string if no tokens remain.  Returns true if a token was
476    obtained, false otherwise.
477
478    Before the first call, initialize *SAVE_IDX to 0.  Do not
479    modify *SAVE_IDX between calls.
480
481    SS divides into exactly one more tokens than it contains
482    delimiters.  That is, a delimiter at the start or end of SS or
483    a pair of adjacent delimiters yields an empty token, and the
484    empty string contains a single token. */
485 bool
486 ss_separate (struct substring ss, struct substring delimiters,
487              size_t *save_idx, struct substring *token)
488 {
489   if (*save_idx <= ss_length (ss))
490     {
491       struct substring tmp = ss_substr (ss, *save_idx, SIZE_MAX);
492       size_t length = ss_cspan (tmp, delimiters);
493       *token = ss_head (tmp, length);
494       *save_idx += length + 1;
495       return true;
496     }
497   else
498     {
499       *token = ss_empty ();
500       return false;
501     }
502 }
503
504 /* Divides SS into tokens separated by any of the DELIMITERS,
505    merging adjacent delimiters so that the empty string is never
506    produced as a token.  Each call replaces TOKEN by the next
507    token in SS, or by an empty string if no tokens remain, and
508    then skips past the first delimiter following the token.
509    Returns true if a token was obtained, false otherwise.
510
511    Before the first call, initialize *SAVE_IDX to 0.  Do not
512    modify *SAVE_IDX between calls. */
513 bool
514 ss_tokenize (struct substring ss, struct substring delimiters,
515              size_t *save_idx, struct substring *token)
516 {
517   ss_advance (&ss, *save_idx);
518   *save_idx += ss_ltrim (&ss, delimiters);
519   ss_get_chars (&ss, ss_cspan (ss, delimiters), token);
520   *save_idx += ss_length (*token) + 1;
521   return ss_length (*token) > 0;
522 }
523
524 /* Removes the first CNT characters from SS. */
525 void
526 ss_advance (struct substring *ss, size_t cnt)
527 {
528   if (cnt > ss->length)
529     cnt = ss->length;
530   ss->string += cnt;
531   ss->length -= cnt;
532 }
533
534 /* If the first character in SS is C, removes it and returns true.
535    Otherwise, returns false without changing the string. */
536 bool
537 ss_match_char (struct substring *ss, char c)
538 {
539   if (ss_first (*ss) == c)
540     {
541       ss->string++;
542       ss->length--;
543       return true;
544     }
545   else
546     return false;
547 }
548
549 /* If SS begins with TARGET, removes it and returns true.
550    Otherwise, returns false without changing SS. */
551 bool
552 ss_match_string (struct substring *ss, const struct substring target)
553 {
554   size_t length = ss_length (target);
555   if (ss_equals (ss_head (*ss, length), target))
556     {
557       ss_advance (ss, length);
558       return true;
559     }
560   else
561     return false;
562 }
563
564 /* Removes the first character from SS and returns it.
565    If SS is empty, returns EOF without modifying SS. */
566 int
567 ss_get_char (struct substring *ss)
568 {
569   int c = ss_first (*ss);
570   if (c != EOF)
571     {
572       ss->string++;
573       ss->length--;
574     }
575   return c;
576 }
577
578 /* Stores the prefix of SS up to the first DELIMITER in OUT (if
579    any).  Trims those same characters from SS.  DELIMITER is
580    removed from SS but not made part of OUT.  Returns true if
581    DELIMITER was found (and removed), false otherwise. */
582 bool
583 ss_get_until (struct substring *ss, char delimiter, struct substring *out)
584 {
585   ss_get_chars (ss, ss_cspan (*ss, ss_buffer (&delimiter, 1)), out);
586   return ss_match_char (ss, delimiter);
587 }
588
589 /* Stores the first CNT characters in SS in OUT (or fewer, if SS
590    is shorter than CNT characters).  Trims the same characters
591    from the beginning of SS.  Returns CNT. */
592 size_t
593 ss_get_chars (struct substring *ss, size_t cnt, struct substring *out)
594 {
595   *out = ss_head (*ss, cnt);
596   ss_advance (ss, cnt);
597   return cnt;
598 }
599
600 /* Parses and removes an optionally signed decimal integer from
601    the beginning of SS.  Returns 0 if an error occurred,
602    otherwise the number of characters removed from SS.  Stores
603    the integer's value into *VALUE. */
604 size_t
605 ss_get_long (struct substring *ss, long *value)
606 {
607   char tmp[64];
608   size_t length;
609
610   length = ss_span (*ss, ss_cstr ("+-"));
611   length += ss_span (ss_substr (*ss, length, SIZE_MAX), ss_cstr (CC_DIGITS));
612   if (length > 0 && length < sizeof tmp)
613     {
614       char *tail;
615
616       memcpy (tmp, ss_data (*ss), length);
617       tmp[length] = '\0';
618
619       *value = strtol (tmp, &tail, 10);
620       if (tail - tmp == length)
621         {
622           ss_advance (ss, length);
623           return length;
624         }
625     }
626   *value = 0;
627   return 0;
628 }
629
630 /* Returns true if SS is empty (contains no characters),
631    false otherwise. */
632 bool
633 ss_is_empty (struct substring ss)
634 {
635   return ss.length == 0;
636 }
637
638 /* Returns the number of characters in SS. */
639 size_t
640 ss_length (struct substring ss)
641 {
642   return ss.length;
643 }
644
645 /* Returns a pointer to the characters in SS. */
646 char *
647 ss_data (struct substring ss)
648 {
649   return ss.string;
650 }
651
652 /* Returns a pointer just past the last character in SS. */
653 char *
654 ss_end (struct substring ss)
655 {
656   return ss.string + ss.length;
657 }
658
659 /* Returns the character in position IDX in SS, as a value in the
660    range of unsigned char.  Returns EOF if IDX is out of the
661    range of indexes for SS. */
662 int
663 ss_at (struct substring ss, size_t idx)
664 {
665   return idx < ss.length ? (unsigned char) ss.string[idx] : EOF;
666 }
667
668 /* Returns the first character in SS as a value in the range of
669    unsigned char.  Returns EOF if SS is the empty string. */
670 int
671 ss_first (struct substring ss)
672 {
673   return ss_at (ss, 0);
674 }
675
676 /* Returns the last character in SS as a value in the range of
677    unsigned char.  Returns EOF if SS is the empty string. */
678 int
679 ss_last (struct substring ss)
680 {
681   return ss.length > 0 ? (unsigned char) ss.string[ss.length - 1] : EOF;
682 }
683
684 /* Returns the number of contiguous characters at the beginning
685    of SS that are in SKIP_SET. */
686 size_t
687 ss_span (struct substring ss, struct substring skip_set)
688 {
689   size_t i;
690   for (i = 0; i < ss.length; i++)
691     if (ss_find_char (skip_set, ss.string[i]) == SIZE_MAX)
692       break;
693   return i;
694 }
695
696 /* Returns the number of contiguous characters at the beginning
697    of SS that are not in SKIP_SET. */
698 size_t
699 ss_cspan (struct substring ss, struct substring stop_set)
700 {
701   size_t i;
702   for (i = 0; i < ss.length; i++)
703     if (ss_find_char (stop_set, ss.string[i]) != SIZE_MAX)
704       break;
705   return i;
706 }
707
708 /* Returns the offset in SS of the first instance of C,
709    or SIZE_MAX if C does not occur in SS. */
710 size_t
711 ss_find_char (struct substring ss, char c)
712 {
713   const char *p = memchr (ss.string, c, ss.length);
714   return p != NULL ? p - ss.string : SIZE_MAX;
715 }
716
717 /* Compares A and B and returns a strcmp()-type comparison
718    result. */
719 int
720 ss_compare (struct substring a, struct substring b)
721 {
722   int retval = memcmp (a.string, b.string, MIN (a.length, b.length));
723   if (retval == 0)
724     retval = a.length < b.length ? -1 : a.length > b.length;
725   return retval;
726 }
727
728 /* Compares A and B case-insensitively and returns a
729    strcmp()-type comparison result. */
730 int
731 ss_compare_case (struct substring a, struct substring b)
732 {
733   int retval = memcasecmp (a.string, b.string, MIN (a.length, b.length));
734   if (retval == 0)
735     retval = a.length < b.length ? -1 : a.length > b.length;
736   return retval;
737 }
738
739 /* Compares A and B and returns true if their contents are
740    identical, false otherwise. */
741 int
742 ss_equals (struct substring a, struct substring b)
743 {
744   return a.length == b.length && !memcmp (a.string, b.string, a.length);
745 }
746
747 /* Compares A and B and returns true if their contents are
748    identical except possibly for case differences, false
749    otherwise. */
750 int
751 ss_equals_case (struct substring a, struct substring b)
752 {
753   return a.length == b.length && !memcasecmp (a.string, b.string, a.length);
754 }
755
756 /* Returns the position in SS that the character at P occupies.
757    P must point within SS or one past its end. */
758 size_t
759 ss_pointer_to_position (struct substring ss, const char *p)
760 {
761   size_t pos = p - ss.string;
762   assert (pos <= ss.length);
763   return pos;
764 }
765
766 /* Allocates and returns a null-terminated string that contains
767    SS. */
768 char *
769 ss_xstrdup (struct substring ss)
770 {
771   char *s = xmalloc (ss.length + 1);
772   memcpy (s, ss.string, ss.length);
773   s[ss.length] = '\0';
774   return s;
775 }
776 \f
777 /* Initializes ST as an empty string. */
778 void
779 ds_init_empty (struct string *st)
780 {
781   st->ss = ss_empty ();
782   st->capacity = 0;
783 }
784
785 /* Initializes ST with initial contents S. */
786 void
787 ds_init_string (struct string *st, const struct string *s)
788 {
789   ds_init_substring (st, ds_ss (s));
790 }
791
792 /* Initializes ST with initial contents SS. */
793 void
794 ds_init_substring (struct string *st, struct substring ss)
795 {
796   st->capacity = MAX (8, ss.length * 2);
797   st->ss.string = xmalloc (st->capacity + 1);
798   memcpy (st->ss.string, ss.string, ss.length);
799   st->ss.length = ss.length;
800 }
801
802 /* Initializes ST with initial contents S. */
803 void
804 ds_init_cstr (struct string *st, const char *s)
805 {
806   ds_init_substring (st, ss_cstr (s));
807 }
808
809 /* Frees ST. */
810 void
811 ds_destroy (struct string *st)
812 {
813   if (st != NULL)
814     {
815       ss_dealloc (&st->ss);
816       st->ss.string = NULL;
817       st->ss.length = 0;
818       st->capacity = 0;
819     }
820 }
821
822 /* Swaps the contents of strings A and B. */
823 void
824 ds_swap (struct string *a, struct string *b)
825 {
826   struct string tmp = *a;
827   *a = *b;
828   *b = tmp;
829 }
830
831 /* Helper function for ds_register_pool. */
832 static void
833 free_string (void *st_)
834 {
835   struct string *st = st_;
836   ds_destroy (st);
837 }
838
839 /* Arranges for ST to be destroyed automatically as part of
840    POOL. */
841 void
842 ds_register_pool (struct string *st, struct pool *pool)
843 {
844   pool_register (pool, free_string, st);
845 }
846
847 /* Cancels the arrangement for ST to be destroyed automatically
848    as part of POOL. */
849 void
850 ds_unregister_pool (struct string *st, struct pool *pool)
851 {
852   pool_unregister (pool, st);
853 }
854
855 /* Copies SRC into DST.
856    DST and SRC may be the same string. */
857 void
858 ds_assign_string (struct string *dst, const struct string *src)
859 {
860   ds_assign_substring (dst, ds_ss (src));
861 }
862
863 /* Replaces DST by SS.
864    SS may be a substring of DST. */
865 void
866 ds_assign_substring (struct string *dst, struct substring ss)
867 {
868   dst->ss.length = ss.length;
869   ds_extend (dst, ss.length);
870   memmove (dst->ss.string, ss.string, ss.length);
871 }
872
873 /* Replaces DST by null-terminated string SRC.  SRC may overlap
874    with DST. */
875 void
876 ds_assign_cstr (struct string *dst, const char *src)
877 {
878   ds_assign_substring (dst, ss_cstr (src));
879 }
880
881 /* Truncates ST to zero length. */
882 void
883 ds_clear (struct string *st)
884 {
885   st->ss.length = 0;
886 }
887
888 /* Returns a substring that contains ST. */
889 struct substring
890 ds_ss (const struct string *st)
891 {
892   return st->ss;
893 }
894
895 /* Returns a substring that contains CNT characters from ST
896    starting at position START.
897
898    If START is greater than or equal to the length of ST, then
899    the substring will be the empty string.  If START + CNT
900    exceeds the length of ST, then the substring will only be
901    ds_length(ST) - START characters long. */
902 struct substring
903 ds_substr (const struct string *st, size_t start, size_t cnt)
904 {
905   return ss_substr (ds_ss (st), start, cnt);
906 }
907
908 /* Returns a substring that contains the first CNT characters in
909    ST.  If CNT exceeds the length of ST, then the substring will
910    contain all of ST. */
911 struct substring
912 ds_head (const struct string *st, size_t cnt)
913 {
914   return ss_head (ds_ss (st), cnt);
915 }
916
917 /* Returns a substring that contains the last CNT characters in
918    ST.  If CNT exceeds the length of ST, then the substring will
919    contain all of ST. */
920 struct substring
921 ds_tail (const struct string *st, size_t cnt)
922 {
923   return ss_tail (ds_ss (st), cnt);
924 }
925
926 /* Ensures that ST can hold at least MIN_CAPACITY characters plus a null
927    terminator. */
928 void
929 ds_extend (struct string *st, size_t min_capacity)
930 {
931   if (min_capacity > st->capacity)
932     {
933       st->capacity *= 2;
934       if (st->capacity < min_capacity)
935         st->capacity = 2 * min_capacity;
936
937       st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
938     }
939 }
940
941 /* Shrink ST to the minimum capacity need to contain its content. */
942 void
943 ds_shrink (struct string *st)
944 {
945   if (st->capacity != st->ss.length)
946     {
947       st->capacity = st->ss.length;
948       st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
949     }
950 }
951
952 /* Truncates ST to at most LENGTH characters long. */
953 void
954 ds_truncate (struct string *st, size_t length)
955 {
956   ss_truncate (&st->ss, length);
957 }
958
959 /* Removes trailing characters in TRIM_SET from ST.
960    Returns number of characters removed. */
961 size_t
962 ds_rtrim (struct string *st, struct substring trim_set)
963 {
964   return ss_rtrim (&st->ss, trim_set);
965 }
966
967 /* Removes leading characters in TRIM_SET from ST.
968    Returns number of characters removed. */
969 size_t
970 ds_ltrim (struct string *st, struct substring trim_set)
971 {
972   size_t cnt = ds_span (st, trim_set);
973   if (cnt > 0)
974     ds_assign_substring (st, ds_substr (st, cnt, SIZE_MAX));
975   return cnt;
976 }
977
978 /* Trims leading and trailing characters in TRIM_SET from ST.
979    Returns number of charactesr removed. */
980 size_t
981 ds_trim (struct string *st, struct substring trim_set)
982 {
983   size_t cnt = ds_rtrim (st, trim_set);
984   return cnt + ds_ltrim (st, trim_set);
985 }
986
987 /* If the last character in ST is C, removes it and returns true.
988    Otherwise, returns false without modifying ST. */
989 bool
990 ds_chomp (struct string *st, char c)
991 {
992   return ss_chomp (&st->ss, c);
993 }
994
995 /* Divides ST into tokens separated by any of the DELIMITERS.
996    Each call replaces TOKEN by the next token in ST, or by an
997    empty string if no tokens remain.  Returns true if a token was
998    obtained, false otherwise.
999
1000    Before the first call, initialize *SAVE_IDX to 0.  Do not
1001    modify *SAVE_IDX between calls.
1002
1003    ST divides into exactly one more tokens than it contains
1004    delimiters.  That is, a delimiter at the start or end of ST or
1005    a pair of adjacent delimiters yields an empty token, and the
1006    empty string contains a single token. */
1007 bool
1008 ds_separate (const struct string *st, struct substring delimiters,
1009              size_t *save_idx, struct substring *token)
1010 {
1011   return ss_separate (ds_ss (st), delimiters, save_idx, token);
1012 }
1013
1014 /* Divides ST into tokens separated by any of the DELIMITERS,
1015    merging adjacent delimiters so that the empty string is never
1016    produced as a token.  Each call replaces TOKEN by the next
1017    token in ST, or by an empty string if no tokens remain.
1018    Returns true if a token was obtained, false otherwise.
1019
1020    Before the first call, initialize *SAVE_IDX to 0.  Do not
1021    modify *SAVE_IDX between calls. */
1022 bool
1023 ds_tokenize (const struct string *st, struct substring delimiters,
1024              size_t *save_idx, struct substring *token)
1025 {
1026   return ss_tokenize (ds_ss (st), delimiters, save_idx, token);
1027 }
1028
1029 /* Pad ST on the right with copies of PAD until ST is at least
1030    LENGTH characters in size.  If ST is initially LENGTH
1031    characters or longer, this is a no-op. */
1032 void
1033 ds_rpad (struct string *st, size_t length, char pad)
1034 {
1035   if (length > st->ss.length)
1036     ds_put_char_multiple (st, pad, length - st->ss.length);
1037 }
1038
1039 /* Sets the length of ST to exactly NEW_LENGTH,
1040    either by truncating characters from the end,
1041    or by padding on the right with PAD. */
1042 void
1043 ds_set_length (struct string *st, size_t new_length, char pad)
1044 {
1045   if (st->ss.length < new_length)
1046     ds_rpad (st, new_length, pad);
1047   else
1048     st->ss.length = new_length;
1049 }
1050
1051 /* Returns true if ST is empty, false otherwise. */
1052 bool
1053 ds_is_empty (const struct string *st)
1054 {
1055   return ss_is_empty (st->ss);
1056 }
1057
1058 /* Returns the length of ST. */
1059 size_t
1060 ds_length (const struct string *st)
1061 {
1062   return ss_length (ds_ss (st));
1063 }
1064
1065 /* Returns the string data inside ST. */
1066 char *
1067 ds_data (const struct string *st)
1068 {
1069   return ss_data (ds_ss (st));
1070 }
1071
1072 /* Returns a pointer to the null terminator ST.
1073    This might not be an actual null character unless ds_c_str() has
1074    been called since the last modification to ST. */
1075 char *
1076 ds_end (const struct string *st)
1077 {
1078   return ss_end (ds_ss (st));
1079 }
1080
1081 /* Returns the character in position IDX in ST, as a value in the
1082    range of unsigned char.  Returns EOF if IDX is out of the
1083    range of indexes for ST. */
1084 int
1085 ds_at (const struct string *st, size_t idx)
1086 {
1087   return ss_at (ds_ss (st), idx);
1088 }
1089
1090 /* Returns the first character in ST as a value in the range of
1091    unsigned char.  Returns EOF if ST is the empty string. */
1092 int
1093 ds_first (const struct string *st)
1094 {
1095   return ss_first (ds_ss (st));
1096 }
1097
1098 /* Returns the last character in ST as a value in the range of
1099    unsigned char.  Returns EOF if ST is the empty string. */
1100 int
1101 ds_last (const struct string *st)
1102 {
1103   return ss_last (ds_ss (st));
1104 }
1105
1106 /* Returns the number of consecutive characters at the beginning
1107    of ST that are in SKIP_SET. */
1108 size_t
1109 ds_span (const struct string *st, struct substring skip_set)
1110 {
1111   return ss_span (ds_ss (st), skip_set);
1112 }
1113
1114 /* Returns the number of consecutive characters at the beginning
1115    of ST that are not in STOP_SET.  */
1116 size_t
1117 ds_cspan (const struct string *st, struct substring stop_set)
1118 {
1119   return ss_cspan (ds_ss (st), stop_set);
1120 }
1121
1122 /* Returns the position of the first occurrence of character C in
1123    ST at or after position OFS, or SIZE_MAX if there is no such
1124    occurrence. */
1125 size_t
1126 ds_find_char (const struct string *st, char c)
1127 {
1128   return ss_find_char (ds_ss (st), c);
1129 }
1130
1131 /* Compares A and B and returns a strcmp()-type comparison
1132    result. */
1133 int
1134 ds_compare (const struct string *a, const struct string *b)
1135 {
1136   return ss_compare (ds_ss (a), ds_ss (b));
1137 }
1138
1139 /* Returns the position in ST that the character at P occupies.
1140    P must point within ST or one past its end. */
1141 size_t
1142 ds_pointer_to_position (const struct string *st, const char *p)
1143 {
1144   return ss_pointer_to_position (ds_ss (st), p);
1145 }
1146
1147 /* Allocates and returns a null-terminated string that contains
1148    ST. */
1149 char *
1150 ds_xstrdup (const struct string *st)
1151 {
1152   return ss_xstrdup (ds_ss (st));
1153 }
1154
1155 /* Returns the allocation size of ST. */
1156 size_t
1157 ds_capacity (const struct string *st)
1158 {
1159   return st->capacity;
1160 }
1161
1162 /* Returns the value of ST as a null-terminated string. */
1163 char *
1164 ds_cstr (const struct string *st_)
1165 {
1166   struct string *st = (struct string *) st_;
1167   if (st->ss.string == NULL)
1168     ds_extend (st, 1);
1169   st->ss.string[st->ss.length] = '\0';
1170   return st->ss.string;
1171 }
1172
1173 /* Appends to ST a newline-terminated line read from STREAM.
1174    Newline is the last character of ST on return, unless an I/O error
1175    or end of file is encountered after reading some characters.
1176    Returns true if a line is successfully read, false if no characters at
1177    all were read before an I/O error or end of file was
1178    encountered. */
1179 bool
1180 ds_read_line (struct string *st, FILE *stream)
1181 {
1182   int c;
1183
1184   c = getc (stream);
1185   if (c == EOF)
1186     return false;
1187
1188   for (;;)
1189     {
1190       ds_put_char (st, c);
1191       if (c == '\n')
1192         return true;
1193
1194       c = getc (stream);
1195       if (c == EOF)
1196         return true;
1197     }
1198 }
1199
1200 /* Removes a comment introduced by `#' from ST,
1201    ignoring occurrences inside quoted strings. */
1202 static void
1203 remove_comment (struct string *st)
1204 {
1205   char *cp;
1206   int quote = 0;
1207
1208   for (cp = ds_data (st); cp < ds_end (st); cp++)
1209     if (quote)
1210       {
1211         if (*cp == quote)
1212           quote = 0;
1213         else if (*cp == '\\')
1214           cp++;
1215       }
1216     else if (*cp == '\'' || *cp == '"')
1217       quote = *cp;
1218     else if (*cp == '#')
1219       {
1220         ds_truncate (st, cp - ds_cstr (st));
1221         break;
1222       }
1223 }
1224
1225 /* Reads a line from STREAM into ST, then preprocesses as follows:
1226
1227    - Splices lines terminated with `\'.
1228
1229    - Deletes comments introduced by `#' outside of single or double
1230      quotes.
1231
1232    - Deletes trailing white space.
1233
1234    Returns true if a line was successfully read, false on
1235    failure.  If LINE_NUMBER is non-null, then *LINE_NUMBER is
1236    incremented by the number of lines read. */
1237 bool
1238 ds_read_config_line (struct string *st, int *line_number, FILE *stream)
1239 {
1240   ds_clear (st);
1241   do
1242     {
1243       if (!ds_read_line (st, stream))
1244         return false;
1245       (*line_number)++;
1246       ds_rtrim (st, ss_cstr (CC_SPACES));
1247     }
1248   while (ds_chomp (st, '\\'));
1249
1250   remove_comment (st);
1251   return true;
1252 }
1253
1254 /* Attempts to read SIZE * CNT bytes from STREAM and append them
1255    to ST.
1256    Returns true if all the requested data was read, false otherwise. */
1257 bool
1258 ds_read_stream (struct string *st, size_t size, size_t cnt, FILE *stream)
1259 {
1260   if (size != 0)
1261     {
1262       size_t try_bytes = xtimes (cnt, size);
1263       if (size_in_bounds_p (xsum (ds_length (st), try_bytes)))
1264         {
1265           char *buffer = ds_put_uninit (st, try_bytes);
1266           size_t got_bytes = fread (buffer, 1, try_bytes, stream);
1267           ds_truncate (st, ds_length (st) - (try_bytes - got_bytes));
1268           return got_bytes == try_bytes;
1269         }
1270       else
1271         {
1272           errno = ENOMEM;
1273           return false;
1274         }
1275     }
1276   else
1277     return true;
1278 }
1279
1280 /* Concatenates S onto ST. */
1281 void
1282 ds_put_cstr (struct string *st, const char *s)
1283 {
1284   if (s != NULL)
1285     ds_put_substring (st, ss_cstr (s));
1286 }
1287
1288 /* Concatenates SS to ST. */
1289 void
1290 ds_put_substring (struct string *st, struct substring ss)
1291 {
1292   memcpy (ds_put_uninit (st, ss_length (ss)), ss_data (ss), ss_length (ss));
1293 }
1294
1295 /* Returns ds_end(ST) and THEN increases the length by INCR. */
1296 char *
1297 ds_put_uninit (struct string *st, size_t incr)
1298 {
1299   char *end;
1300   ds_extend (st, ds_length (st) + incr);
1301   end = ds_end (st);
1302   st->ss.length += incr;
1303   return end;
1304 }
1305
1306 /* Formats FORMAT as a printf string and appends the result to ST. */
1307 void
1308 ds_put_format (struct string *st, const char *format, ...)
1309 {
1310   va_list args;
1311
1312   va_start (args, format);
1313   ds_put_vformat (st, format, args);
1314   va_end (args);
1315 }
1316
1317 /* Formats FORMAT as a printf string and appends the result to ST. */
1318 void
1319 ds_put_vformat (struct string *st, const char *format, va_list args_)
1320 {
1321   int avail, needed;
1322   va_list args;
1323
1324   va_copy (args, args_);
1325   avail = st->ss.string != NULL ? st->capacity - st->ss.length + 1 : 0;
1326   needed = vsnprintf (st->ss.string + st->ss.length, avail, format, args);
1327   va_end (args);
1328
1329   if (needed >= avail)
1330     {
1331       va_copy (args, args_);
1332       vsprintf (ds_put_uninit (st, needed), format, args);
1333       va_end (args);
1334     }
1335   else
1336     {
1337       /* Some old libc's returned -1 when the destination string
1338          was too short. */
1339       while (needed == -1)
1340         {
1341           ds_extend (st, (st->capacity + 1) * 2);
1342           avail = st->capacity - st->ss.length + 1;
1343
1344           va_copy (args, args_);
1345           needed = vsnprintf (ds_end (st), avail, format, args);
1346           va_end (args);
1347         }
1348       st->ss.length += needed;
1349     }
1350 }
1351
1352 /* Appends character CH to ST. */
1353 void
1354 ds_put_char (struct string *st, int ch)
1355 {
1356   ds_put_uninit (st, 1)[0] = ch;
1357 }
1358
1359 /* Appends CNT copies of character CH to ST. */
1360 void
1361 ds_put_char_multiple (struct string *st, int ch, size_t cnt)
1362 {
1363   memset (ds_put_uninit (st, cnt), ch, cnt);
1364 }