Hash :
bb6ca768
Author :
Date :
2012-03-27T22:41:22
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
/*
Copyright 2009 Dan Nicholson
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the names of the authors or their
institutions shall not be used in advertising or otherwise to promote the
sale, use or other dealings in this Software without prior written
authorization from the authors.
*/
#include <limits.h>
#include "xkbcomp.h"
#include "xkballoc.h"
#include "xkbrules.h"
#include "xkbpath.h"
#include "xkbmisc.h"
#include "parseutils.h"
#include "utils.h"
/* Global warning level */
unsigned int warningLevel = 0;
#define ISEMPTY(str) (!(str) || (strlen(str) == 0))
static XkbFile *
XkbKeymapFileFromComponents(const struct xkb_component_names * ktcsg)
{
XkbFile *keycodes, *types, *compat, *symbols;
IncludeStmt *inc;
inc = IncludeCreate(ktcsg->keycodes, MergeDefault);
keycodes = CreateXKBFile(XkmKeyNamesIndex, NULL, (ParseCommon *)inc, 0);
inc = IncludeCreate(ktcsg->types, MergeDefault);
types = CreateXKBFile(XkmTypesIndex, NULL, (ParseCommon *)inc, 0);
AppendStmt(&keycodes->common, &types->common);
inc = IncludeCreate(ktcsg->compat, MergeDefault);
compat = CreateXKBFile(XkmCompatMapIndex, NULL, (ParseCommon *)inc, 0);
AppendStmt(&keycodes->common, &compat->common);
inc = IncludeCreate(ktcsg->symbols, MergeDefault);
symbols = CreateXKBFile(XkmSymbolsIndex, NULL, (ParseCommon *)inc, 0);
AppendStmt(&keycodes->common, &symbols->common);
return CreateXKBFile(XkmKeymapFile,
ktcsg->keymap ? ktcsg->keymap : strdup(""),
&keycodes->common, 0);
}
static struct xkb_component_names *
XkbComponentsFromRules(struct xkb_context *context,
const char *rules,
const XkbRF_VarDefsPtr defs)
{
FILE *rulesFile = NULL;
char *rulesPath = NULL;
XkbRF_RulesPtr loaded = NULL;
struct xkb_component_names * names = NULL;
rulesFile = XkbFindFileInPath(context, rules, XkmRulesFile, &rulesPath);
if (!rulesFile) {
ERROR("could not find \"%s\" rules in XKB path\n", rules);
return NULL;
}
if (!(loaded = uTypedCalloc(1, XkbRF_RulesRec))) {
ERROR("failed to allocate XKB rules\n");
goto unwind_file;
}
if (!XkbcRF_LoadRules(rulesFile, loaded)) {
ERROR("failed to load XKB rules \"%s\"\n", rulesPath);
goto unwind_file;
}
if (!(names = uTypedCalloc(1, struct xkb_component_names))) {
ERROR("failed to allocate XKB components\n");
goto unwind_file;
}
if (!XkbcRF_GetComponents(loaded, defs, names)) {
free(names->keymap);
free(names->keycodes);
free(names->types);
free(names->compat);
free(names->symbols);
free(names);
names = NULL;
ERROR("no components returned from XKB rules \"%s\"\n", rulesPath);
}
unwind_file:
XkbcRF_Free(loaded);
if (rulesFile)
fclose(rulesFile);
free(rulesPath);
return names;
}
struct xkb_desc *
xkb_map_new_from_names(struct xkb_context *context,
const struct xkb_rule_names *rmlvo)
{
XkbRF_VarDefsRec defs;
struct xkb_component_names *names;
struct xkb_desc *xkb;
if (!rmlvo || ISEMPTY(rmlvo->rules) || ISEMPTY(rmlvo->layout)) {
ERROR("rules and layout required to generate XKB keymap\n");
return NULL;
}
defs.model = rmlvo->model;
defs.layout = rmlvo->layout;
defs.variant = rmlvo->variant;
defs.options = rmlvo->options;
names = XkbComponentsFromRules(context, rmlvo->rules, &defs);
if (!names) {
ERROR("failed to generate XKB components from rules \"%s\"\n",
rmlvo->rules);
return NULL;
}
xkb = xkb_map_new_from_kccgst(context, names);
free(names->keymap);
free(names->keycodes);
free(names->types);
free(names->compat);
free(names->symbols);
free(names);
return xkb;
}
static XkbFile *
XkbChooseMap(XkbFile *file, const char *name)
{
XkbFile *map = file;
/* map specified? */
if (name) {
while (map) {
if (map->name && strcmp(map->name, name) == 0)
break;
map = (XkbFile *) map->common.next;
}
if (!map)
ERROR("no map named \"%s\" in input file\n", name);
}
else if (file->common.next) {
/* look for map with XkbLC_Default flag. */
for (; map; map = (XkbFile *) map->common.next) {
if (map->flags & XkbLC_Default)
break;
}
if (!map) {
map = file;
WARN("no map specified, but components have several\n");
WARN("using the first defined map, \"%s\"\n",
map->name ? map->name : "");
}
}
return map;
}
static struct xkb_desc *
compile_keymap(struct xkb_context *context, XkbFile *file)
{
XkbFile *mapToUse;
struct xkb_desc * xkb = NULL;
/* Find map to use */
mapToUse = XkbChooseMap(file, NULL);
if (!mapToUse)
goto err;
switch (mapToUse->type) {
case XkmSemanticsFile:
case XkmLayoutFile:
case XkmKeymapFile:
break;
default:
ERROR("file type %d not handled\n", mapToUse->type);
goto err;
}
xkb = CompileKeymap(context, mapToUse, MergeReplace);
if (!xkb)
goto err;
err:
FreeXKBFile(file);
XkbcFreeAllAtoms();
return xkb;
}
struct xkb_desc *
xkb_map_new_from_kccgst(struct xkb_context *context,
const struct xkb_component_names *kccgst)
{
XkbFile *file;
if (!kccgst) {
ERROR("no components specified\n");
return NULL;
}
if (ISEMPTY(kccgst->keycodes)) {
ERROR("keycodes required to generate XKB keymap\n");
return NULL;
}
if (ISEMPTY(kccgst->compat)) {
ERROR("compat map required to generate XKB keymap\n");
return NULL;
}
if (ISEMPTY(kccgst->types)) {
ERROR("types required to generate XKB keymap\n");
return NULL;
}
if (ISEMPTY(kccgst->symbols)) {
ERROR("symbols required to generate XKB keymap\n");
return NULL;
}
if (!(file = XkbKeymapFileFromComponents(kccgst))) {
ERROR("failed to generate parsed XKB file from components\n");
return NULL;
}
return compile_keymap(context, file);
}
struct xkb_desc *
xkb_map_new_from_string(struct xkb_context *context,
const char *string,
enum xkb_keymap_format format)
{
XkbFile *file;
if (format != XKB_KEYMAP_FORMAT_TEXT_V1) {
ERROR("unsupported keymap format %d\n", format);
return NULL;
}
if (!string) {
ERROR("no string specified to generate XKB keymap\n");
return NULL;
}
if (!XKBParseString(string, "input", &file) || !file) {
ERROR("failed to parse input xkb file\n");
return NULL;
}
return compile_keymap(context, file);
}
struct xkb_desc *
xkb_map_new_from_fd(struct xkb_context *context,
int fd,
enum xkb_keymap_format format)
{
XkbFile *file;
FILE *fptr;
if (format != XKB_KEYMAP_FORMAT_TEXT_V1) {
ERROR("unsupported keymap format %d\n", format);
return NULL;
}
if (fd < 0) {
ERROR("no file specified to generate XKB keymap\n");
return NULL;
}
fptr = fdopen(fd, "r");
if (!fptr) {
ERROR("couldn't associate fd with file pointer\n");
return NULL;
}
if (!XKBParseFile(fptr, "(unknown file)", &file) || !file) {
ERROR("failed to parse input xkb file\n");
return NULL;
}
return compile_keymap(context, file);
}
void
xkb_map_ref(struct xkb_desc *xkb)
{
xkb->refcnt++;
}
void
xkb_map_unref(struct xkb_desc *xkb)
{
if (--xkb->refcnt > 0)
return;
XkbcFreeKeyboard(xkb);
}