2009-01-14 08:35:10 -07:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright 1990, 1998 The Open Group
|
|
|
|
|
|
|
|
Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
the above copyright notice appear in all copies and that both that
|
|
|
|
copyright notice and this permission notice appear in supporting
|
|
|
|
documentation.
|
|
|
|
|
|
|
|
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 OPEN GROUP 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 name of The Open Group 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 Open Group.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Constructs hash tables for XStringToKeysym and XKeysymToString. */
|
|
|
|
|
|
|
|
#include <X11/X.h>
|
|
|
|
#include <X11/Xos.h>
|
|
|
|
#include <X11/keysymdef.h>
|
2012-02-25 12:09:28 -07:00
|
|
|
#include <inttypes.h>
|
2009-01-14 08:35:10 -07:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-02-25 12:09:28 -07:00
|
|
|
typedef uint32_t Signature;
|
2009-01-14 08:35:10 -07:00
|
|
|
|
|
|
|
#define KTNUM 4000
|
|
|
|
|
|
|
|
static struct info {
|
2009-03-19 11:59:32 -06:00
|
|
|
char *name;
|
|
|
|
KeySym val;
|
2009-01-14 08:35:10 -07:00
|
|
|
} info[KTNUM];
|
|
|
|
|
|
|
|
#define MIN_REHASH 15
|
|
|
|
#define MATCHES 10
|
|
|
|
|
|
|
|
static char tab[KTNUM];
|
|
|
|
static unsigned short offsets[KTNUM];
|
|
|
|
static unsigned short indexes[KTNUM];
|
|
|
|
static KeySym values[KTNUM];
|
2012-02-25 15:03:24 -07:00
|
|
|
static int ksnum = 0;
|
2009-01-22 09:25:39 -07:00
|
|
|
|
|
|
|
static int
|
2012-02-25 15:03:24 -07:00
|
|
|
parse_line(const char *buf, char *key, KeySym *val, char *prefix)
|
2009-01-22 09:25:39 -07:00
|
|
|
{
|
|
|
|
int i;
|
2009-01-22 19:06:48 -07:00
|
|
|
char alias[128];
|
2012-02-25 15:03:24 -07:00
|
|
|
char *tmp, *tmpa;
|
|
|
|
|
|
|
|
/* See if we can catch a straight XK_foo 0x1234-style definition first;
|
|
|
|
* the trickery around tmp is to account for prefices. */
|
|
|
|
i = sscanf(buf, "#define %127s 0x%lx", key, val);
|
|
|
|
if (i == 2 && (tmp = strstr(key, "XK_"))) {
|
|
|
|
memcpy(prefix, key, tmp - key);
|
|
|
|
prefix[tmp - key] = '\0';
|
|
|
|
tmp += 3;
|
|
|
|
memmove(key, tmp, strlen(tmp) + 1);
|
|
|
|
return 1;
|
2009-01-22 09:25:39 -07:00
|
|
|
}
|
|
|
|
|
2012-02-25 15:03:24 -07:00
|
|
|
/* Now try to catch alias (XK_foo XK_bar) definitions, and resolve them
|
|
|
|
* immediately: if the target is in the form XF86XK_foo, we need to
|
|
|
|
* canonicalise this to XF86foo before we do the lookup. */
|
|
|
|
i = sscanf(buf, "#define %127s %127s", key, alias);
|
|
|
|
if (i == 2 && (tmp = strstr(key, "XK_")) && (tmpa = strstr(alias, "XK_"))) {
|
|
|
|
memcpy(prefix, key, tmp - key);
|
|
|
|
prefix[tmp - key] = '\0';
|
|
|
|
tmp += 3;
|
|
|
|
memmove(key, tmp, strlen(tmp) + 1);
|
|
|
|
memmove(tmpa, tmpa + 3, strlen(tmpa + 3) + 1);
|
|
|
|
|
|
|
|
for (i = ksnum - 1; i >= 0; i--) {
|
|
|
|
if (strcmp(info[i].name, alias) == 0) {
|
|
|
|
*val = info[i].val;
|
|
|
|
return 1;
|
|
|
|
}
|
2009-01-22 09:25:39 -07:00
|
|
|
}
|
2012-02-25 15:03:24 -07:00
|
|
|
|
|
|
|
fprintf(stderr, "can't find matching definition %s for keysym %s%s\n",
|
|
|
|
alias, prefix, key);
|
2009-01-22 09:25:39 -07:00
|
|
|
}
|
|
|
|
|
2012-02-25 15:03:24 -07:00
|
|
|
return 0;
|
2009-01-22 09:25:39 -07:00
|
|
|
}
|
|
|
|
|
2009-01-14 08:35:10 -07:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2012-02-25 14:17:47 -07:00
|
|
|
FILE *fptr;
|
2009-01-14 08:35:10 -07:00
|
|
|
int max_rehash;
|
|
|
|
Signature sig;
|
2012-02-25 14:17:47 -07:00
|
|
|
int i, j, k, l, z;
|
2012-02-25 12:09:28 -07:00
|
|
|
char *name;
|
|
|
|
char c;
|
2009-01-14 08:35:10 -07:00
|
|
|
int first;
|
|
|
|
int best_max_rehash;
|
|
|
|
int best_z = 0;
|
|
|
|
int num_found;
|
|
|
|
KeySym val;
|
2012-02-25 15:03:24 -07:00
|
|
|
char key[128], prefix[128];
|
2012-02-24 06:53:08 -07:00
|
|
|
char buf[1024];
|
2009-01-14 08:35:10 -07:00
|
|
|
|
2012-02-25 14:17:47 -07:00
|
|
|
for (l = 1; l < argc; l++) {
|
|
|
|
fptr = fopen(argv[l], "r");
|
|
|
|
if (!fptr) {
|
|
|
|
fprintf(stderr, "couldn't open %s\n", argv[l]);
|
|
|
|
continue;
|
2009-01-16 08:28:30 -07:00
|
|
|
}
|
|
|
|
|
2012-02-25 14:17:47 -07:00
|
|
|
while (fgets(buf, sizeof(buf), fptr)) {
|
2012-02-25 15:03:24 -07:00
|
|
|
if (!parse_line(buf, key, &val, prefix))
|
|
|
|
continue;
|
2012-02-25 14:17:47 -07:00
|
|
|
|
2012-02-25 15:03:24 -07:00
|
|
|
if (val == XK_VoidSymbol)
|
|
|
|
val = 0;
|
|
|
|
if (val > 0x1fffffff) {
|
|
|
|
fprintf(stderr, "ignoring illegal keysym (%s, %lx)\n", key,
|
|
|
|
val);
|
2009-03-19 11:59:32 -06:00
|
|
|
continue;
|
2012-02-25 14:17:47 -07:00
|
|
|
}
|
2012-02-25 15:03:24 -07:00
|
|
|
|
|
|
|
name = malloc(strlen(prefix) + strlen(key) + 1);
|
2012-02-25 14:17:47 -07:00
|
|
|
if (!name) {
|
|
|
|
fprintf(stderr, "makekeys: out of memory!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2012-02-25 15:03:24 -07:00
|
|
|
sprintf(name, "%s%s", prefix, key);
|
2012-02-25 14:17:47 -07:00
|
|
|
info[ksnum].name = name;
|
2012-02-25 15:03:24 -07:00
|
|
|
info[ksnum].val = val;
|
2012-02-25 14:17:47 -07:00
|
|
|
ksnum++;
|
|
|
|
if (ksnum == KTNUM) {
|
|
|
|
fprintf(stderr, "makekeys: too many keysyms!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-03-19 11:59:32 -06:00
|
|
|
}
|
2009-01-16 08:28:30 -07:00
|
|
|
|
2012-02-25 14:17:47 -07:00
|
|
|
fclose(fptr);
|
2009-01-14 08:35:10 -07:00
|
|
|
}
|
|
|
|
|
2009-04-24 22:32:04 -06:00
|
|
|
/* Special case NoSymbol. */
|
|
|
|
info[ksnum].name = strdup("NoSymbol");
|
|
|
|
info[ksnum].val = 0L;
|
|
|
|
ksnum++;
|
|
|
|
|
2009-01-14 08:35:10 -07:00
|
|
|
printf("/* This file is generated from keysymdef.h. */\n");
|
|
|
|
printf("/* Do not edit. */\n");
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
best_max_rehash = ksnum;
|
|
|
|
num_found = 0;
|
|
|
|
for (z = ksnum; z < KTNUM; z++) {
|
2009-03-19 11:59:32 -06:00
|
|
|
max_rehash = 0;
|
|
|
|
for (name = tab, i = z; --i >= 0;)
|
|
|
|
*name++ = 0;
|
|
|
|
for (i = 0; i < ksnum; i++) {
|
|
|
|
name = info[i].name;
|
|
|
|
sig = 0;
|
|
|
|
while ((c = *name++))
|
|
|
|
sig = (sig << 1) + c;
|
|
|
|
first = j = sig % z;
|
|
|
|
for (k = 0; tab[j]; k++) {
|
|
|
|
j += first + 1;
|
|
|
|
if (j >= z)
|
|
|
|
j -= z;
|
|
|
|
if (j == first)
|
|
|
|
goto next1;
|
|
|
|
}
|
|
|
|
tab[j] = 1;
|
|
|
|
if (k > max_rehash)
|
|
|
|
max_rehash = k;
|
|
|
|
}
|
|
|
|
if (max_rehash < MIN_REHASH) {
|
|
|
|
if (max_rehash < best_max_rehash) {
|
|
|
|
best_max_rehash = max_rehash;
|
|
|
|
best_z = z;
|
|
|
|
}
|
|
|
|
num_found++;
|
|
|
|
if (num_found >= MATCHES)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
next1: ;
|
2009-01-14 08:35:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
z = best_z;
|
2009-01-14 19:07:06 -07:00
|
|
|
printf("#ifndef KS_TABLES_H\n");
|
|
|
|
printf("#define KS_TABLES_H\n\n");
|
2010-09-27 14:05:52 -06:00
|
|
|
printf("static const unsigned char _XkeyTable[] = {\n");
|
2012-02-25 12:13:26 -07:00
|
|
|
if (z == 0) {
|
|
|
|
fprintf(stderr, "makekeys: failed to find small enough hash!\n"
|
|
|
|
"Try increasing KTNUM in makekeys.c\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-01-14 08:35:10 -07:00
|
|
|
printf("0,\n");
|
|
|
|
k = 1;
|
|
|
|
for (i = 0; i < ksnum; i++) {
|
2009-03-19 11:59:32 -06:00
|
|
|
name = info[i].name;
|
|
|
|
sig = 0;
|
|
|
|
while ((c = *name++))
|
|
|
|
sig = (sig << 1) + c;
|
|
|
|
first = j = sig % z;
|
|
|
|
while (offsets[j]) {
|
|
|
|
j += first + 1;
|
|
|
|
if (j >= z)
|
|
|
|
j -= z;
|
|
|
|
}
|
|
|
|
offsets[j] = k;
|
|
|
|
indexes[i] = k;
|
|
|
|
val = info[i].val;
|
2012-02-25 12:09:28 -07:00
|
|
|
printf("0x%.2"PRIx32", 0x%.2"PRIx32", 0x%.2lx, 0x%.2lx, 0x%.2lx, 0x%.2lx, ",
|
2009-03-19 11:59:32 -06:00
|
|
|
(sig >> 8) & 0xff, sig & 0xff,
|
|
|
|
(val >> 24) & 0xff, (val >> 16) & 0xff,
|
|
|
|
(val >> 8) & 0xff, val & 0xff);
|
|
|
|
for (name = info[i].name, k += 7; (c = *name++); k++)
|
|
|
|
printf("'%c',", c);
|
|
|
|
printf((i == (ksnum-1)) ? "0\n" : "0,\n");
|
2009-01-14 08:35:10 -07:00
|
|
|
}
|
|
|
|
printf("};\n");
|
|
|
|
printf("\n");
|
|
|
|
printf("#define KTABLESIZE %d\n", z);
|
|
|
|
printf("#define KMAXHASH %d\n", best_max_rehash + 1);
|
|
|
|
printf("\n");
|
|
|
|
printf("static const unsigned short hashString[KTABLESIZE] = {\n");
|
|
|
|
for (i = 0; i < z;) {
|
2009-03-19 11:59:32 -06:00
|
|
|
printf("0x%.4x", offsets[i]);
|
|
|
|
i++;
|
|
|
|
if (i == z)
|
|
|
|
break;
|
|
|
|
printf((i & 7) ? ", " : ",\n");
|
2009-01-14 08:35:10 -07:00
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
printf("};\n");
|
|
|
|
|
|
|
|
best_max_rehash = ksnum;
|
|
|
|
num_found = 0;
|
|
|
|
for (z = ksnum; z < KTNUM; z++) {
|
2009-03-19 11:59:32 -06:00
|
|
|
max_rehash = 0;
|
|
|
|
for (name = tab, i = z; --i >= 0;)
|
|
|
|
*name++ = 0;
|
|
|
|
for (i = 0; i < ksnum; i++) {
|
|
|
|
val = info[i].val;
|
|
|
|
first = j = val % z;
|
|
|
|
for (k = 0; tab[j]; k++) {
|
|
|
|
if (values[j] == val)
|
|
|
|
goto skip1;
|
|
|
|
j += first + 1;
|
|
|
|
if (j >= z)
|
|
|
|
j -= z;
|
|
|
|
if (j == first)
|
|
|
|
goto next2;
|
|
|
|
}
|
|
|
|
tab[j] = 1;
|
|
|
|
values[j] = val;
|
|
|
|
if (k > max_rehash)
|
|
|
|
max_rehash = k;
|
|
|
|
skip1: ;
|
|
|
|
}
|
|
|
|
if (max_rehash < MIN_REHASH) {
|
|
|
|
if (max_rehash < best_max_rehash) {
|
|
|
|
best_max_rehash = max_rehash;
|
|
|
|
best_z = z;
|
|
|
|
}
|
|
|
|
num_found++;
|
|
|
|
if (num_found >= MATCHES)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
next2: ;
|
2009-01-14 08:35:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
z = best_z;
|
2012-02-25 12:13:26 -07:00
|
|
|
if (z == 0) {
|
|
|
|
fprintf(stderr, "makekeys: failed to find small enough hash!\n"
|
|
|
|
"Try increasing KTNUM in makekeys.c\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-01-14 08:35:10 -07:00
|
|
|
for (i = z; --i >= 0;)
|
2009-03-19 11:59:32 -06:00
|
|
|
offsets[i] = 0;
|
2009-01-14 08:35:10 -07:00
|
|
|
for (i = 0; i < ksnum; i++) {
|
2009-03-19 11:59:32 -06:00
|
|
|
val = info[i].val;
|
|
|
|
first = j = val % z;
|
|
|
|
while (offsets[j]) {
|
|
|
|
if (values[j] == val)
|
|
|
|
goto skip2;
|
|
|
|
j += first + 1;
|
|
|
|
if (j >= z)
|
|
|
|
j -= z;
|
|
|
|
}
|
|
|
|
offsets[j] = indexes[i] + 2;
|
|
|
|
values[j] = val;
|
|
|
|
skip2: ;
|
2009-01-14 08:35:10 -07:00
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
printf("#define VTABLESIZE %d\n", z);
|
|
|
|
printf("#define VMAXHASH %d\n", best_max_rehash + 1);
|
|
|
|
printf("\n");
|
|
|
|
printf("static const unsigned short hashKeysym[VTABLESIZE] = {\n");
|
|
|
|
for (i = 0; i < z;) {
|
2009-03-19 11:59:32 -06:00
|
|
|
printf("0x%.4x", offsets[i]);
|
|
|
|
i++;
|
|
|
|
if (i == z)
|
|
|
|
break;
|
|
|
|
printf((i & 7) ? ", " : ",\n");
|
2009-01-14 08:35:10 -07:00
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
printf("};\n");
|
2009-01-14 19:07:06 -07:00
|
|
|
printf("\n#endif /* KS_TABLES_H */\n");
|
2009-01-14 08:35:10 -07:00
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|