]> git.draconx.ca Git - cdecl99.git/blobdiff - src/error.c
cdecl99: Fall back to getline, instead of Gnulib's readline.
[cdecl99.git] / src / error.c
index 30a481e49a1bb6ed88a77691a634eaa5862ec32b..36e63666774d6a34cbf0ad99c0d14d06044adf85 100644 (file)
@@ -1,39 +1,45 @@
+/*
+ *  Error handling for libcdecl.
+ *  Copyright © 2011-2012, 2021, 2023 Nick Bowler
+ *
+ *  This program is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
 #include <config.h>
+#include <stdio.h>
 #include <stdlib.h>
-#include <string.h>
 #include <assert.h>
+
+#include "cdecl.h"
+#include "cdecl-internal.h"
+
 #include <glthread/lock.h>
 #include <glthread/tls.h>
-#include "cdecl.h"
-#include "error.h"
-#include "i18n.h"
 
-gl_once_define(static, tls_initialized);
+#include "errmsg.h"
+
+gl_once_define(static, tls_initialized)
 static gl_tls_key_t tls_key;
 
 struct err_state {
        struct cdecl_error err;
        size_t nstr;
-       char str[];
+       char str[FLEXIBLE_ARRAY_MEMBER];
 };
 
-/* This error is reserved for extremely dire out-of-memory conditions. */
-static struct err_state err_no_mem = {
-       .err = {
-               .code = CDECL_ENOMEM,
-               .str  = NULL,
-       },
-};
-
-const char *cdecl__strerror(unsigned code)
-{
-#      include "errtab.h"
-
-       assert(code < sizeof offtab / sizeof offtab[0]);
-       assert(offtab[code] != 0);
-
-       return gettext((char *)&strtab + offtab[code]);
-}
+/* This pre-initialized error is reserved for dire out-of-memory conditions. */
+static struct cdecl_error err_no_mem;
 
 static void free_err(void *err)
 {
@@ -43,71 +49,109 @@ static void free_err(void *err)
        free(err);
 }
 
+static void set_err(unsigned code, struct cdecl_error *err)
+{
+       static const char errmsgs[] = STRTAB_INITIALIZER;
+
+       switch (code) {
+       case CDECL__ENOMEM:
+               err->code = CDECL_ENOMEM;
+               break;
+       default:
+               err->code = CDECL_ENOPARSE;
+               break;
+       }
+
+       err->str = _(&errmsgs[code]);
+}
+
 static void initialize(void)
 {
        cdecl__init_i18n();
-       err_no_mem.err.str = cdecl__strerror(CDECL_ENOMEM);
-
+       set_err(CDECL__ENOMEM, &err_no_mem);
        gl_tls_key_init(tls_key, free_err);
-
-       /*
-        * This default error message is a stop-gap measure until all library
-        * error conditions use the new interface.
-        */
-       cdecl__set_error(&(const struct cdecl_error){ .code = CDECL_ENOPARSE });
 }
 
-const struct cdecl_error *cdecl_get_error(void)
+static void *alloc_err_state(void *old, size_t buf_size)
 {
        struct err_state *state;
+       void *p;
+
+       state = p = realloc(old, offsetof(struct err_state, str) + buf_size);
+       if (state) {
+               state->nstr = buf_size;
+       } else if (old) {
+               /* Failed allocation, but existing state is still good */
+               p = old;
+       } else {
+               /* Failed allocation, no existing state */
+               p = &err_no_mem;
+       }
+
+       gl_tls_set(tls_key, p);
+       return state;
+}
+
+static struct err_state *get_err_state(void)
+{
+       void *state;
 
        gl_once(tls_initialized, initialize);
 
        state = gl_tls_get(tls_key);
-       assert(state);
-
-       return &state->err;
+       if (state == &err_no_mem)
+               state = NULL;
+       if (!state)
+               return alloc_err_state(state, 100);
+       return state;
 }
 
-void cdecl__set_error(const struct cdecl_error *err)
+/*
+ * Set the library error to one of the preset messages defined in errmsg.h
+ * (CDECL__Exxx).
+ */
+void cdecl__errmsg(unsigned msg)
 {
        struct err_state *state;
-       size_t need_len = 0;
 
-       gl_once(tls_initialized, initialize);
+       state = get_err_state();
+       if (!state)
+               return;
 
-       if (err->str) {
-               need_len = strlen(err->str) + 1;
-       }
+       set_err(msg, &state->err);
+}
 
-       state = gl_tls_get(tls_key);
-       if (state == &err_no_mem)
-               state = NULL;
-       if (!state || state->nstr < need_len) {
-               struct err_state *tmp;
-               
-               tmp = realloc(state, sizeof *state + need_len);
-               if (!tmp) {
-                       /* Re-use the existing state buffer, if any. */
-                       if (state)
-                               state->err = err_no_mem.err;
-                       else
-                               state = &err_no_mem;
-                       
-                       gl_tls_set(tls_key, state);
+/*
+ * Sets the library error to code; fmt is a printf-style string that may use
+ * up to one %s directive, to refer to arg.
+ */
+void cdecl__err(unsigned code, const char *fmt, const char *arg)
+{
+       struct err_state *state;
+       int rc, try = 0;
+
+       state = get_err_state();
+       if (!state)
+               return;
+
+retry:
+       rc = snprintf(state->str, state->nstr, fmt, arg);
+       if (rc > 0 && rc >= state->nstr) {
+               assert(try++ == 0 && rc < SIZE_MAX / 4);
+               state = alloc_err_state(state, (size_t)(rc+1u) * 3 / 2);
+               if (!state)
                        return;
-               }
 
-               state = tmp;
-               state->nstr = need_len;
-               gl_tls_set(tls_key, state);
+               goto retry;
        }
 
-       state->err = *err;
-       if (err->str) {
-               memcpy(state->str, err->str, need_len);
-               state->err.str = state->str;
-       } else {
-               state->err.str = cdecl__strerror(state->err.code);
-       }
+       state->err.str = state->str;
+       state->err.code = code;
+}
+
+const struct cdecl_error *cdecl_get_error(void)
+{
+       struct err_state *state = get_err_state();
+
+       return state ? &state->err : NULL;
 }