]> git.draconx.ca Git - cdecl99.git/blob - src/error.c
Consolidate header files.
[cdecl99.git] / src / error.c
1 /*
2  *  Error handling for libcdecl.
3  *  Copyright © 2011-2012, 2021 Nick Bowler
4  *
5  *  This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation, either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include <config.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <assert.h>
23 #include <glthread/lock.h>
24 #include <glthread/tls.h>
25
26 #include "cdecl.h"
27 #include "cdecl-internal.h"
28
29 gl_once_define(static, tls_initialized);
30 static gl_tls_key_t tls_key;
31
32 struct err_state {
33         struct cdecl_error err;
34         size_t nstr;
35         char str[];
36 };
37
38 /* This error is reserved for extremely dire out-of-memory conditions. */
39 static struct err_state err_no_mem = {
40         .err = {
41                 .code = CDECL_ENOMEM,
42                 .str  = NULL,
43         },
44 };
45
46 const char *cdecl__strerror(unsigned code)
47 {
48 #       include "errtab.h"
49
50         assert(code < sizeof offtab / sizeof offtab[0]);
51         assert(offtab[code] != 0);
52
53         return gettext((char *)&strtab + offtab[code]);
54 }
55
56 static void free_err(void *err)
57 {
58         if (err == &err_no_mem)
59                 return;
60
61         free(err);
62 }
63
64 static void set_error(const struct cdecl_error *err)
65 {
66         struct err_state *state;
67         size_t need_len = 0;
68
69         if (err->str) {
70                 need_len = strlen(err->str) + 1;
71         }
72
73         state = gl_tls_get(tls_key);
74         if (state == &err_no_mem)
75                 state = NULL;
76         if (!state || state->nstr < need_len) {
77                 struct err_state *tmp;
78                 
79                 tmp = realloc(state, sizeof *state + need_len);
80                 if (!tmp) {
81                         /* Re-use the existing state buffer, if any. */
82                         if (state)
83                                 state->err = err_no_mem.err;
84                         else
85                                 state = &err_no_mem;
86                         
87                         gl_tls_set(tls_key, state);
88                         return;
89                 }
90
91                 state = tmp;
92                 state->nstr = need_len;
93                 gl_tls_set(tls_key, state);
94         }
95
96         state->err = *err;
97         if (err->str) {
98                 memcpy(state->str, err->str, need_len);
99                 state->err.str = state->str;
100         } else {
101                 state->err.str = cdecl__strerror(state->err.code);
102         }
103 }
104
105 static void initialize(void)
106 {
107         cdecl__init_i18n();
108         err_no_mem.err.str = cdecl__strerror(CDECL_ENOMEM);
109
110         gl_tls_key_init(tls_key, free_err);
111
112         /*
113          * This default error message is a stop-gap measure until all library
114          * error conditions use the new interface.
115          */
116         set_error(&(const struct cdecl_error){ .code = CDECL_ENOPARSE });
117 }
118
119 const struct cdecl_error *cdecl_get_error(void)
120 {
121         struct err_state *state;
122
123         gl_once(tls_initialized, initialize);
124
125         state = gl_tls_get(tls_key);
126         assert(state);
127
128         return &state->err;
129 }
130
131 void cdecl__set_error(const struct cdecl_error *err)
132 {
133         gl_once(tls_initialized, initialize);
134
135         set_error(err);
136 }