2009-01-20 08:46:12 -07:00
|
|
|
/*
|
|
|
|
Copyright 1985, 1987, 1990, 1998 The Open Group
|
|
|
|
Copyright 2008 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 <stdlib.h>
|
2012-04-05 01:47:43 -06:00
|
|
|
#include <stdio.h>
|
2009-01-20 08:46:12 -07:00
|
|
|
#include <string.h>
|
|
|
|
|
2012-05-08 05:52:23 -06:00
|
|
|
#include "xkb-priv.h"
|
2009-01-20 08:46:12 -07:00
|
|
|
#include "ks_tables.h"
|
|
|
|
|
2012-04-05 01:47:43 -06:00
|
|
|
_X_EXPORT void
|
2012-05-09 06:22:34 -06:00
|
|
|
xkb_keysym_get_name(xkb_keysym_t ks, char *buffer, size_t size)
|
2009-01-20 08:46:12 -07:00
|
|
|
{
|
2009-03-19 12:34:54 -06:00
|
|
|
int i, n, h, idx;
|
2009-01-20 08:46:12 -07:00
|
|
|
const unsigned char *entry;
|
|
|
|
unsigned char val1, val2, val3, val4;
|
|
|
|
|
2010-10-08 13:33:18 -06:00
|
|
|
if ((ks & ((unsigned long) ~0x1fffffff)) != 0) {
|
|
|
|
snprintf(buffer, size, "Invalid");
|
|
|
|
return;
|
|
|
|
}
|
2009-03-19 12:34:54 -06:00
|
|
|
|
2009-04-24 22:42:42 -06:00
|
|
|
/* Try to find it in our hash table. */
|
2009-03-19 12:34:54 -06:00
|
|
|
if (ks <= 0x1fffffff) {
|
|
|
|
val1 = ks >> 24;
|
|
|
|
val2 = (ks >> 16) & 0xff;
|
|
|
|
val3 = (ks >> 8) & 0xff;
|
|
|
|
val4 = ks & 0xff;
|
|
|
|
i = ks % VTABLESIZE;
|
|
|
|
h = i + 1;
|
|
|
|
n = VMAXHASH;
|
|
|
|
|
|
|
|
while ((idx = hashKeysym[i])) {
|
|
|
|
entry = &_XkeyTable[idx];
|
|
|
|
|
|
|
|
if ((entry[0] == val1) && (entry[1] == val2) &&
|
2010-10-08 13:33:18 -06:00
|
|
|
(entry[2] == val3) && (entry[3] == val4)) {
|
|
|
|
snprintf(buffer, size, "%s", entry + 4);
|
|
|
|
return;
|
|
|
|
}
|
2009-03-19 12:34:54 -06:00
|
|
|
|
|
|
|
if (!--n)
|
|
|
|
break;
|
|
|
|
|
|
|
|
i += h;
|
|
|
|
if (i >= VTABLESIZE)
|
|
|
|
i -= VTABLESIZE;
|
|
|
|
}
|
2009-01-20 08:46:12 -07:00
|
|
|
}
|
|
|
|
|
2010-10-08 13:33:18 -06:00
|
|
|
if (ks >= 0x01000100 && ks <= 0x0110ffff)
|
|
|
|
/* Unnamed Unicode codepoint. */
|
|
|
|
snprintf(buffer, size, "U%lx", ks & 0xffffffUL);
|
|
|
|
else
|
|
|
|
/* Unnamed, non-Unicode, symbol (shouldn't generally happen). */
|
|
|
|
snprintf(buffer, size, "0x%08x", ks);
|
2009-01-20 08:46:12 -07:00
|
|
|
}
|
|
|
|
|
2012-04-05 01:47:43 -06:00
|
|
|
_X_EXPORT xkb_keysym_t
|
2012-05-09 06:22:34 -06:00
|
|
|
xkb_keysym_from_name(const char *s)
|
2009-01-20 08:46:12 -07:00
|
|
|
{
|
2009-03-19 12:34:54 -06:00
|
|
|
int i, n, h, c, idx;
|
2012-02-25 12:09:28 -07:00
|
|
|
uint32_t sig = 0;
|
2009-03-19 12:34:54 -06:00
|
|
|
const char *p = s;
|
2012-04-03 06:57:44 -06:00
|
|
|
char *tmp;
|
2009-01-20 08:46:12 -07:00
|
|
|
const unsigned char *entry;
|
|
|
|
unsigned char sig1, sig2;
|
2012-03-09 12:03:59 -07:00
|
|
|
xkb_keysym_t val;
|
2009-01-20 08:46:12 -07:00
|
|
|
|
|
|
|
while ((c = *p++))
|
2009-03-19 12:34:54 -06:00
|
|
|
sig = (sig << 1) + c;
|
|
|
|
|
2009-01-20 08:46:12 -07:00
|
|
|
i = sig % KTABLESIZE;
|
|
|
|
h = i + 1;
|
|
|
|
sig1 = (sig >> 8) & 0xff;
|
|
|
|
sig2 = sig & 0xff;
|
|
|
|
n = KMAXHASH;
|
2009-03-19 12:34:54 -06:00
|
|
|
|
|
|
|
while ((idx = hashString[i])) {
|
|
|
|
entry = &_XkeyTable[idx];
|
|
|
|
|
|
|
|
if ((entry[0] == sig1) && (entry[1] == sig2) &&
|
2012-02-24 07:07:17 -07:00
|
|
|
!strcmp(s, (const char *)entry + 6))
|
2009-03-19 12:34:54 -06:00
|
|
|
{
|
|
|
|
val = (entry[2] << 24) | (entry[3] << 16) |
|
|
|
|
(entry[4] << 8) | entry[5];
|
|
|
|
if (!val)
|
2012-05-09 07:05:00 -06:00
|
|
|
val = XKB_KEY_VoidSymbol;
|
2009-03-19 12:34:54 -06:00
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!--n)
|
|
|
|
break;
|
|
|
|
|
|
|
|
i += h;
|
|
|
|
if (i >= KTABLESIZE)
|
|
|
|
i -= KTABLESIZE;
|
2009-01-20 08:46:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (*s == 'U') {
|
2012-04-03 06:57:44 -06:00
|
|
|
val = strtoul(&s[1], &tmp, 16);
|
|
|
|
if (tmp && *tmp != '\0')
|
2012-05-09 07:05:00 -06:00
|
|
|
return XKB_KEY_NoSymbol;
|
2009-03-19 12:34:54 -06:00
|
|
|
|
|
|
|
if (val < 0x20 || (val > 0x7e && val < 0xa0))
|
2012-05-09 07:05:00 -06:00
|
|
|
return XKB_KEY_NoSymbol;
|
2009-03-19 12:34:54 -06:00
|
|
|
if (val < 0x100)
|
|
|
|
return val;
|
2009-04-24 22:42:42 -06:00
|
|
|
if (val > 0x10ffff)
|
2012-05-09 07:05:00 -06:00
|
|
|
return XKB_KEY_NoSymbol;
|
2009-01-20 08:46:12 -07:00
|
|
|
return val | 0x01000000;
|
|
|
|
}
|
2009-04-24 22:42:42 -06:00
|
|
|
else if (s[0] == '0' && s[1] == 'x') {
|
2012-04-03 06:57:44 -06:00
|
|
|
val = strtoul(&s[2], &tmp, 16);
|
|
|
|
if (tmp && *tmp != '\0')
|
2012-05-09 07:05:00 -06:00
|
|
|
return XKB_KEY_NoSymbol;
|
2012-04-03 06:57:44 -06:00
|
|
|
|
|
|
|
return val;
|
2009-04-24 22:42:42 -06:00
|
|
|
}
|
2009-03-19 12:34:54 -06:00
|
|
|
|
2012-02-25 15:03:24 -07:00
|
|
|
/* Stupid inconsistency between the headers and XKeysymDB: the former has
|
|
|
|
* no separating underscore, while some XF86* syms in the latter did.
|
|
|
|
* As a last ditch effort, try without. */
|
|
|
|
if (strncmp(s, "XF86_", 5) == 0) {
|
2012-03-09 12:03:59 -07:00
|
|
|
xkb_keysym_t ret;
|
2012-04-03 07:26:04 -06:00
|
|
|
tmp = strdup(s);
|
2012-02-25 15:03:24 -07:00
|
|
|
if (!tmp)
|
2012-05-09 07:05:00 -06:00
|
|
|
return XKB_KEY_NoSymbol;
|
2012-02-25 15:03:24 -07:00
|
|
|
memmove(&tmp[4], &tmp[5], strlen(s) - 5 + 1);
|
2012-05-09 06:22:34 -06:00
|
|
|
ret = xkb_keysym_from_name(tmp);
|
2012-02-25 15:03:24 -07:00
|
|
|
free(tmp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-09 07:05:00 -06:00
|
|
|
return XKB_KEY_NoSymbol;
|
2009-01-20 08:46:12 -07:00
|
|
|
}
|