1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
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.
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.
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/>. */
27 #include "libpspp/cast.h"
28 #include "libpspp/message.h"
29 #include "libpspp/pool.h"
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"
39 /* Reverses the order of NBYTES bytes at address P, thus converting
40 between little- and big-endian byte orders. */
42 buf_reverse (char *p, size_t nbytes)
44 char *h = p, *t = &h[nbytes - 1];
56 /* Compares the SIZE bytes in A to those in B, disregarding case,
57 and returns a strcmp()-type result. */
59 buf_compare_case (const char *a_, const char *b_, size_t size)
61 const unsigned char *a = (unsigned char *) a_;
62 const unsigned char *b = (unsigned char *) b_;
66 unsigned char ac = toupper (*a++);
67 unsigned char bc = toupper (*b++);
70 return ac > bc ? 1 : -1;
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
80 buf_compare_rpad (const char *a, size_t a_len, const char *b, size_t b_len)
85 min_len = a_len < b_len ? a_len : b_len;
86 result = memcmp (a, b, min_len);
95 for (idx = min_len; idx < b_len; idx++)
97 return ' ' > b[idx] ? 1 : -1;
101 for (idx = min_len; idx < a_len; idx++)
103 return a[idx] > ' ' ? 1 : -1;
109 /* Compares strin A to string B. The shorter string is
110 considered to be padded with spaces to the length of the
113 str_compare_rpad (const char *a, const char *b)
115 return buf_compare_rpad (a, strlen (a), b, strlen (b));
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. */
122 buf_copy_str_rpad (char *dst, size_t dst_size, const char *src, char pad)
124 size_t src_len = strlen (src);
125 if (src_len >= dst_size)
126 memcpy (dst, src, dst_size);
129 memcpy (dst, src, src_len);
130 memset (&dst[src_len], pad, dst_size - src_len);
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. */
138 buf_copy_str_lpad (char *dst, size_t dst_size, const char *src, char pad)
140 size_t src_len = strlen (src);
141 if (src_len >= dst_size)
142 memcpy (dst, src, dst_size);
145 size_t pad_cnt = dst_size - src_len;
146 memset (&dst[0], pad, pad_cnt);
147 memcpy (dst + pad_cnt, src, src_len);
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. */
155 buf_copy_lpad (char *dst, size_t dst_size,
156 const char *src, size_t src_size,
159 if (src_size >= dst_size)
160 memmove (dst, src, dst_size);
163 memset (dst, pad, dst_size - src_size);
164 memmove (&dst[dst_size - src_size], src, src_size);
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. */
172 buf_copy_rpad (char *dst, size_t dst_size,
173 const char *src, size_t src_size,
176 if (src_size >= dst_size)
177 memmove (dst, src, dst_size);
180 memmove (dst, src, src_size);
181 memset (&dst[src_size], pad, dst_size - src_size);
185 /* Copies string SRC to string DST, which is in a buffer DST_SIZE
187 Truncates DST to DST_SIZE - 1 bytes or right-pads with
188 spaces to DST_SIZE - 1 bytes if necessary. */
190 str_copy_rpad (char *dst, size_t dst_size, const char *src)
194 size_t src_len = strlen (src);
195 if (src_len < dst_size - 1)
197 memcpy (dst, src, src_len);
198 memset (&dst[src_len], ' ', dst_size - 1 - src_len);
201 memcpy (dst, src, dst_size - 1);
202 dst[dst_size - 1] = 0;
206 /* Copies SRC to DST, which is in a buffer DST_SIZE bytes long.
207 Truncates DST to DST_SIZE - 1 bytes, if necessary. */
209 str_copy_trunc (char *dst, size_t dst_size, const char *src)
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);
217 memcpy (dst, src, dst_size - 1);
218 dst[dst_size - 1] = '\0';
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. */
226 str_copy_buf_trunc (char *dst, size_t dst_size,
227 const char *src, size_t src_size)
230 assert (dst_size > 0);
232 dst_len = src_size < dst_size ? src_size : dst_size - 1;
233 memcpy (dst, src, dst_len);
237 /* Converts each byte in S to uppercase.
239 This is suitable only for ASCII strings. Use utf8_to_upper() for UTF-8
242 str_uppercase (char *s)
244 for (; *s != '\0'; s++)
245 *s = c_toupper ((unsigned char) *s);
248 /* Converts each byte in S to lowercase.
250 This is suitable only for ASCII strings. Use utf8_to_lower() for UTF-8
253 str_lowercase (char *s)
255 for (; *s != '\0'; s++)
256 *s = c_tolower ((unsigned char) *s);
259 /* Converts NUMBER into a string in 26-adic notation in BUFFER,
260 which has room for SIZE bytes. Returns true if successful,
261 false if NUMBER, plus a trailing null, is too large to fit in
264 26-adic notation is "spreadsheet column numbering": 1 = A, 2 =
265 B, 3 = C, ... 26 = Z, 27 = AA, 28 = AB, 29 = AC, ...
267 26-adic notation is the special case of a k-adic numeration
268 system (aka bijective base-k numeration) with k=26. In k-adic
269 numeration, the digits are {1, 2, 3, ..., k} (there is no
270 digit 0), and integer 0 is represented by the empty string.
271 For more information, see
272 http://en.wikipedia.org/wiki/Bijective_numeration. */
274 str_format_26adic (unsigned long int number, char buffer[], size_t size)
282 buffer[length++] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"[number % 26];
288 buffer[length] = '\0';
290 buf_reverse (buffer, length);
299 /* Sets the SIZE bytes starting at BLOCK to C,
300 and returns the byte following BLOCK. */
302 mempset (void *block, int c, size_t size)
304 memset (block, c, size);
305 return (char *) block + size;
310 /* Returns a substring whose contents are the CNT bytes
311 starting at the (0-based) position START in SS. */
313 ss_substr (struct substring ss, size_t start, size_t cnt)
315 if (start < ss.length)
316 return ss_buffer (ss.string + start, MIN (cnt, ss.length - start));
318 return ss_buffer (ss.string + ss.length, 0);
321 /* Returns a substring whose contents are the first CNT
324 ss_head (struct substring ss, size_t cnt)
326 return ss_buffer (ss.string, MIN (cnt, ss.length));
329 /* Returns a substring whose contents are the last CNT bytes
332 ss_tail (struct substring ss, size_t cnt)
335 return ss_buffer (ss.string + (ss.length - cnt), cnt);
340 /* Makes a malloc()'d, null-terminated copy of the contents of OLD
341 and stores it in NEW. */
343 ss_alloc_substring (struct substring *new, struct substring old)
345 new->string = xmemdup0 (old.string, old.length);
346 new->length = old.length;
349 /* Allocates room for a CNT-byte string in NEW. */
351 ss_alloc_uninit (struct substring *new, size_t cnt)
353 new->string = xmalloc (cnt);
358 ss_realloc (struct substring *ss, size_t size)
360 ss->string = xrealloc (ss->string, size);
363 /* Makes a pool_alloc_unaligned()'d, null-terminated copy of the contents of
364 OLD in POOL, and stores it in NEW. */
366 ss_alloc_substring_pool (struct substring *new, struct substring old,
369 new->string = pool_alloc_unaligned (pool, old.length + 1);
370 new->length = old.length;
371 memcpy (new->string, old.string, old.length);
372 new->string[old.length] = '\0';
375 /* Allocates room for a CNT-byte string in NEW in POOL. */
377 ss_alloc_uninit_pool (struct substring *new, size_t cnt, struct pool *pool)
379 new->string = pool_alloc_unaligned (pool, cnt);
383 /* Frees the string that SS points to. */
385 ss_dealloc (struct substring *ss)
390 /* Truncates SS to at most CNT bytes in length. */
392 ss_truncate (struct substring *ss, size_t cnt)
394 if (ss->length > cnt)
398 /* Removes trailing bytes in TRIM_SET from SS.
399 Returns number of bytes removed. */
401 ss_rtrim (struct substring *ss, struct substring trim_set)
404 while (cnt < ss->length
405 && ss_find_byte (trim_set,
406 ss->string[ss->length - cnt - 1]) != SIZE_MAX)
412 /* Removes leading bytes in TRIM_SET from SS.
413 Returns number of bytes removed. */
415 ss_ltrim (struct substring *ss, struct substring trim_set)
417 size_t cnt = ss_span (*ss, trim_set);
418 ss_advance (ss, cnt);
422 /* Trims leading and trailing bytes in TRIM_SET from SS. */
424 ss_trim (struct substring *ss, struct substring trim_set)
426 ss_ltrim (ss, trim_set);
427 ss_rtrim (ss, trim_set);
430 /* If the last byte in SS is C, removes it and returns true.
431 Otherwise, returns false without changing the string. */
433 ss_chomp_byte (struct substring *ss, char c)
435 if (ss_last (*ss) == c)
444 /* If SS ends with SUFFIX, removes it and returns true.
445 Otherwise, returns false without changing the string. */
447 ss_chomp (struct substring *ss, struct substring suffix)
449 if (ss_ends_with (*ss, suffix))
451 ss->length -= suffix.length;
458 /* Divides SS into tokens separated by any of the DELIMITERS.
459 Each call replaces TOKEN by the next token in SS, or by an
460 empty string if no tokens remain. Returns true if a token was
461 obtained, false otherwise.
463 Before the first call, initialize *SAVE_IDX to 0. Do not
464 modify *SAVE_IDX between calls.
466 SS divides into exactly one more tokens than it contains
467 delimiters. That is, a delimiter at the start or end of SS or
468 a pair of adjacent delimiters yields an empty token, and the
469 empty string contains a single token. */
471 ss_separate (struct substring ss, struct substring delimiters,
472 size_t *save_idx, struct substring *token)
474 if (*save_idx <= ss_length (ss))
476 struct substring tmp = ss_substr (ss, *save_idx, SIZE_MAX);
477 size_t length = ss_cspan (tmp, delimiters);
478 *token = ss_head (tmp, length);
479 *save_idx += length + 1;
484 *token = ss_empty ();
489 /* Divides SS into tokens separated by any of the DELIMITERS,
490 merging adjacent delimiters so that the empty string is never
491 produced as a token. Each call replaces TOKEN by the next
492 token in SS, or by an empty string if no tokens remain, and
493 then skips past the first delimiter following the token.
494 Returns true if a token was obtained, false otherwise.
496 Before the first call, initialize *SAVE_IDX to 0. Do not
497 modify *SAVE_IDX between calls. */
499 ss_tokenize (struct substring ss, struct substring delimiters,
500 size_t *save_idx, struct substring *token)
504 ss_advance (&ss, *save_idx);
505 *save_idx += ss_ltrim (&ss, delimiters);
506 ss_get_bytes (&ss, ss_cspan (ss, delimiters), token);
508 found_token = ss_length (*token) > 0;
509 *save_idx += ss_length (*token) + found_token;
513 /* Removes the first CNT bytes from SS. */
515 ss_advance (struct substring *ss, size_t cnt)
517 if (cnt > ss->length)
523 /* If the first byte in SS is C, removes it and returns true.
524 Otherwise, returns false without changing the string. */
526 ss_match_byte (struct substring *ss, char c)
528 if (ss_first (*ss) == c)
538 /* If the first byte in SS is in MATCH, removes it and
539 returns the byte that was removed.
540 Otherwise, returns EOF without changing the string. */
542 ss_match_byte_in (struct substring *ss, struct substring match)
546 && memchr (match.string, ss->string[0], match.length) != NULL)
555 /* If SS begins with TARGET, removes it and returns true.
556 Otherwise, returns false without changing SS. */
558 ss_match_string (struct substring *ss, const struct substring target)
560 size_t length = ss_length (target);
561 if (ss_equals (ss_head (*ss, length), target))
563 ss_advance (ss, length);
570 /* Removes the first byte from SS and returns it.
571 If SS is empty, returns EOF without modifying SS. */
573 ss_get_byte (struct substring *ss)
575 int c = ss_first (*ss);
584 /* Stores the prefix of SS up to the first DELIMITER in OUT (if
585 any). Trims those same bytes from SS. DELIMITER is
586 removed from SS but not made part of OUT. Returns true if
587 DELIMITER was found (and removed), false otherwise. */
589 ss_get_until (struct substring *ss, char delimiter, struct substring *out)
591 ss_get_bytes (ss, ss_cspan (*ss, ss_buffer (&delimiter, 1)), out);
592 return ss_match_byte (ss, delimiter);
595 /* Stores the first CNT bytes in SS in OUT (or fewer, if SS
596 is shorter than CNT bytes). Trims the same bytes
597 from the beginning of SS. Returns CNT. */
599 ss_get_bytes (struct substring *ss, size_t cnt, struct substring *out)
601 *out = ss_head (*ss, cnt);
602 ss_advance (ss, cnt);
606 /* Parses and removes an optionally signed decimal integer from
607 the beginning of SS. Returns 0 if an error occurred,
608 otherwise the number of bytes removed from SS. Stores
609 the integer's value into *VALUE. */
611 ss_get_long (struct substring *ss, long *value)
616 length = ss_span (*ss, ss_cstr ("+-"));
617 length += ss_span (ss_substr (*ss, length, SIZE_MAX), ss_cstr (CC_DIGITS));
618 if (length > 0 && length < sizeof tmp)
622 memcpy (tmp, ss_data (*ss), length);
625 *value = strtol (tmp, &tail, 10);
626 if (tail - tmp == length)
628 ss_advance (ss, length);
636 /* Returns true if SS is empty (has length 0 bytes),
639 ss_is_empty (struct substring ss)
641 return ss.length == 0;
644 /* Returns the number of bytes in SS. */
646 ss_length (struct substring ss)
651 /* Returns a pointer to the bytes in SS. */
653 ss_data (struct substring ss)
658 /* Returns a pointer just past the last byte in SS. */
660 ss_end (struct substring ss)
662 return ss.string + ss.length;
665 /* Returns the byte in position IDX in SS, as a value in the
666 range of unsigned char. Returns EOF if IDX is out of the
667 range of indexes for SS. */
669 ss_at (struct substring ss, size_t idx)
671 return idx < ss.length ? (unsigned char) ss.string[idx] : EOF;
674 /* Returns the first byte in SS as a value in the range of
675 unsigned char. Returns EOF if SS is the empty string. */
677 ss_first (struct substring ss)
679 return ss_at (ss, 0);
682 /* Returns the last byte in SS as a value in the range of
683 unsigned char. Returns EOF if SS is the empty string. */
685 ss_last (struct substring ss)
687 return ss.length > 0 ? (unsigned char) ss.string[ss.length - 1] : EOF;
690 /* Returns true if SS ends with SUFFIX, false otherwise. */
692 ss_ends_with (struct substring ss, struct substring suffix)
694 return (ss.length >= suffix.length
695 && !memcmp (&ss.string[ss.length - suffix.length], suffix.string,
699 /* Returns the number of contiguous bytes at the beginning
700 of SS that are in SKIP_SET. */
702 ss_span (struct substring ss, struct substring skip_set)
705 for (i = 0; i < ss.length; i++)
706 if (ss_find_byte (skip_set, ss.string[i]) == SIZE_MAX)
711 /* Returns the number of contiguous bytes at the beginning
712 of SS that are not in SKIP_SET. */
714 ss_cspan (struct substring ss, struct substring stop_set)
717 for (i = 0; i < ss.length; i++)
718 if (ss_find_byte (stop_set, ss.string[i]) != SIZE_MAX)
723 /* Returns the offset in SS of the first instance of C,
724 or SIZE_MAX if C does not occur in SS. */
726 ss_find_byte (struct substring ss, char c)
728 const char *p = memchr (ss.string, c, ss.length);
729 return p != NULL ? p - ss.string : SIZE_MAX;
732 /* Compares A and B and returns a strcmp()-type comparison
735 ss_compare (struct substring a, struct substring b)
737 int retval = memcmp (a.string, b.string, MIN (a.length, b.length));
739 retval = a.length < b.length ? -1 : a.length > b.length;
743 /* Compares A and B case-insensitively and returns a
744 strcmp()-type comparison result. */
746 ss_compare_case (struct substring a, struct substring b)
748 int retval = memcasecmp (a.string, b.string, MIN (a.length, b.length));
750 retval = a.length < b.length ? -1 : a.length > b.length;
754 /* Compares A and B and returns true if their contents are
755 identical, false otherwise. */
757 ss_equals (struct substring a, struct substring b)
759 return a.length == b.length && !memcmp (a.string, b.string, a.length);
762 /* Compares A and B and returns true if their contents are
763 identical except possibly for case differences, false
766 ss_equals_case (struct substring a, struct substring b)
768 return a.length == b.length && !memcasecmp (a.string, b.string, a.length);
771 /* Returns the position in SS that the byte at P occupies.
772 P must point within SS or one past its end. */
774 ss_pointer_to_position (struct substring ss, const char *p)
776 size_t pos = p - ss.string;
777 assert (pos <= ss.length);
781 /* Allocates and returns a null-terminated string that contains
784 ss_xstrdup (struct substring ss)
786 char *s = xmalloc (ss.length + 1);
787 memcpy (s, ss.string, ss.length);
793 /* Returns the character represented by the UTF-8 sequence at the start of S.
794 The return value is either a Unicode code point in the range 0 to 0x10ffff,
795 or UINT32_MAX if S is empty. */
797 ss_first_mb (struct substring s)
799 return ss_at_mb (s, 0);
802 /* Returns the number of bytes in the UTF-8 character at the beginning of S.
804 The return value is 0 if S is empty, otherwise between 1 and 4. */
806 ss_first_mblen (struct substring s)
808 return ss_at_mblen (s, 0);
811 /* Advances S past the UTF-8 character at its beginning. Returns the Unicode
812 code point that was skipped (in the range 0 to 0x10ffff), or UINT32_MAX if S
813 was not modified because it was initially empty. */
815 ss_get_mb (struct substring *s)
822 n = u8_mbtouc (&uc, CHAR_CAST (const uint8_t *, s->string), s->length);
831 /* Returns the character represented by the UTF-8 sequence starting OFS bytes
832 into S. The return value is either a Unicode code point in the range 0 to
833 0x10ffff, or UINT32_MAX if OFS is past the last byte in S.
835 (Returns 0xfffd if OFS points into the middle, not the beginning, of a UTF-8
838 ss_at_mb (struct substring s, size_t ofs)
843 u8_mbtouc (&uc, CHAR_CAST (const uint8_t *, s.string + ofs),
851 /* Returns the number of bytes represented by the UTF-8 sequence starting OFS
852 bytes into S. The return value is 0 if OFS is past the last byte in S,
853 otherwise between 1 and 4. */
855 ss_at_mblen (struct substring s, size_t ofs)
860 return u8_mbtouc (&uc, CHAR_CAST (const uint8_t *, s.string + ofs),
867 /* Initializes ST as an empty string. */
869 ds_init_empty (struct string *st)
871 st->ss = ss_empty ();
875 /* Initializes ST with initial contents S. */
877 ds_init_string (struct string *st, const struct string *s)
879 ds_init_substring (st, ds_ss (s));
882 /* Initializes ST with initial contents SS. */
884 ds_init_substring (struct string *st, struct substring ss)
886 st->capacity = MAX (8, ss.length * 2);
887 st->ss.string = xmalloc (st->capacity + 1);
888 memcpy (st->ss.string, ss.string, ss.length);
889 st->ss.length = ss.length;
892 /* Initializes ST with initial contents S. */
894 ds_init_cstr (struct string *st, const char *s)
896 ds_init_substring (st, ss_cstr (s));
901 ds_destroy (struct string *st)
905 ss_dealloc (&st->ss);
906 st->ss.string = NULL;
912 /* Swaps the contents of strings A and B. */
914 ds_swap (struct string *a, struct string *b)
916 struct string tmp = *a;
921 /* Helper function for ds_register_pool. */
923 free_string (void *st_)
925 struct string *st = st_;
929 /* Arranges for ST to be destroyed automatically as part of
932 ds_register_pool (struct string *st, struct pool *pool)
934 pool_register (pool, free_string, st);
937 /* Cancels the arrangement for ST to be destroyed automatically
940 ds_unregister_pool (struct string *st, struct pool *pool)
942 pool_unregister (pool, st);
945 /* Copies SRC into DST.
946 DST and SRC may be the same string. */
948 ds_assign_string (struct string *dst, const struct string *src)
950 ds_assign_substring (dst, ds_ss (src));
953 /* Replaces DST by SS.
954 SS may be a substring of DST. */
956 ds_assign_substring (struct string *dst, struct substring ss)
958 dst->ss.length = ss.length;
959 ds_extend (dst, ss.length);
960 memmove (dst->ss.string, ss.string, ss.length);
963 /* Replaces DST by null-terminated string SRC. SRC may overlap
966 ds_assign_cstr (struct string *dst, const char *src)
968 ds_assign_substring (dst, ss_cstr (src));
971 /* Truncates ST to zero length. */
973 ds_clear (struct string *st)
978 /* Returns a substring that contains ST. */
980 ds_ss (const struct string *st)
985 /* Returns a substring that contains CNT bytes from ST
986 starting at position START.
988 If START is greater than or equal to the length of ST, then
989 the substring will be the empty string. If START + CNT
990 exceeds the length of ST, then the substring will only be
991 ds_length(ST) - START bytes long. */
993 ds_substr (const struct string *st, size_t start, size_t cnt)
995 return ss_substr (ds_ss (st), start, cnt);
998 /* Returns a substring that contains the first CNT bytes in
999 ST. If CNT exceeds the length of ST, then the substring will
1000 contain all of ST. */
1002 ds_head (const struct string *st, size_t cnt)
1004 return ss_head (ds_ss (st), cnt);
1007 /* Returns a substring that contains the last CNT bytes in
1008 ST. If CNT exceeds the length of ST, then the substring will
1009 contain all of ST. */
1011 ds_tail (const struct string *st, size_t cnt)
1013 return ss_tail (ds_ss (st), cnt);
1016 /* Ensures that ST can hold at least MIN_CAPACITY bytes plus a null
1019 ds_extend (struct string *st, size_t min_capacity)
1021 if (min_capacity > st->capacity)
1024 if (st->capacity < min_capacity)
1025 st->capacity = 2 * min_capacity;
1027 st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
1031 /* Shrink ST to the minimum capacity need to contain its content. */
1033 ds_shrink (struct string *st)
1035 if (st->capacity != st->ss.length)
1037 st->capacity = st->ss.length;
1038 st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
1042 /* Truncates ST to at most LENGTH bytes long. */
1044 ds_truncate (struct string *st, size_t length)
1046 ss_truncate (&st->ss, length);
1049 /* Removes trailing bytes in TRIM_SET from ST.
1050 Returns number of bytes removed. */
1052 ds_rtrim (struct string *st, struct substring trim_set)
1054 return ss_rtrim (&st->ss, trim_set);
1057 /* Removes leading bytes in TRIM_SET from ST.
1058 Returns number of bytes removed. */
1060 ds_ltrim (struct string *st, struct substring trim_set)
1062 size_t cnt = ds_span (st, trim_set);
1064 ds_assign_substring (st, ds_substr (st, cnt, SIZE_MAX));
1068 /* Trims leading and trailing bytes in TRIM_SET from ST.
1069 Returns number of bytes removed. */
1071 ds_trim (struct string *st, struct substring trim_set)
1073 size_t cnt = ds_rtrim (st, trim_set);
1074 return cnt + ds_ltrim (st, trim_set);
1077 /* If the last byte in ST is C, removes it and returns true.
1078 Otherwise, returns false without modifying ST. */
1080 ds_chomp_byte (struct string *st, char c)
1082 return ss_chomp_byte (&st->ss, c);
1085 /* If ST ends with SUFFIX, removes it and returns true.
1086 Otherwise, returns false without modifying ST. */
1088 ds_chomp (struct string *st, struct substring suffix)
1090 return ss_chomp (&st->ss, suffix);
1093 /* Divides ST into tokens separated by any of the DELIMITERS.
1094 Each call replaces TOKEN by the next token in ST, or by an
1095 empty string if no tokens remain. Returns true if a token was
1096 obtained, false otherwise.
1098 Before the first call, initialize *SAVE_IDX to 0. Do not
1099 modify *SAVE_IDX between calls.
1101 ST divides into exactly one more tokens than it contains
1102 delimiters. That is, a delimiter at the start or end of ST or
1103 a pair of adjacent delimiters yields an empty token, and the
1104 empty string contains a single token. */
1106 ds_separate (const struct string *st, struct substring delimiters,
1107 size_t *save_idx, struct substring *token)
1109 return ss_separate (ds_ss (st), delimiters, save_idx, token);
1112 /* Divides ST into tokens separated by any of the DELIMITERS,
1113 merging adjacent delimiters so that the empty string is never
1114 produced as a token. Each call replaces TOKEN by the next
1115 token in ST, or by an empty string if no tokens remain.
1116 Returns true if a token was obtained, false otherwise.
1118 Before the first call, initialize *SAVE_IDX to 0. Do not
1119 modify *SAVE_IDX between calls. */
1121 ds_tokenize (const struct string *st, struct substring delimiters,
1122 size_t *save_idx, struct substring *token)
1124 return ss_tokenize (ds_ss (st), delimiters, save_idx, token);
1127 /* Pad ST on the right with copies of PAD until ST is at least
1128 LENGTH bytes in size. If ST is initially LENGTH
1129 bytes or longer, this is a no-op. */
1131 ds_rpad (struct string *st, size_t length, char pad)
1133 if (length > st->ss.length)
1134 ds_put_byte_multiple (st, pad, length - st->ss.length);
1137 /* Sets the length of ST to exactly NEW_LENGTH,
1138 either by truncating bytes from the end,
1139 or by padding on the right with PAD. */
1141 ds_set_length (struct string *st, size_t new_length, char pad)
1143 if (st->ss.length < new_length)
1144 ds_rpad (st, new_length, pad);
1146 st->ss.length = new_length;
1149 /* Removes N bytes from ST starting at offset START. */
1151 ds_remove (struct string *st, size_t start, size_t n)
1153 if (n > 0 && start < st->ss.length)
1155 if (st->ss.length - start <= n)
1157 /* All bytes at or beyond START are deleted. */
1158 st->ss.length = start;
1162 /* Some bytes remain and must be shifted into
1164 memmove (st->ss.string + st->ss.length,
1165 st->ss.string + st->ss.length + n,
1166 st->ss.length - start - n);
1172 /* There are no bytes to delete or no bytes at or
1173 beyond START, hence deletion is a no-op. */
1177 /* Returns true if ST is empty, false otherwise. */
1179 ds_is_empty (const struct string *st)
1181 return ss_is_empty (st->ss);
1184 /* Returns the length of ST. */
1186 ds_length (const struct string *st)
1188 return ss_length (ds_ss (st));
1191 /* Returns the string data inside ST. */
1193 ds_data (const struct string *st)
1195 return ss_data (ds_ss (st));
1198 /* Returns a pointer to the null terminator ST.
1199 This might not be an actual null byte unless ds_c_str() has
1200 been called since the last modification to ST. */
1202 ds_end (const struct string *st)
1204 return ss_end (ds_ss (st));
1207 /* Returns the byte in position IDX in ST, as a value in the
1208 range of unsigned char. Returns EOF if IDX is out of the
1209 range of indexes for ST. */
1211 ds_at (const struct string *st, size_t idx)
1213 return ss_at (ds_ss (st), idx);
1216 /* Returns the first byte in ST as a value in the range of
1217 unsigned char. Returns EOF if ST is the empty string. */
1219 ds_first (const struct string *st)
1221 return ss_first (ds_ss (st));
1224 /* Returns the last byte in ST as a value in the range of
1225 unsigned char. Returns EOF if ST is the empty string. */
1227 ds_last (const struct string *st)
1229 return ss_last (ds_ss (st));
1232 /* Returns true if ST ends with SUFFIX, false otherwise. */
1234 ds_ends_with (const struct string *st, struct substring suffix)
1236 return ss_ends_with (st->ss, suffix);
1239 /* Returns the number of consecutive bytes at the beginning
1240 of ST that are in SKIP_SET. */
1242 ds_span (const struct string *st, struct substring skip_set)
1244 return ss_span (ds_ss (st), skip_set);
1247 /* Returns the number of consecutive bytes at the beginning
1248 of ST that are not in STOP_SET. */
1250 ds_cspan (const struct string *st, struct substring stop_set)
1252 return ss_cspan (ds_ss (st), stop_set);
1255 /* Returns the position of the first occurrence of byte C in
1256 ST at or after position OFS, or SIZE_MAX if there is no such
1259 ds_find_byte (const struct string *st, char c)
1261 return ss_find_byte (ds_ss (st), c);
1264 /* Compares A and B and returns a strcmp()-type comparison
1267 ds_compare (const struct string *a, const struct string *b)
1269 return ss_compare (ds_ss (a), ds_ss (b));
1272 /* Returns the position in ST that the byte at P occupies.
1273 P must point within ST or one past its end. */
1275 ds_pointer_to_position (const struct string *st, const char *p)
1277 return ss_pointer_to_position (ds_ss (st), p);
1280 /* Allocates and returns a null-terminated string that contains
1283 ds_xstrdup (const struct string *st)
1285 return ss_xstrdup (ds_ss (st));
1288 /* Returns the allocation size of ST. */
1290 ds_capacity (const struct string *st)
1292 return st->capacity;
1295 /* Returns the value of ST as a null-terminated string. */
1297 ds_cstr (const struct string *st_)
1299 struct string *st = CONST_CAST (struct string *, st_);
1300 if (st->ss.string == NULL)
1302 st->ss.string[st->ss.length] = '\0';
1303 return st->ss.string;
1306 /* Returns the value of ST as a null-terminated string and then
1307 reinitialized ST as an empty string. The caller must free the
1308 returned string with free(). */
1310 ds_steal_cstr (struct string *st)
1312 char *s = ds_cstr (st);
1317 /* Reads bytes from STREAM and appends them to ST, stopping
1318 after MAX_LENGTH bytes, after appending a newline, or
1319 after an I/O error or end of file was encountered, whichever
1320 comes first. Returns true if at least one byte was added
1321 to ST, false if no bytes were read before an I/O error or
1322 end of file (or if MAX_LENGTH was 0).
1324 This function treats LF and CR LF sequences as new-line,
1325 translating each of them to a single '\n' in ST. */
1327 ds_read_line (struct string *st, FILE *stream, size_t max_length)
1331 for (length = 0; length < max_length; length++)
1333 int c = getc (stream);
1340 ds_put_byte (st, c);
1347 /* CR followed by LF is special: translate to \n. */
1348 ds_put_byte (st, '\n');
1353 /* CR followed by anything else is just CR. */
1354 ds_put_byte (st, '\r');
1362 ds_put_byte (st, c);
1369 /* Removes a comment introduced by `#' from ST,
1370 ignoring occurrences inside quoted strings. */
1372 remove_comment (struct string *st)
1377 for (cp = ds_data (st); cp < ds_end (st); cp++)
1382 else if (*cp == '\\')
1385 else if (*cp == '\'' || *cp == '"')
1387 else if (*cp == '#')
1389 ds_truncate (st, cp - ds_cstr (st));
1394 /* Reads a line from STREAM into ST, then preprocesses as follows:
1396 - Splices lines terminated with `\'.
1398 - Deletes comments introduced by `#' outside of single or double
1401 - Deletes trailing white space.
1403 Returns true if a line was successfully read, false on
1404 failure. If LINE_NUMBER is non-null, then *LINE_NUMBER is
1405 incremented by the number of lines read. */
1407 ds_read_config_line (struct string *st, int *line_number, FILE *stream)
1412 if (!ds_read_line (st, stream, SIZE_MAX))
1415 ds_rtrim (st, ss_cstr (CC_SPACES));
1417 while (ds_chomp_byte (st, '\\'));
1419 remove_comment (st);
1423 /* Attempts to read SIZE * CNT bytes from STREAM and append them
1425 Returns true if all the requested data was read, false otherwise. */
1427 ds_read_stream (struct string *st, size_t size, size_t cnt, FILE *stream)
1431 size_t try_bytes = xtimes (cnt, size);
1432 if (size_in_bounds_p (xsum (ds_length (st), try_bytes)))
1434 char *buffer = ds_put_uninit (st, try_bytes);
1435 size_t got_bytes = fread (buffer, 1, try_bytes, stream);
1436 ds_truncate (st, ds_length (st) - (try_bytes - got_bytes));
1437 return got_bytes == try_bytes;
1449 /* Concatenates S onto ST. */
1451 ds_put_cstr (struct string *st, const char *s)
1454 ds_put_substring (st, ss_cstr (s));
1457 /* Concatenates SS to ST. */
1459 ds_put_substring (struct string *st, struct substring ss)
1461 memcpy (ds_put_uninit (st, ss_length (ss)), ss_data (ss), ss_length (ss));
1464 /* Returns ds_end(ST) and THEN increases the length by INCR. */
1466 ds_put_uninit (struct string *st, size_t incr)
1469 ds_extend (st, ds_length (st) + incr);
1471 st->ss.length += incr;
1475 /* Moves the bytes in ST following offset OFS + OLD_LEN in ST to offset OFS +
1476 NEW_LEN and returns the byte at offset OFS. The first min(OLD_LEN, NEW_LEN)
1477 bytes at the returned position are unchanged; if NEW_LEN > OLD_LEN then the
1478 following NEW_LEN - OLD_LEN bytes are initially indeterminate.
1480 The intention is that the caller should write NEW_LEN bytes at the returned
1481 position, to effectively replace the OLD_LEN bytes previously at that
1484 ds_splice_uninit (struct string *st,
1485 size_t ofs, size_t old_len, size_t new_len)
1487 if (new_len != old_len)
1489 if (new_len > old_len)
1490 ds_extend (st, ds_length (st) + (new_len - old_len));
1491 memmove (ds_data (st) + (ofs + new_len),
1492 ds_data (st) + (ofs + old_len),
1493 ds_length (st) - (ofs + old_len));
1494 st->ss.length += new_len - old_len;
1496 return ds_data (st) + ofs;
1499 /* Formats FORMAT as a printf string and appends the result to ST. */
1501 ds_put_format (struct string *st, const char *format, ...)
1505 va_start (args, format);
1506 ds_put_vformat (st, format, args);
1510 /* Formats FORMAT as a printf string as if in the C locale and appends the result to ST. */
1512 ds_put_c_format (struct string *st, const char *format, ...)
1516 va_start (args, format);
1517 ds_put_c_vformat (st, format, args);
1522 /* Formats FORMAT as a printf string, using fmt_func (a snprintf like function)
1523 and appends the result to ST. */
1525 ds_put_vformat_int (struct string *st, const char *format, va_list args_,
1526 int (*fmt_func) (char *, size_t, const char *, va_list))
1531 va_copy (args, args_);
1532 avail = st->ss.string != NULL ? st->capacity - st->ss.length + 1 : 0;
1533 needed = fmt_func (st->ss.string + st->ss.length, avail, format, args);
1536 if (needed >= avail)
1538 va_copy (args, args_);
1539 fmt_func (ds_put_uninit (st, needed), needed + 1, format, args);
1544 /* Some old libc's returned -1 when the destination string
1546 while (needed == -1)
1548 ds_extend (st, (st->capacity + 1) * 2);
1549 avail = st->capacity - st->ss.length + 1;
1551 va_copy (args, args_);
1552 needed = fmt_func (ds_end (st), avail, format, args);
1555 st->ss.length += needed;
1561 vasnwrapper (char *str, size_t size, const char *format, va_list ap)
1563 c_vasnprintf (str, &size, format, ap);
1567 /* Formats FORMAT as a printf string and appends the result to ST. */
1569 ds_put_vformat (struct string *st, const char *format, va_list args_)
1571 ds_put_vformat_int (st, format, args_, vsnprintf);
1574 /* Formats FORMAT as a printf string, as if in the C locale,
1575 and appends the result to ST. */
1577 ds_put_c_vformat (struct string *st, const char *format, va_list args_)
1579 ds_put_vformat_int (st, format, args_, vasnwrapper);
1582 /* Appends byte CH to ST. */
1584 ds_put_byte (struct string *st, int ch)
1586 ds_put_uninit (st, 1)[0] = ch;
1589 /* Appends CNT copies of byte CH to ST. */
1591 ds_put_byte_multiple (struct string *st, int ch, size_t cnt)
1593 memset (ds_put_uninit (st, cnt), ch, cnt);
1596 /* Appends Unicode code point UC to ST in UTF-8 encoding. */
1598 ds_put_unichar (struct string *st, ucs4_t uc)
1600 ds_extend (st, ds_length (st) + 6);
1601 st->ss.length += u8_uctomb (CHAR_CAST (uint8_t *, ds_end (st)), uc, 6);
1604 /* If relocation has been enabled, replace ST,
1605 with its relocated version */
1607 ds_relocate (struct string *st)
1609 const char *orig = ds_cstr (st);
1610 const char *rel = relocate (orig);
1615 ds_put_cstr (st, rel);
1616 /* The documentation for relocate says that casting away const
1617 and then freeing is appropriate ... */
1618 free (CONST_CAST (char *, rel));
1625 /* Operations on uint8_t "strings" */
1627 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
1628 DST is truncated to DST_SIZE bytes or padded on the right with
1629 copies of PAD as needed. */
1631 u8_buf_copy_rpad (uint8_t *dst, size_t dst_size,
1632 const uint8_t *src, size_t src_size,
1635 if (src_size >= dst_size)
1636 memmove (dst, src, dst_size);
1639 memmove (dst, src, src_size);
1640 memset (&dst[src_size], pad, dst_size - src_size);