2009-03-27 07:55:32 -06:00
|
|
|
/************************************************************
|
|
|
|
Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc.
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this
|
|
|
|
software and its documentation for any purpose and without
|
|
|
|
fee is hereby granted, provided that the above copyright
|
|
|
|
notice appear in all copies and that both that copyright
|
|
|
|
notice and this permission notice appear in supporting
|
2009-04-04 10:19:51 -06:00
|
|
|
documentation, and that the name of Silicon Graphics not be
|
|
|
|
used in advertising or publicity pertaining to distribution
|
2009-03-27 07:55:32 -06:00
|
|
|
of the software without specific prior written permission.
|
2009-04-04 10:19:51 -06:00
|
|
|
Silicon Graphics makes no representation about the suitability
|
2009-03-27 07:55:32 -06:00
|
|
|
of this software for any purpose. It is provided "as is"
|
|
|
|
without any express or implied warranty.
|
2009-04-04 10:19:51 -06:00
|
|
|
|
|
|
|
SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
2009-03-27 07:55:32 -06:00
|
|
|
AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
|
2009-04-04 10:19:51 -06:00
|
|
|
GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
|
|
|
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
2009-03-27 07:55:32 -06:00
|
|
|
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
|
|
|
|
THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
********************************************************/
|
|
|
|
|
|
|
|
#include "xkbcomp.h"
|
2009-04-08 08:46:25 -06:00
|
|
|
#include "xkbmisc.h"
|
2009-03-27 07:55:32 -06:00
|
|
|
#include "expr.h"
|
|
|
|
#include "vmod.h"
|
|
|
|
#include "action.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "indicators.h"
|
2012-03-10 06:48:13 -07:00
|
|
|
#include "xkballoc.h"
|
2009-03-27 07:55:32 -06:00
|
|
|
|
|
|
|
/**
|
2009-03-27 20:54:50 -06:00
|
|
|
* Compile the given file and store the output in xkb.
|
2009-03-27 07:55:32 -06:00
|
|
|
* @param file A list of XkbFiles, each denoting one type (e.g.
|
|
|
|
* XkmKeyNamesIdx, etc.)
|
|
|
|
*/
|
2012-03-10 06:48:13 -07:00
|
|
|
struct xkb_desc *
|
|
|
|
CompileKeymap(XkbFile *file, unsigned merge)
|
2009-03-27 07:55:32 -06:00
|
|
|
{
|
|
|
|
unsigned have;
|
|
|
|
Bool ok;
|
|
|
|
unsigned required, legal;
|
|
|
|
unsigned mainType;
|
2012-03-20 11:24:09 -06:00
|
|
|
const char *mainName;
|
2009-03-27 07:55:32 -06:00
|
|
|
LEDInfo *unbound = NULL;
|
2012-03-10 06:48:13 -07:00
|
|
|
struct xkb_desc *xkb = XkbcAllocKeyboard();
|
2012-03-09 09:31:48 -07:00
|
|
|
struct {
|
|
|
|
XkbFile *keycodes;
|
|
|
|
XkbFile *types;
|
|
|
|
XkbFile *compat;
|
|
|
|
XkbFile *symbols;
|
|
|
|
} sections;
|
2009-03-27 07:55:32 -06:00
|
|
|
|
2012-03-10 06:48:13 -07:00
|
|
|
if (!xkb)
|
|
|
|
return NULL;
|
|
|
|
|
2012-03-09 09:31:48 -07:00
|
|
|
memset(§ions, 0, sizeof(sections));
|
2009-03-27 07:55:32 -06:00
|
|
|
mainType = file->type;
|
2012-03-10 06:54:03 -07:00
|
|
|
mainName = file->name ? file->name : "(unnamed)";
|
2009-03-27 07:55:32 -06:00
|
|
|
switch (mainType)
|
|
|
|
{
|
|
|
|
case XkmSemanticsFile:
|
|
|
|
required = XkmSemanticsRequired;
|
|
|
|
legal = XkmSemanticsLegal;
|
|
|
|
break;
|
|
|
|
case XkmLayoutFile: /* standard type if setxkbmap -print */
|
|
|
|
required = XkmLayoutRequired;
|
|
|
|
legal = XkmKeymapLegal;
|
|
|
|
break;
|
|
|
|
case XkmKeymapFile:
|
2012-03-09 11:46:46 -07:00
|
|
|
required = XkmKeyNamesIndex | XkmTypesIndex | XkmSymbolsIndex | \
|
|
|
|
XkmCompatMapIndex | XkmVirtualModsIndex;
|
2009-03-27 07:55:32 -06:00
|
|
|
legal = XkmKeymapLegal;
|
|
|
|
break;
|
|
|
|
default:
|
2009-03-31 08:21:20 -06:00
|
|
|
ERROR("Cannot compile %s alone into an XKM file\n",
|
2009-03-28 15:06:26 -06:00
|
|
|
XkbcConfigText(mainType));
|
2009-03-27 07:55:32 -06:00
|
|
|
return False;
|
|
|
|
}
|
|
|
|
have = 0;
|
|
|
|
ok = 1;
|
|
|
|
/* Check for duplicate entries in the input file */
|
2012-03-09 09:55:37 -07:00
|
|
|
for (file = (XkbFile *) file->defs; file; file = (XkbFile *) file->common.next)
|
2009-03-27 07:55:32 -06:00
|
|
|
{
|
|
|
|
if ((have & (1 << file->type)) != 0)
|
|
|
|
{
|
2009-03-31 08:21:20 -06:00
|
|
|
ERROR("More than one %s section in a %s file\n",
|
2009-03-28 15:06:26 -06:00
|
|
|
XkbcConfigText(file->type), XkbcConfigText(mainType));
|
2009-03-27 07:55:32 -06:00
|
|
|
ACTION("All sections after the first ignored\n");
|
2012-03-10 06:48:13 -07:00
|
|
|
continue;
|
2009-03-27 07:55:32 -06:00
|
|
|
}
|
|
|
|
else if ((1 << file->type) & (~legal))
|
|
|
|
{
|
2009-03-31 08:21:20 -06:00
|
|
|
ERROR("Cannot define %s in a %s file\n",
|
2009-03-28 15:06:26 -06:00
|
|
|
XkbcConfigText(file->type), XkbcConfigText(mainType));
|
2012-03-10 06:48:13 -07:00
|
|
|
continue;
|
2009-03-27 07:55:32 -06:00
|
|
|
}
|
2012-03-09 09:55:37 -07:00
|
|
|
|
|
|
|
switch (file->type)
|
2012-03-09 09:32:45 -07:00
|
|
|
{
|
2012-03-09 09:55:37 -07:00
|
|
|
case XkmKeyNamesIndex:
|
|
|
|
sections.keycodes = file;
|
|
|
|
break;
|
|
|
|
case XkmTypesIndex:
|
|
|
|
sections.types = file;
|
|
|
|
break;
|
|
|
|
case XkmSymbolsIndex:
|
|
|
|
sections.symbols = file;
|
|
|
|
break;
|
|
|
|
case XkmCompatMapIndex:
|
|
|
|
sections.compat = file;
|
|
|
|
break;
|
|
|
|
case XkmGeometryIndex:
|
|
|
|
continue;
|
|
|
|
case XkmVirtualModsIndex:
|
|
|
|
case XkmIndicatorsIndex:
|
|
|
|
WSGO("Found an isolated %s section\n", XkbcConfigText(file->type));
|
|
|
|
ACTION("Ignored\n");
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
WSGO("Unknown file type %d\n", file->type);
|
|
|
|
ACTION("Ignored\n");
|
|
|
|
continue;
|
|
|
|
case XkmSemanticsFile:
|
|
|
|
case XkmLayoutFile:
|
|
|
|
case XkmKeymapFile:
|
|
|
|
WSGO("Illegal %s configuration in a %s file\n",
|
|
|
|
XkbcConfigText(file->type), XkbcConfigText(mainType));
|
|
|
|
ACTION("Ignored\n");
|
|
|
|
continue;
|
2012-03-09 09:32:45 -07:00
|
|
|
}
|
2012-03-09 09:55:37 -07:00
|
|
|
|
2012-03-10 06:54:03 -07:00
|
|
|
if (!file->topName || strcmp(file->topName, mainName) != 0) {
|
|
|
|
free(file->topName);
|
|
|
|
file->topName = strdup(mainName);
|
|
|
|
}
|
|
|
|
|
2012-03-09 09:55:37 -07:00
|
|
|
have |= (1 << file->type);
|
2009-03-27 07:55:32 -06:00
|
|
|
}
|
2012-03-09 09:55:37 -07:00
|
|
|
|
2009-03-27 07:55:32 -06:00
|
|
|
if (required & (~have))
|
|
|
|
{
|
2012-02-29 11:25:11 -07:00
|
|
|
int i, bit;
|
2009-03-27 07:55:32 -06:00
|
|
|
unsigned missing;
|
|
|
|
missing = required & (~have);
|
|
|
|
for (i = 0, bit = 1; missing != 0; i++, bit <<= 1)
|
|
|
|
{
|
|
|
|
if (missing & bit)
|
|
|
|
{
|
2012-03-10 06:48:13 -07:00
|
|
|
ERROR("Required section %s missing from keymap\n", XkbcConfigText(i));
|
2009-03-27 07:55:32 -06:00
|
|
|
missing &= ~bit;
|
|
|
|
}
|
|
|
|
}
|
2012-03-10 06:48:13 -07:00
|
|
|
goto err;
|
2009-03-27 07:55:32 -06:00
|
|
|
}
|
2012-03-09 09:55:37 -07:00
|
|
|
|
2012-03-09 11:46:46 -07:00
|
|
|
/* compile the sections we have in the file one-by-one, or fail. */
|
|
|
|
if (sections.keycodes != NULL &&
|
|
|
|
!CompileKeycodes(sections.keycodes, xkb, MergeOverride))
|
2012-03-10 06:48:13 -07:00
|
|
|
{
|
|
|
|
ERROR("Failed to compile keycodes\n");
|
|
|
|
goto err;
|
|
|
|
}
|
2012-03-09 11:46:46 -07:00
|
|
|
if (sections.types != NULL &&
|
|
|
|
!CompileKeyTypes(sections.types, xkb, MergeOverride))
|
2012-03-10 06:48:13 -07:00
|
|
|
{
|
|
|
|
ERROR("Failed to compile key types\n");
|
|
|
|
goto err;
|
|
|
|
}
|
2012-03-09 11:46:46 -07:00
|
|
|
if (sections.compat != NULL &&
|
|
|
|
!CompileCompatMap(sections.compat, xkb, MergeOverride, &unbound))
|
2012-03-10 06:48:13 -07:00
|
|
|
{
|
|
|
|
ERROR("Failed to compile compat map\n");
|
|
|
|
goto err;
|
|
|
|
}
|
2012-03-09 11:46:46 -07:00
|
|
|
if (sections.symbols != NULL &&
|
|
|
|
!CompileSymbols(sections.symbols, xkb, MergeOverride))
|
2012-03-10 06:48:13 -07:00
|
|
|
{
|
|
|
|
ERROR("Failed to compile symbols\n");
|
|
|
|
goto err;
|
|
|
|
}
|
2012-03-09 11:46:46 -07:00
|
|
|
|
|
|
|
xkb->defined = have;
|
|
|
|
|
2009-03-27 20:54:50 -06:00
|
|
|
ok = BindIndicators(xkb, True, unbound, NULL);
|
2012-03-10 06:48:13 -07:00
|
|
|
if (!ok)
|
|
|
|
goto err;
|
|
|
|
|
2012-03-14 12:24:37 -06:00
|
|
|
ok = UpdateModifiersFromCompat(xkb);
|
|
|
|
if (!ok)
|
|
|
|
goto err;
|
|
|
|
|
2012-03-10 06:48:13 -07:00
|
|
|
return xkb;
|
|
|
|
|
|
|
|
err:
|
|
|
|
ACTION("Failed to compile keymap\n");
|
|
|
|
if (xkb)
|
|
|
|
xkb_free_keymap(xkb);
|
|
|
|
return NULL;
|
2009-03-27 07:55:32 -06:00
|
|
|
}
|