2 * Copyright © 2012 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
23 * Author: Daniel Stone <daniel@fooishbar.org>
30 #include <sys/types.h>
35 #include "xkbcommon/xkbcommon.h"
36 #include "XKBcommonint.h"
42 int num_include_paths;
43 int size_include_paths;
47 * Append one directory to the context's include path.
50 xkb_context_include_path_append(struct xkb_context *context, const char *path)
55 if (context->size_include_paths <= context->num_include_paths) {
58 new_size = context->size_include_paths + 2;
59 new_paths = uTypedRecalloc(context->include_paths,
60 context->size_include_paths,
65 context->include_paths = new_paths;
66 context->size_include_paths = new_size;
69 err = stat(path, &stat_buf);
72 if (!S_ISDIR(stat_buf.st_mode))
74 if (eaccess(path, R_OK | X_OK) != 0)
77 context->include_paths[context->num_include_paths] = strdup(path);
78 if (!context->include_paths[context->num_include_paths])
80 context->num_include_paths++;
86 * Append the default include directories to the context.
89 xkb_context_include_path_append_default(struct xkb_context *context)
91 const char *home = getenv("HOME");
95 (void) xkb_context_include_path_append(context, DFLT_XKB_CONFIG_ROOT);
97 home = getenv("HOME");
100 err = asprintf(&user_path, "%s/.xkb", home);
103 (void) xkb_context_include_path_append(context, user_path);
109 * Remove all entries in the context's include path.
112 xkb_context_include_path_clear(struct xkb_context *context)
116 for (i = 0; i < context->num_include_paths; i++) {
117 free(context->include_paths[i]);
118 context->include_paths[i] = NULL;
120 context->num_include_paths = 0;
124 * xkb_context_include_path_clear() + xkb_context_include_path_append_default()
127 xkb_context_include_path_reset_defaults(struct xkb_context *context)
129 xkb_context_include_path_clear(context);
130 return xkb_context_include_path_append_default(context);
134 * Returns the number of entries in the context's include path.
137 xkb_context_include_path_num_entries(struct xkb_context *context)
139 return context->size_include_paths;
143 * Returns the given entry in the context's include path, or NULL if an
144 * invalid index is passed.
147 xkb_context_include_path_get_entry(struct xkb_context *context,
150 if (index >= xkb_context_include_path_num_entries(context))
153 return context->include_paths[index];
157 * Take a new reference on the context.
160 xkb_context_ref(struct xkb_context *context)
166 * Drop an existing reference on the context, and free it if the refcnt is
170 xkb_context_unref(struct xkb_context *context)
172 if (--context->refcnt > 0)
175 xkb_context_include_path_clear(context);
180 * Create a new context.
183 xkb_context_new(void)
185 struct xkb_context *context = calloc(1, sizeof(*context));
192 if (!xkb_context_include_path_append_default(context)) {
193 xkb_context_unref(context);