po: Update Dutch translation.
[pspp.git] / src / libpspp / str.c
blob3fa2fbe9a75fbe48d0ed75dc48a1b32916b0ef88
1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2009, 2010, 2011, 2012, 2014 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/>. */
17 #include <config.h>
19 #include "str.h"
21 #include <ctype.h>
22 #include <errno.h>
23 #include <stdint.h>
24 #include <stdlib.h>
25 #include <unistr.h>
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"
37 #include "gl/xsize.h"
39 /* Reverses the order of NBYTES bytes at address P, thus converting
40 between little- and big-endian byte orders. */
41 void
42 buf_reverse (char *p, size_t nbytes)
44 char *h = p, *t = &h[nbytes - 1];
45 char temp;
47 nbytes /= 2;
48 while (nbytes--)
50 temp = *h;
51 *h++ = *t;
52 *t-- = temp;
56 /* Compares the SIZE bytes in A to those in B, disregarding case,
57 and returns a strcmp()-type result. */
58 int
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_;
64 while (size-- > 0)
66 unsigned char ac = toupper (*a++);
67 unsigned char bc = toupper (*b++);
69 if (ac != bc)
70 return ac > bc ? 1 : -1;
73 return 0;
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
78 the longer. */
79 int
80 buf_compare_rpad (const char *a, size_t a_len, const char *b, size_t b_len)
82 size_t min_len;
83 int result;
85 min_len = a_len < b_len ? a_len : b_len;
86 result = memcmp (a, b, min_len);
87 if (result != 0)
88 return result;
89 else
91 size_t idx;
93 if (a_len < b_len)
95 for (idx = min_len; idx < b_len; idx++)
96 if (' ' != b[idx])
97 return ' ' > b[idx] ? 1 : -1;
99 else
101 for (idx = min_len; idx < a_len; idx++)
102 if (a[idx] != ' ')
103 return a[idx] > ' ' ? 1 : -1;
105 return 0;
109 /* Compares strin A to string B. The shorter string is
110 considered to be padded with spaces to the length of the
111 longer. */
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. */
121 void
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);
127 else
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. */
137 void
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);
143 else
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. */
154 void
155 buf_copy_lpad (char *dst, size_t dst_size,
156 const char *src, size_t src_size,
157 char pad)
159 if (src_size >= dst_size)
160 memmove (dst, src, dst_size);
161 else
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. */
171 void
172 buf_copy_rpad (char *dst, size_t dst_size,
173 const char *src, size_t src_size,
174 char pad)
176 if (src_size >= dst_size)
177 memmove (dst, src, dst_size);
178 else
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
186 bytes long.
187 Truncates DST to DST_SIZE - 1 bytes or right-pads with
188 spaces to DST_SIZE - 1 bytes if necessary. */
189 void
190 str_copy_rpad (char *dst, size_t dst_size, const char *src)
192 if (dst_size > 0)
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);
200 else
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. */
208 void
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);
215 else
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. */
225 void
226 str_copy_buf_trunc (char *dst, size_t dst_size,
227 const char *src, size_t src_size)
229 size_t dst_len;
230 assert (dst_size > 0);
232 dst_len = src_size < dst_size ? src_size : dst_size - 1;
233 memcpy (dst, src, dst_len);
234 dst[dst_len] = '\0';
237 /* Converts each byte in S to uppercase.
239 This is suitable only for ASCII strings. Use utf8_to_upper() for UTF-8
240 strings.*/
241 void
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
251 strings.*/
252 void
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. Uses uppercase if UPPERCASE is
261 true, otherwise lowercase, Returns true if successful, false
262 if NUMBER, plus a trailing null, is too large to fit in the
263 available space.
265 26-adic notation is "spreadsheet column numbering": 1 = A, 2 =
266 B, 3 = C, ... 26 = Z, 27 = AA, 28 = AB, 29 = AC, ...
268 26-adic notation is the special case of a k-adic numeration
269 system (aka bijective base-k numeration) with k=26. In k-adic
270 numeration, the digits are {1, 2, 3, ..., k} (there is no
271 digit 0), and integer 0 is represented by the empty string.
272 For more information, see
273 http://en.wikipedia.org/wiki/Bijective_numeration. */
274 bool
275 str_format_26adic (unsigned long int number, bool uppercase,
276 char buffer[], size_t size)
278 const char *alphabet
279 = uppercase ? "ABCDEFGHIJKLMNOPQRSTUVWXYZ" : "abcdefghijklmnopqrstuvwxyz";
280 size_t length = 0;
282 while (number-- > 0)
284 if (length >= size)
285 goto overflow;
286 buffer[length++] = alphabet[number % 26];
287 number /= 26;
290 if (length >= size)
291 goto overflow;
292 buffer[length] = '\0';
294 buf_reverse (buffer, length);
295 return true;
297 overflow:
298 if (length > 0)
299 buffer[0] = '\0';
300 return false;
303 /* Sets the SIZE bytes starting at BLOCK to C,
304 and returns the byte following BLOCK. */
305 void *
306 mempset (void *block, int c, size_t size)
308 memset (block, c, size);
309 return (char *) block + size;
312 /* Substrings. */
314 /* Returns a substring whose contents are the CNT bytes
315 starting at the (0-based) position START in SS. */
316 struct substring
317 ss_substr (struct substring ss, size_t start, size_t cnt)
319 if (start < ss.length)
320 return ss_buffer (ss.string + start, MIN (cnt, ss.length - start));
321 else
322 return ss_buffer (ss.string + ss.length, 0);
325 /* Returns a substring whose contents are the first CNT
326 bytes in SS. */
327 struct substring
328 ss_head (struct substring ss, size_t cnt)
330 return ss_buffer (ss.string, MIN (cnt, ss.length));
333 /* Returns a substring whose contents are the last CNT bytes
334 in SS. */
335 struct substring
336 ss_tail (struct substring ss, size_t cnt)
338 if (cnt < ss.length)
339 return ss_buffer (ss.string + (ss.length - cnt), cnt);
340 else
341 return ss;
344 /* Makes a malloc()'d, null-terminated copy of the contents of OLD
345 and stores it in NEW. */
346 void
347 ss_alloc_substring (struct substring *new, struct substring old)
349 new->string = xmemdup0 (old.string, old.length);
350 new->length = old.length;
353 /* Allocates room for a CNT-byte string in NEW. */
354 void
355 ss_alloc_uninit (struct substring *new, size_t cnt)
357 new->string = xmalloc (cnt);
358 new->length = cnt;
361 void
362 ss_realloc (struct substring *ss, size_t size)
364 ss->string = xrealloc (ss->string, size);
367 /* Makes a pool_alloc_unaligned()'d, null-terminated copy of the contents of
368 OLD in POOL, and stores it in NEW. */
369 void
370 ss_alloc_substring_pool (struct substring *new, struct substring old,
371 struct pool *pool)
373 new->string = pool_alloc_unaligned (pool, old.length + 1);
374 new->length = old.length;
375 memcpy (new->string, old.string, old.length);
376 new->string[old.length] = '\0';
379 /* Allocates room for a CNT-byte string in NEW in POOL. */
380 void
381 ss_alloc_uninit_pool (struct substring *new, size_t cnt, struct pool *pool)
383 new->string = pool_alloc_unaligned (pool, cnt);
384 new->length = cnt;
387 /* Frees the string that SS points to. */
388 void
389 ss_dealloc (struct substring *ss)
391 free (ss->string);
394 /* Truncates SS to at most CNT bytes in length. */
395 void
396 ss_truncate (struct substring *ss, size_t cnt)
398 if (ss->length > cnt)
399 ss->length = cnt;
402 /* Removes trailing bytes in TRIM_SET from SS.
403 Returns number of bytes removed. */
404 size_t
405 ss_rtrim (struct substring *ss, struct substring trim_set)
407 size_t cnt = 0;
408 while (cnt < ss->length
409 && ss_find_byte (trim_set,
410 ss->string[ss->length - cnt - 1]) != SIZE_MAX)
411 cnt++;
412 ss->length -= cnt;
413 return cnt;
416 /* Removes leading bytes in TRIM_SET from SS.
417 Returns number of bytes removed. */
418 size_t
419 ss_ltrim (struct substring *ss, struct substring trim_set)
421 size_t cnt = ss_span (*ss, trim_set);
422 ss_advance (ss, cnt);
423 return cnt;
426 /* Trims leading and trailing bytes in TRIM_SET from SS. */
427 void
428 ss_trim (struct substring *ss, struct substring trim_set)
430 ss_ltrim (ss, trim_set);
431 ss_rtrim (ss, trim_set);
434 /* If the last byte in SS is C, removes it and returns true.
435 Otherwise, returns false without changing the string. */
436 bool
437 ss_chomp_byte (struct substring *ss, char c)
439 if (ss_last (*ss) == c)
441 ss->length--;
442 return true;
444 else
445 return false;
448 /* If SS ends with SUFFIX, removes it and returns true.
449 Otherwise, returns false without changing the string. */
450 bool
451 ss_chomp (struct substring *ss, struct substring suffix)
453 if (ss_ends_with (*ss, suffix))
455 ss->length -= suffix.length;
456 return true;
458 else
459 return false;
462 /* Divides SS into tokens separated by any of the DELIMITERS.
463 Each call replaces TOKEN by the next token in SS, or by an
464 empty string if no tokens remain. Returns true if a token was
465 obtained, false otherwise.
467 Before the first call, initialize *SAVE_IDX to 0. Do not
468 modify *SAVE_IDX between calls.
470 SS divides into exactly one more tokens than it contains
471 delimiters. That is, a delimiter at the start or end of SS or
472 a pair of adjacent delimiters yields an empty token, and the
473 empty string contains a single token. */
474 bool
475 ss_separate (struct substring ss, struct substring delimiters,
476 size_t *save_idx, struct substring *token)
478 if (*save_idx <= ss_length (ss))
480 struct substring tmp = ss_substr (ss, *save_idx, SIZE_MAX);
481 size_t length = ss_cspan (tmp, delimiters);
482 *token = ss_head (tmp, length);
483 *save_idx += length + 1;
484 return true;
486 else
488 *token = ss_empty ();
489 return false;
493 /* Divides SS into tokens separated by any of the DELIMITERS,
494 merging adjacent delimiters so that the empty string is never
495 produced as a token. Each call replaces TOKEN by the next
496 token in SS, or by an empty string if no tokens remain, and
497 then skips past the first delimiter following the token.
498 Returns true if a token was obtained, false otherwise.
500 Before the first call, initialize *SAVE_IDX to 0. Do not
501 modify *SAVE_IDX between calls. */
502 bool
503 ss_tokenize (struct substring ss, struct substring delimiters,
504 size_t *save_idx, struct substring *token)
506 bool found_token;
508 ss_advance (&ss, *save_idx);
509 *save_idx += ss_ltrim (&ss, delimiters);
510 ss_get_bytes (&ss, ss_cspan (ss, delimiters), token);
512 found_token = ss_length (*token) > 0;
513 *save_idx += ss_length (*token) + found_token;
514 return found_token;
517 /* Removes the first CNT bytes from SS. */
518 void
519 ss_advance (struct substring *ss, size_t cnt)
521 if (cnt > ss->length)
522 cnt = ss->length;
523 ss->string += cnt;
524 ss->length -= cnt;
527 /* If the first byte in SS is C, removes it and returns true.
528 Otherwise, returns false without changing the string. */
529 bool
530 ss_match_byte (struct substring *ss, char c)
532 if (ss_first (*ss) == c)
534 ss->string++;
535 ss->length--;
536 return true;
538 else
539 return false;
542 /* If the first byte in SS is in MATCH, removes it and
543 returns the byte that was removed.
544 Otherwise, returns EOF without changing the string. */
546 ss_match_byte_in (struct substring *ss, struct substring match)
548 int c = EOF;
549 if (ss->length > 0
550 && memchr (match.string, ss->string[0], match.length) != NULL)
552 c = ss->string[0];
553 ss->string++;
554 ss->length--;
556 return c;
559 /* If SS begins with TARGET, removes it and returns true.
560 Otherwise, returns false without changing SS. */
561 bool
562 ss_match_string (struct substring *ss, const struct substring target)
564 size_t length = ss_length (target);
565 if (ss_equals (ss_head (*ss, length), target))
567 ss_advance (ss, length);
568 return true;
570 else
571 return false;
574 /* Removes the first byte from SS and returns it.
575 If SS is empty, returns EOF without modifying SS. */
577 ss_get_byte (struct substring *ss)
579 int c = ss_first (*ss);
580 if (c != EOF)
582 ss->string++;
583 ss->length--;
585 return c;
588 /* Stores the prefix of SS up to the first DELIMITER in OUT (if
589 any). Trims those same bytes from SS. DELIMITER is
590 removed from SS but not made part of OUT. Returns true if
591 DELIMITER was found (and removed), false otherwise. */
592 bool
593 ss_get_until (struct substring *ss, char delimiter, struct substring *out)
595 ss_get_bytes (ss, ss_cspan (*ss, ss_buffer (&delimiter, 1)), out);
596 return ss_match_byte (ss, delimiter);
599 /* Stores the first CNT bytes in SS in OUT (or fewer, if SS
600 is shorter than CNT bytes). Trims the same bytes
601 from the beginning of SS. Returns CNT. */
602 size_t
603 ss_get_bytes (struct substring *ss, size_t cnt, struct substring *out)
605 *out = ss_head (*ss, cnt);
606 ss_advance (ss, cnt);
607 return cnt;
610 /* Parses and removes an optionally signed decimal integer from
611 the beginning of SS. Returns 0 if an error occurred,
612 otherwise the number of bytes removed from SS. Stores
613 the integer's value into *VALUE. */
614 size_t
615 ss_get_long (struct substring *ss, long *value)
617 char tmp[64];
618 size_t length;
620 length = ss_span (*ss, ss_cstr ("+-"));
621 length += ss_span (ss_substr (*ss, length, SIZE_MAX), ss_cstr (CC_DIGITS));
622 if (length > 0 && length < sizeof tmp)
624 char *tail;
626 memcpy (tmp, ss_data (*ss), length);
627 tmp[length] = '\0';
629 *value = strtol (tmp, &tail, 10);
630 if (tail - tmp == length)
632 ss_advance (ss, length);
633 return length;
636 *value = 0;
637 return 0;
640 /* Returns true if SS is empty (has length 0 bytes),
641 false otherwise. */
642 bool
643 ss_is_empty (struct substring ss)
645 return ss.length == 0;
648 /* Returns the number of bytes in SS. */
649 size_t
650 ss_length (struct substring ss)
652 return ss.length;
655 /* Returns a pointer to the bytes in SS. */
656 char *
657 ss_data (struct substring ss)
659 return ss.string;
662 /* Returns a pointer just past the last byte in SS. */
663 char *
664 ss_end (struct substring ss)
666 return ss.string + ss.length;
669 /* Returns the byte in position IDX in SS, as a value in the
670 range of unsigned char. Returns EOF if IDX is out of the
671 range of indexes for SS. */
673 ss_at (struct substring ss, size_t idx)
675 return idx < ss.length ? (unsigned char) ss.string[idx] : EOF;
678 /* Returns the first byte in SS as a value in the range of
679 unsigned char. Returns EOF if SS is the empty string. */
681 ss_first (struct substring ss)
683 return ss_at (ss, 0);
686 /* Returns the last byte in SS as a value in the range of
687 unsigned char. Returns EOF if SS is the empty string. */
689 ss_last (struct substring ss)
691 return ss.length > 0 ? (unsigned char) ss.string[ss.length - 1] : EOF;
694 /* Returns true if SS ends with SUFFIX, false otherwise. */
695 bool
696 ss_ends_with (struct substring ss, struct substring suffix)
698 return (ss.length >= suffix.length
699 && !memcmp (&ss.string[ss.length - suffix.length], suffix.string,
700 suffix.length));
703 /* Returns the number of contiguous bytes at the beginning
704 of SS that are in SKIP_SET. */
705 size_t
706 ss_span (struct substring ss, struct substring skip_set)
708 size_t i;
709 for (i = 0; i < ss.length; i++)
710 if (ss_find_byte (skip_set, ss.string[i]) == SIZE_MAX)
711 break;
712 return i;
715 /* Returns the number of contiguous bytes at the beginning
716 of SS that are not in SKIP_SET. */
717 size_t
718 ss_cspan (struct substring ss, struct substring stop_set)
720 size_t i;
721 for (i = 0; i < ss.length; i++)
722 if (ss_find_byte (stop_set, ss.string[i]) != SIZE_MAX)
723 break;
724 return i;
727 /* Returns the offset in SS of the first instance of C,
728 or SIZE_MAX if C does not occur in SS. */
729 size_t
730 ss_find_byte (struct substring ss, char c)
732 const char *p = memchr (ss.string, c, ss.length);
733 return p != NULL ? p - ss.string : SIZE_MAX;
736 /* Compares A and B and returns a strcmp()-type comparison
737 result. */
739 ss_compare (struct substring a, struct substring b)
741 int retval = memcmp (a.string, b.string, MIN (a.length, b.length));
742 if (retval == 0)
743 retval = a.length < b.length ? -1 : a.length > b.length;
744 return retval;
747 /* Compares A and B case-insensitively and returns a
748 strcmp()-type comparison result. */
750 ss_compare_case (struct substring a, struct substring b)
752 int retval = memcasecmp (a.string, b.string, MIN (a.length, b.length));
753 if (retval == 0)
754 retval = a.length < b.length ? -1 : a.length > b.length;
755 return retval;
758 /* Compares A and B and returns true if their contents are
759 identical, false otherwise. */
761 ss_equals (struct substring a, struct substring b)
763 return a.length == b.length && !memcmp (a.string, b.string, a.length);
766 /* Compares A and B and returns true if their contents are
767 identical except possibly for case differences, false
768 otherwise. */
770 ss_equals_case (struct substring a, struct substring b)
772 return a.length == b.length && !memcasecmp (a.string, b.string, a.length);
775 /* Returns the position in SS that the byte at P occupies.
776 P must point within SS or one past its end. */
777 size_t
778 ss_pointer_to_position (struct substring ss, const char *p)
780 size_t pos = p - ss.string;
781 assert (pos <= ss.length);
782 return pos;
785 /* Allocates and returns a null-terminated string that contains
786 SS. */
787 char *
788 ss_xstrdup (struct substring ss)
790 char *s = xmalloc (ss.length + 1);
791 memcpy (s, ss.string, ss.length);
792 s[ss.length] = '\0';
793 return s;
795 /* UTF-8. */
797 /* Returns the character represented by the UTF-8 sequence at the start of S.
798 The return value is either a Unicode code point in the range 0 to 0x10ffff,
799 or UINT32_MAX if S is empty. */
800 ucs4_t
801 ss_first_mb (struct substring s)
803 return ss_at_mb (s, 0);
806 /* Returns the number of bytes in the UTF-8 character at the beginning of S.
808 The return value is 0 if S is empty, otherwise between 1 and 4. */
810 ss_first_mblen (struct substring s)
812 return ss_at_mblen (s, 0);
815 /* Advances S past the UTF-8 character at its beginning. Returns the Unicode
816 code point that was skipped (in the range 0 to 0x10ffff), or UINT32_MAX if S
817 was not modified because it was initially empty. */
818 ucs4_t
819 ss_get_mb (struct substring *s)
821 if (s->length > 0)
823 ucs4_t uc;
824 int n;
826 n = u8_mbtouc (&uc, CHAR_CAST (const uint8_t *, s->string), s->length);
827 s->string += n;
828 s->length -= n;
829 return uc;
831 else
832 return UINT32_MAX;
835 /* Returns the character represented by the UTF-8 sequence starting OFS bytes
836 into S. The return value is either a Unicode code point in the range 0 to
837 0x10ffff, or UINT32_MAX if OFS is past the last byte in S.
839 (Returns 0xfffd if OFS points into the middle, not the beginning, of a UTF-8
840 sequence.) */
841 ucs4_t
842 ss_at_mb (struct substring s, size_t ofs)
844 if (s.length > ofs)
846 ucs4_t uc;
847 u8_mbtouc (&uc, CHAR_CAST (const uint8_t *, s.string + ofs),
848 s.length - ofs);
849 return uc;
851 else
852 return UINT32_MAX;
855 /* Returns the number of bytes represented by the UTF-8 sequence starting OFS
856 bytes into S. The return value is 0 if OFS is past the last byte in S,
857 otherwise between 1 and 4. */
859 ss_at_mblen (struct substring s, size_t ofs)
861 if (s.length > ofs)
863 ucs4_t uc;
864 return u8_mbtouc (&uc, CHAR_CAST (const uint8_t *, s.string + ofs),
865 s.length - ofs);
867 else
868 return 0;
871 /* Initializes ST as an empty string. */
872 void
873 ds_init_empty (struct string *st)
875 st->ss = ss_empty ();
876 st->capacity = 0;
879 /* Initializes ST with initial contents S. */
880 void
881 ds_init_string (struct string *st, const struct string *s)
883 ds_init_substring (st, ds_ss (s));
886 /* Initializes ST with initial contents SS. */
887 void
888 ds_init_substring (struct string *st, struct substring ss)
890 st->capacity = MAX (8, ss.length * 2);
891 st->ss.string = xmalloc (st->capacity + 1);
892 memcpy (st->ss.string, ss.string, ss.length);
893 st->ss.length = ss.length;
896 /* Initializes ST with initial contents S. */
897 void
898 ds_init_cstr (struct string *st, const char *s)
900 ds_init_substring (st, ss_cstr (s));
903 /* Frees ST. */
904 void
905 ds_destroy (struct string *st)
907 if (st != NULL)
909 ss_dealloc (&st->ss);
910 st->ss.string = NULL;
911 st->ss.length = 0;
912 st->capacity = 0;
916 /* Swaps the contents of strings A and B. */
917 void
918 ds_swap (struct string *a, struct string *b)
920 struct string tmp = *a;
921 *a = *b;
922 *b = tmp;
925 /* Helper function for ds_register_pool. */
926 static void
927 free_string (void *st_)
929 struct string *st = st_;
930 ds_destroy (st);
933 /* Arranges for ST to be destroyed automatically as part of
934 POOL. */
935 void
936 ds_register_pool (struct string *st, struct pool *pool)
938 pool_register (pool, free_string, st);
941 /* Cancels the arrangement for ST to be destroyed automatically
942 as part of POOL. */
943 void
944 ds_unregister_pool (struct string *st, struct pool *pool)
946 pool_unregister (pool, st);
949 /* Copies SRC into DST.
950 DST and SRC may be the same string. */
951 void
952 ds_assign_string (struct string *dst, const struct string *src)
954 ds_assign_substring (dst, ds_ss (src));
957 /* Replaces DST by SS.
958 SS may be a substring of DST. */
959 void
960 ds_assign_substring (struct string *dst, struct substring ss)
962 dst->ss.length = ss.length;
963 ds_extend (dst, ss.length);
964 memmove (dst->ss.string, ss.string, ss.length);
967 /* Replaces DST by null-terminated string SRC. SRC may overlap
968 with DST. */
969 void
970 ds_assign_cstr (struct string *dst, const char *src)
972 ds_assign_substring (dst, ss_cstr (src));
975 /* Truncates ST to zero length. */
976 void
977 ds_clear (struct string *st)
979 st->ss.length = 0;
982 /* Returns a substring that contains ST. */
983 struct substring
984 ds_ss (const struct string *st)
986 return st->ss;
989 /* Returns a substring that contains CNT bytes from ST
990 starting at position START.
992 If START is greater than or equal to the length of ST, then
993 the substring will be the empty string. If START + CNT
994 exceeds the length of ST, then the substring will only be
995 ds_length(ST) - START bytes long. */
996 struct substring
997 ds_substr (const struct string *st, size_t start, size_t cnt)
999 return ss_substr (ds_ss (st), start, cnt);
1002 /* Returns a substring that contains the first CNT bytes in
1003 ST. If CNT exceeds the length of ST, then the substring will
1004 contain all of ST. */
1005 struct substring
1006 ds_head (const struct string *st, size_t cnt)
1008 return ss_head (ds_ss (st), cnt);
1011 /* Returns a substring that contains the last CNT bytes in
1012 ST. If CNT exceeds the length of ST, then the substring will
1013 contain all of ST. */
1014 struct substring
1015 ds_tail (const struct string *st, size_t cnt)
1017 return ss_tail (ds_ss (st), cnt);
1020 /* Ensures that ST can hold at least MIN_CAPACITY bytes plus a null
1021 terminator. */
1022 void
1023 ds_extend (struct string *st, size_t min_capacity)
1025 if (min_capacity > st->capacity)
1027 st->capacity *= 2;
1028 if (st->capacity < min_capacity)
1029 st->capacity = 2 * min_capacity;
1031 st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
1035 /* Shrink ST to the minimum capacity need to contain its content. */
1036 void
1037 ds_shrink (struct string *st)
1039 if (st->capacity != st->ss.length)
1041 st->capacity = st->ss.length;
1042 st->ss.string = xrealloc (st->ss.string, st->capacity + 1);
1046 /* Truncates ST to at most LENGTH bytes long. */
1047 void
1048 ds_truncate (struct string *st, size_t length)
1050 ss_truncate (&st->ss, length);
1053 /* Removes trailing bytes in TRIM_SET from ST.
1054 Returns number of bytes removed. */
1055 size_t
1056 ds_rtrim (struct string *st, struct substring trim_set)
1058 return ss_rtrim (&st->ss, trim_set);
1061 /* Removes leading bytes in TRIM_SET from ST.
1062 Returns number of bytes removed. */
1063 size_t
1064 ds_ltrim (struct string *st, struct substring trim_set)
1066 size_t cnt = ds_span (st, trim_set);
1067 if (cnt > 0)
1068 ds_assign_substring (st, ds_substr (st, cnt, SIZE_MAX));
1069 return cnt;
1072 /* Trims leading and trailing bytes in TRIM_SET from ST.
1073 Returns number of bytes removed. */
1074 size_t
1075 ds_trim (struct string *st, struct substring trim_set)
1077 size_t cnt = ds_rtrim (st, trim_set);
1078 return cnt + ds_ltrim (st, trim_set);
1081 /* If the last byte in ST is C, removes it and returns true.
1082 Otherwise, returns false without modifying ST. */
1083 bool
1084 ds_chomp_byte (struct string *st, char c)
1086 return ss_chomp_byte (&st->ss, c);
1089 /* If ST ends with SUFFIX, removes it and returns true.
1090 Otherwise, returns false without modifying ST. */
1091 bool
1092 ds_chomp (struct string *st, struct substring suffix)
1094 return ss_chomp (&st->ss, suffix);
1097 /* Divides ST into tokens separated by any of the DELIMITERS.
1098 Each call replaces TOKEN by the next token in ST, or by an
1099 empty string if no tokens remain. Returns true if a token was
1100 obtained, false otherwise.
1102 Before the first call, initialize *SAVE_IDX to 0. Do not
1103 modify *SAVE_IDX between calls.
1105 ST divides into exactly one more tokens than it contains
1106 delimiters. That is, a delimiter at the start or end of ST or
1107 a pair of adjacent delimiters yields an empty token, and the
1108 empty string contains a single token. */
1109 bool
1110 ds_separate (const struct string *st, struct substring delimiters,
1111 size_t *save_idx, struct substring *token)
1113 return ss_separate (ds_ss (st), delimiters, save_idx, token);
1116 /* Divides ST into tokens separated by any of the DELIMITERS,
1117 merging adjacent delimiters so that the empty string is never
1118 produced as a token. Each call replaces TOKEN by the next
1119 token in ST, or by an empty string if no tokens remain.
1120 Returns true if a token was obtained, false otherwise.
1122 Before the first call, initialize *SAVE_IDX to 0. Do not
1123 modify *SAVE_IDX between calls. */
1124 bool
1125 ds_tokenize (const struct string *st, struct substring delimiters,
1126 size_t *save_idx, struct substring *token)
1128 return ss_tokenize (ds_ss (st), delimiters, save_idx, token);
1131 /* Pad ST on the right with copies of PAD until ST is at least
1132 LENGTH bytes in size. If ST is initially LENGTH
1133 bytes or longer, this is a no-op. */
1134 void
1135 ds_rpad (struct string *st, size_t length, char pad)
1137 if (length > st->ss.length)
1138 ds_put_byte_multiple (st, pad, length - st->ss.length);
1141 /* Sets the length of ST to exactly NEW_LENGTH,
1142 either by truncating bytes from the end,
1143 or by padding on the right with PAD. */
1144 void
1145 ds_set_length (struct string *st, size_t new_length, char pad)
1147 if (st->ss.length < new_length)
1148 ds_rpad (st, new_length, pad);
1149 else
1150 st->ss.length = new_length;
1153 /* Removes N bytes from ST starting at offset START. */
1154 void
1155 ds_remove (struct string *st, size_t start, size_t n)
1157 if (n > 0 && start < st->ss.length)
1159 if (st->ss.length - start <= n)
1161 /* All bytes at or beyond START are deleted. */
1162 st->ss.length = start;
1164 else
1166 /* Some bytes remain and must be shifted into
1167 position. */
1168 memmove (st->ss.string + st->ss.length,
1169 st->ss.string + st->ss.length + n,
1170 st->ss.length - start - n);
1171 st->ss.length -= n;
1174 else
1176 /* There are no bytes to delete or no bytes at or
1177 beyond START, hence deletion is a no-op. */
1181 /* Returns true if ST is empty, false otherwise. */
1182 bool
1183 ds_is_empty (const struct string *st)
1185 return ss_is_empty (st->ss);
1188 /* Returns the length of ST. */
1189 size_t
1190 ds_length (const struct string *st)
1192 return ss_length (ds_ss (st));
1195 /* Returns the string data inside ST. */
1196 char *
1197 ds_data (const struct string *st)
1199 return ss_data (ds_ss (st));
1202 /* Returns a pointer to the null terminator ST.
1203 This might not be an actual null byte unless ds_c_str() has
1204 been called since the last modification to ST. */
1205 char *
1206 ds_end (const struct string *st)
1208 return ss_end (ds_ss (st));
1211 /* Returns the byte in position IDX in ST, as a value in the
1212 range of unsigned char. Returns EOF if IDX is out of the
1213 range of indexes for ST. */
1215 ds_at (const struct string *st, size_t idx)
1217 return ss_at (ds_ss (st), idx);
1220 /* Returns the first byte in ST as a value in the range of
1221 unsigned char. Returns EOF if ST is the empty string. */
1223 ds_first (const struct string *st)
1225 return ss_first (ds_ss (st));
1228 /* Returns the last byte in ST as a value in the range of
1229 unsigned char. Returns EOF if ST is the empty string. */
1231 ds_last (const struct string *st)
1233 return ss_last (ds_ss (st));
1236 /* Returns true if ST ends with SUFFIX, false otherwise. */
1237 bool
1238 ds_ends_with (const struct string *st, struct substring suffix)
1240 return ss_ends_with (st->ss, suffix);
1243 /* Returns the number of consecutive bytes at the beginning
1244 of ST that are in SKIP_SET. */
1245 size_t
1246 ds_span (const struct string *st, struct substring skip_set)
1248 return ss_span (ds_ss (st), skip_set);
1251 /* Returns the number of consecutive bytes at the beginning
1252 of ST that are not in STOP_SET. */
1253 size_t
1254 ds_cspan (const struct string *st, struct substring stop_set)
1256 return ss_cspan (ds_ss (st), stop_set);
1259 /* Returns the position of the first occurrence of byte C in
1260 ST at or after position OFS, or SIZE_MAX if there is no such
1261 occurrence. */
1262 size_t
1263 ds_find_byte (const struct string *st, char c)
1265 return ss_find_byte (ds_ss (st), c);
1268 /* Compares A and B and returns a strcmp()-type comparison
1269 result. */
1271 ds_compare (const struct string *a, const struct string *b)
1273 return ss_compare (ds_ss (a), ds_ss (b));
1276 /* Returns the position in ST that the byte at P occupies.
1277 P must point within ST or one past its end. */
1278 size_t
1279 ds_pointer_to_position (const struct string *st, const char *p)
1281 return ss_pointer_to_position (ds_ss (st), p);
1284 /* Allocates and returns a null-terminated string that contains
1285 ST. */
1286 char *
1287 ds_xstrdup (const struct string *st)
1289 return ss_xstrdup (ds_ss (st));
1292 /* Returns the allocation size of ST. */
1293 size_t
1294 ds_capacity (const struct string *st)
1296 return st->capacity;
1299 /* Returns the value of ST as a null-terminated string. */
1300 char *
1301 ds_cstr (const struct string *st_)
1303 struct string *st = CONST_CAST (struct string *, st_);
1304 if (st->ss.string == NULL)
1305 ds_extend (st, 1);
1306 st->ss.string[st->ss.length] = '\0';
1307 return st->ss.string;
1310 /* Returns the value of ST as a null-terminated string and then
1311 reinitialized ST as an empty string. The caller must free the
1312 returned string with free(). */
1313 char *
1314 ds_steal_cstr (struct string *st)
1316 char *s = ds_cstr (st);
1317 ds_init_empty (st);
1318 return s;
1321 /* Reads bytes from STREAM and appends them to ST, stopping
1322 after MAX_LENGTH bytes, after appending a newline, or
1323 after an I/O error or end of file was encountered, whichever
1324 comes first. Returns true if at least one byte was added
1325 to ST, false if no bytes were read before an I/O error or
1326 end of file (or if MAX_LENGTH was 0).
1328 This function treats LF and CR LF sequences as new-line,
1329 translating each of them to a single '\n' in ST. */
1330 bool
1331 ds_read_line (struct string *st, FILE *stream, size_t max_length)
1333 size_t length;
1335 for (length = 0; length < max_length; length++)
1337 int c = getc (stream);
1338 switch (c)
1340 case EOF:
1341 return length > 0;
1343 case '\n':
1344 ds_put_byte (st, c);
1345 return true;
1347 case '\r':
1348 c = getc (stream);
1349 if (c == '\n')
1351 /* CR followed by LF is special: translate to \n. */
1352 ds_put_byte (st, '\n');
1353 return true;
1355 else
1357 /* CR followed by anything else is just CR. */
1358 ds_put_byte (st, '\r');
1359 if (c == EOF)
1360 return true;
1361 ungetc (c, stream);
1363 break;
1365 default:
1366 ds_put_byte (st, c);
1370 return length > 0;
1373 /* Removes a comment introduced by `#' from ST,
1374 ignoring occurrences inside quoted strings. */
1375 static void
1376 remove_comment (struct string *st)
1378 char *cp;
1379 int quote = 0;
1381 for (cp = ds_data (st); cp < ds_end (st); cp++)
1382 if (quote)
1384 if (*cp == quote)
1385 quote = 0;
1386 else if (*cp == '\\')
1387 cp++;
1389 else if (*cp == '\'' || *cp == '"')
1390 quote = *cp;
1391 else if (*cp == '#')
1393 ds_truncate (st, cp - ds_cstr (st));
1394 break;
1398 /* Reads a line from STREAM into ST, then preprocesses as follows:
1400 - Splices lines terminated with `\'.
1402 - Deletes comments introduced by `#' outside of single or double
1403 quotes.
1405 - Deletes trailing white space.
1407 Returns true if a line was successfully read, false on
1408 failure. If LINE_NUMBER is non-null, then *LINE_NUMBER is
1409 incremented by the number of lines read. */
1410 bool
1411 ds_read_config_line (struct string *st, int *line_number, FILE *stream)
1413 ds_clear (st);
1416 if (!ds_read_line (st, stream, SIZE_MAX))
1417 return false;
1418 (*line_number)++;
1419 ds_rtrim (st, ss_cstr (CC_SPACES));
1421 while (ds_chomp_byte (st, '\\'));
1423 remove_comment (st);
1424 return true;
1427 /* Attempts to read SIZE * CNT bytes from STREAM and append them
1428 to ST.
1429 Returns true if all the requested data was read, false otherwise. */
1430 bool
1431 ds_read_stream (struct string *st, size_t size, size_t cnt, FILE *stream)
1433 if (size != 0)
1435 size_t try_bytes = xtimes (cnt, size);
1436 if (size_in_bounds_p (xsum (ds_length (st), try_bytes)))
1438 char *buffer = ds_put_uninit (st, try_bytes);
1439 size_t got_bytes = fread (buffer, 1, try_bytes, stream);
1440 ds_truncate (st, ds_length (st) - (try_bytes - got_bytes));
1441 return got_bytes == try_bytes;
1443 else
1445 errno = ENOMEM;
1446 return false;
1449 else
1450 return true;
1453 /* Concatenates S onto ST. */
1454 void
1455 ds_put_cstr (struct string *st, const char *s)
1457 if (s != NULL)
1458 ds_put_substring (st, ss_cstr (s));
1461 /* Concatenates SS to ST. */
1462 void
1463 ds_put_substring (struct string *st, struct substring ss)
1465 memcpy (ds_put_uninit (st, ss_length (ss)), ss_data (ss), ss_length (ss));
1468 /* Returns ds_end(ST) and THEN increases the length by INCR. */
1469 char *
1470 ds_put_uninit (struct string *st, size_t incr)
1472 char *end;
1473 ds_extend (st, ds_length (st) + incr);
1474 end = ds_end (st);
1475 st->ss.length += incr;
1476 return end;
1479 /* Moves the bytes in ST following offset OFS + OLD_LEN in ST to offset OFS +
1480 NEW_LEN and returns the byte at offset OFS. The first min(OLD_LEN, NEW_LEN)
1481 bytes at the returned position are unchanged; if NEW_LEN > OLD_LEN then the
1482 following NEW_LEN - OLD_LEN bytes are initially indeterminate.
1484 The intention is that the caller should write NEW_LEN bytes at the returned
1485 position, to effectively replace the OLD_LEN bytes previously at that
1486 position. */
1487 char *
1488 ds_splice_uninit (struct string *st,
1489 size_t ofs, size_t old_len, size_t new_len)
1491 if (new_len != old_len)
1493 if (new_len > old_len)
1494 ds_extend (st, ds_length (st) + (new_len - old_len));
1495 memmove (ds_data (st) + (ofs + new_len),
1496 ds_data (st) + (ofs + old_len),
1497 ds_length (st) - (ofs + old_len));
1498 st->ss.length += new_len - old_len;
1500 return ds_data (st) + ofs;
1503 /* Formats FORMAT as a printf string and appends the result to ST. */
1504 void
1505 ds_put_format (struct string *st, const char *format, ...)
1507 va_list args;
1509 va_start (args, format);
1510 ds_put_vformat (st, format, args);
1511 va_end (args);
1514 /* Formats FORMAT as a printf string as if in the C locale and appends the result to ST. */
1515 void
1516 ds_put_c_format (struct string *st, const char *format, ...)
1518 va_list args;
1520 va_start (args, format);
1521 ds_put_c_vformat (st, format, args);
1522 va_end (args);
1526 /* Formats FORMAT as a printf string, using fmt_func (a snprintf like function)
1527 and appends the result to ST. */
1528 static void
1529 ds_put_vformat_int (struct string *st, const char *format, va_list args_,
1530 int (*fmt_func) (char *, size_t, const char *, va_list))
1532 int avail, needed;
1533 va_list args;
1535 va_copy (args, args_);
1536 avail = st->ss.string != NULL ? st->capacity - st->ss.length + 1 : 0;
1537 needed = fmt_func (st->ss.string + st->ss.length, avail, format, args);
1538 va_end (args);
1540 if (needed >= avail)
1542 va_copy (args, args_);
1543 fmt_func (ds_put_uninit (st, needed), needed + 1, format, args);
1544 va_end (args);
1546 else
1548 /* Some old libc's returned -1 when the destination string
1549 was too short. */
1550 while (needed == -1)
1552 ds_extend (st, (st->capacity + 1) * 2);
1553 avail = st->capacity - st->ss.length + 1;
1555 va_copy (args, args_);
1556 needed = fmt_func (ds_end (st), avail, format, args);
1557 va_end (args);
1559 st->ss.length += needed;
1564 static int
1565 vasnwrapper (char *str, size_t size, const char *format, va_list ap)
1567 c_vasnprintf (str, &size, format, ap);
1568 return size;
1571 /* Formats FORMAT as a printf string and appends the result to ST. */
1572 void
1573 ds_put_vformat (struct string *st, const char *format, va_list args_)
1575 ds_put_vformat_int (st, format, args_, vsnprintf);
1578 /* Formats FORMAT as a printf string, as if in the C locale,
1579 and appends the result to ST. */
1580 void
1581 ds_put_c_vformat (struct string *st, const char *format, va_list args_)
1583 ds_put_vformat_int (st, format, args_, vasnwrapper);
1586 /* Appends byte CH to ST. */
1587 void
1588 ds_put_byte (struct string *st, int ch)
1590 ds_put_uninit (st, 1)[0] = ch;
1593 /* Appends CNT copies of byte CH to ST. */
1594 void
1595 ds_put_byte_multiple (struct string *st, int ch, size_t cnt)
1597 memset (ds_put_uninit (st, cnt), ch, cnt);
1600 /* Appends Unicode code point UC to ST in UTF-8 encoding. */
1601 void
1602 ds_put_unichar (struct string *st, ucs4_t uc)
1604 ds_extend (st, ds_length (st) + 6);
1605 st->ss.length += u8_uctomb (CHAR_CAST (uint8_t *, ds_end (st)), uc, 6);
1608 /* If relocation has been enabled, replace ST,
1609 with its relocated version */
1610 void
1611 ds_relocate (struct string *st)
1613 const char *orig = ds_cstr (st);
1614 const char *rel = relocate (orig);
1616 if ( orig != rel)
1618 ds_clear (st);
1619 ds_put_cstr (st, rel);
1620 /* The documentation for relocate says that casting away const
1621 and then freeing is appropriate ... */
1622 free (CONST_CAST (char *, rel));
1629 /* Operations on uint8_t "strings" */
1631 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
1632 DST is truncated to DST_SIZE bytes or padded on the right with
1633 copies of PAD as needed. */
1634 void
1635 u8_buf_copy_rpad (uint8_t *dst, size_t dst_size,
1636 const uint8_t *src, size_t src_size,
1637 char pad)
1639 if (src_size >= dst_size)
1640 memmove (dst, src, dst_size);
1641 else
1643 memmove (dst, src, src_size);
1644 memset (&dst[src_size], pad, dst_size - src_size);