Add xkbcomp/keymap.c and move some code there
[platform/upstream/libxkbcommon.git] / src / xkbcomp / xkbcomp.c
1 /*
2  * Copyright 2009  Dan Nicholson
3  *
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:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20  *
21  * Except as contained in this notice, the names of the authors or their
22  * institutions shall not be used in advertising or otherwise to promote the
23  * sale, use or other dealings in this Software without prior written
24  * authorization from the authors.
25  */
26
27 #include "xkbcomp-priv.h"
28 #include "rules.h"
29
30 static struct xkb_keymap *
31 compile_keymap_file(struct xkb_context *ctx, XkbFile *file)
32 {
33     struct xkb_keymap *keymap;
34
35     keymap = xkb_map_new(ctx);
36     if (!keymap)
37         goto err;
38
39     if (file->file_type != FILE_TYPE_KEYMAP) {
40         log_err(ctx, "Cannot compile a %s file alone into a keymap\n",
41                 xkb_file_type_to_string(file->file_type));
42         goto err;
43     }
44
45     if (!CompileKeymap(file, keymap, MERGE_OVERRIDE)) {
46         log_err(ctx, "Failed to compile keymap\n");
47         goto err;
48     }
49
50     return keymap;
51
52 err:
53     xkb_map_unref(keymap);
54     return NULL;
55 }
56
57 XKB_EXPORT struct xkb_keymap *
58 xkb_map_new_from_names(struct xkb_context *ctx,
59                        const struct xkb_rule_names *rmlvo_in,
60                        enum xkb_map_compile_flags flags)
61 {
62     bool ok;
63     struct xkb_component_names kccgst;
64     struct xkb_rule_names rmlvo = *rmlvo_in;
65     XkbFile *file;
66     struct xkb_keymap *keymap;
67
68     if (isempty(rmlvo.rules))
69         rmlvo.rules = DEFAULT_XKB_RULES;
70     if (isempty(rmlvo.model))
71         rmlvo.model = DEFAULT_XKB_MODEL;
72     if (isempty(rmlvo.layout))
73         rmlvo.layout = DEFAULT_XKB_LAYOUT;
74
75     ok = xkb_components_from_rules(ctx, &rmlvo, &kccgst);
76     if (!ok) {
77         log_err(ctx,
78                 "Couldn't look up rules '%s', model '%s', layout '%s', "
79                 "variant '%s', options '%s'\n",
80                 rmlvo.rules, rmlvo.model, rmlvo.layout, rmlvo.variant,
81                 rmlvo.options);
82         return NULL;
83     }
84
85     file = XkbFileFromComponents(ctx, &kccgst);
86
87     free(kccgst.keycodes);
88     free(kccgst.types);
89     free(kccgst.compat);
90     free(kccgst.symbols);
91
92     if (!file) {
93         log_err(ctx,
94                 "Failed to generate parsed XKB file from components\n");
95         return NULL;
96     }
97
98     keymap = compile_keymap_file(ctx, file);
99     FreeXkbFile(file);
100     return keymap;
101 }
102
103 XKB_EXPORT struct xkb_keymap *
104 xkb_map_new_from_string(struct xkb_context *ctx,
105                         const char *string,
106                         enum xkb_keymap_format format,
107                         enum xkb_map_compile_flags flags)
108 {
109     bool ok;
110     XkbFile *file;
111     struct xkb_keymap *keymap;
112
113     if (format != XKB_KEYMAP_FORMAT_TEXT_V1) {
114         log_err(ctx, "Unsupported keymap format %d\n", format);
115         return NULL;
116     }
117
118     if (!string) {
119         log_err(ctx, "No string specified to generate XKB keymap\n");
120         return NULL;
121     }
122
123     ok = XkbParseString(ctx, string, "input", &file);
124     if (!ok) {
125         log_err(ctx, "Failed to parse input xkb file\n");
126         return NULL;
127     }
128
129     keymap = compile_keymap_file(ctx, file);
130     FreeXkbFile(file);
131     return keymap;
132 }
133
134 XKB_EXPORT struct xkb_keymap *
135 xkb_map_new_from_file(struct xkb_context *ctx,
136                       FILE *file,
137                       enum xkb_keymap_format format,
138                       enum xkb_map_compile_flags flags)
139 {
140     bool ok;
141     XkbFile *xkb_file;
142     struct xkb_keymap *keymap;
143
144     if (format != XKB_KEYMAP_FORMAT_TEXT_V1) {
145         log_err(ctx, "Unsupported keymap format %d\n", format);
146         return NULL;
147     }
148
149     if (!file) {
150         log_err(ctx, "No file specified to generate XKB keymap\n");
151         return NULL;
152     }
153
154     ok = XkbParseFile(ctx, file, "(unknown file)", &xkb_file);
155     if (!ok) {
156         log_err(ctx, "Failed to parse input xkb file\n");
157         return NULL;
158     }
159
160     keymap = compile_keymap_file(ctx, xkb_file);
161     FreeXkbFile(xkb_file);
162     return keymap;
163 }