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
|
/*
Copyright 1988, 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.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <X11/Xos.h>
#include <X11/Xlib.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <stdarg.h>
#include "xmodmap.h"
const char *ProgramName;
Display *dpy = NULL;
int min_keycode, max_keycode;
Bool verbose = False;
Bool dontExecute = False;
void
_X_NORETURN
Exit(int status)
{
if (dpy) {
XCloseDisplay (dpy);
dpy = NULL;
}
exit (status);
}
static void _X_NORETURN
FatalError(const char *message)
{
fprintf(stderr, "%s: %s\n", ProgramName, message);
Exit(-1);
}
#ifndef HAVE_ASPRINTF
/* sprintf variant found in newer libc's which allocates string to print to */
static int _X_ATTRIBUTE_PRINTF(2,3)
asprintf(char ** ret, const char *format, ...)
{
char buf[256];
int len;
va_list ap;
va_start(ap, format);
len = vsnprintf(buf, sizeof(buf), format, ap);
va_end(ap);
if (len < 0)
return -1;
if (len < sizeof(buf))
{
*ret = strdup(buf);
}
else
{
*ret = malloc(len + 1); /* snprintf doesn't count trailing '\0' */
if (*ret != NULL)
{
va_start(ap, format);
len = vsnprintf(*ret, len + 1, format, ap);
va_end(ap);
if (len < 0) {
free(*ret);
*ret = NULL;
}
}
}
if (*ret == NULL)
return -1;
return len;
}
#endif /* HAVE_ASPRINTF */
static const char help_message[] =
"\nwhere options include:\n"
" -display host:dpy X server to use\n"
" -verbose, -quiet turn logging on or off\n"
" -n don't execute changes, just show like make\n"
" -e expression execute string\n"
" -pm print modifier map\n"
" -pk print keymap table\n"
" -pke print keymap table as expressions\n"
" -pp print pointer map\n"
" -help print this usage message\n"
" -grammar print out short help on allowable input\n"
" -version print program version\n"
" - read standard input\n"
"\n";
static void
_X_NORETURN _X_COLD
usage(int exitcode)
{
fprintf (stderr, "usage: %s [-options ...] [filename]\n", ProgramName);
fprintf (stderr, "%s\n", help_message);
Exit (exitcode);
}
static void
_X_NORETURN _X_COLD
missing_arg(const char *arg)
{
fprintf (stderr, "%s: %s requires an argument\n\n", ProgramName, arg);
usage(1);
}
static void
_X_NORETURN _X_COLD
unknown_arg(const char *arg)
{
fprintf (stderr, "%s: unrecognized argument %s\n\n", ProgramName, arg);
usage(1);
}
static const char grammar_message[] =
" pointer = default reset pointer buttons to default\n"
" pointer = NUMBER ... set pointer button codes\n"
" keycode NUMBER = [KEYSYM ...] map keycode to given keysyms\n"
" keysym KEYSYM = [KEYSYM ...] look up keysym and do a keycode operation\n"
" clear MODIFIER remove all keys for this modifier\n"
" add MODIFIER = KEYSYM ... add the keysyms to the modifier\n"
" remove MODIFIER = KEYSYM ... remove the keysyms from the modifier\n"
"\n"
"where NUMBER is a decimal, octal, or hex constant; KEYSYM is a valid\n"
"Key Symbol name; and MODIFIER is one of the eight modifier names: Shift,\n"
"Lock, Control, Mod1, Mod2, Mod3, Mod4, or Mod5. Lines beginning with\n"
"an exclamation mark (!) are taken as comments. Case is significant except\n"
"for MODIFIER names.\n"
"\n"
"Keysyms on the left hand side of the = sign are looked up before any changes\n"
"are made; keysyms on the right are looked up after all of those on the left\n"
"have been resolved. This makes it possible to swap modifier keys.\n"
"\n";
static void
_X_NORETURN
grammar_usage(void)
{
fprintf (stderr, "%s accepts the following input expressions:\n\n",
ProgramName);
fprintf (stderr, "%s\n", grammar_message);
Exit (0);
}
int parse_errors = 0;
int
main(int argc, char *argv[])
{
int i;
char *displayname = NULL;
int status;
Bool printMap = False;
Bool printKeyTable = False;
Bool printKeyTableExprs = False;
Bool printPointerMap = False;
Bool didAnything = False;
ProgramName = argv[0];
/*
* scan the arg list once to find out which display to use
*/
for (i = 1; i < argc; i++) {
const char *arg = argv[i];
if (arg[0] == '-') {
switch (arg[1]) {
case 'd': /* -display host:dpy */
if (++i >= argc) missing_arg(arg);
displayname = argv[i];
break;
case 'g': /* -grammar */
grammar_usage ();
/*NOTREACHED*/
case 'h': /* -help */
case '?':
usage(0);
case 'v':
if (strcmp(arg, "-version") == 0) {
puts(PACKAGE_STRING);
exit(0);
}
}
}
}
dpy = XOpenDisplay (displayname);
if (!dpy) {
fprintf (stderr, "%s: unable to open display '%s'\n",
ProgramName, XDisplayName (displayname));
Exit (1);
}
XDisplayKeycodes (dpy, &min_keycode, &max_keycode);
initialize_map ();
/*
* scan the arg list again to do the actual work (since it requires
* the display being open.
*/
for (i = 1; i < argc; i++) {
char *arg = argv[i];
if (arg[0] == '-') {
switch (arg[1]) {
case 'd': /* -display host:dpy */
++i; /* handled above */
continue;
case 'v': /* -verbose */
verbose = True;
continue;
case 'q': /* -quiet */
verbose = False;
continue;
case 'n': /* -n (like make) */
dontExecute = True;
continue;
case 'e': /* -e expression */
didAnything = True;
if (++i >= argc) missing_arg(arg);
process_line (argv[i]);
continue;
case 'p': /* -p... */
switch (arg[2]) {
case '\0':
case 'm': /* -pm */
printMap = True;
break;
case 'k': /* -pk, -pke */
switch (arg[3]) {
case '\0':
printKeyTable = True;
break;
case 'e':
printKeyTableExprs = True;
break;
default:
unknown_arg(arg);
}
break;
case 'p': /* -pp */
printPointerMap = True;
break;
default:
unknown_arg(arg);
/* NOTREACHED */
}
didAnything = True;
continue;
case 'g': /* -grammar */
grammar_usage ();
/*NOTREACHED*/
case '\0': /* - (use standard input) */
didAnything = True;
process_file (NULL);
continue;
/*
* provide old xmodmap args
*/
case 'S':
didAnything = True;
process_line ("clear shift");
continue;
case 'L':
didAnything = True;
process_line ("clear lock");
continue;
case 'C':
didAnything = True;
process_line ("clear control");
continue;
case '1':
case '2':
case '3':
case '4':
case '5': {
char cmd[11] = "clear modX";
cmd[9] = arg[1];
process_line (cmd);
continue;
}
case 's':
case 'l':
case 'c': {
char *cmd;
didAnything = True;
if (++i >= argc) missing_arg(arg);
if (asprintf (&cmd, "remove %s = %s",
((arg[1] == 's') ? "shift" :
((arg[1] == 'l') ? "lock" :
"control")), argv[i]) == -1)
FatalError("Could not allocate memory for remove cmd");
process_line (cmd);
continue;
}
default:
unknown_arg(arg);
/*NOTREACHED*/
}
} else if (arg[0] == '+') { /* old xmodmap args */
switch (arg[1]) {
case '1':
case '2':
case '3':
case '4':
case '5': {
char *cmd;
didAnything = True;
if (++i >= argc) missing_arg(arg);
if (asprintf (&cmd, "add mod%c = %s", arg[1], argv[i]) == -1)
FatalError("Could not allocate memory for add cmd");
process_line (cmd);
continue;
}
case 'S':
case 'L':
case 'C':
arg[1] = tolower (arg[1]);
/* fall through to handler below */
case 's':
case 'l':
case 'c': {
char *cmd;
didAnything = True;
if (++i >= argc) missing_arg(arg);
if (asprintf (&cmd, "add %s = %s",
((arg[1] == 's') ? "shift" :
((arg[1] == 'l') ? "lock" :
"control")), argv[i]) == -1)
FatalError("Could not allocate memory for remove cmd");
process_line (cmd);
continue;
}
default:
unknown_arg(arg);
}
} else {
didAnything = True;
process_file (arg);
continue;
}
} /* end for loop */
/* for compatibility */
if (!didAnything) printMap = True;
/*
* at this point, the work list has been built and we can view it or
* execute it
*/
if (dontExecute) {
print_work_queue ();
Exit (0);
}
if (parse_errors != 0) {
fprintf (stderr, "%s: %d error%s encountered, aborting.\n",
ProgramName, parse_errors,
(parse_errors == 1 ? "" : "s"));
status = -1; /* return an error condition */
} else {
status = execute_work_queue ();
}
if (printMap) {
print_modifier_map ();
}
if (printKeyTable) {
print_key_table (False);
}
if (printKeyTableExprs) {
print_key_table (True);
}
if (printPointerMap) {
print_pointer_map ();
}
Exit (status < 0 ? 1 : 0);
/* Muffle gcc */
return 0;
}
|