build: include config.h manually
[platform/upstream/libxkbcommon.git] / src / context.c
1 /*
2  * Copyright © 2012 Intel Corporation
3  * Copyright © 2012 Ran Benita
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Author: Daniel Stone <daniel@fooishbar.org>
25  */
26
27 #include "config.h"
28
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <errno.h>
32 #include <unistd.h>
33
34 #include "xkbcommon/xkbcommon.h"
35 #include "utils.h"
36 #include "context.h"
37
38 /**
39  * Append one directory to the context's include path.
40  */
41 XKB_EXPORT int
42 xkb_context_include_path_append(struct xkb_context *ctx, const char *path)
43 {
44     struct stat stat_buf;
45     int err;
46     char *tmp;
47
48     tmp = strdup(path);
49     if (!tmp)
50         goto err;
51
52     err = stat(path, &stat_buf);
53     if (err != 0)
54         goto err;
55     if (!S_ISDIR(stat_buf.st_mode))
56         goto err;
57
58 #if defined(HAVE_EACCESS)
59     if (eaccess(path, R_OK | X_OK) != 0)
60         goto err;
61 #elif defined(HAVE_EUIDACCESS)
62     if (euidaccess(path, R_OK | X_OK) != 0)
63         goto err;
64 #endif
65
66     darray_append(ctx->includes, tmp);
67     return 1;
68
69 err:
70     darray_append(ctx->failed_includes, tmp);
71     return 0;
72 }
73
74 const char *
75 xkb_context_include_path_get_system_path(struct xkb_context *ctx)
76 {
77     const char *root = secure_getenv("XKB_CONFIG_ROOT");
78     return root ? root : DFLT_XKB_CONFIG_ROOT;
79 }
80
81 /**
82  * Append the default include directories to the context.
83  */
84 XKB_EXPORT int
85 xkb_context_include_path_append_default(struct xkb_context *ctx)
86 {
87     const char *home, *xdg, *root;
88     char *user_path;
89     int err;
90     int ret = 0;
91
92     home = secure_getenv("HOME");
93
94     xdg = secure_getenv("XDG_CONFIG_HOME");
95     if (xdg != NULL) {
96         err = asprintf(&user_path, "%s/xkb", xdg);
97         if (err >= 0) {
98             ret |= xkb_context_include_path_append(ctx, user_path);
99             free(user_path);
100         }
101     } else if (home != NULL) {
102         /* XDG_CONFIG_HOME fallback is $HOME/.config/ */
103         err = asprintf(&user_path, "%s/.config/xkb", home);
104         if (err >= 0) {
105             ret |= xkb_context_include_path_append(ctx, user_path);
106             free(user_path);
107         }
108     }
109
110     if (home != NULL) {
111         err = asprintf(&user_path, "%s/.xkb", home);
112         if (err >= 0) {
113             ret |= xkb_context_include_path_append(ctx, user_path);
114             free(user_path);
115         }
116     }
117
118     root = xkb_context_include_path_get_system_path(ctx);
119     ret |= xkb_context_include_path_append(ctx, root);
120
121     return ret;
122 }
123
124 /**
125  * Remove all entries in the context's include path.
126  */
127 XKB_EXPORT void
128 xkb_context_include_path_clear(struct xkb_context *ctx)
129 {
130     char **path;
131
132     darray_foreach(path, ctx->includes)
133         free(*path);
134     darray_free(ctx->includes);
135
136     darray_foreach(path, ctx->failed_includes)
137         free(*path);
138     darray_free(ctx->failed_includes);
139 }
140
141 /**
142  * xkb_context_include_path_clear() + xkb_context_include_path_append_default()
143  */
144 XKB_EXPORT int
145 xkb_context_include_path_reset_defaults(struct xkb_context *ctx)
146 {
147     xkb_context_include_path_clear(ctx);
148     return xkb_context_include_path_append_default(ctx);
149 }
150
151 /**
152  * Returns the number of entries in the context's include path.
153  */
154 XKB_EXPORT unsigned int
155 xkb_context_num_include_paths(struct xkb_context *ctx)
156 {
157     return darray_size(ctx->includes);
158 }
159
160 /**
161  * Returns the given entry in the context's include path, or NULL if an
162  * invalid index is passed.
163  */
164 XKB_EXPORT const char *
165 xkb_context_include_path_get(struct xkb_context *ctx, unsigned int idx)
166 {
167     if (idx >= xkb_context_num_include_paths(ctx))
168         return NULL;
169
170     return darray_item(ctx->includes, idx);
171 }
172
173 /**
174  * Take a new reference on the context.
175  */
176 XKB_EXPORT struct xkb_context *
177 xkb_context_ref(struct xkb_context *ctx)
178 {
179     ctx->refcnt++;
180     return ctx;
181 }
182
183 /**
184  * Drop an existing reference on the context, and free it if the refcnt is
185  * now 0.
186  */
187 XKB_EXPORT void
188 xkb_context_unref(struct xkb_context *ctx)
189 {
190     if (!ctx || --ctx->refcnt > 0)
191         return;
192
193     xkb_context_include_path_clear(ctx);
194     atom_table_free(ctx->atom_table);
195     free(ctx);
196 }
197
198 static const char *
199 log_level_to_prefix(enum xkb_log_level level)
200 {
201     switch (level) {
202     case XKB_LOG_LEVEL_DEBUG:
203         return "xkbcommon: DEBUG: ";
204     case XKB_LOG_LEVEL_INFO:
205         return "xkbcommon: INFO: ";
206     case XKB_LOG_LEVEL_WARNING:
207         return "xkbcommon: WARNING: ";
208     case XKB_LOG_LEVEL_ERROR:
209         return "xkbcommon: ERROR: ";
210     case XKB_LOG_LEVEL_CRITICAL:
211         return "xkbcommon: CRITICAL: ";
212     default:
213         return NULL;
214     }
215 }
216
217 ATTR_PRINTF(3, 0) static void
218 default_log_fn(struct xkb_context *ctx, enum xkb_log_level level,
219                const char *fmt, va_list args)
220 {
221     const char *prefix = log_level_to_prefix(level);
222
223     if (prefix)
224         fprintf(stderr, "%s", prefix);
225     vfprintf(stderr, fmt, args);
226 }
227
228 static enum xkb_log_level
229 log_level(const char *level) {
230     char *endptr;
231     enum xkb_log_level lvl;
232
233     errno = 0;
234     lvl = strtol(level, &endptr, 10);
235     if (errno == 0 && (endptr[0] == '\0' || is_space(endptr[0])))
236         return lvl;
237     if (istreq_prefix("crit", level))
238         return XKB_LOG_LEVEL_CRITICAL;
239     if (istreq_prefix("err", level))
240         return XKB_LOG_LEVEL_ERROR;
241     if (istreq_prefix("warn", level))
242         return XKB_LOG_LEVEL_WARNING;
243     if (istreq_prefix("info", level))
244         return XKB_LOG_LEVEL_INFO;
245     if (istreq_prefix("debug", level) || istreq_prefix("dbg", level))
246         return XKB_LOG_LEVEL_DEBUG;
247
248     return XKB_LOG_LEVEL_ERROR;
249 }
250
251 static int
252 log_verbosity(const char *verbosity) {
253     char *endptr;
254     int v;
255
256     errno = 0;
257     v = strtol(verbosity, &endptr, 10);
258     if (errno == 0)
259         return v;
260
261     return 0;
262 }
263
264 /**
265  * Create a new context.
266  */
267 XKB_EXPORT struct xkb_context *
268 xkb_context_new(enum xkb_context_flags flags)
269 {
270     const char *env;
271     struct xkb_context *ctx = calloc(1, sizeof(*ctx));
272
273     if (!ctx)
274         return NULL;
275
276     ctx->refcnt = 1;
277     ctx->log_fn = default_log_fn;
278     ctx->log_level = XKB_LOG_LEVEL_ERROR;
279     ctx->log_verbosity = 0;
280
281     /* Environment overwrites defaults. */
282     env = secure_getenv("XKB_LOG_LEVEL");
283     if (env)
284         xkb_context_set_log_level(ctx, log_level(env));
285
286     env = secure_getenv("XKB_LOG_VERBOSITY");
287     if (env)
288         xkb_context_set_log_verbosity(ctx, log_verbosity(env));
289
290     if (!(flags & XKB_CONTEXT_NO_DEFAULT_INCLUDES) &&
291         !xkb_context_include_path_append_default(ctx)) {
292         log_err(ctx, "failed to add default include path %s\n",
293                 DFLT_XKB_CONFIG_ROOT);
294         xkb_context_unref(ctx);
295         return NULL;
296     }
297
298     ctx->use_environment_names = !(flags & XKB_CONTEXT_NO_ENVIRONMENT_NAMES);
299
300     ctx->atom_table = atom_table_new();
301     if (!ctx->atom_table) {
302         xkb_context_unref(ctx);
303         return NULL;
304     }
305
306     return ctx;
307 }
308
309 XKB_EXPORT void
310 xkb_context_set_log_fn(struct xkb_context *ctx,
311                        void (*log_fn)(struct xkb_context *ctx,
312                                       enum xkb_log_level level,
313                                       const char *fmt, va_list args))
314 {
315     ctx->log_fn = (log_fn ? log_fn : default_log_fn);
316 }
317
318 XKB_EXPORT enum xkb_log_level
319 xkb_context_get_log_level(struct xkb_context *ctx)
320 {
321     return ctx->log_level;
322 }
323
324 XKB_EXPORT void
325 xkb_context_set_log_level(struct xkb_context *ctx, enum xkb_log_level level)
326 {
327     ctx->log_level = level;
328 }
329
330 XKB_EXPORT int
331 xkb_context_get_log_verbosity(struct xkb_context *ctx)
332 {
333     return ctx->log_verbosity;
334 }
335
336 XKB_EXPORT void
337 xkb_context_set_log_verbosity(struct xkb_context *ctx, int verbosity)
338 {
339     ctx->log_verbosity = verbosity;
340 }
341
342 XKB_EXPORT void *
343 xkb_context_get_user_data(struct xkb_context *ctx)
344 {
345     if (ctx)
346         return ctx->user_data;
347     return NULL;
348 }
349
350 XKB_EXPORT void
351 xkb_context_set_user_data(struct xkb_context *ctx, void *user_data)
352 {
353     ctx->user_data = user_data;
354 }