1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 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
30 /* sprintf() wrapper functions for convenience. */
34 spprintf (char *buf, const char *format,...)
41 va_start (args, format);
45 vsprintf (buf, format, args);
51 return strchr (buf, 0);
54 #endif /* !__GNUC__ */
56 #if !__GNUC__ && !HAVE_GOOD_SPRINTF
58 nsprintf (char *buf, const char *format,...)
62 va_start (args, format);
63 vsprintf (buf, format, args);
70 nvsprintf (char *buf, const char *format, va_list args)
72 vsprintf (buf, format, args);
75 #endif /* Not GNU C and not good sprintf(). */
77 /* Reverses the order of NBYTES bytes at address P, thus converting
78 between little- and big-endian byte orders. */
80 buf_reverse (char *p, size_t nbytes)
82 unsigned char *h = p, *t = &h[nbytes - 1];
94 /* Finds the last NEEDLE of length NEEDLE_LEN in a HAYSTACK of length
95 HAYSTACK_LEN. Returns a pointer to the needle found. */
97 buf_find_reverse (const char *haystack, size_t haystack_len,
98 const char *needle, size_t needle_len)
101 for (i = haystack_len - needle_len; i >= 0; i--)
102 if (!memcmp (needle, &haystack[i], needle_len))
103 return (char *) &haystack[i];
107 /* Compares the SIZE bytes in A to those in B, disregarding case,
108 and returns a strcmp()-type result. */
110 buf_compare_case (const char *a_, const char *b_, size_t size)
112 const unsigned char *a = (unsigned char *) a_;
113 const unsigned char *b = (unsigned char *) b_;
117 unsigned char ac = toupper (*a++);
118 unsigned char bc = toupper (*b++);
121 return ac > bc ? 1 : -1;
127 /* Compares A of length A_LEN to B of length B_LEN. The shorter
128 string is considered to be padded with spaces to the length of
131 buf_compare_rpad (const char *a, size_t a_len, const char *b, size_t b_len)
136 min_len = a_len < b_len ? a_len : b_len;
137 result = memcmp (a, b, min_len);
146 for (idx = min_len; idx < b_len; idx++)
148 return ' ' > b[idx] ? 1 : -1;
152 for (idx = min_len; idx < a_len; idx++)
154 return a[idx] > ' ' ? 1 : -1;
160 /* Compares strin A to string B. The shorter string is
161 considered to be padded with spaces to the length of the
164 str_compare_rpad (const char *a, const char *b)
166 return buf_compare_rpad (a, strlen (a), b, strlen (b));
169 /* Copies string SRC to buffer DST, of size DST_SIZE bytes.
170 DST is truncated to DST_SIZE bytes or padded on the right with
173 buf_copy_str_rpad (char *dst, size_t dst_size, const char *src)
175 size_t src_len = strlen (src);
176 if (src_len >= dst_size)
177 memcpy (dst, src, dst_size);
180 memcpy (dst, src, src_len);
181 memset (&dst[src_len], ' ', dst_size - src_len);
185 /* Copies string SRC to buffer DST, of size DST_SIZE bytes.
186 DST is truncated to DST_SIZE bytes or padded on the left with
189 buf_copy_str_lpad (char *dst, size_t dst_size, const char *src)
191 size_t src_len = strlen (src);
192 if (src_len >= dst_size)
193 memcpy (dst, src, dst_size);
196 size_t pad_cnt = dst_size - src_len;
197 memset (&dst[0], ' ', pad_cnt);
198 memcpy (dst + pad_cnt, src, src_len);
202 /* Copies buffer SRC, of SRC_SIZE bytes, to DST, of DST_SIZE bytes.
203 DST is truncated to DST_SIZE bytes or padded on the right with
206 buf_copy_rpad (char *dst, size_t dst_size,
207 const char *src, size_t src_size)
209 if (src_size >= dst_size)
210 memmove (dst, src, dst_size);
213 memmove (dst, src, src_size);
214 memset (&dst[src_size], ' ', dst_size - src_size);
218 /* Copies string SRC to string DST, which is in a buffer DST_SIZE
220 Truncates DST to DST_SIZE - 1 characters or right-pads with
221 spaces to DST_SIZE - 1 characters if necessary. */
223 str_copy_rpad (char *dst, size_t dst_size, const char *src)
225 size_t src_len = strlen (src);
226 if (src_len < dst_size - 1)
228 memcpy (dst, src, src_len);
229 memset (&dst[src_len], ' ', dst_size - 1 - src_len);
232 memcpy (dst, src, dst_size - 1);
233 dst[dst_size - 1] = 0;
236 /* Copies SRC to DST, which is in a buffer DST_SIZE bytes long.
237 Truncates DST to DST_SIZE - 1 characters, if necessary. */
239 str_copy_trunc (char *dst, size_t dst_size, const char *src)
241 size_t src_len = strlen (src);
242 assert (dst_size > 0);
243 if (src_len + 1 < dst_size)
244 memcpy (dst, src, src_len + 1);
247 memcpy (dst, src, dst_size - 1);
248 dst[dst_size - 1] = '\0';
252 /* Converts each character in S to uppercase. */
254 str_uppercase (char *s)
256 for (; *s != '\0'; s++)
257 *s = toupper ((unsigned char) *s);
260 /* Initializes ST with initial contents S. */
262 ds_create (struct string *st, const char *s)
264 st->length = strlen (s);
265 st->capacity = 8 + st->length * 2;
266 st->string = xmalloc (st->capacity + 1);
267 strcpy (st->string, s);
270 /* Initializes ST, making room for at least CAPACITY characters. */
272 ds_init (struct string *st, size_t capacity)
276 st->capacity = capacity;
279 st->string = xmalloc (st->capacity + 1);
282 /* Replaces the contents of ST with STRING. STRING may overlap with
285 ds_replace (struct string *st, const char *string)
287 size_t new_length = strlen (string);
288 if (new_length > st->capacity)
290 /* The new length is longer than the allocated length, so
291 there can be no overlap. */
293 ds_concat (st, string, new_length);
297 /* Overlap is possible, but the new string will fit in the
298 allocated space, so we can just copy data. */
299 st->length = new_length;
300 memmove (st->string, string, st->length);
306 ds_destroy (struct string *st)
312 /* Truncates ST to zero length. */
314 ds_clear (struct string *st)
319 /* Pad ST on the right with copies of PAD until ST is at least
320 LENGTH characters in size. If ST is initially LENGTH
321 characters or longer, this is a no-op. */
323 ds_rpad (struct string *st, size_t length, char pad)
326 if (st->length < length)
328 if (st->capacity < length)
329 ds_extend (st, length);
330 memset (&st->string[st->length], pad, length - st->length);
335 /* Ensures that ST can hold at least MIN_CAPACITY characters plus a null
338 ds_extend (struct string *st, size_t min_capacity)
340 if (min_capacity > st->capacity)
343 if (st->capacity < min_capacity)
344 st->capacity = min_capacity * 2;
346 st->string = xrealloc (st->string, st->capacity + 1);
350 /* Shrink ST to the minimum capacity need to contain its content. */
352 ds_shrink (struct string *st)
354 if (st->capacity != st->length)
356 st->capacity = st->length;
357 st->string = xrealloc (st->string, st->capacity + 1);
361 /* Truncates ST to at most LENGTH characters long. */
363 ds_truncate (struct string *st, size_t length)
365 if (length >= st->length)
370 /* Returns the length of ST. */
372 ds_length (const struct string *st)
377 /* Returns the allocation size of ST. */
379 ds_capacity (const struct string *st)
384 /* Returns the value of ST as a null-terminated string. */
386 ds_c_str (const struct string *st)
388 ((char *) st->string)[st->length] = '\0';
392 /* Returns the string data inside ST. */
394 ds_data (const struct string *st)
399 /* Returns a pointer to the null terminator ST.
400 This might not be an actual null character unless ds_c_str() has
401 been called since the last modification to ST. */
403 ds_end (const struct string *st)
405 return st->string + st->length;
408 /* Concatenates S onto ST. */
410 ds_puts (struct string *st, const char *s)
417 ds_extend (st, st->length + s_len);
418 strcpy (st->string + st->length, s);
422 /* Concatenates LEN characters from BUF onto ST. */
424 ds_concat (struct string *st, const char *buf, size_t len)
426 ds_extend (st, st->length + len);
427 memcpy (st->string + st->length, buf, len);
431 void ds_vprintf (struct string *st, const char *format, va_list args);
434 /* Formats FORMAT as a printf string and appends the result to ST. */
436 ds_printf (struct string *st, const char *format, ...)
440 va_start (args, format);
441 ds_vprintf(st,format,args);
446 /* Formats FORMAT as a printf string and appends the result to ST. */
448 ds_vprintf (struct string *st, const char *format, va_list args)
450 /* Fscking glibc silently changed behavior between 2.0 and 2.1.
451 Fsck fsck fsck. Before, it returned -1 on buffer overflow. Now,
452 it returns the number of characters (not bytes) that would have
457 avail = st->capacity - st->length + 1;
458 needed = vsnprintf (st->string + st->length, avail, format, args);
463 ds_extend (st, st->length + needed);
465 vsprintf (st->string + st->length, format, args);
470 ds_extend (st, (st->capacity + 1) * 2);
471 avail = st->capacity - st->length + 1;
473 needed = vsnprintf (st->string + st->length, avail, format, args);
477 st->length += needed;
480 /* Appends character CH to ST. */
482 ds_putc (struct string *st, int ch)
484 if (st->length == st->capacity)
485 ds_extend (st, st->length + 1);
486 st->string[st->length++] = ch;
489 /* Appends to ST a newline-terminated line read from STREAM.
490 Newline is the last character of ST on return, unless an I/O error
491 or end of file is encountered after reading some characters.
492 Returns 1 if a line is successfully read, or 0 if no characters at
493 all were read before an I/O error or end of file was
496 ds_gets (struct string *st, FILE *stream)
516 /* Reads a line from STREAM into ST, then preprocesses as follows:
518 - Splices lines terminated with `\'.
520 - Deletes comments introduced by `#' outside of single or double
523 - Trailing whitespace will be deleted.
525 Increments cust_ln as appropriate.
527 Returns nonzero only if a line was successfully read. */
529 ds_get_config_line (FILE *stream, struct string *st, struct file_locator *where)
531 /* Read the first line. */
533 where->line_number++;
534 if (!ds_gets (st, stream))
537 /* Read additional lines, if any. */
540 /* Remove trailing whitespace. */
542 char *s = ds_c_str (st);
543 size_t len = ds_length (st);
545 while (len > 0 && isspace ((unsigned char) s[len - 1]))
547 ds_truncate (st, len);
550 /* Check for trailing \. Remove if found, bail otherwise. */
551 if (ds_length (st) == 0 || ds_c_str (st)[ds_length (st) - 1] != '\\')
553 ds_truncate (st, ds_length (st) - 1);
555 /* Append another line and go around again. */
557 int success = ds_gets (st, stream);
558 where->line_number++;
564 /* Find a comment and remove. */
569 for (cp = ds_c_str (st); *cp; cp++)
574 else if (*cp == '\\')
577 else if (*cp == '\'' || *cp == '"')
581 ds_truncate (st, cp - ds_c_str (st));
589 /* Lengthed strings. */
591 /* Creates a new lengthed string LS with contents as a copy of
594 ls_create (struct fixed_string *ls, const char *s)
596 ls->length = strlen (s);
597 ls->string = xmalloc (ls->length + 1);
598 memcpy (ls->string, s, ls->length + 1);
601 /* Creates a new lengthed string LS with contents as a copy of
602 BUFFER with length LEN. */
604 ls_create_buffer (struct fixed_string *ls,
605 const char *buffer, size_t len)
608 ls->string = xmalloc (len + 1);
609 memcpy (ls->string, buffer, len);
610 ls->string[len] = '\0';
613 /* Sets the fields of LS to the specified values. */
615 ls_init (struct fixed_string *ls, const char *string, size_t length)
617 ls->string = (char *) string;
621 /* Copies the fields of SRC to DST. */
623 ls_shallow_copy (struct fixed_string *dst, const struct fixed_string *src)
628 /* Frees the memory backing LS. */
630 ls_destroy (struct fixed_string *ls)
635 /* Sets LS to a null pointer value. */
637 ls_null (struct fixed_string *ls)
642 /* Returns nonzero only if LS has a null pointer value. */
644 ls_null_p (const struct fixed_string *ls)
646 return ls->string == NULL;
649 /* Returns nonzero only if LS is a null pointer or has length 0. */
651 ls_empty_p (const struct fixed_string *ls)
653 return ls->string == NULL || ls->length == 0;
656 /* Returns the length of LS, which must not be null. */
658 ls_length (const struct fixed_string *ls)
663 /* Returns a pointer to the character string in LS. */
665 ls_c_str (const struct fixed_string *ls)
667 return (char *) ls->string;
670 /* Returns a pointer to the null terminator of the character string in
673 ls_end (const struct fixed_string *ls)
675 return (char *) (ls->string + ls->length);