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