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 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
|
/************************************************************
Copyright (c) 1996 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
documentation, and that the name of Silicon Graphics not be
used in advertising or publicity pertaining to distribution
of the software without specific prior written permission.
Silicon Graphics makes no representation about the suitability
of this software for any purpose. It is provided "as is"
without any express or implied warranty.
SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
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
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
THE USE OR PERFORMANCE OF THIS SOFTWARE.
********************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <limits.h>
#include <X11/Xlib.h>
#include <X11/Xos.h>
#include <X11/XKBlib.h>
#include <X11/extensions/XKBfile.h>
#include <X11/extensions/XKBconfig.h>
#include <X11/extensions/XKBrules.h>
#ifndef PATH_MAX
#ifdef MAXPATHLEN
#define PATH_MAX MAXPATHLEN
#else
#define PATH_MAX 1024
#endif
#endif
#ifndef DFLT_XKB_CONFIG_ROOT
#define DFLT_XKB_CONFIG_ROOT "/usr/X11R6.1/lib/X11/xkb"
#endif
#ifndef DFLT_XKB_RULES_FILE
#define DFLT_XKB_RULES_FILE "rules"
#endif
#define UNDEFINED 0
#define FROM_SERVER 1
#define FROM_RULES 2
#define FROM_CONFIG 3
#define FROM_CMD_LINE 4
#define NUM_SOURCES 5
#define RULES_NDX 0
#define CONFIG_NDX 1
#define DISPLAY_NDX 2
#define LOCALE_NDX 3
#define MODEL_NDX 4
#define LAYOUT_NDX 5
#define VARIANT_NDX 6
#define KEYCODES_NDX 7
#define TYPES_NDX 8
#define COMPAT_NDX 9
#define SYMBOLS_NDX 10
#define GEOMETRY_NDX 11
#define KEYMAP_NDX 12
#define NUM_STRING_VALS 13
/***====================================================================***/
Bool synch= False;
int verbose= 5;
Display * dpy;
char * srcName[NUM_SOURCES] = {
"undefined", "X server", "rules file", "config file", "command line"
};
char * svName[NUM_STRING_VALS]= {
"rules file", "config file", "X display", "locale",
"keyboard model", "keyboard layout", "layout variant",
"keycodes", "types", "compatibility map", "symbols", "geometry",
"keymap"
};
int svSrc[NUM_STRING_VALS];
char * svValue[NUM_STRING_VALS];
XkbConfigFieldsRec cfgDflts;
XkbConfigRtrnRec cfgResult;
XkbRF_RulesPtr rules= NULL;
XkbRF_VarDefsRec rdefs;
Bool clearOptions= False;
int szOptions= 0;
int numOptions= 0;
char ** options= NULL;
int szInclPath= 0;
int numInclPath= 0;
char ** inclPath= NULL;
XkbDescPtr xkb= NULL;
/***====================================================================***/
#define streq(s1,s2) (strcmp(s1,s2)==0)
#define strpfx(s1,s2) (strncmp(s1,s2,strlen(s2))==0)
#define MSG(s) printf(s)
#define MSG1(s,a) printf(s,a)
#define MSG2(s,a,b) printf(s,a,b)
#define MSG3(s,a,b,c) printf(s,a,b,c)
#define VMSG(l,s) if (verbose>(l)) printf(s)
#define VMSG1(l,s,a) if (verbose>(l)) printf(s,a)
#define VMSG2(l,s,a,b) if (verbose>(l)) printf(s,a,b)
#define VMSG3(l,s,a,b,c) if (verbose>(l)) printf(s,a,b,c)
#define ERR(s) fprintf(stderr,s)
#define ERR1(s,a) fprintf(stderr,s,a)
#define ERR2(s,a,b) fprintf(stderr,s,a,b)
#define ERR3(s,a,b,c) fprintf(stderr,s,a,b,c)
/***====================================================================***/
Bool
#if NeedFunctionPrototypes
addToList(int *sz,int *num,char ***listIn,char *newVal)
#else
addToList(sz,num,listIn,newVal)
int * sz;
int * num;
char *** listIn;
char * newVal;
#endif
{
register int i;
char **list;
if ((!newVal)||(!newVal[0])) {
*num= 0;
return True;
}
list= *listIn;
for (i=0;i<*num;i++) {
if (streq(list[i],newVal))
return True;
}
if ((list==NULL)||(*sz<1)) {
*num= 0;
*sz= 4;
list= (char **)calloc(*sz,sizeof(char *));
*listIn= list;
}
else if (*num>=*sz) {
*sz*= 2;
list= (char **)realloc(list,(*sz)*sizeof(char *));
*listIn= list;
}
if (!list) {
ERR("Internal Error! Allocation failure in add to list!\n");
ERR(" Exiting.\n");
exit(-1);
}
list[*num]= strdup(newVal);
(*num)= (*num)+1;
return True;
}
/***====================================================================***/
void
#if NeedFunctionPrototypes
usage(int argc,char **argv)
#else
usage(argc,argv)
int argc;
char ** argv;
#endif
{
MSG1("Usage: %s [args] [<layout> [<variant> [<option> ... ]]]\n",argv[0]);
MSG("Where legal args are:\n");
MSG("-?,-help Print this message\n");
MSG("-compat <name> Specifies compatibility map component name\n");
MSG("-config <file> Specifies configuration file to use\n");
MSG("-display <dpy> Specifies display to use\n");
MSG("-geometry <name> Specifies geometry component name\n");
MSG("-I[<dir>] Add <dir> to list of directories to be used\n");
MSG("-keycodes <name> Specifies keycodes component name\n");
MSG("-keymap <name> Specifies name of keymap to load\n");
MSG("-layout <name> Specifies layout used to choose component names\n");
MSG("-model <name> Specifies model used to choose component names\n");
MSG("-option <name> Adds an option used to choose component names\n");
MSG("-rules <name> Name of rules file to use\n");
MSG("-symbols <name> Specifies symbols component name\n");
MSG("-synch Synchronize request w/X server\n");
MSG("-types <name> Specifies types component name\n");
MSG("-v[erbose] [<lvl>] Sets verbosity (1..10). Higher values yield\n");
MSG(" more messages\n");
MSG("-variant <name> Specifies layout variant used to choose component names\n");
}
void
#if NeedFunctionPrototypes
dumpNames(Bool wantRules,Bool wantCNames)
#else
dumpNames(wantRules,wantCNames)
Bool wantRules;
Bool wantCNames;
#endif
{
if (wantRules) {
if (cfgResult.model) MSG1("model: %s\n",cfgResult.model);
if (cfgResult.layout) MSG1("layout: %s\n",cfgResult.layout);
if (cfgResult.variant) MSG1("variant: %s\n",cfgResult.variant);
if (cfgResult.options) MSG1("options: %s\n",cfgResult.options);
}
if (wantCNames) {
if (svValue[KEYMAP_NDX])
MSG1("keymap: %s\n",svValue[KEYMAP_NDX]);
if (svValue[KEYCODES_NDX])
MSG1("keycodes: %s\n",svValue[KEYCODES_NDX]);
if (svValue[TYPES_NDX])
MSG1("types: %s\n",svValue[TYPES_NDX]);
if (svValue[COMPAT_NDX])
MSG1("compat: %s\n",svValue[COMPAT_NDX]);
if (svValue[SYMBOLS_NDX])
MSG1("symbols: %s\n",svValue[SYMBOLS_NDX]);
if (svValue[GEOMETRY_NDX])
MSG1("geometry: %s\n",svValue[GEOMETRY_NDX]);
}
return;
}
/***====================================================================***/
void
#if NeedFunctionPrototypes
trySetString(int which,char *newVal,int src)
#else
trySetString(which,newVal,src)
int which;
char * newVal;
int src;
#endif
{
if (svValue[which]!=NULL) {
if (svSrc[which]==src) {
VMSG2(0,"Warning! More than one %s from %s\n",
svName[which],srcName[src]);
VMSG2(0," Using \"%s\", ignoring \"%s\"\n",
svValue[which],newVal);
return;
}
else if (svSrc[which]>src) {
VMSG1(5,"Warning! Multiple definitions of %s\n",svName[which]);
VMSG2(5," Using %s, ignoring %s\n",srcName[svSrc[which]],
srcName[src]);
return;
}
}
svSrc[which]= src;
svValue[which]= newVal;
return;
}
Bool
#if NeedFunctionPrototypes
setOptString(int *arg,int argc,char **argv,int which,int src)
#else
setOptString(arg,argc,argv,which,src)
int * arg;
int argc;
char ** argv;
int what;
int src;
#endif
{
int ndx;
char * opt;
ndx= *arg;
opt= argv[ndx];
if (ndx>=argc-1) {
VMSG1(0,"No %s specified on the command line\n",svName[which]);
VMSG1(0,"Trailing %s option ignored\n",opt);
return True;
}
ndx++;
if (svValue[which]!=NULL) {
if (svSrc[which]==src) {
VMSG2(0,"More than one %s on %s\n",svName[which],srcName[src]);
VMSG2(0,"Using \"%s\", ignoring \"%s\"\n",svValue[which],argv[ndx]);
return True;
}
else if (svSrc[which]>src) {
VMSG1(5,"Multiple definitions of %s\n",svName[which]);
VMSG2(5,"Using %s, ignoring %s\n",srcName[svSrc[which]],
srcName[src]);
return True;
}
}
svSrc[which]= src;
svValue[which]= argv[ndx];
*arg= ndx;
return True;
}
/***====================================================================***/
int
#if NeedFunctionPrototypes
parseArgs(int argc,char **argv)
#else
parseArgs(argc,argv)
int argc;
char ** argv;
#endif
{
int i;
Bool ok;
ok= True;
addToList(&szInclPath,&numInclPath,&inclPath,".");
addToList(&szInclPath,&numInclPath,&inclPath,DFLT_XKB_CONFIG_ROOT);
for (i=1;(i<argc)&&ok;i++) {
if (argv[i][0]!='-') {
if (!svSrc[LAYOUT_NDX])
trySetString(LAYOUT_NDX,argv[i],FROM_CMD_LINE);
else if (!svSrc[VARIANT_NDX])
trySetString(VARIANT_NDX,argv[i],FROM_CMD_LINE);
else ok= addToList(&szOptions,&numOptions,&options,argv[i]);
}
else if (streq(argv[i],"-compat"))
ok= setOptString(&i,argc,argv,COMPAT_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-config"))
ok= setOptString(&i,argc,argv,CONFIG_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-display"))
ok= setOptString(&i,argc,argv,DISPLAY_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-geometry"))
ok= setOptString(&i,argc,argv,GEOMETRY_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-help")||streq(argv[i],"-?")) {
usage(argc,argv);
exit(0);
}
else if (strpfx(argv[i],"-I"))
ok= addToList(&szInclPath,&numInclPath,&inclPath,&argv[i][2]);
else if (streq(argv[i],"-keycodes"))
ok= setOptString(&i,argc,argv,KEYCODES_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-keymap"))
ok= setOptString(&i,argc,argv,KEYMAP_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-layout"))
ok= setOptString(&i,argc,argv,LAYOUT_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-model"))
ok= setOptString(&i,argc,argv,MODEL_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-option")) {
if ((i>=argc-1)||(argv[i+1][0]=='\0')||(argv[i+1][0]=='-')) {
clearOptions= True;
ok= addToList(&szOptions,&numOptions,&options,"");
}
else {
ok= addToList(&szOptions,&numOptions,&options,argv[++i]);
}
}
else if (streq(argv[i],"-rules"))
ok= setOptString(&i,argc,argv,RULES_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-symbols"))
ok= setOptString(&i,argc,argv,SYMBOLS_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-synch"))
synch= True;
else if (streq(argv[i],"-types"))
ok= setOptString(&i,argc,argv,TYPES_NDX,FROM_CMD_LINE);
else if (streq(argv[i],"-verbose")||(streq(argv[i],"-v"))) {
if ((i<argc-1)&&(isdigit(argv[i+1][0])))
verbose= atoi(argv[++i]);
else verbose++;
if (verbose<0) {
ERR1("Illegal verbose level %d. Reset to 0\n",verbose);
verbose=0;
}
else if (verbose>10) {
ERR1("Illegal verbose level %d. Reset to 10\n",verbose);
verbose= 10;
}
VMSG1(7,"Setting verbose level to %d\n",verbose);
}
else if (streq(argv[i],"-variant"))
ok= setOptString(&i,argc,argv,VARIANT_NDX,FROM_CMD_LINE);
else {
ERR1("Error! Option \"%s\" not recognized\n",argv[i]);
ok= False;
}
}
return ok;
}
Bool
#if NeedFunctionPrototypes
getDisplay(int argc,char **argv)
#else
getDisplay(argc,argv)
int argc;
char ** argv;
#endif
{
int major,minor,why;
major= XkbMajorVersion;
minor= XkbMinorVersion;
dpy= XkbOpenDisplay(svValue[DISPLAY_NDX],NULL,NULL,&major,&minor,&why);
if (!dpy) {
if (svValue[DISPLAY_NDX]==NULL)
svValue[DISPLAY_NDX]= getenv("DISPLAY");
if (svValue[DISPLAY_NDX]==NULL)
svValue[DISPLAY_NDX]= "default display";
switch (why) {
case XkbOD_BadLibraryVersion:
ERR3("%s was compiled with XKB version %d.%02d\n",argv[0],
XkbMajorVersion,XkbMinorVersion);
ERR2("Xlib supports incompatible version %d.%02d\n",
major,minor);
break;
case XkbOD_ConnectionRefused:
ERR1("Cannot open display \"%s\"\n",svValue[DISPLAY_NDX]);
break;
case XkbOD_NonXkbServer:
ERR1("XKB extension not present on %s\n",svValue[DISPLAY_NDX]);
break;
case XkbOD_BadServerVersion:
ERR3("%s was compiled with XKB version %d.%02d\n",argv[0],
XkbMajorVersion,XkbMinorVersion);
ERR3("Server %s uses incompatible version %d.%02d\n",
svValue[DISPLAY_NDX],major,minor);
break;
default:
ERR1("Unknown error %d from XkbOpenDisplay\n",why);
break;
}
return False;
}
if (synch)
XSynchronize(dpy,True);
return True;
}
/***====================================================================***/
Bool
#if NeedFunctionPrototypes
getServerValues(void)
#else
getServerValues()
#endif
{
XkbRF_VarDefsRec vd;
char * tmp= NULL;
if (!XkbRF_GetNamesProp(dpy,&tmp,&vd)) {
VMSG1(3,"Couldn't interpret %s property\n",_XKB_RF_NAMES_PROP_ATOM);
return False;
}
if (tmp)
trySetString(RULES_NDX,tmp,FROM_SERVER);
if (vd.model)
trySetString(MODEL_NDX,vd.model,FROM_SERVER);
if (vd.layout)
trySetString(LAYOUT_NDX,vd.layout,FROM_SERVER);
if (vd.variant)
trySetString(VARIANT_NDX,vd.variant,FROM_SERVER);
if ((vd.options)&&(!clearOptions)) {
addStringToOptions(vd.options,&szOptions,&numOptions,&options);
XFree(vd.options);
}
return True;
}
/***====================================================================***/
FILE *
#if NeedFunctionPrototypes
findFileInPath(char *name,char *subdir)
#else
findFileInPath(name,subdir)
char * name;
char * subdir;
#endif
{
register int i;
char buf[PATH_MAX];
FILE * fp;
if (name[0]=='/') {
fp= fopen(name,"r");
if ((verbose>7)||((!fp)&&(verbose>0)))
MSG2("%s file %s\n",(fp?"Found":"Didn't find"),name);
return fp;
}
for (i=0;(i<numInclPath);i++) {
if ((strlen(inclPath[i])+strlen(subdir)+strlen(name)+2)>PATH_MAX) {
VMSG3(0,"Path too long (%s/%s%s). Ignored.\n",inclPath[i],subdir,
name);
continue;
}
sprintf(buf,"%s/%s%s",inclPath[i],subdir,name);
fp= fopen(name,"r");
if ((verbose>7)||((!fp)&&(verbose>5)))
MSG2("%s file %s\n",(fp?"Found":"Didn't find"),buf);
if (fp!=NULL)
return fp;
}
return NULL;
}
/***====================================================================***/
Bool
#if NeedFunctionPrototypes
addStringToOptions(char *opt_str,int *sz_opts,int *num_opts,char ***opts)
#else
addStringToOptions(opt_str,sz_opts,num_opts,opts)
char * opt_str;
int * sz_opts;
int * num_opts;
char *** opts;
#endif
{
char *tmp,*str,*next;
Bool ok= True;
if ((str= malloc(strlen(opt_str)+1))!=NULL)
strcpy(str,opt_str);
else return False;
for (tmp= str,next=NULL;(tmp && *tmp!='\0')&&ok;tmp=next) {
next= strchr(str,',');
if (next) {
*next= '\0';
next++;
}
ok= addToList(sz_opts,num_opts,opts,tmp)&&ok;
}
free(str);
return ok;
}
/***====================================================================***/
char *
#if NeedFunctionPrototypes
stringFromOptions(char *orig,int numNew,char **newOpts)
#else
stringFromOptions(orig,numNew,newOpts)
char * orig;
int numNew;
char ** newOpts;
#endif
{
int len,i,nOut;
if (orig) len= strlen(orig)+1;
else len= 0;
for (i=0;i<numNew;i++) {
if (newOpts[i])
len+= strlen(newOpts[i])+1;
}
if (len<1)
return NULL;
if (orig) {
orig= (char *)realloc(orig,len);
nOut= 1;
}
else {
orig= (char *)calloc(len,1);
nOut= 0;
}
for (i=0;i<numNew;i++) {
if (!newOpts[i])
continue;
if (nOut>0) {
strcat(orig,",");
strcat(orig,newOpts[i]);
}
else strcpy(orig,newOpts[i]);
nOut++;
}
return orig;
}
/***====================================================================***/
Bool
#if NeedFunctionPrototypes
applyConfig(char *name)
#else
applyConfig(name)
char * name;
#endif
{
FILE * fp;
Bool ok;
if ((fp=findFileInPath(name,""))==NULL)
return False;
ok= XkbCFParse(fp,XkbCFDflts,NULL,&cfgResult);
fclose(fp);
if (!ok) {
ERR("Couldn't find configuration file \"%s\"\n");
return False;
}
if (cfgResult.rules_file) {
trySetString(RULES_NDX,cfgResult.rules_file,FROM_CONFIG);
cfgResult.rules_file= NULL;
}
if (cfgResult.model) {
trySetString(MODEL_NDX,cfgResult.model,FROM_CONFIG);
cfgResult.model= NULL;
}
if (cfgResult.layout) {
trySetString(LAYOUT_NDX,cfgResult.layout,FROM_CONFIG);
cfgResult.layout= NULL;
}
if (cfgResult.variant) {
trySetString(VARIANT_NDX,cfgResult.variant,FROM_CONFIG);
cfgResult.variant= NULL;
}
if (cfgResult.options) {
addStringToOptions(cfgResult.options,&szOptions,&numOptions,&options);
cfgResult.options= NULL;
}
if (cfgResult.keymap) {
trySetString(KEYMAP_NDX,cfgResult.keymap,FROM_CONFIG);
cfgResult.keymap= NULL;
}
if (cfgResult.keycodes) {
trySetString(KEYCODES_NDX,cfgResult.keycodes,FROM_CONFIG);
cfgResult.keycodes= NULL;
}
if (cfgResult.geometry) {
trySetString(GEOMETRY_NDX,cfgResult.geometry,FROM_CONFIG);
cfgResult.geometry= NULL;
}
if (cfgResult.symbols) {
trySetString(SYMBOLS_NDX,cfgResult.symbols,FROM_CONFIG);
cfgResult.symbols= NULL;
}
if (cfgResult.types) {
trySetString(TYPES_NDX,cfgResult.types,FROM_CONFIG);
cfgResult.types= NULL;
}
if (cfgResult.compat) {
trySetString(COMPAT_NDX,cfgResult.compat,FROM_CONFIG);
cfgResult.compat= NULL;
}
if (verbose>5) {
MSG("After config file:\n");
dumpNames(True,True);
}
return True;
}
Bool
#if NeedFunctionPrototypes
applyRules(void)
#else
applyRules()
#endif
{
int i;
char * rfName;
if (svSrc[MODEL_NDX]||svSrc[LAYOUT_NDX]||svSrc[VARIANT_NDX]||options) {
char buf[PATH_MAX];
XkbComponentNamesRec rnames;
rdefs.model= svValue[MODEL_NDX];
rdefs.layout= svValue[LAYOUT_NDX];
rdefs.variant= svValue[VARIANT_NDX];
if (options)
rdefs.options=stringFromOptions(rdefs.options,numOptions,options);
if (svSrc[RULES_NDX])
rfName= svValue[RULES_NDX];
else rfName= DFLT_XKB_RULES_FILE;
if (rfName[0]=='/') {
rules= XkbRF_Load(rfName,svValue[LOCALE_NDX],True,True);
}
else {
for (i=0;(i<numInclPath)&&(!rules);i++) {
if ((strlen(inclPath[i])+strlen(rfName)+8)>PATH_MAX) {
VMSG2(0,"Path too long (%s/rules/%s). Ignored.\n",
inclPath[i],rfName);
continue;
}
sprintf(buf,"%s/rules/%s",inclPath[i],svValue[RULES_NDX]);
rules= XkbRF_Load(buf,svValue[LOCALE_NDX],True,True);
}
}
if (!rules) {
ERR1("Couldn't find rules file (%s) \n",svValue[RULES_NDX]);
return False;
}
XkbRF_GetComponents(rules,&rdefs,&rnames);
if (rnames.keycodes) {
trySetString(KEYCODES_NDX,rnames.keycodes,FROM_RULES);
rnames.keycodes= NULL;
}
if (rnames.symbols) {
trySetString(SYMBOLS_NDX,rnames.symbols,FROM_RULES);
rnames.symbols= NULL;
}
if (rnames.types) {
trySetString(TYPES_NDX,rnames.types,FROM_RULES);
rnames.types= NULL;
}
if (rnames.compat) {
trySetString(COMPAT_NDX,rnames.compat,FROM_RULES);
rnames.compat= NULL;
}
if (rnames.geometry) {
trySetString(GEOMETRY_NDX,rnames.geometry,FROM_RULES);
rnames.geometry= NULL;
}
if (rnames.keymap) {
trySetString(KEYMAP_NDX,rnames.keymap,FROM_RULES);
rnames.keymap= NULL;
}
if (verbose>6) {
MSG1("Applied rules from %s:\n",svValue[RULES_NDX]);
dumpNames(False,True);
}
}
else if (verbose>6) {
MSG("No rules variables specified. Rules file ignored\n");
}
return True;
}
#define ALL_NAMES (XkbGBN_TypesMask|XkbGBN_CompatMapMask|XkbGBN_SymbolsMask|XkbGBN_KeyNamesMask|XkbGBN_GeometryMask)
Bool
#if NeedFunctionPrototypes
applyComponentNames(void)
#else
applyComponentNames()
#endif
{
unsigned present;
present= 0;
if (svValue[TYPES_NDX]) present|= XkbGBN_TypesMask;
if (svValue[COMPAT_NDX]) present|= XkbGBN_CompatMapMask;
if (svValue[SYMBOLS_NDX]) present|= XkbGBN_SymbolsMask;
if (svValue[KEYCODES_NDX]) present|= XkbGBN_KeyNamesMask;
if (svValue[GEOMETRY_NDX]) present|= XkbGBN_GeometryMask;
if (svValue[KEYMAP_NDX] && present) {
ERR("No other components can be specified when a keymap is present\n");
return False;
}
if ((!dpy)&&((present&ALL_NAMES)!=ALL_NAMES)) {
ERR("All components must be specified for -t flag\n");
return False;
}
if (verbose>5) {
MSG("Trying to build keymap using the following components:\n");
dumpNames(True,True);
}
if (dpy) {
XkbComponentNamesRec cmdNames;
cmdNames.types= svValue[TYPES_NDX];
cmdNames.compat= svValue[COMPAT_NDX];
cmdNames.symbols= svValue[SYMBOLS_NDX];
cmdNames.keycodes= svValue[KEYCODES_NDX];
cmdNames.geometry= svValue[GEOMETRY_NDX];
cmdNames.keymap= svValue[KEYMAP_NDX];
xkb= XkbGetKeyboardByName(dpy,XkbUseCoreKbd,&cmdNames,
XkbGBN_AllComponentsMask,
XkbGBN_AllComponentsMask&(~XkbGBN_GeometryMask),
True);
if (!xkb) {
ERR("Error loading new keyboard description\n");
return False;
}
if (svValue[RULES_NDX] && (rdefs.model || rdefs.layout)) {
if (!XkbRF_SetNamesProp(dpy,svValue[RULES_NDX],&rdefs)) {
VMSG(0,"Error updating the XKB names property\n");
}
}
}
return True;
}
int
#if NeedFunctionPrototypes
main(int argc,char **argv)
#else
main(argc,argv)
int argc;
char ** argv;
#endif
{
if ((!parseArgs(argc,argv))||(!getDisplay(argc,argv)))
exit(-1);
svValue[LOCALE_NDX]= setlocale(LC_ALL,svValue[LOCALE_NDX]);
svSrc[LOCALE_NDX]= FROM_SERVER;
VMSG1(7,"locale is %s\n",svValue[LOCALE_NDX]);
if (dpy && (!getServerValues()))
exit(-2);
if (svValue[CONFIG_NDX] && (!applyConfig(svValue[CONFIG_NDX])))
exit(-3);
if (!applyRules())
exit(-4);
if (!applyComponentNames())
exit(-5);
if (dpy)
XCloseDisplay(dpy);
}
|