1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
28 #include <libpspp/alloc.h>
29 #include <libpspp/message.h>
30 #include <libpspp/pool.h>
36 /* Reverses the order of NBYTES bytes at address P, thus converting
37 between little- and big-endian byte orders. */
39 buf_reverse (char *p, size_t nbytes)
41 char *h = p, *t = &h[nbytes - 1];
53 /* Finds the last NEEDLE of length NEEDLE_LEN in a HAYSTACK of length
54 HAYSTACK_LEN. Returns a pointer to the needle found. */
56 buf_find_reverse (const char *haystack, size_t haystack_len,
57 const char *needle, size_t needle_len)
60 for (i = haystack_len - needle_len; i >= 0; i--)
61 if (!memcmp (needle, &haystack[i], needle_len))
62 return (char *) &haystack[i];
66 /* Compares the SIZE bytes in A to those in B, disregarding case,
67 and returns a strcmp()-type result. */
69 buf_compare_case (const char *a_, const char *b_, size_t size)
71 const unsigned char *a = (unsigned char *) a_;
72 const unsigned char *b = (unsigned char *) b_;
76 unsigned char ac = toupper (*a++);
77 unsigned char bc = toupper (*b++);
80 return ac > bc ? 1 : -1;
86 /* Compares A of length A_LEN to B of length B_LEN. The shorter
87 string is considered to be padded with spaces to the length of
90 buf_compare_rpad (const char *a, size_t a_len, const char *b, size_t b_len)
95 min_len = a_len < b_len ? a_len : b_len;
96 result = memcmp (a, b, min_len);
105 for (idx = min_len; idx < b_len; idx++)
107 return ' ' > b[idx] ? 1 : -1;
111 for (idx = min_len; idx < a_len; idx++)
113 return a[idx] > ' ' ? 1 : -1;
119 /* Compares strin A to string B. The shorter string is
120 considered to be padded with spaces to the length of the
123 str_compare_rpad (const char *a, const char *b)
125 return buf_compare_rpad (a, strlen (a), b, strlen (b));
128 /* Copies string SRC to buffer DST, of size DST_SIZE bytes.
129 DST is truncated to DST_SIZE bytes or padded on the right with
132 buf_copy_str_rpad (char *dst, size_t dst_size, const char *src)
134 size_t src_len = strlen (src);
135 if (src_len >= dst_size)
136 memcpy (dst, src, dst_size);
139 memcpy (dst, src, src_len);
140 memset (&dst[src_len], ' ', dst_size - src_len);
144 /* Copies string SRC to buffer DST, of size DST_SIZE bytes.
145 DST is truncated to DST_SIZE bytes or padded on the left with
148 buf_copy_str_lpad (char *dst, size_t dst_size, const char *src)
150 size_t src_len = strlen (src);
151 if (src_len >= dst_size)
152 memcpy (dst, src, dst_size);
155 size_t pad_cnt = dst_size - src_len;
156 memset (&dst[0], ' ', pad_cnt);
157 memcpy (dst + pad_cnt, src, src_len);
161 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
162 DST is truncated to DST_SIZE bytes or padded on the left with
165 buf_copy_lpad (char *dst, size_t dst_size,
166 const char *src, size_t src_size)
168 if (src_size >= dst_size)
169 memmove (dst, src, dst_size);
172 memset (dst, ' ', dst_size - src_size);
173 memmove (&dst[dst_size - src_size], src, src_size);
177 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
178 DST is truncated to DST_SIZE bytes or padded on the right with
181 buf_copy_rpad (char *dst, size_t dst_size,
182 const char *src, size_t src_size)
184 if (src_size >= dst_size)
185 memmove (dst, src, dst_size);
188 memmove (dst, src, src_size);
189 memset (&dst[src_size], ' ', dst_size - src_size);
193 /* Copies string SRC to string DST, which is in a buffer DST_SIZE
195 Truncates DST to DST_SIZE - 1 characters or right-pads with
196 spaces to DST_SIZE - 1 characters if necessary. */
198 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;
211 /* Copies SRC to DST, which is in a buffer DST_SIZE bytes long.
212 Truncates DST to DST_SIZE - 1 characters, if necessary. */
214 str_copy_trunc (char *dst, size_t dst_size, const char *src)
216 size_t src_len = strlen (src);
217 assert (dst_size > 0);
218 if (src_len + 1 < dst_size)
219 memcpy (dst, src, src_len + 1);
222 memcpy (dst, src, dst_size - 1);
223 dst[dst_size - 1] = '\0';
227 /* Copies buffer SRC, of SRC_LEN bytes,
228 to DST, which is in a buffer DST_SIZE bytes long.
229 Truncates DST to DST_SIZE - 1 characters, if necessary. */
231 str_copy_buf_trunc (char *dst, size_t dst_size,
232 const char *src, size_t src_size)
235 assert (dst_size > 0);
237 dst_len = src_size < dst_size ? src_size : dst_size - 1;
238 memcpy (dst, src, dst_len);
242 /* Converts each character in S to uppercase. */
244 str_uppercase (char *s)
246 for (; *s != '\0'; s++)
247 *s = toupper ((unsigned char) *s);
250 /* Converts each character in S to lowercase. */
252 str_lowercase (char *s)
254 for (; *s != '\0'; s++)
255 *s = tolower ((unsigned char) *s);
258 /* Formats FORMAT into DST, as with sprintf(), and returns the
259 address of the terminating null written to DST. */
261 spprintf (char *dst, const char *format, ...)
266 va_start (args, format);
267 count = vsprintf (dst, format, args);
273 /* Sets the SIZE bytes starting at BLOCK to C,
274 and returns the byte following BLOCK. */
276 mempset (void *block, int c, size_t size)
278 memset (block, c, size);
279 return (char *) block + size;
284 /* Returns an empty substring. */
294 /* Returns a substring whose contents are the given C-style
297 ss_cstr (const char *cstr)
299 return ss_buffer (cstr, strlen (cstr));
302 /* Returns a substring whose contents are the CNT characters in
305 ss_buffer (const char *buffer, size_t cnt)
308 ss.string = (char *) buffer;
313 /* Returns a substring whose contents are the CNT characters
314 starting at the (0-based) position START in SS. */
316 ss_substr (struct substring ss, size_t start, size_t cnt)
318 if (start < ss.length)
319 return ss_buffer (ss.string + start, MIN (cnt, ss.length - start));
321 return ss_buffer (ss.string + ss.length, 0);
324 /* Returns a substring whose contents are the first CNT
327 ss_head (struct substring ss, size_t cnt)
329 return ss_buffer (ss.string, MIN (cnt, ss.length));
332 /* Returns a substring whose contents are the last CNT characters
335 ss_tail (struct substring ss, size_t cnt)
338 return ss_buffer (ss.string + (ss.length - cnt), cnt);
343 /* Makes a malloc()'d copy of the contents of OLD
344 and stores it in NEW. */
346 ss_alloc_substring (struct substring *new, struct substring old)
348 new->string = xmalloc (old.length);
349 new->length = old.length;
350 memcpy (new->string, old.string, old.length);
353 /* Allocates room for a CNT-character string in NEW. */
355 ss_alloc_uninit (struct substring *new, size_t cnt)
357 new->string = xmalloc (cnt);
361 /* Frees the string that SS points to. */
363 ss_dealloc (struct substring *ss)
368 /* Truncates SS to at most CNT characters in length. */
370 ss_truncate (struct substring *ss, size_t cnt)
372 if (ss->length > cnt)
376 /* Removes trailing characters in TRIM_SET from SS.
377 Returns number of characters removed. */
379 ss_rtrim (struct substring *ss, struct substring trim_set)
382 while (cnt < ss->length
383 && ss_find_char (trim_set,
384 ss->string[ss->length - cnt - 1]) != SIZE_MAX)
390 /* Removes leading characters in TRIM_SET from SS.
391 Returns number of characters removed. */
393 ss_ltrim (struct substring *ss, struct substring trim_set)
395 size_t cnt = ss_span (*ss, trim_set);
396 ss_advance (ss, cnt);
400 /* Trims leading and trailing characters in TRIM_SET from SS. */
402 ss_trim (struct substring *ss, struct substring trim_set)
404 ss_ltrim (ss, trim_set);
405 ss_rtrim (ss, trim_set);
408 /* If the last character in SS is C, removes it and returns true.
409 Otherwise, returns false without changing the string. */
411 ss_chomp (struct substring *ss, char c)
413 if (ss_last (*ss) == c)
422 /* Divides SS into tokens separated by any of the DELIMITERS.
423 Each call replaces TOKEN by the next token in SS, or by an
424 empty string if no tokens remain. Returns true if a token was
425 obtained, false otherwise.
427 Before the first call, initialize *SAVE_IDX to 0. Do not
428 modify *SAVE_IDX between calls.
430 SS divides into exactly one more tokens than it contains
431 delimiters. That is, a delimiter at the start or end of SS or
432 a pair of adjacent delimiters yields an empty token, and the
433 empty string contains a single token. */
435 ss_separate (struct substring ss, struct substring delimiters,
436 size_t *save_idx, struct substring *token)
438 if (*save_idx <= ss_length (ss))
440 struct substring tmp = ss_substr (ss, *save_idx, SIZE_MAX);
441 size_t length = ss_cspan (tmp, delimiters);
442 *token = ss_head (tmp, length);
443 *save_idx += length + 1;
448 *token = ss_empty ();
453 /* Divides SS into tokens separated by any of the DELIMITERS,
454 merging adjacent delimiters so that the empty string is never
455 produced as a token. Each call replaces TOKEN by the next
456 token in SS, or by an empty string if no tokens remain.
457 Returns true if a token was obtained, false otherwise.
459 Before the first call, initialize *SAVE_IDX to 0. Do not
460 modify *SAVE_IDX between calls. */
462 ss_tokenize (struct substring ss, struct substring delimiters,
463 size_t *save_idx, struct substring *token)
465 ss_advance (&ss, *save_idx);
466 *save_idx += ss_ltrim (&ss, delimiters);
467 *save_idx += ss_get_chars (&ss, ss_cspan (ss, delimiters), token);
468 return ss_length (*token) > 0;
471 /* Removes the first CNT characters from SS. */
473 ss_advance (struct substring *ss, size_t cnt)
475 if (cnt > ss->length)
481 /* If the first character in SS is C, removes it and returns true.
482 Otherwise, returns false without changing the string. */
484 ss_match_char (struct substring *ss, char c)
486 if (ss_first (*ss) == c)
496 /* Removes the first character from SS and returns it.
497 If SS is empty, returns EOF without modifying SS. */
499 ss_get_char (struct substring *ss)
501 int c = ss_first (*ss);
510 /* Stores the prefix of SS up to the first DELIMITER in OUT (if
511 any). Trims those same characters from SS. DELIMITER is
512 removed from SS but not made part of OUT. Returns true if
513 DELIMITER was found (and removed), false otherwise. */
515 ss_get_until (struct substring *ss, char delimiter, struct substring *out)
517 ss_get_chars (ss, ss_cspan (*ss, ss_buffer (&delimiter, 1)), out);
518 return ss_match_char (ss, delimiter);
521 /* Stores the first CNT characters in SS in OUT (or fewer, if SS
522 is shorter than CNT characters). Trims the same characters
523 from the beginning of SS. Returns CNT. */
525 ss_get_chars (struct substring *ss, size_t cnt, struct substring *out)
527 *out = ss_head (*ss, cnt);
528 ss_advance (ss, cnt);
532 /* Returns true if SS is empty (contains no characters),
535 ss_is_empty (struct substring ss)
537 return ss.length == 0;
540 /* Returns the number of characters in SS. */
542 ss_length (struct substring ss)
547 /* Returns a pointer to the characters in SS. */
549 ss_data (struct substring ss)
554 /* Returns a pointer just past the last character in SS. */
556 ss_end (struct substring ss)
558 return ss.string + ss.length;
561 /* Returns the character in position IDX in SS, as a value in the
562 range of unsigned char. Returns EOF if IDX is out of the
563 range of indexes for SS. */
565 ss_at (struct substring ss, size_t idx)
567 return idx < ss.length ? (unsigned char) ss.string[idx] : EOF;
570 /* Returns the first character in SS as a value in the range of
571 unsigned char. Returns EOF if SS is the empty string. */
573 ss_first (struct substring ss)
575 return ss_at (ss, 0);
578 /* Returns the last character in SS as a value in the range of
579 unsigned char. Returns EOF if SS is the empty string. */
581 ss_last (struct substring ss)
583 return ss.length > 0 ? (unsigned char) ss.string[ss.length - 1] : EOF;
586 /* Returns the number of contiguous characters at the beginning
587 of SS that are in SKIP_SET. */
589 ss_span (struct substring ss, struct substring skip_set)
592 for (i = 0; i < ss.length; i++)
593 if (ss_find_char (skip_set, ss.string[i]) == SIZE_MAX)
598 /* Returns the number of contiguous characters at the beginning
599 of SS that are not in SKIP_SET. */
601 ss_cspan (struct substring ss, struct substring stop_set)
604 for (i = 0; i < ss.length; i++)
605 if (ss_find_char (stop_set, ss.string[i]) != SIZE_MAX)
610 /* Returns the offset in SS of the first instance of C,
611 or SIZE_MAX if C does not occur in SS. */
613 ss_find_char (struct substring ss, char c)
615 const char *p = memchr (ss.string, c, ss.length);
616 return p != NULL ? p - ss.string : SIZE_MAX;
619 /* Compares A and B and returns a strcmp()-type comparison
622 ss_compare (struct substring a, struct substring b)
624 int retval = memcmp (a.string, b.string, MIN (a.length, b.length));
626 retval = a.length < b.length ? -1 : a.length > b.length;
630 /* Returns the position in SS that the character at P occupies.
631 P must point within SS or one past its end. */
633 ss_pointer_to_position (struct substring ss, const char *p)
635 size_t pos = p - ss.string;
636 assert (pos <= ss.length);
640 /* Allocates and returns a null-terminated string that contains
643 ss_xstrdup (struct substring ss)
645 char *s = xmalloc (ss.length + 1);
646 memcpy (s, ss.string, ss.length);
651 /* Initializes ST as an empty string. */
653 ds_init_empty (struct string *st)
655 st->ss = ss_empty ();
659 /* Initializes ST with initial contents S. */
661 ds_init_string (struct string *st, const struct string *s)
663 ds_init_substring (st, ds_ss (s));
666 /* Initializes ST with initial contents SS. */
668 ds_init_substring (struct string *st, struct substring ss)
670 st->capacity = MAX (8, ss.length * 2);
671 st->ss.string = xmalloc (st->capacity + 1);
672 memcpy (st->ss.string, ss.string, ss.length);
673 st->ss.length = ss.length;
676 /* Initializes ST with initial contents S. */
678 ds_init_cstr (struct string *st, const char *s)
680 ds_init_substring (st, ss_cstr (s));
685 ds_destroy (struct string *st)
689 ss_dealloc (&st->ss);
690 st->ss.string = NULL;
696 /* Swaps the contents of strings A and B. */
698 ds_swap (struct string *a, struct string *b)
700 struct string tmp = *a;
705 /* Helper function for ds_register_pool. */
707 free_string (void *st_)
709 struct string *st = st_;
713 /* Arranges for ST to be destroyed automatically as part of
716 ds_register_pool (struct string *st, struct pool *pool)
718 pool_register (pool, free_string, st);
721 /* Cancels the arrangement for ST to be destroyed automatically
724 ds_unregister_pool (struct string *st, struct pool *pool)
726 pool_unregister (pool, st);
729 /* Copies SRC into DST.
730 DST and SRC may be the same string. */
732 ds_assign_string (struct string *dst, const struct string *src)
734 ds_assign_substring (dst, ds_ss (src));
737 /* Replaces DST by SS.
738 SS may be a substring of DST. */
740 ds_assign_substring (struct string *dst, struct substring ss)
742 dst->ss.length = ss.length;
743 ds_extend (dst, ss.length);
744 memmove (dst->ss.string, ss.string, ss.length);
747 /* Replaces DST by null-terminated string SRC. SRC may overlap
750 ds_assign_cstr (struct string *dst, const char *src)
752 ds_assign_substring (dst, ss_cstr (src));
755 /* Truncates ST to zero length. */
757 ds_clear (struct string *st)
762 /* Returns a substring that contains ST. */
764 ds_ss (const struct string *st)
769 /* Returns a substring that contains CNT characters from ST
770 starting at position START.
772 If START is greater than or equal to the length of ST, then
773 the substring will be the empty string. If START + CNT
774 exceeds the length of ST, then the substring will only be
775 ds_length(ST) - START characters long. */
777 ds_substr (const struct string *st, size_t start, size_t cnt)
779 return ss_substr (ds_ss (st), start, cnt);
782 /* Returns a substring that contains the first CNT characters in
783 ST. If CNT exceeds the length of ST, then the substring will
784 contain all of ST. */
786 ds_head (const struct string *st, size_t cnt)
788 return ss_head (ds_ss (st), cnt);
791 /* Returns a substring that contains the last CNT characters in
792 ST. If CNT exceeds the length of ST, then the substring will
793 contain all of ST. */
795 ds_tail (const struct string *st, size_t cnt)
797 return ss_tail (ds_ss (st), cnt);
800 /* Ensures that ST can hold at least MIN_CAPACITY characters plus a null
803 ds_extend (struct string *st, size_t min_capacity)
805 if (min_capacity > st->capacity)
808 if (st->capacity < min_capacity)
809 st->capacity = 2 * min_capacity;
811 st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
815 /* Shrink ST to the minimum capacity need to contain its content. */
817 ds_shrink (struct string *st)
819 if (st->capacity != st->ss.length)
821 st->capacity = st->ss.length;
822 st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
826 /* Truncates ST to at most LENGTH characters long. */
828 ds_truncate (struct string *st, size_t length)
830 ss_truncate (&st->ss, length);
833 /* Removes trailing characters in TRIM_SET from ST.
834 Returns number of characters removed. */
836 ds_rtrim (struct string *st, struct substring trim_set)
838 return ss_rtrim (&st->ss, trim_set);
841 /* Removes leading characters in TRIM_SET from ST.
842 Returns number of characters removed. */
844 ds_ltrim (struct string *st, struct substring trim_set)
846 size_t cnt = ds_span (st, trim_set);
848 ds_assign_substring (st, ds_substr (st, cnt, SIZE_MAX));
852 /* Trims leading and trailing characters in TRIM_SET from ST.
853 Returns number of charactesr removed. */
855 ds_trim (struct string *st, struct substring trim_set)
857 size_t cnt = ds_rtrim (st, trim_set);
858 return cnt + ds_ltrim (st, trim_set);
861 /* If the last character in ST is C, removes it and returns true.
862 Otherwise, returns false without modifying ST. */
864 ds_chomp (struct string *st, char c)
866 return ss_chomp (&st->ss, c);
869 /* Divides ST into tokens separated by any of the DELIMITERS.
870 Each call replaces TOKEN by the next token in ST, or by an
871 empty string if no tokens remain. Returns true if a token was
872 obtained, false otherwise.
874 Before the first call, initialize *SAVE_IDX to 0. Do not
875 modify *SAVE_IDX between calls.
877 ST divides into exactly one more tokens than it contains
878 delimiters. That is, a delimiter at the start or end of ST or
879 a pair of adjacent delimiters yields an empty token, and the
880 empty string contains a single token. */
882 ds_separate (const struct string *st, struct substring delimiters,
883 size_t *save_idx, struct substring *token)
885 return ss_separate (ds_ss (st), delimiters, save_idx, token);
888 /* Divides ST into tokens separated by any of the DELIMITERS,
889 merging adjacent delimiters so that the empty string is never
890 produced as a token. Each call replaces TOKEN by the next
891 token in ST, or by an empty string if no tokens remain.
892 Returns true if a token was obtained, false otherwise.
894 Before the first call, initialize *SAVE_IDX to 0. Do not
895 modify *SAVE_IDX between calls. */
897 ds_tokenize (const struct string *st, struct substring delimiters,
898 size_t *save_idx, struct substring *token)
900 return ss_tokenize (ds_ss (st), delimiters, save_idx, token);
903 /* Pad ST on the right with copies of PAD until ST is at least
904 LENGTH characters in size. If ST is initially LENGTH
905 characters or longer, this is a no-op. */
907 ds_rpad (struct string *st, size_t length, char pad)
909 if (length > st->ss.length)
910 ds_put_char_multiple (st, pad, length - st->ss.length);
913 /* Sets the length of ST to exactly NEW_LENGTH,
914 either by truncating characters from the end,
915 or by padding on the right with PAD. */
917 ds_set_length (struct string *st, size_t new_length, char pad)
919 if (st->ss.length < new_length)
920 ds_rpad (st, new_length, pad);
922 st->ss.length = new_length;
925 /* Returns true if ST is empty, false otherwise. */
927 ds_is_empty (const struct string *st)
929 return ss_is_empty (st->ss);
932 /* Returns the length of ST. */
934 ds_length (const struct string *st)
936 return ss_length (ds_ss (st));
939 /* Returns the string data inside ST. */
941 ds_data (const struct string *st)
943 return ss_data (ds_ss (st));
946 /* Returns a pointer to the null terminator ST.
947 This might not be an actual null character unless ds_c_str() has
948 been called since the last modification to ST. */
950 ds_end (const struct string *st)
952 return ss_end (ds_ss (st));
955 /* Returns the character in position IDX in ST, as a value in the
956 range of unsigned char. Returns EOF if IDX is out of the
957 range of indexes for ST. */
959 ds_at (const struct string *st, size_t idx)
961 return ss_at (ds_ss (st), idx);
964 /* Returns the first character in ST as a value in the range of
965 unsigned char. Returns EOF if ST is the empty string. */
967 ds_first (const struct string *st)
969 return ss_first (ds_ss (st));
972 /* Returns the last character in ST as a value in the range of
973 unsigned char. Returns EOF if ST is the empty string. */
975 ds_last (const struct string *st)
977 return ss_last (ds_ss (st));
980 /* Returns the number of consecutive characters at the beginning
981 of ST that are in SKIP_SET. */
983 ds_span (const struct string *st, struct substring skip_set)
985 return ss_span (ds_ss (st), skip_set);
988 /* Returns the number of consecutive characters at the beginning
989 of ST that are not in STOP_SET. */
991 ds_cspan (const struct string *st, struct substring stop_set)
993 return ss_cspan (ds_ss (st), stop_set);
996 /* Returns the position of the first occurrence of character C in
997 ST at or after position OFS, or SIZE_MAX if there is no such
1000 ds_find_char (const struct string *st, char c)
1002 return ss_find_char (ds_ss (st), c);
1005 /* Compares A and B and returns a strcmp()-type comparison
1008 ds_compare (const struct string *a, const struct string *b)
1010 return ss_compare (ds_ss (a), ds_ss (b));
1013 /* Returns the position in ST that the character at P occupies.
1014 P must point within ST or one past its end. */
1016 ds_pointer_to_position (const struct string *st, const char *p)
1018 return ss_pointer_to_position (ds_ss (st), p);
1021 /* Allocates and returns a null-terminated string that contains
1024 ds_xstrdup (const struct string *st)
1026 return ss_xstrdup (ds_ss (st));
1029 /* Returns the allocation size of ST. */
1031 ds_capacity (const struct string *st)
1033 return st->capacity;
1036 /* Returns the value of ST as a null-terminated string. */
1038 ds_cstr (const struct string *st_)
1040 struct string *st = (struct string *) st_;
1041 if (st->ss.string == NULL)
1043 st->ss.string[st->ss.length] = '\0';
1044 return st->ss.string;
1047 /* Appends to ST a newline-terminated line read from STREAM.
1048 Newline is the last character of ST on return, unless an I/O error
1049 or end of file is encountered after reading some characters.
1050 Returns true if a line is successfully read, false if no characters at
1051 all were read before an I/O error or end of file was
1054 ds_read_line (struct string *st, FILE *stream)
1064 ds_put_char (st, c);
1074 /* Removes a comment introduced by `#' from ST,
1075 ignoring occurrences inside quoted strings. */
1077 remove_comment (struct string *st)
1082 for (cp = ds_data (st); cp < ds_end (st); cp++)
1087 else if (*cp == '\\')
1090 else if (*cp == '\'' || *cp == '"')
1092 else if (*cp == '#')
1094 ds_truncate (st, cp - ds_cstr (st));
1099 /* Reads a line from STREAM into ST, then preprocesses as follows:
1101 - Splices lines terminated with `\'.
1103 - Deletes comments introduced by `#' outside of single or double
1106 - Deletes trailing white space.
1108 Returns true if a line was successfully read, false on
1109 failure. If LINE_NUMBER is non-null, then *LINE_NUMBER is
1110 incremented by the number of lines read. */
1112 ds_read_config_line (struct string *st, int *line_number, FILE *stream)
1117 if (!ds_read_line (st, stream))
1120 ds_rtrim (st, ss_cstr (CC_SPACES));
1122 while (ds_chomp (st, '\\'));
1124 remove_comment (st);
1128 /* Attempts to read SIZE * CNT bytes from STREAM and append them
1130 Returns number of bytes actually read. */
1132 ds_read_stream (struct string *st, size_t size, size_t cnt, FILE *stream)
1136 size_t try_bytes = xtimes (cnt, size);
1137 if (size_in_bounds_p (xsum (ds_length (st), try_bytes)))
1139 char *buffer = ds_put_uninit (st, try_bytes);
1140 size_t got_bytes = fread (buffer, size, cnt, stream);
1141 ds_truncate (st, ds_length (st) - (try_bytes - got_bytes));
1148 /* Concatenates S onto ST. */
1150 ds_put_cstr (struct string *st, const char *s)
1153 ds_put_substring (st, ss_cstr (s));
1156 /* Concatenates SS to ST. */
1158 ds_put_substring (struct string *st, struct substring ss)
1160 memcpy (ds_put_uninit (st, ss_length (ss)), ss_data (ss), ss_length (ss));
1163 /* Returns ds_end(ST) and THEN increases the length by INCR. */
1165 ds_put_uninit (struct string *st, size_t incr)
1168 ds_extend (st, ds_length (st) + incr);
1170 st->ss.length += incr;
1174 /* Formats FORMAT as a printf string and appends the result to ST. */
1176 ds_put_format (struct string *st, const char *format, ...)
1180 va_start (args, format);
1181 ds_put_vformat (st, format, args);
1185 /* Formats FORMAT as a printf string and appends the result to ST. */
1187 ds_put_vformat (struct string *st, const char *format, va_list args_)
1192 va_copy (args, args_);
1193 avail = st->ss.string != NULL ? st->capacity - st->ss.length + 1 : 0;
1194 needed = vsnprintf (st->ss.string + st->ss.length, avail, format, args);
1197 if (needed >= avail)
1199 va_copy (args, args_);
1200 vsprintf (ds_put_uninit (st, needed), format, args);
1205 /* Some old libc's returned -1 when the destination string
1207 while (needed == -1)
1209 ds_extend (st, (st->capacity + 1) * 2);
1210 avail = st->capacity - st->ss.length + 1;
1212 va_copy (args, args_);
1213 needed = vsnprintf (ds_end (st), avail, format, args);
1216 st->ss.length += needed;
1220 /* Appends character CH to ST. */
1222 ds_put_char (struct string *st, int ch)
1224 ds_put_uninit (st, 1)[0] = ch;
1227 /* Appends CNT copies of character CH to ST. */
1229 ds_put_char_multiple (struct string *st, int ch, size_t cnt)
1231 memset (ds_put_uninit (st, cnt), ch, cnt);