X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fstr.h;h=19fe779aa7131f39e7d8c3aa716bcdec9a71e102;hb=053e7ff6e0a45a25d5604b211e9c950fff50e75d;hp=719b503b8e66d8fc69fc665a94aed4cdcf11ca6e;hpb=7b98b3a4f58f6dc5a8e9cbc188b627966d5e652d;p=pspp-builds.git diff --git a/src/str.h b/src/str.h index 719b503b..19fe779a 100644 --- a/src/str.h +++ b/src/str.h @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #if !str_h #define str_h 1 @@ -24,37 +24,23 @@ #include #include - -#if STDC_HEADERS - #include -#else - #ifndef HAVE_STRCHR - #define strchr index - #define strrchr rindex - #endif - - char *strchr (), *strrchr (); -#endif - -#if !HAVE_STRTOK_R - char *strtok_r (char *, const char *, char **); -#endif - -#if !HAVE_STPCPY && !__linux__ - char *stpcpy (char *dest, const char *src); -#endif - -#if !HAVE_STRCASECMP - int strcasecmp (const char *s1, const char *s2); +#include + +#include "memmem.h" +#include "snprintf.h" +#include "stpcpy.h" +#include "strcase.h" +#include "strftime.h" +#include "strstr.h" +#include "strtok_r.h" +#include "vsnprintf.h" +#include "xvasprintf.h" + +#ifndef HAVE_STRCHR +#define strchr index #endif - -#if !HAVE_STRNCASECMP - int strncasecmp (const char *s1, const char *s2, size_t n); -#endif - -#if !HAVE_MEMMEM - void *memmem (const void *haystack, size_t haystack_len, - const void *needle, size_t needle_len); +#ifndef HAVE_STRRCHR +#define strrchr rindex #endif /* sprintf() wrapper functions for convenience. */ @@ -107,87 +93,115 @@ int nvsprintf (char *buf, const char *format, va_list args); #endif /* Not good sprintf(). */ #endif /* Not GNU C. */ - -#if !HAVE_GETLINE -long getline (char **lineptr, size_t *n, FILE *stream); -#endif - -#if !HAVE_GETDELIM -long getdelim (char **lineptr, size_t * n, int delimiter, FILE * stream); -#endif /* Miscellaneous. */ -void mm_reverse (void *, size_t); -char *mm_find_reverse (const char *, size_t, const char *, size_t); - -int st_compare_pad (const char *, int, const char *, int); -char *st_spaces (int); -void st_bare_pad_copy (char *dest, const char *src, size_t n); -void st_bare_pad_len_copy (char *dest, const char *src, size_t n, size_t len); -void st_pad_copy (char *dest, const char *src, size_t n); +void buf_reverse (char *, size_t); +char *buf_find_reverse (const char *, size_t, const char *, size_t); +int buf_compare_case (const char *, const char *, size_t); +int buf_compare_rpad (const char *, size_t, const char *, size_t); +void buf_copy_rpad (char *, size_t, const char *, size_t); +void buf_copy_str_lpad (char *, size_t, const char *); +void buf_copy_str_rpad (char *, size_t, const char *); + +int str_compare_rpad (const char *, const char *); +void str_copy_rpad (char *, size_t, const char *); +void str_copy_trunc (char *, size_t, const char *); +void str_copy_buf_trunc (char *, size_t, const char *, size_t); +void str_uppercase (char *); +void str_lowercase (char *); -/* Lengthed strings. */ -struct len_string +/* Fixed-length strings. */ +struct fixed_string { char *string; size_t length; }; -struct pool; -void ls_create (struct pool *, struct len_string *, const char *); -void ls_create_buffer (struct pool *, struct len_string *, +void ls_create (struct fixed_string *, const char *); +void ls_create_buffer (struct fixed_string *, const char *, size_t len); -void ls_init (struct len_string *, const char *, size_t); -void ls_shallow_copy (struct len_string *, const struct len_string *); -void ls_destroy (struct pool *, struct len_string *); +void ls_init (struct fixed_string *, const char *, size_t); +void ls_shallow_copy (struct fixed_string *, const struct fixed_string *); +void ls_destroy (struct fixed_string *); + +void ls_null (struct fixed_string *); +int ls_null_p (const struct fixed_string *); +int ls_empty_p (const struct fixed_string *); -void ls_null (struct len_string *); -int ls_null_p (const struct len_string *); -int ls_empty_p (const struct len_string *); +size_t ls_length (const struct fixed_string *); +char *ls_c_str (const struct fixed_string *); +char *ls_end (const struct fixed_string *); -size_t ls_length (const struct len_string *); -char *ls_value (const struct len_string *); -char *ls_end (const struct len_string *); +#if __GNUC__ > 1 +extern inline size_t +ls_length (const struct fixed_string *st) +{ + return st->length; +} + +extern inline char * +ls_c_str (const struct fixed_string *st) +{ + return st->string; +} + +extern inline char * +ls_end (const struct fixed_string *st) +{ + return st->string + st->length; +} +#endif -/* Dynamic strings. */ +/* Variable length strings. */ struct string { - struct pool *pool; - size_t length; - size_t size; - char *string; + size_t length; /* Length, not including a null terminator. */ + size_t capacity; /* Allocated capacity, not including one + extra byte allocated for null terminator. */ + char *string; /* String data, not necessarily null + terminated. */ }; -void ds_create (struct pool *, struct string *, const char *); -void ds_init (struct pool *, struct string *, size_t size); -void ds_replace (struct string *, const char *); +/* Constructors, destructors. */ +void ds_create (struct string *, const char *); +void ds_init (struct string *, size_t); void ds_destroy (struct string *); + +/* Copy, shrink, extend. */ +void ds_replace (struct string *, const char *); void ds_clear (struct string *); -void ds_extend (struct string *, size_t min_size); +void ds_extend (struct string *, size_t); void ds_shrink (struct string *); -void ds_truncate (struct string *, size_t length); +void ds_truncate (struct string *, size_t); +void ds_rpad (struct string *, size_t length, char pad); +/* Inspectors. */ size_t ds_length (const struct string *); -char *ds_value (const struct string *); +char *ds_c_str (const struct string *); +char *ds_data (const struct string *); char *ds_end (const struct string *); -size_t ds_size (const struct string *); +size_t ds_capacity (const struct string *); +/* File input. */ struct file_locator; -int ds_getline (struct string *st, FILE *stream); +int ds_gets (struct string *, FILE *); int ds_get_config_line (FILE *, struct string *, struct file_locator *); -void ds_putchar (struct string *, int ch); -void ds_concat (struct string *, const char *); -void ds_concat_buffer (struct string *, const char *buf, size_t len); + +/* Append. */ +void ds_putc (struct string *, int ch); +void ds_puts (struct string *, const char *); +void ds_concat (struct string *, const char *, size_t); +void ds_vprintf (struct string *st, const char *, va_list); void ds_printf (struct string *, const char *, ...) PRINTF_FORMAT (2, 3); #if __GNUC__ > 1 extern inline void -ds_putchar (struct string *st, int ch) +ds_putc (struct string *st, int ch) { - if (st->length == st->size) + if (st->length == st->capacity) ds_extend (st, st->length + 1); st->string[st->length++] = ch; } @@ -199,12 +213,18 @@ ds_length (const struct string *st) } extern inline char * -ds_value (const struct string *st) +ds_c_str (const struct string *st) { ((char *) st->string)[st->length] = '\0'; return st->string; } +extern inline char * +ds_data (const struct string *st) +{ + return st->string; +} + extern inline char * ds_end (const struct string *st) {