1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2009 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/>. */
26 #include <libpspp/message.h>
27 #include <libpspp/pool.h>
29 #include <relocatable.h>
34 /* Reverses the order of NBYTES bytes at address P, thus converting
35 between little- and big-endian byte orders. */
37 buf_reverse (char *p, size_t nbytes)
39 char *h = p, *t = &h[nbytes - 1];
51 /* Finds the last NEEDLE of length NEEDLE_LEN in a HAYSTACK of length
52 HAYSTACK_LEN. Returns a pointer to the needle found. */
54 buf_find_reverse (const char *haystack, size_t haystack_len,
55 const char *needle, size_t needle_len)
58 for (i = haystack_len - needle_len; i >= 0; i--)
59 if (!memcmp (needle, &haystack[i], needle_len))
60 return (char *) &haystack[i];
64 /* Compares the SIZE bytes in A to those in B, disregarding case,
65 and returns a strcmp()-type result. */
67 buf_compare_case (const char *a_, const char *b_, size_t size)
69 const unsigned char *a = (unsigned char *) a_;
70 const unsigned char *b = (unsigned char *) b_;
74 unsigned char ac = toupper (*a++);
75 unsigned char bc = toupper (*b++);
78 return ac > bc ? 1 : -1;
84 /* Compares A of length A_LEN to B of length B_LEN. The shorter
85 string is considered to be padded with spaces to the length of
88 buf_compare_rpad (const char *a, size_t a_len, const char *b, size_t b_len)
93 min_len = a_len < b_len ? a_len : b_len;
94 result = memcmp (a, b, min_len);
103 for (idx = min_len; idx < b_len; idx++)
105 return ' ' > b[idx] ? 1 : -1;
109 for (idx = min_len; idx < a_len; idx++)
111 return a[idx] > ' ' ? 1 : -1;
117 /* Compares strin A to string B. The shorter string is
118 considered to be padded with spaces to the length of the
121 str_compare_rpad (const char *a, const char *b)
123 return buf_compare_rpad (a, strlen (a), b, strlen (b));
126 /* Copies string SRC to buffer DST, of size DST_SIZE bytes.
127 DST is truncated to DST_SIZE bytes or padded on the right with
130 buf_copy_str_rpad (char *dst, size_t dst_size, const char *src)
132 size_t src_len = strlen (src);
133 if (src_len >= dst_size)
134 memcpy (dst, src, dst_size);
137 memcpy (dst, src, src_len);
138 memset (&dst[src_len], ' ', dst_size - src_len);
142 /* Copies string SRC to buffer DST, of size DST_SIZE bytes.
143 DST is truncated to DST_SIZE bytes or padded on the left with
146 buf_copy_str_lpad (char *dst, size_t dst_size, const char *src)
148 size_t src_len = strlen (src);
149 if (src_len >= dst_size)
150 memcpy (dst, src, dst_size);
153 size_t pad_cnt = dst_size - src_len;
154 memset (&dst[0], ' ', pad_cnt);
155 memcpy (dst + pad_cnt, src, src_len);
159 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
160 DST is truncated to DST_SIZE bytes or padded on the left with
163 buf_copy_lpad (char *dst, size_t dst_size,
164 const char *src, size_t src_size)
166 if (src_size >= dst_size)
167 memmove (dst, src, dst_size);
170 memset (dst, ' ', dst_size - src_size);
171 memmove (&dst[dst_size - src_size], src, src_size);
175 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
176 DST is truncated to DST_SIZE bytes or padded on the right with
179 buf_copy_rpad (char *dst, size_t dst_size,
180 const char *src, size_t src_size)
182 if (src_size >= dst_size)
183 memmove (dst, src, dst_size);
186 memmove (dst, src, src_size);
187 memset (&dst[src_size], ' ', dst_size - src_size);
191 /* Copies string SRC to string DST, which is in a buffer DST_SIZE
193 Truncates DST to DST_SIZE - 1 characters or right-pads with
194 spaces to DST_SIZE - 1 characters if necessary. */
196 str_copy_rpad (char *dst, size_t dst_size, const char *src)
200 size_t src_len = strlen (src);
201 if (src_len < dst_size - 1)
203 memcpy (dst, src, src_len);
204 memset (&dst[src_len], ' ', dst_size - 1 - src_len);
207 memcpy (dst, src, dst_size - 1);
208 dst[dst_size - 1] = 0;
212 /* Copies SRC to DST, which is in a buffer DST_SIZE bytes long.
213 Truncates DST to DST_SIZE - 1 characters, if necessary. */
215 str_copy_trunc (char *dst, size_t dst_size, const char *src)
217 size_t src_len = strlen (src);
218 assert (dst_size > 0);
219 if (src_len + 1 < dst_size)
220 memcpy (dst, src, src_len + 1);
223 memcpy (dst, src, dst_size - 1);
224 dst[dst_size - 1] = '\0';
228 /* Copies buffer SRC, of SRC_LEN bytes,
229 to DST, which is in a buffer DST_SIZE bytes long.
230 Truncates DST to DST_SIZE - 1 characters, if necessary. */
232 str_copy_buf_trunc (char *dst, size_t dst_size,
233 const char *src, size_t src_size)
236 assert (dst_size > 0);
238 dst_len = src_size < dst_size ? src_size : dst_size - 1;
239 memcpy (dst, src, dst_len);
243 /* Converts each character in S to uppercase. */
245 str_uppercase (char *s)
247 for (; *s != '\0'; s++)
248 *s = toupper ((unsigned char) *s);
251 /* Converts each character in S to lowercase. */
253 str_lowercase (char *s)
255 for (; *s != '\0'; s++)
256 *s = 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);
294 /* Formats FORMAT into DST, as with sprintf(), and returns the
295 address of the terminating null written to DST. */
297 spprintf (char *dst, const char *format, ...)
302 va_start (args, format);
303 count = vsprintf (dst, format, args);
309 /* Sets the SIZE bytes starting at BLOCK to C,
310 and returns the byte following BLOCK. */
312 mempset (void *block, int c, size_t size)
314 memset (block, c, size);
315 return (char *) block + size;
320 /* Returns an empty substring. */
330 /* Returns a substring whose contents are the given C-style
333 ss_cstr (const char *cstr)
335 return ss_buffer (cstr, strlen (cstr));
338 /* Returns a substring whose contents are the CNT characters in
341 ss_buffer (const char *buffer, size_t cnt)
344 ss.string = (char *) buffer;
349 /* Returns a substring whose contents are the CNT characters
350 starting at the (0-based) position START in SS. */
352 ss_substr (struct substring ss, size_t start, size_t cnt)
354 if (start < ss.length)
355 return ss_buffer (ss.string + start, MIN (cnt, ss.length - start));
357 return ss_buffer (ss.string + ss.length, 0);
360 /* Returns a substring whose contents are the first CNT
363 ss_head (struct substring ss, size_t cnt)
365 return ss_buffer (ss.string, MIN (cnt, ss.length));
368 /* Returns a substring whose contents are the last CNT characters
371 ss_tail (struct substring ss, size_t cnt)
374 return ss_buffer (ss.string + (ss.length - cnt), cnt);
379 /* Makes a malloc()'d copy of the contents of OLD
380 and stores it in NEW. */
382 ss_alloc_substring (struct substring *new, struct substring old)
384 new->string = xmalloc (old.length);
385 new->length = old.length;
386 memcpy (new->string, old.string, old.length);
389 /* Allocates room for a CNT-character string in NEW. */
391 ss_alloc_uninit (struct substring *new, size_t cnt)
393 new->string = xmalloc (cnt);
397 /* Makes a pool_alloc_unaligned()'d copy of the contents of OLD
398 in POOL, and stores it in NEW. */
400 ss_alloc_substring_pool (struct substring *new, struct substring old,
403 new->string = pool_alloc_unaligned (pool, old.length);
404 new->length = old.length;
405 memcpy (new->string, old.string, old.length);
408 /* Allocates room for a CNT-character string in NEW in POOL. */
410 ss_alloc_uninit_pool (struct substring *new, size_t cnt, struct pool *pool)
412 new->string = pool_alloc_unaligned (pool, cnt);
416 /* Frees the string that SS points to. */
418 ss_dealloc (struct substring *ss)
423 /* Truncates SS to at most CNT characters in length. */
425 ss_truncate (struct substring *ss, size_t cnt)
427 if (ss->length > cnt)
431 /* Removes trailing characters in TRIM_SET from SS.
432 Returns number of characters removed. */
434 ss_rtrim (struct substring *ss, struct substring trim_set)
437 while (cnt < ss->length
438 && ss_find_char (trim_set,
439 ss->string[ss->length - cnt - 1]) != SIZE_MAX)
445 /* Removes leading characters in TRIM_SET from SS.
446 Returns number of characters removed. */
448 ss_ltrim (struct substring *ss, struct substring trim_set)
450 size_t cnt = ss_span (*ss, trim_set);
451 ss_advance (ss, cnt);
455 /* Trims leading and trailing characters in TRIM_SET from SS. */
457 ss_trim (struct substring *ss, struct substring trim_set)
459 ss_ltrim (ss, trim_set);
460 ss_rtrim (ss, trim_set);
463 /* If the last character in SS is C, removes it and returns true.
464 Otherwise, returns false without changing the string. */
466 ss_chomp (struct substring *ss, char c)
468 if (ss_last (*ss) == c)
477 /* Divides SS into tokens separated by any of the DELIMITERS.
478 Each call replaces TOKEN by the next token in SS, or by an
479 empty string if no tokens remain. Returns true if a token was
480 obtained, false otherwise.
482 Before the first call, initialize *SAVE_IDX to 0. Do not
483 modify *SAVE_IDX between calls.
485 SS divides into exactly one more tokens than it contains
486 delimiters. That is, a delimiter at the start or end of SS or
487 a pair of adjacent delimiters yields an empty token, and the
488 empty string contains a single token. */
490 ss_separate (struct substring ss, struct substring delimiters,
491 size_t *save_idx, struct substring *token)
493 if (*save_idx <= ss_length (ss))
495 struct substring tmp = ss_substr (ss, *save_idx, SIZE_MAX);
496 size_t length = ss_cspan (tmp, delimiters);
497 *token = ss_head (tmp, length);
498 *save_idx += length + 1;
503 *token = ss_empty ();
508 /* Divides SS into tokens separated by any of the DELIMITERS,
509 merging adjacent delimiters so that the empty string is never
510 produced as a token. Each call replaces TOKEN by the next
511 token in SS, or by an empty string if no tokens remain, and
512 then skips past the first delimiter following the token.
513 Returns true if a token was obtained, false otherwise.
515 Before the first call, initialize *SAVE_IDX to 0. Do not
516 modify *SAVE_IDX between calls. */
518 ss_tokenize (struct substring ss, struct substring delimiters,
519 size_t *save_idx, struct substring *token)
521 ss_advance (&ss, *save_idx);
522 *save_idx += ss_ltrim (&ss, delimiters);
523 ss_get_chars (&ss, ss_cspan (ss, delimiters), token);
524 *save_idx += ss_length (*token) + 1;
525 return ss_length (*token) > 0;
528 /* Removes the first CNT characters from SS. */
530 ss_advance (struct substring *ss, size_t cnt)
532 if (cnt > ss->length)
538 /* If the first character in SS is C, removes it and returns true.
539 Otherwise, returns false without changing the string. */
541 ss_match_char (struct substring *ss, char c)
543 if (ss_first (*ss) == c)
553 /* If the first character in SS is in MATCH, removes it and
554 returns the character that was removed.
555 Otherwise, returns EOF without changing the string. */
557 ss_match_char_in (struct substring *ss, struct substring match)
561 && memchr (match.string, ss->string[0], match.length) != NULL)
570 /* If SS begins with TARGET, removes it and returns true.
571 Otherwise, returns false without changing SS. */
573 ss_match_string (struct substring *ss, const struct substring target)
575 size_t length = ss_length (target);
576 if (ss_equals (ss_head (*ss, length), target))
578 ss_advance (ss, length);
585 /* Removes the first character from SS and returns it.
586 If SS is empty, returns EOF without modifying SS. */
588 ss_get_char (struct substring *ss)
590 int c = ss_first (*ss);
599 /* Stores the prefix of SS up to the first DELIMITER in OUT (if
600 any). Trims those same characters from SS. DELIMITER is
601 removed from SS but not made part of OUT. Returns true if
602 DELIMITER was found (and removed), false otherwise. */
604 ss_get_until (struct substring *ss, char delimiter, struct substring *out)
606 ss_get_chars (ss, ss_cspan (*ss, ss_buffer (&delimiter, 1)), out);
607 return ss_match_char (ss, delimiter);
610 /* Stores the first CNT characters in SS in OUT (or fewer, if SS
611 is shorter than CNT characters). Trims the same characters
612 from the beginning of SS. Returns CNT. */
614 ss_get_chars (struct substring *ss, size_t cnt, struct substring *out)
616 *out = ss_head (*ss, cnt);
617 ss_advance (ss, cnt);
621 /* Parses and removes an optionally signed decimal integer from
622 the beginning of SS. Returns 0 if an error occurred,
623 otherwise the number of characters removed from SS. Stores
624 the integer's value into *VALUE. */
626 ss_get_long (struct substring *ss, long *value)
631 length = ss_span (*ss, ss_cstr ("+-"));
632 length += ss_span (ss_substr (*ss, length, SIZE_MAX), ss_cstr (CC_DIGITS));
633 if (length > 0 && length < sizeof tmp)
637 memcpy (tmp, ss_data (*ss), length);
640 *value = strtol (tmp, &tail, 10);
641 if (tail - tmp == length)
643 ss_advance (ss, length);
651 /* Returns true if SS is empty (contains no characters),
654 ss_is_empty (struct substring ss)
656 return ss.length == 0;
659 /* Returns the number of characters in SS. */
661 ss_length (struct substring ss)
666 /* Returns a pointer to the characters in SS. */
668 ss_data (struct substring ss)
673 /* Returns a pointer just past the last character in SS. */
675 ss_end (struct substring ss)
677 return ss.string + ss.length;
680 /* Returns the character in position IDX in SS, as a value in the
681 range of unsigned char. Returns EOF if IDX is out of the
682 range of indexes for SS. */
684 ss_at (struct substring ss, size_t idx)
686 return idx < ss.length ? (unsigned char) ss.string[idx] : EOF;
689 /* Returns the first character in SS as a value in the range of
690 unsigned char. Returns EOF if SS is the empty string. */
692 ss_first (struct substring ss)
694 return ss_at (ss, 0);
697 /* Returns the last character in SS as a value in the range of
698 unsigned char. Returns EOF if SS is the empty string. */
700 ss_last (struct substring ss)
702 return ss.length > 0 ? (unsigned char) ss.string[ss.length - 1] : EOF;
705 /* Returns the number of contiguous characters at the beginning
706 of SS that are in SKIP_SET. */
708 ss_span (struct substring ss, struct substring skip_set)
711 for (i = 0; i < ss.length; i++)
712 if (ss_find_char (skip_set, ss.string[i]) == SIZE_MAX)
717 /* Returns the number of contiguous characters at the beginning
718 of SS that are not in SKIP_SET. */
720 ss_cspan (struct substring ss, struct substring stop_set)
723 for (i = 0; i < ss.length; i++)
724 if (ss_find_char (stop_set, ss.string[i]) != SIZE_MAX)
729 /* Returns the offset in SS of the first instance of C,
730 or SIZE_MAX if C does not occur in SS. */
732 ss_find_char (struct substring ss, char c)
734 const char *p = memchr (ss.string, c, ss.length);
735 return p != NULL ? p - ss.string : SIZE_MAX;
738 /* Compares A and B and returns a strcmp()-type comparison
741 ss_compare (struct substring a, struct substring b)
743 int retval = memcmp (a.string, b.string, MIN (a.length, b.length));
745 retval = a.length < b.length ? -1 : a.length > b.length;
749 /* Compares A and B case-insensitively and returns a
750 strcmp()-type comparison result. */
752 ss_compare_case (struct substring a, struct substring b)
754 int retval = memcasecmp (a.string, b.string, MIN (a.length, b.length));
756 retval = a.length < b.length ? -1 : a.length > b.length;
760 /* Compares A and B and returns true if their contents are
761 identical, false otherwise. */
763 ss_equals (struct substring a, struct substring b)
765 return a.length == b.length && !memcmp (a.string, b.string, a.length);
768 /* Compares A and B and returns true if their contents are
769 identical except possibly for case differences, false
772 ss_equals_case (struct substring a, struct substring b)
774 return a.length == b.length && !memcasecmp (a.string, b.string, a.length);
777 /* Returns the position in SS that the character at P occupies.
778 P must point within SS or one past its end. */
780 ss_pointer_to_position (struct substring ss, const char *p)
782 size_t pos = p - ss.string;
783 assert (pos <= ss.length);
787 /* Allocates and returns a null-terminated string that contains
790 ss_xstrdup (struct substring ss)
792 char *s = xmalloc (ss.length + 1);
793 memcpy (s, ss.string, ss.length);
798 /* Initializes ST as an empty string. */
800 ds_init_empty (struct string *st)
802 st->ss = ss_empty ();
806 /* Initializes ST with initial contents S. */
808 ds_init_string (struct string *st, const struct string *s)
810 ds_init_substring (st, ds_ss (s));
813 /* Initializes ST with initial contents SS. */
815 ds_init_substring (struct string *st, struct substring ss)
817 st->capacity = MAX (8, ss.length * 2);
818 st->ss.string = xmalloc (st->capacity + 1);
819 memcpy (st->ss.string, ss.string, ss.length);
820 st->ss.length = ss.length;
823 /* Initializes ST with initial contents S. */
825 ds_init_cstr (struct string *st, const char *s)
827 ds_init_substring (st, ss_cstr (s));
832 ds_destroy (struct string *st)
836 ss_dealloc (&st->ss);
837 st->ss.string = NULL;
843 /* Swaps the contents of strings A and B. */
845 ds_swap (struct string *a, struct string *b)
847 struct string tmp = *a;
852 /* Helper function for ds_register_pool. */
854 free_string (void *st_)
856 struct string *st = st_;
860 /* Arranges for ST to be destroyed automatically as part of
863 ds_register_pool (struct string *st, struct pool *pool)
865 pool_register (pool, free_string, st);
868 /* Cancels the arrangement for ST to be destroyed automatically
871 ds_unregister_pool (struct string *st, struct pool *pool)
873 pool_unregister (pool, st);
876 /* Copies SRC into DST.
877 DST and SRC may be the same string. */
879 ds_assign_string (struct string *dst, const struct string *src)
881 ds_assign_substring (dst, ds_ss (src));
884 /* Replaces DST by SS.
885 SS may be a substring of DST. */
887 ds_assign_substring (struct string *dst, struct substring ss)
889 dst->ss.length = ss.length;
890 ds_extend (dst, ss.length);
891 memmove (dst->ss.string, ss.string, ss.length);
894 /* Replaces DST by null-terminated string SRC. SRC may overlap
897 ds_assign_cstr (struct string *dst, const char *src)
899 ds_assign_substring (dst, ss_cstr (src));
902 /* Truncates ST to zero length. */
904 ds_clear (struct string *st)
909 /* Returns a substring that contains ST. */
911 ds_ss (const struct string *st)
916 /* Returns a substring that contains CNT characters from ST
917 starting at position START.
919 If START is greater than or equal to the length of ST, then
920 the substring will be the empty string. If START + CNT
921 exceeds the length of ST, then the substring will only be
922 ds_length(ST) - START characters long. */
924 ds_substr (const struct string *st, size_t start, size_t cnt)
926 return ss_substr (ds_ss (st), start, cnt);
929 /* Returns a substring that contains the first CNT characters in
930 ST. If CNT exceeds the length of ST, then the substring will
931 contain all of ST. */
933 ds_head (const struct string *st, size_t cnt)
935 return ss_head (ds_ss (st), cnt);
938 /* Returns a substring that contains the last CNT characters in
939 ST. If CNT exceeds the length of ST, then the substring will
940 contain all of ST. */
942 ds_tail (const struct string *st, size_t cnt)
944 return ss_tail (ds_ss (st), cnt);
947 /* Ensures that ST can hold at least MIN_CAPACITY characters plus a null
950 ds_extend (struct string *st, size_t min_capacity)
952 if (min_capacity > st->capacity)
955 if (st->capacity < min_capacity)
956 st->capacity = 2 * min_capacity;
958 st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
962 /* Shrink ST to the minimum capacity need to contain its content. */
964 ds_shrink (struct string *st)
966 if (st->capacity != st->ss.length)
968 st->capacity = st->ss.length;
969 st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
973 /* Truncates ST to at most LENGTH characters long. */
975 ds_truncate (struct string *st, size_t length)
977 ss_truncate (&st->ss, length);
980 /* Removes trailing characters in TRIM_SET from ST.
981 Returns number of characters removed. */
983 ds_rtrim (struct string *st, struct substring trim_set)
985 return ss_rtrim (&st->ss, trim_set);
988 /* Removes leading characters in TRIM_SET from ST.
989 Returns number of characters removed. */
991 ds_ltrim (struct string *st, struct substring trim_set)
993 size_t cnt = ds_span (st, trim_set);
995 ds_assign_substring (st, ds_substr (st, cnt, SIZE_MAX));
999 /* Trims leading and trailing characters in TRIM_SET from ST.
1000 Returns number of charactesr removed. */
1002 ds_trim (struct string *st, struct substring trim_set)
1004 size_t cnt = ds_rtrim (st, trim_set);
1005 return cnt + ds_ltrim (st, trim_set);
1008 /* If the last character in ST is C, removes it and returns true.
1009 Otherwise, returns false without modifying ST. */
1011 ds_chomp (struct string *st, char c)
1013 return ss_chomp (&st->ss, c);
1016 /* Divides ST into tokens separated by any of the DELIMITERS.
1017 Each call replaces TOKEN by the next token in ST, or by an
1018 empty string if no tokens remain. Returns true if a token was
1019 obtained, false otherwise.
1021 Before the first call, initialize *SAVE_IDX to 0. Do not
1022 modify *SAVE_IDX between calls.
1024 ST divides into exactly one more tokens than it contains
1025 delimiters. That is, a delimiter at the start or end of ST or
1026 a pair of adjacent delimiters yields an empty token, and the
1027 empty string contains a single token. */
1029 ds_separate (const struct string *st, struct substring delimiters,
1030 size_t *save_idx, struct substring *token)
1032 return ss_separate (ds_ss (st), delimiters, save_idx, token);
1035 /* Divides ST into tokens separated by any of the DELIMITERS,
1036 merging adjacent delimiters so that the empty string is never
1037 produced as a token. Each call replaces TOKEN by the next
1038 token in ST, or by an empty string if no tokens remain.
1039 Returns true if a token was obtained, false otherwise.
1041 Before the first call, initialize *SAVE_IDX to 0. Do not
1042 modify *SAVE_IDX between calls. */
1044 ds_tokenize (const struct string *st, struct substring delimiters,
1045 size_t *save_idx, struct substring *token)
1047 return ss_tokenize (ds_ss (st), delimiters, save_idx, token);
1050 /* Pad ST on the right with copies of PAD until ST is at least
1051 LENGTH characters in size. If ST is initially LENGTH
1052 characters or longer, this is a no-op. */
1054 ds_rpad (struct string *st, size_t length, char pad)
1056 if (length > st->ss.length)
1057 ds_put_char_multiple (st, pad, length - st->ss.length);
1060 /* Sets the length of ST to exactly NEW_LENGTH,
1061 either by truncating characters from the end,
1062 or by padding on the right with PAD. */
1064 ds_set_length (struct string *st, size_t new_length, char pad)
1066 if (st->ss.length < new_length)
1067 ds_rpad (st, new_length, pad);
1069 st->ss.length = new_length;
1072 /* Returns true if ST is empty, false otherwise. */
1074 ds_is_empty (const struct string *st)
1076 return ss_is_empty (st->ss);
1079 /* Returns the length of ST. */
1081 ds_length (const struct string *st)
1083 return ss_length (ds_ss (st));
1086 /* Returns the string data inside ST. */
1088 ds_data (const struct string *st)
1090 return ss_data (ds_ss (st));
1093 /* Returns a pointer to the null terminator ST.
1094 This might not be an actual null character unless ds_c_str() has
1095 been called since the last modification to ST. */
1097 ds_end (const struct string *st)
1099 return ss_end (ds_ss (st));
1102 /* Returns the character in position IDX in ST, as a value in the
1103 range of unsigned char. Returns EOF if IDX is out of the
1104 range of indexes for ST. */
1106 ds_at (const struct string *st, size_t idx)
1108 return ss_at (ds_ss (st), idx);
1111 /* Returns the first character in ST as a value in the range of
1112 unsigned char. Returns EOF if ST is the empty string. */
1114 ds_first (const struct string *st)
1116 return ss_first (ds_ss (st));
1119 /* Returns the last character in ST as a value in the range of
1120 unsigned char. Returns EOF if ST is the empty string. */
1122 ds_last (const struct string *st)
1124 return ss_last (ds_ss (st));
1127 /* Returns the number of consecutive characters at the beginning
1128 of ST that are in SKIP_SET. */
1130 ds_span (const struct string *st, struct substring skip_set)
1132 return ss_span (ds_ss (st), skip_set);
1135 /* Returns the number of consecutive characters at the beginning
1136 of ST that are not in STOP_SET. */
1138 ds_cspan (const struct string *st, struct substring stop_set)
1140 return ss_cspan (ds_ss (st), stop_set);
1143 /* Returns the position of the first occurrence of character C in
1144 ST at or after position OFS, or SIZE_MAX if there is no such
1147 ds_find_char (const struct string *st, char c)
1149 return ss_find_char (ds_ss (st), c);
1152 /* Compares A and B and returns a strcmp()-type comparison
1155 ds_compare (const struct string *a, const struct string *b)
1157 return ss_compare (ds_ss (a), ds_ss (b));
1160 /* Returns the position in ST that the character at P occupies.
1161 P must point within ST or one past its end. */
1163 ds_pointer_to_position (const struct string *st, const char *p)
1165 return ss_pointer_to_position (ds_ss (st), p);
1168 /* Allocates and returns a null-terminated string that contains
1171 ds_xstrdup (const struct string *st)
1173 return ss_xstrdup (ds_ss (st));
1176 /* Returns the allocation size of ST. */
1178 ds_capacity (const struct string *st)
1180 return st->capacity;
1183 /* Returns the value of ST as a null-terminated string. */
1185 ds_cstr (const struct string *st_)
1187 struct string *st = (struct string *) st_;
1188 if (st->ss.string == NULL)
1190 st->ss.string[st->ss.length] = '\0';
1191 return st->ss.string;
1194 /* Reads characters from STREAM and appends them to ST, stopping
1195 after MAX_LENGTH characters, after appending a newline, or
1196 after an I/O error or end of file was encountered, whichever
1197 comes first. Returns true if at least one character was added
1198 to ST, false if no characters were read before an I/O error or
1199 end of file (or if MAX_LENGTH was 0).
1201 This function accepts LF, CR LF, and CR sequences as new-line,
1202 and translates each of them to a single '\n' new-line
1205 ds_read_line (struct string *st, FILE *stream, size_t max_length)
1209 for (length = 0; length < max_length; length++)
1211 int c = getc (stream);
1224 ds_put_char (st, c);
1232 /* Removes a comment introduced by `#' from ST,
1233 ignoring occurrences inside quoted strings. */
1235 remove_comment (struct string *st)
1240 for (cp = ds_data (st); cp < ds_end (st); cp++)
1245 else if (*cp == '\\')
1248 else if (*cp == '\'' || *cp == '"')
1250 else if (*cp == '#')
1252 ds_truncate (st, cp - ds_cstr (st));
1257 /* Reads a line from STREAM into ST, then preprocesses as follows:
1259 - Splices lines terminated with `\'.
1261 - Deletes comments introduced by `#' outside of single or double
1264 - Deletes trailing white space.
1266 Returns true if a line was successfully read, false on
1267 failure. If LINE_NUMBER is non-null, then *LINE_NUMBER is
1268 incremented by the number of lines read. */
1270 ds_read_config_line (struct string *st, int *line_number, FILE *stream)
1275 if (!ds_read_line (st, stream, SIZE_MAX))
1278 ds_rtrim (st, ss_cstr (CC_SPACES));
1280 while (ds_chomp (st, '\\'));
1282 remove_comment (st);
1286 /* Attempts to read SIZE * CNT bytes from STREAM and append them
1288 Returns true if all the requested data was read, false otherwise. */
1290 ds_read_stream (struct string *st, size_t size, size_t cnt, FILE *stream)
1294 size_t try_bytes = xtimes (cnt, size);
1295 if (size_in_bounds_p (xsum (ds_length (st), try_bytes)))
1297 char *buffer = ds_put_uninit (st, try_bytes);
1298 size_t got_bytes = fread (buffer, 1, try_bytes, stream);
1299 ds_truncate (st, ds_length (st) - (try_bytes - got_bytes));
1300 return got_bytes == try_bytes;
1312 /* Concatenates S onto ST. */
1314 ds_put_cstr (struct string *st, const char *s)
1317 ds_put_substring (st, ss_cstr (s));
1320 /* Concatenates SS to ST. */
1322 ds_put_substring (struct string *st, struct substring ss)
1324 memcpy (ds_put_uninit (st, ss_length (ss)), ss_data (ss), ss_length (ss));
1327 /* Returns ds_end(ST) and THEN increases the length by INCR. */
1329 ds_put_uninit (struct string *st, size_t incr)
1332 ds_extend (st, ds_length (st) + incr);
1334 st->ss.length += incr;
1338 /* Formats FORMAT as a printf string and appends the result to ST. */
1340 ds_put_format (struct string *st, const char *format, ...)
1344 va_start (args, format);
1345 ds_put_vformat (st, format, args);
1349 /* Formats FORMAT as a printf string and appends the result to ST. */
1351 ds_put_vformat (struct string *st, const char *format, va_list args_)
1356 va_copy (args, args_);
1357 avail = st->ss.string != NULL ? st->capacity - st->ss.length + 1 : 0;
1358 needed = vsnprintf (st->ss.string + st->ss.length, avail, format, args);
1361 if (needed >= avail)
1363 va_copy (args, args_);
1364 vsprintf (ds_put_uninit (st, needed), format, args);
1369 /* Some old libc's returned -1 when the destination string
1371 while (needed == -1)
1373 ds_extend (st, (st->capacity + 1) * 2);
1374 avail = st->capacity - st->ss.length + 1;
1376 va_copy (args, args_);
1377 needed = vsnprintf (ds_end (st), avail, format, args);
1380 st->ss.length += needed;
1384 /* Appends character CH to ST. */
1386 ds_put_char (struct string *st, int ch)
1388 ds_put_uninit (st, 1)[0] = ch;
1391 /* Appends CNT copies of character CH to ST. */
1393 ds_put_char_multiple (struct string *st, int ch, size_t cnt)
1395 memset (ds_put_uninit (st, cnt), ch, cnt);
1399 /* If relocation has been enabled, replace ST,
1400 with its relocated version */
1402 ds_relocate (struct string *st)
1404 const char *orig = ds_cstr (st);
1405 const char *rel = relocate (orig);
1410 ds_put_cstr (st, rel);
1411 free ((char *) rel);