]> git.draconx.ca Git - cdecl99.git/blobdiff - src/error.c
libcdecl: Simplify cdecl__explain_specs.
[cdecl99.git] / src / error.c
index 8b9f04e55cd4f0de103283d6f707362366ca4483..5466d393b05d03096e5b4dd36bb8fb6a8b045b6c 100644 (file)
@@ -29,7 +29,9 @@
 #include <glthread/lock.h>
 #include <glthread/tls.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 {
@@ -49,10 +51,26 @@ 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.str = _("failed to allocate memory");
+       set_err(CDECL__ENOMEM, &err_no_mem);
        gl_tls_key_init(tls_key, free_err);
 }
 
@@ -91,14 +109,25 @@ static struct err_state *get_err_state(void)
 }
 
 /*
- * cdecl__err(CDECL_ENOMEM);
- * cdecl__err(code, fmt, ...);
- *
+ * 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;
+
+       state = get_err_state();
+       if (!state)
+               return;
+
+       set_err(msg, &state->err);
+}
+
+/*
  * Sets the library error to code, with a printf-style error string.
  */
-void cdecl__err(unsigned code, ...)
+void cdecl__err(unsigned code, const char *fmt, ...)
 {
-       const char *fmt;
        struct err_state *state;
        int rc, try = 0;
        va_list ap;
@@ -107,14 +136,8 @@ void cdecl__err(unsigned code, ...)
        if (!state)
                return;
 
-       if (code == CDECL_ENOMEM) {
-               state->err.code = code;
-               state->err.str = err_no_mem.str;
-               return;
-       }
 retry:
-       va_start(ap, code);
-       fmt = va_arg(ap, const char *);
+       va_start(ap, fmt);
        rc = vsnprintf(state->str, state->nstr, fmt, ap);
        va_end(ap);