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 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453
|
// $XFree86: xc/programs/Xserver/hw/darwin/utils/dumpkeymap.c,v 1.3 2000/12/05 21:18:34 dawes Exp $
//=============================================================================
//
// Copyright (C) 1999,2000 by Eric Sunshine <sunshine@sunshineco.com>
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// 3. The name of the author may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
// NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
//=============================================================================
//-----------------------------------------------------------------------------
// dumpkeymap.c
//
// Prints a textual representation of each Apple/NeXT .keymapping file
// mentioned on the command-line. If no files are mentioned and if the
// local machine is an Apple or NeXT installation, then the key mapping
// currently in use by the WindowServer and the AppKit is printed
// instead.
//
// Invoke dumpkeymap with one of the options listed below in order to
// view detailed documentation about .keymapping files and the use of
// this program.
//
// --help: Usage summary.
// --help-keymapping: Detailed discussion of the internal format of a
// .keymapping file.
// --help-output: Explanation of dumpkeymap's output.
// --help-files: List of key mapping-related files and directories.
// --help-diagnostics: Explanation of diagnostic messages.
//
// COMPILATION INSTRUCTIONS
//
// MacOS/X, Darwin
// cc -Wall -o dumpkeymap dumpkeymap.c -framework IOKit
//
// MacOS/X DP4 (Developer Preview 4)
// cc -Wall -o dumpkeymap dumpkeymap.c -FKernel -framework IOKit
//
// MacOS/X Server, OpenStep, NextStep
// cc -Wall -o dumpkeymap dumpkeymap.c
//
// By default, dumpkeymap is configured to interface with the HID driver
// (Apple) or event-status driver (NeXT), thus allowing it to dump the
// key mapping which is currently in use by the WindowServer and AppKit.
// However, these facilities are specific to Apple/NeXT. In order to
// build dumpkeymap for non-Apple/NeXT platforms, you must define the
// DUMPKEYMAP_FILE_ONLY flag when compiling the program. This flag
// inhibits use of the HID and event-status drivers and configures
// dumpkeymap to work strictly with raw key mapping files.
//
// For example, to compile for Linux:
// gcc -Wall -DDUMPKEYMAP_FILE_ONLY -o dumpkeymap dumpkeymap.c
//
// CONCLUSION
//
// This program and its accompanying documentation were written by Eric
// Sunshine and are copyright (C)1999,2000 by Eric Sunshine
// <sunshine@sunshineco.com>.
//
// The implementation of dumpkeymap is based upon information gathered
// on September 3, 1997 by Eric Sunshine <sunshine@sunshineco.com> and
// Paul S. McCarthy <zarnuk@zarnuk.com> during an effort to reverse
// engineer the format of the NeXT .keymapping file.
//
// HISTORY
//
// v4 2000/12/01 Eric Sunshine <sunshine@sunshineco.com>
// Updated manual page to work with `rman', the `man' to `HTML'
// translator. Unfortunately, however, rman is missing important
// roff features such as diversions, indentation, and tab stops,
// and is also hideously buggy, so getting the manual to work with
// rman required quite a few work-arounds.
// The manual page has now been tested with nroff (plain text), troff
// (PostScript, etc.), groff (PostScript), and rman (HTML, etc.)
//
// v3 2000/11/28 Eric Sunshine <sunshine@sunshineco.com>
// Considerably expanded the documentation.
// Augmented the existing description of .keymapping internals.
// Added these new documentation topics:
// - Output: Very important section describing how to interpret
// the output of dumpkeymap.
// - Files: Lists files and directories related to key mappings.
// - Diagnostics: Explains diagnostic messages issued by
// dumpkeymap.
// Created a manual page (dumpkeymap.1) which contains the complete
// set of documentation for key mapping files and dumpkeymap.
// Added command-line options (--help, --help-keymapping,
// --help-output, --help-files, --help-diagnostics) which allow
// access to all key mapping documentation. Previously the
// description of the internal layout of a .keymapping file was
// only available as source code comments.
// Added --version option.
// Ported to non-Apple/NeXT platforms. Defining the pre-processor
// flag DUMPKEYMAP_FILE_ONLY at compilation time inhibits use of
// Apple/NeXT-specific API.
// Added a README file.
//
// v2 2000/11/13 Eric Sunshine <sunshine@sunshineco.com>
// Converted from C++ to plain-C.
// Now parses and takes into account the "number-size" flag stored
// with each key map. This flag indicates the size, in bytes, of
// all remaining numeric values in the mapping. Updated all code
// to respect this flag. (Previously, the purpose of this field
// was unknown, and it was thus denoted as
// `KeyMapping::fill[2]'.)
// Updated all documentation; especially the "KEY MAPPING
// DESCRIPTION" section. Added discussion of the "number-size"
// flag and revamped all structure definitions to use the generic
// data type `number' instead of `uchar' or 'byte'. Clarified
// several sections of the documentation and added missing
// discussions about type definitions and the relationship of
// `interface' and `handler_id' to .keymapping and .keyboard
// files.
// Updated compilation instructions to include directions for all
// platforms on which this program might be built.
// Now published under the formal BSD license rather than a
// home-grown license.
//
// v1 1999/09/08 Eric Sunshine <sunshine@sunshineco.com>
// Created.
//-----------------------------------------------------------------------------
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#if !defined(DUMPKEYMAP_FILE_ONLY)
#include <drivers/event_status_driver.h>
#endif
#define PROG_NAME "dumpkeymap"
#define PROG_VERSION "4"
#define AUTHOR_NAME "Eric Sunshine"
#define AUTHOR_EMAIL "sunshine@sunshineco.com"
#define AUTHOR_INFO AUTHOR_NAME " <" AUTHOR_EMAIL ">"
#define COPYRIGHT "Copyright (C) 1999,2000 by " AUTHOR_INFO
typedef unsigned char byte;
typedef unsigned short word;
typedef unsigned int natural;
typedef unsigned long dword;
typedef dword number;
#define ASCII_SET 0x00
#define BIND_FUNCTION 0xfe
#define BIND_SPECIAL 0xff
#define OPT_SWITCH(X) { char const* switched_str__=(X); if (0) {
#define OPT_CASE(X,Y) } else if (strcmp(switched_str__,(#X)) == 0 || \
strcmp(switched_str__,(#Y)) == 0) {
#define OPT_DEFAULT } else {
#define OPT_SWITCH_END }}
//-----------------------------------------------------------------------------
// Translation Tables
//-----------------------------------------------------------------------------
static char const* const SPECIAL_CODE[] =
{
"sound-up",
"sound-down",
"brightness-up",
"brightness-down",
"alpha-lock",
"help",
"power",
"secondary-up-arrow",
"secondary-down-arrow"
};
#define N_SPECIAL_CODE (sizeof(SPECIAL_CODE) / sizeof(SPECIAL_CODE[0]))
static char const* const MODIFIER_CODE[] =
{
"alpha-lock",
"shift",
"control",
"alternate",
"command",
"keypad",
"help"
};
#define N_MODIFIER_CODE (sizeof(MODIFIER_CODE) / sizeof(MODIFIER_CODE[0]))
static char const* const MODIFIER_MASK[] =
{
"-----", // R = carriage-return
"----L", // A = alternate
"---S-", // C = control
"---SL", // S = shift
"--C--", // L = alpha-lock
"--C-L",
"--CS-",
"--CSL",
"-A---",
"-A--L",
"-A-S-",
"-A-SL",
"-AC--",
"-AC-L",
"-ACS-",
"-ACSL",
"R----",
"R---L",
"R--S-",
"R--SL",
"R-C--",
"R-C-L",
"R-CS-",
"R-CSL",
"RA---",
"RA--L",
"RA-S-",
"RA-SL",
"RAC--",
"RAC-L",
"RACS-",
"RACSL",
};
#define N_MODIFIER_MASK (sizeof(MODIFIER_MASK) / sizeof(MODIFIER_MASK[0]))
#define FUNCTION_KEY_FIRST 0x20
static char const* const FUNCTION_KEY[] =
{
"F1", // 0x20
"F2", // 0x21
"F3", // 0x22
"F4", // 0x23
"F5", // 0x24
"F6", // 0x25
"F7", // 0x26
"F8", // 0x27
"F9", // 0x28
"F10", // 0x29
"F11", // 0x2a
"F12", // 0x2b
"insert", // 0x2c
"delete", // 0x2d
"home", // 0x2e
"end", // 0x2f
"page up", // 0x30
"page down", // 0x31
"print screen", // 0x32
"scroll lock", // 0x33
"pause", // 0x34
"sys-request", // 0x35
"break", // 0x36
"reset (HIL)", // 0x37
"stop (HIL)", // 0x38
"menu (HIL)", // 0x39
"user (HIL)", // 0x3a
"system (HIL)", // 0x3b
"print (HIL)", // 0x3c
"clear line (HIL)", // 0x3d
"clear display (HIL)", // 0x3e
"insert line (HIL)", // 0x3f
"delete line (HIL)", // 0x40
"insert char (HIL)", // 0x41
"delete char (HIL)", // 0x42
"prev (HIL)", // 0x43
"next (HIL)", // 0x44
"select (HIL)", // 0x45
};
#define N_FUNCTION_KEY (sizeof(FUNCTION_KEY) / sizeof(FUNCTION_KEY[0]))
//-----------------------------------------------------------------------------
// Data Stream Object
// Can be configured to treat embedded "numbers" as being composed of
// either 1, 2, or 4 bytes, apiece.
//-----------------------------------------------------------------------------
typedef struct _DataStream
{
byte const* data;
byte const* data_end;
natural number_size; // Size in bytes of a "number" in the stream.
} DataStream;
static DataStream* new_data_stream( byte const* data, int size )
{
DataStream* s = (DataStream*)malloc( sizeof(DataStream) );
s->data = data;
s->data_end = data + size;
s->number_size = 1; // Default to byte-sized numbers.
return s;
}
static void destroy_data_stream( DataStream* s )
{
free(s);
}
static int end_of_stream( DataStream* s )
{
return (s->data >= s->data_end);
}
static void expect_nbytes( DataStream* s, int nbytes )
{
if (s->data + nbytes > s->data_end)
{
fputs( "Insufficient data in keymapping data stream.\n", stderr );
exit(-1);
}
}
static byte get_byte( DataStream* s )
{
expect_nbytes( s, 1 );
return *s->data++;
}
static word get_word( DataStream* s )
{
word hi, lo;
expect_nbytes( s, 2 );
hi = *s->data++;
lo = *s->data++;
return ((hi << 8) | lo);
}
static dword get_dword( DataStream* s )
{
dword b1, b2, b3, b4;
expect_nbytes( s, 4 );
b4 = *s->data++;
b3 = *s->data++;
b2 = *s->data++;
b1 = *s->data++;
return ((b4 << 24) | (b3 << 16) | (b2 << 8) | b1);
}
static number get_number( DataStream* s )
{
switch (s->number_size)
{
case 4: return get_dword(s);
case 2: return get_word(s);
default: return get_byte(s);
}
}
//-----------------------------------------------------------------------------
// Translation Utility Functions
//-----------------------------------------------------------------------------
static char const* special_code_desc( number n )
{
if (n < N_SPECIAL_CODE)
return SPECIAL_CODE[n];
else
return "invalid";
}
static char const* modifier_code_desc( number n )
{
if (n < N_MODIFIER_CODE)
return MODIFIER_CODE[n];
else
return "invalid";
}
static char const* modifier_mask_desc( number n )
{
if (n < N_MODIFIER_MASK)
return MODIFIER_MASK[n];
else
return "?????";
}
static char const* function_key_desc( number n )
{
if (n >= FUNCTION_KEY_FIRST && n < N_FUNCTION_KEY + FUNCTION_KEY_FIRST)
return FUNCTION_KEY[ n - FUNCTION_KEY_FIRST ];
else
return "unknown";
}
static number bits_set( number mask )
{
number n = 0;
for ( ; mask != 0; mask >>= 1)
if ((mask & 0x01) != 0)
n++;
return n;
}
//-----------------------------------------------------------------------------
// Unparse a list of Modifier records.
//-----------------------------------------------------------------------------
static void unparse_modifiers( DataStream* s )
{
number nmod = get_number(s); // Modifier count
printf( "MODIFIERS [%lu]\n", nmod );
while (nmod-- > 0)
{
number nscan;
number const code = get_number(s);
printf( "%s:", modifier_code_desc(code) );
nscan = get_number(s);
while (nscan-- > 0)
printf( " 0x%02x", (natural)get_number(s) );
putchar( '\n' );
}
putchar( '\n' );
}
//-----------------------------------------------------------------------------
// Unparse a list of Character records.
//-----------------------------------------------------------------------------
typedef void (*UnparseSpecialFunc)( number code );
static void unparse_char_codes(
DataStream* s, number ncodes, UnparseSpecialFunc unparse_special )
{
if (ncodes != 0)
{
while (ncodes-- > 0)
{
number const char_set = get_number(s);
number const code = get_number(s);
putchar(' ');
switch (char_set)
{
case ASCII_SET:
{
int const c = (int)code;
if (isprint(c))
printf( "\"%c\"", c );
else if (code < ' ')
printf( "\"^%c\"", c + '@' );
else
printf( "%02x", c );
break;
}
case BIND_FUNCTION:
printf( "[%s]", function_key_desc(code) );
break;
case BIND_SPECIAL:
unparse_special( code );
break;
default:
printf( "%02x/%02x", (natural)char_set, (natural)code );
break;
}
}
}
}
//-----------------------------------------------------------------------------
// Unparse a list of scan code bindings.
//-----------------------------------------------------------------------------
static void unparse_key_special( number code )
{
printf( "{seq#%lu}", code );
}
static void unparse_characters( DataStream* s )
{
number const NOT_BOUND = 0xff;
number const nscans = get_number(s);
number scan;
printf( "CHARACTERS [%lu]\n", nscans );
for (scan = 0; scan < nscans; scan++)
{
number const mask = get_number(s);
printf( "scan 0x%02x: ", (natural)scan );
if (mask == NOT_BOUND)
fputs( "not-bound\n", stdout );
else
{
number const bits = bits_set( mask );
number const codes = 1 << bits;
printf( "%s ", modifier_mask_desc(mask) );
unparse_char_codes( s, codes, unparse_key_special );
putchar( '\n' );
}
}
putchar( '\n' );
}
//-----------------------------------------------------------------------------
// Unparse a list of key sequences.
//-----------------------------------------------------------------------------
static void unparse_sequence_special( number code )
{
printf( "{%s}", (code == 0 ? "unmodify" : modifier_code_desc(code)) );
}
static void unparse_sequences( DataStream* s )
{
number const nseqs = get_number(s);
number seq;
printf( "SEQUENCES [%lu]\n", nseqs );
for (seq = 0; seq < nseqs; seq++)
{
number const nchars = get_number(s);
printf( "sequence %lu:", seq );
unparse_char_codes( s, nchars, unparse_sequence_special );
putchar( '\n' );
}
putchar( '\n' );
}
//-----------------------------------------------------------------------------
// Unparse a list of special keys.
//-----------------------------------------------------------------------------
static void unparse_specials( DataStream* s )
{
number nspecials = get_number(s);
printf( "SPECIALS [%lu]\n", nspecials );
while (nspecials-- > 0)
{
number const special = get_number(s);
number const scan = get_number(s);
printf( "%s: 0x%02x\n", special_code_desc(special), (natural)scan );
}
putchar( '\n' );
}
//-----------------------------------------------------------------------------
// Unparse the number-size flag.
//-----------------------------------------------------------------------------
static void unparse_numeric_size( DataStream* s )
{
word const numbers_are_shorts = get_word(s);
s->number_size = numbers_are_shorts ? 2 : 1;
}
//-----------------------------------------------------------------------------
// Unparse an entire key map.
//-----------------------------------------------------------------------------
static void unparse_keymap_data( DataStream* s )
{
unparse_numeric_size(s);
unparse_modifiers(s);
unparse_characters(s);
unparse_sequences(s);
unparse_specials(s);
}
//-----------------------------------------------------------------------------
// Unparse the active key map.
//-----------------------------------------------------------------------------
#if !defined(DUMPKEYMAP_FILE_ONLY)
static int unparse_active_keymap( void )
{
int rc = 1;
NXEventHandle const h = NXOpenEventStatus();
if (h == 0)
fputs( "Unable to open event status driver.\n", stderr );
else
{
NXKeyMapping km;
km.size = NXKeyMappingLength(h);
if (km.size <= 0)
fprintf( stderr, "Bad key mapping length (%d).\n", km.size );
else
{
km.mapping = (char*)malloc( km.size );
if (NXGetKeyMapping( h, &km ) == 0)
fputs( "Unable to get current key mapping.\n", stderr );
else
{
DataStream* stream =
new_data_stream( (byte const*)km.mapping, km.size );
fputs( "=============\nACTIVE KEYMAP\n=============\n\n",
stdout);
unparse_keymap_data( stream );
destroy_data_stream( stream );
rc = 0;
}
free( km.mapping );
}
NXCloseEventStatus(h);
}
return rc;
}
#endif
//-----------------------------------------------------------------------------
// Unparse one key map from a keymapping file.
//-----------------------------------------------------------------------------
static void unparse_keymap( DataStream* s )
{
dword const interface = get_dword(s);
dword const handler_id = get_dword(s);
dword const map_size = get_dword(s);
printf( "interface: 0x%02lx\nhandler_id: 0x%02lx\nmap_size: %lu bytes\n\n",
interface, handler_id, map_size );
unparse_keymap_data(s);
}
//-----------------------------------------------------------------------------
// Check the magic number of a keymapping file.
//-----------------------------------------------------------------------------
static int check_magic_number( DataStream* s )
{
return (get_byte(s) == 'K' &&
get_byte(s) == 'Y' &&
get_byte(s) == 'M' &&
get_byte(s) == '1');
}
//-----------------------------------------------------------------------------
// Unparse all key maps within a keymapping file.
//-----------------------------------------------------------------------------
static int unparse_keymaps( DataStream* s )
{
int rc = 0;
if (check_magic_number(s))
{
int n = 1;
while (!end_of_stream(s))
{
printf( "---------\nKEYMAP #%d\n---------\n", n++ );
unparse_keymap(s);
}
}
else
{
fputs( "Bad magic number.\n", stderr );
rc = 1;
}
return rc;
}
//-----------------------------------------------------------------------------
// Unparse a keymapping file.
//-----------------------------------------------------------------------------
static int unparse_keymap_file( char const* const path )
{
int rc = 1;
FILE* file;
printf( "===========\nKEYMAP FILE\n===========\n%s\n\n", path );
file = fopen( path, "rb" );
if (file == 0)
perror( "Unable to open key mapping file" );
else
{
struct stat st;
if (fstat( fileno(file), &st ) != 0)
perror( "Unable to determine key mapping file size" );
else
{
byte* buffer = (byte*)malloc( st.st_size );
if (fread( buffer, st.st_size, 1, file ) != 1)
perror( "Unable to read key mapping file" );
else
{
DataStream* stream = new_data_stream(buffer, (int)st.st_size);
fclose( file ); file = 0;
rc = unparse_keymaps( stream );
destroy_data_stream( stream );
}
free( buffer );
}
if (file != 0)
fclose( file );
}
return rc;
}
//-----------------------------------------------------------------------------
// Handle the case when no documents are mentioned on the command-line. For
// Apple/NeXT platforms, dump the currently active key mapping; else display
// an error message.
//-----------------------------------------------------------------------------
static int handle_empty_document_list( void )
{
#if !defined(DUMPKEYMAP_FILE_ONLY)
return unparse_active_keymap();
#else
fputs( "ERROR: Must specify at least one .keymapping file.\n\n", stderr );
return 1;
#endif
}
//-----------------------------------------------------------------------------
// Print a detailed description of the internal layout of a key mapping.
//-----------------------------------------------------------------------------
static void print_internal_layout_info( FILE* f )
{
fputs(
"What follows is a detailed descriptions of the internal layout of an\n"
"Apple/NeXT .keymapping file.\n"
"\n"
"Types and Data\n"
"--------------\n"
"The following type definitions are employed throughout this discussion:\n"
"\n"
" typedef unsigned char byte;\n"
" typedef unsigned short word;\n"
" typedef unsigned long dword;\n"
"\n"
"Additionally, the type definition `number' is used generically to indicate\n"
"a numeric value. The actual size of the `number' type may be one or two\n"
"bytes depending upon how the data is stored in the key map. Although most\n"
"key maps use byte-sized numeric values, word-sized values are also allowed.\n"
"\n"
"Multi-byte values in a key mapping file are stored in big-endian byte\n"
"order.\n"
"\n"
"Key Mapping File and Device Mapping\n"
"-----------------------------------\n"
"A key mapping file begins with a magic-number and continues with a variable\n"
"number of device-specific key mappings.\n"
"\n"
" struct KeyMappingFile {\n"
" char magic_number[4]; // `KYM1'\n"
" DeviceMapping maps[...]; // Variable number of maps\n"
" };\n"
"\n"
" struct DeviceMapping {\n"
" dword interface; // Interface type\n"
" dword handler_id; // Interface subtype\n"
" dword map_size; // Byte count of `map' (below)\n"
" KeyMapping map;\n"
" };\n"
"\n"
"The value of `interface' represents a family of keyboard device types\n"
"(such as Intel PC, ADB, NeXT, Sun Type5, etc.), and is generally\n"
"specified as one of the constant values NX_EVS_DEVICE_INTERFACE_ADB,\n"
"NX_EVS_DEVICE_INTERFACE_ACE, etc., which are are defined in IOHIDTypes.h on\n"
"MacOS/X and Darwin, and in ev_types.h on MacOS/X Server, OpenStep, and\n"
"NextStep.\n"
"\n"
"The value of `handler_id' represents a specific keyboard layout within the\n"
"much broader `interface' family. For instance, for a 101-key Intel PC\n"
"keyboard (of type NX_EVS_DEVICE_INTERFACE_ACE) the `handler_id' is '0',\n"
"whereas for a 102-key keyboard it is `1'.\n"
"\n"
"Together, `interface' and `handler_id' identify the exact keyboard hardware\n"
"to which this mapping applies. Programs which display a visual\n"
"representation of a keyboard layout, match `interface' and `handler_id'\n"
"from the .keymapping file against the `interface' and `handler_id' values\n"
"found in each .keyboard file.\n"
"\n"
"Key Mapping\n"
"-----------\n"
"A key mapping completely defines the relationship of all scan codes with\n"
"their associated functionality. A KeyMapping structure is embedded within\n"
"the DeviceMapping structure in a KeyMappingFile. The key mapping currently\n"
"in use by the WindowServer and AppKit is also represented by a KeyMapping\n"
"structure, and can be referred to directly by calling NXGetKeyMapping() and\n"
"accessing the `mapping' data member of the returned NXKeyMapping structure.\n"
"\n"
" struct KeyMapping {\n"
" word number_size; // 0=1 byte, non-zero=2 bytes\n"
" number num_modifier_groups; // Modifier groups\n"
" ModifierGroup modifier_groups[...];\n"
" number num_scan_codes; // Scan groups\n"
" ScanGroup scan_table[...];\n"
" number num_sequence_lists; // Sequence lists\n"
" Sequence sequence_lists[...];\n"
" number num_special_keys; // Special keys\n"
" SpecialKey special_key[...];\n"
" };\n"
"\n"
"The `number_size' flag determines the size, in bytes, of all remaining\n"
"numeric values (denoted by the type definition `number') within the key\n"
"mapping. If its value is zero, then numbers are represented by a single\n"
"byte. If it is non-zero, then numbers are represented by a word (two\n"
"bytes).\n"
"\n"
"Modifier Group\n"
"--------------\n"
"A modifier group defines all scan codes which map to a particular type of\n"
"modifier, such as `shift', `control', etc.\n"
"\n"
" enum Modifier {\n"
" ALPHALOCK = 0,\n"
" SHIFT,\n"
" CONTROL,\n"
" ALTERNATE,\n"
" COMMAND,\n"
" KEYPAD,\n"
" HELP\n"
" };\n"
"\n"
" struct ModifierGroup {\n"
" number modifier; // A Modifier constant\n"
" number num_scan_codes;\n"
" number scan_codes[...]; // Variable number of scan codes\n"
" };\n"
"\n"
"The scan_codes[] array contains a list of all scan codes which map to the\n"
"specified modifier. The `shift', `command', and `alternate' modifiers are\n"
"frequently mapped to two different scan codes, apiece, since these\n"
"modifiers often appear on both the left and right sides of the keyboard.\n"
"\n"
"Scan Group\n"
"----------\n"
"There is one ScanGroup for each scan code generated by the given keyboard.\n"
"This number is given by KeyMapping::num_scan_codes. The first scan group\n"
"represents hardware scan code 0, the second represents scan code 1, etc.\n"
"\n"
" enum ModifierMask {\n"
" ALPHALOCK_MASK = 1 << 0,\n"
" SHIFT_MASK = 1 << 1,\n"
" CONTROL_MASK = 1 << 2,\n"
" ALTERNATE_MASK = 1 << 3,\n"
" CARRIAGE_RETURN_MASK = 1 << 4\n"
" };\n"
" #define NOT_BOUND 0xff\n"
"\n"
" struct ScanGroup {\n"
" number mask;\n"
" Character characters[...];\n"
" };\n"
"\n"
"For each scan code, `mask' defines which modifier combinations generate\n"
"characters. If `mask' is NOT_BOUND (0xff) then then this scan code does\n"
"not generate any characters ever, and its characters[] array is zero\n"
"length. Otherwise, the characters[] array contains one Character record\n"
"for each modifier combination.\n"
"\n"
"The number of records in characters[] is determined by computing (1 <<\n"
"bits_set_in_mask). In other words, if mask is zero, then zero bits are\n"
"set, so characters[] contains only one record. If `mask' is (SHIFT_MASK |\n"
"CONTROL_MASK), then two bits are set, so characters[] contains four\n"
"records.\n"
"\n"
"The first record always represents the character which is generated by that\n"
"key when no modifiers are active. The remaining records represent\n"
"characters generated by the various modifier combinations. Using the\n"
"example with the `shift' and `control' masks set, record two would\n"
"represent the character with the `shift' modifier active; record three, the\n"
"`control' modifier active; and record four, both the `shift' and `control'\n"
"modifiers active.\n"
"\n"
"As a special case, ALPHALOCK_MASK implies SHIFT_MASK, though only\n"
"ALPHALOCK_MASK appears in `mask'. In this case the same character is\n"
"generated for both the `shift' and `alpha-lock' modifiers, but only needs\n"
"to appear once in the characters[] array.\n"
"\n"
"CARRIAGE_RETURN_MASK does not actually refer to a modifier key. Instead,\n"
"it is used to distinguish the scan code which is given the special\n"
"pseudo-designation of `carriage return' key. Typically, this mask appears\n"
"solo in a ScanGroup record and only the two Character records for control-M\n"
"and control-C follow. This flag may be a throwback to an earlier time or\n"
"may be specially interpreted by the low-level keyboard driver, but its\n"
"purpose is otherwise enigmatic.\n"
"Character\n"
"---------\n"
"Each Character record indicates the character generated when this key is\n"
"pressed, as well as the character set which contains the character. Well\n"
"known character sets are `ASCII' and `Symbol'. The character set can also\n"
"be one of the meta values FUNCTION_KEY or KEY_SEQUENCE. If it is\n"
"FUNCTION_KEY then `char_code' represents a generally well-known function\n"
"key such as those enumerated by FunctionKey. If the character set is\n"
"KEY_SEQUENCE then `char_code' represents a zero-base index into\n"
"KeyMapping::sequence_lists[].\n"
"\n"
" enum CharacterSet {\n"
" ASCII = 0x00,\n"
" SYMBOL = 0x01,\n"
" ...\n"
" FUNCTION_KEY = 0xfe,\n"
" KEY_SEQUENCE = 0xff\n"
" };\n"
"\n"
" struct Character {\n"
" number set; // CharacterSet of generated character\n"
" number char_code; // Actual character generated\n"
" };\n"
"\n"
" enum FunctionKey {\n"
" F1 = 0x20, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12,\n"
" INSERT, DELETE, HOME, END, PAGE_UP, PAGE_DOWN, PRINT_SCREEN,\n"
" SCROLL_LOCK, PAUSE, SYS_REQUEST, BREAK, RESET, STOP, MENU, USER,\n"
" SYSTEM, PRINT, CLEAR_LINE, CLEAR_DISPLAY, INSERT_LINE,\n"
" DELETE_LINE, INSERT_CHAR, DELETE_CHAR, PREV, NEXT, SELECT\n"
" };\n"
"\n"
"Sequence\n"
"--------\n"
"When Character::set contains the meta value KEY_SEQUENCE, the scan code is\n"
"bound to a sequence of keys rather than a single character. A sequence is\n"
"a series of modifiers and characters which are automatically generated when\n"
"the associated key is depressed.\n"
"\n"
" #define MODIFIER_KEY 0xff\n"
"\n"
" struct Sequence {\n"
" number num_chars;\n"
" Character characters[...];\n"
" };\n"
"\n"
"Each generated Character is represented as previously described, with the\n"
"exception that MODIFIER_KEY may appear in place of KEY_SEQUENCE. When the\n"
"value of Character::set is MODIFIER_KEY then Character::char_code\n"
"represents a modifier key rather than an actual character. If the modifier\n"
"represented by `char_code' is non-zero, then it indicates that the\n"
"associated modifier key has been depressed. In this case, the value is one\n"
"of the constants enumerated by Modifier (SHIFT, CONTROL, ALTERNATE, etc.).\n"
"If the value is zero then it means that the modifier keys have been\n"
"released.\n"
"\n"
"Special Key\n"
"-----------\n"
"A special key is one which is scanned directly by the Mach kernel rather\n"
"than by the WindowServer. In general, events are not generated for special\n"
"keys.\n"
"\n"
" enum SpecialKeyType {\n"
" VOLUME_UP = 0,\n"
" VOLUME_DOWN,\n"
" BRIGHTNESS_UP,\n"
" BRIGHTNESS_DOWN,\n"
" ALPHA_LOCK,\n"
" HELP,\n"
" POWER,\n"
" SECONDARY_ARROW_UP,\n"
" SECONDARY_ARROW_DOWN\n"
" };\n"
"\n"
" struct SpecialKey {\n"
" number type; // A SpecialKeyType constant\n"
" number scan_code; // Actual scan code\n"
" };\n"
"\n", f );
}
//-----------------------------------------------------------------------------
// Print an explanation of the output generated by this program.
//-----------------------------------------------------------------------------
static void print_output_info( FILE* f )
{
fputs(
"What follows is an explanation and description of the various pieces of\n"
"information emitted by dumpkeymap.\n"
"\n"
"For a more thorough discussion of any particular piece of information\n"
"described here, refer to the detailed description of the internal layout of\n"
"a key mapping given by the --help-layout option.\n"
"\n"
"Conventions\n"
"-----------\n"
"Depending upon context, some numeric values are displayed in decimal\n"
"notation, whereas others are displayed in hexadecimal notation.\n"
"Hexadecimal numbers are denoted by a `0x' prefix (for instance, `0x7b'),\n"
"except when explicitly noted otherwise.\n"
"\n"
"Key Mapping Source\n"
"------------------\n"
"The first piece of information presented about a particular key mapping is\n"
"the source from which the data was gleaned. For a .keymapping file, the\n"
"title `KEYMAP FILE' is emitted along with the path and name of the file in\n"
"question. For the key mapping currently in use by the WindowServer and\n"
"AppKit, the title `ACTIVE KEYMAP' is emitted instead.\n"
"\n"
"Device Information\n"
"------------------\n"
"Each .keymapping file may contain one or more raw key mappings. For\n"
"example, a file which maps keys to a Dvorak-style layout might contain raw\n"
"mappings for Intel PC, ADB, NeXT, and Sun Type5 keyboards.\n"
"\n"
"For each raw mapping, the following information is emitted:\n"
"\n"
" o The title `KEYMAP' along with the mapping's relative position in the\n"
" .keymapping file.\n"
" o The `interface' identifier.\n"
" o The `handler_id' sub-identifier.\n"
" o The size of the raw mapping resource counted in bytes.\n"
"\n"
"The `interface' and `handler_id' values, taken together, define a specific\n"
"keyboard device. A .keyboard file, which describes the visual layout of a\n"
"keyboard, also contains `interface' and `handler_id' identifiers. The\n"
".keyboard file corresponding to a particular key mapping can be found by\n"
"matching the `interface' and `handler_id' values from each resource.\n"
"\n"
"Modifiers\n"
"---------\n"
"Each mapping may contain zero or more modifier records which associate\n"
"hardware scan codes with modifier descriptions such as `shift', `control',\n"
"`alternate', etc. The title `MODIFIERS' is printed along with the count of\n"
"modifier records which follow. For each modifier record, the modifier's\n"
"name is printed along with a list of scan codes, in hexadecimal format,\n"
"which generate that modifier value. For example:\n"
"\n"
" MODIFIERS [4]\n"
" alternate: 0x1d 0x60\n"
" control: 0x3a\n"
" keypad: 0x52 0x53 ... 0x63 0x62\n"
" shift: 0x2a 0x36\n"
"\n"
"Characters\n"
"----------\n"
"Each mapping may contain zero or more character records which associate\n"
"hardware scan codes with the actual characters generated by those scan\n"
"codes in the presence or absence of various modifier combinations. The\n"
"title `CHARACTERS' is printed along with the count of character records\n"
"which follow. Here is a highly abbreviated example:\n"
"\n"
" CHARACTERS [9]\n"
" scan 0x00: -AC-L \"a\" \"A\" \"^A\" \"^A\" ca c7 \"^A\" \"^A\"\n"
" scan 0x07: -AC-L \"x\" \"X\" \"^X\" \"^X\" 01/b4 01/ce \"^X\" \"^X\"\n"
" scan 0x0a: ---S- \"<\" \">\"\n"
" scan 0x13: -ACS- \"2\" \"@\" \"^@\" \"^@\" b2 b3 \"^@\" \"^@\"\n"
" scan 0x24: R---- \"^M\" \"^C\"\n"
" scan 0x3e: ----- [F4]\n"
" scan 0x4a: ----- [page up]\n"
" scan 0x60: ----- {seq#3}\n"
" scan 0x68: not-bound\n"
"\n"
"For each record, the hexadecimal value of the hardware scan code is\n"
"printed, followed by a list of modifier flag combinations and the actual\n"
"characters generated by this scan code with and without modifiers applied.\n"
"\n"
"The modifier flags field is composed of a combination of single letter\n"
"representations of the various modifier types. The letters stand for:\n"
"\n"
" L - alpha-lock\n"
" S - shift\n"
" C - control\n"
" A - alternate\n"
" R - carriage-return\n"
"\n"
"As a special case, the `alpha-lock' flag also implies the `shift' flag, so\n"
"these two flags never appear together in the same record.\n"
"\n"
"The combination of modifier flags determines the meaning and number of\n"
"fields which follow. The first field after the modifier flags always\n"
"represents the character that will be generated if no modifier keys are\n"
"depressed. The remaining fields represent characters generated by the\n"
"various modifier combinations. The order of the fields follows this\n"
"general pattern:\n"
"\n"
" o The character generated by this scan code when no modifiers are in\n"
" effect is listed first.\n"
"\n"
" o If the `L' or `S' flag is active, then the shifted character\n"
" generated by this scan code is listed next.\n"
"\n"
" o If the `C' flag is active, then the control-character generated by\n"
" this scan code is listed next. Furthermore, if the `L' or `S' flag\n"
" is also active, then the shifted control-character is listed after\n"
" that.\n"
"\n"
" o If the `A' flag is active, then the alternate-character generated by\n"
" this scan code is listed next. Furthermore, if the `L' or `S' flag\n"
" is active, then the shifted alternate-character is listed after that.\n"
" If the `C' flag is also active, then the alternate-control-character\n"
" is listed next. Finally, if the `C' and `L' or `C' and `S' flags are\n"
" also active, then the shifted alternate-control-character is listed.\n"
"\n"
"The `R' flag does not actually refer to a modifier key. Instead, it is\n"
"used to distinguish the scan code which is given the special\n"
"pseudo-designation of `carriage return' key. Typically, this mask appears\n"
"solo and only the two fields for control-M and control-C follow. This flag\n"
"may be a throwback to an earlier time or may be specially interpreted by\n"
"the low-level keyboard driver, but its purpose is otherwise enigmatic.\n"
"\n"
"Recalling the example from above, the following fields can be identified:\n"
"\n"
" scan 0x00: -AC-L \"a\" \"A\" \"^A\" \"^A\" ca c7 \"^A\" \"^A\"\n"
"\n"
" o Lower-case `a' is generated when no modifiers are active.\n"
" o Upper-case `A' is generated when `shift' or `alpha-lock' are active.\n"
" o Control-A is generated when `control' is active.\n"
" o Control-A is generated when `control' and `shift' are active.\n"
" o The character represented by the hexadecimal code 0xca is generated\n"
" when `alternate' is active.\n"
" o The character represented by 0xc7 is generated when `alternate' and\n"
" `shift' (or `alpha-lock') are active.\n"
" o Control-A is generated when `alternate' and `control' are active.\n"
" o Control-A is generated when `alternate', `control' and `shift' (or\n"
" `alpha-lock') are active.\n"
"\n"
"The notation used to represent a particular generated character varies.\n"
"\n"
" o Printable ASCII characters are quoted, as in \"x\" or \"X\".\n"
"\n"
" o Control-characters are quoted and prefixed with `^', as in \"^X\".\n"
"\n"
" o Characters with values greater than 127 (0x7f) are displayed as\n"
" hexadecimal values without the `0x' prefix.\n"
"\n"
" o Characters in a non-ASCII character set (such as `Symbol') are\n"
" displayed as two hexadecimal numbers separated by a slash, as in\n"
" `01/4a'. The first number is the character set's identification code\n"
" (such as `01' for the `Symbol' set), and the second number is the\n"
" value of the generated character.\n"
"\n"
" o Non-printing special function characters are displayed with the\n"
" function's common name enclosed in brackets, as in `[page up]' or\n"
" `[F4]'.\n"
"\n"
" o If the binding represents a key sequence rather than a single\n"
" character, then the sequence's identification number is enclosed in\n"
" braces, as in `{seq#3}'.\n"
"\n"
"Recalling a few examples from above, the following interpretations can be\n"
"made:\n"
"\n"
" scan 0x07: -AC-L \"x\" \"X\" \"^X\" \"^X\" 01/b4 01/ce \"^X\" \"^X\"\n"
" scan 0x3e: ----- [F4]\n"
" scan 0x4a: ----- [page up]\n"
" scan 0x60: ----- {seq#3}\n"
"\n"
" o \"x\" and \"X\" are printable ASCII characters.\n"
" o \"^X\" is a control-character.\n"
" o `01/b4' and `01/ce' represent the character codes 0xb4 and 0xce in\n"
" the `Symbol' character set.\n"
" o Scan code 0x3e generates function-key `F4', and scan code 0x4a\n"
" generates function-key `page up'.\n"
" o Scan code 0x60 is bound to key sequence #3.\n"
"\n"
"Finally, if a scan code is not bound to any characters, then it is\n"
"annotated with the label `not-bound', as with example scan code 0x68 from\n"
"above.\n"
"\n"
"Sequences\n"
"---------\n"
"A scan code (modified and unmodified) can be bound to a key sequence rather\n"
"than generating a single character or acting as a modifier. When it is\n"
"bound to a key sequence, a series of character invocations and modifier\n"
"actions are automatically generated rather than a single keystroke.\n"
"\n"
"Each mapping may contain zero or more key sequence records. The title\n"
"`SEQUENCES' is printed along with the count of sequence records which\n"
"follow. For example:\n"
"\n"
" SEQUENCES [3]\n"
" sequence 0: \"f\" \"o\" \"o\"\n"
" sequence 1: {alternate} \"b\" \"a\" \"r\" {unmodify}\n"
" sequence 2: [home] \"b\" \"a\" \"z\"\n"
"\n"
"The notation used to represent the sequence of generated characters is\n"
"identical to the notation already described in the `Characters' section\n"
"above, with the exception that modifier actions may be interposed between\n"
"generated characters. Such modifier actions are represented by the\n"
"modifier's name enclosed in braces. The special name `{unmodify}'\n"
"indicates the release of the modifier keys.\n"
"\n"
"Thus, the sequences in the above example can be interpreted as follows:\n"
"\n"
" o Sequence #0 generates `foo'.\n"
" o Sequence #1 invokes the `alternate' modifier, generates `bar', and\n"
" then releases `alternate'.\n"
" o Sequence #2 invokes the `home' key and then generates `baz'. In a\n"
" text editor, this would probably result in `baz' being prepended to\n"
" the line of text on which the cursor resides.\n"
"\n"
"Special Keys\n"
"------------\n"
"Certain keyboards feature keys which perform some type of special purpose\n"
"function rather than generating a character or acting as a modifier. For\n"
"instance, Apple keyboards often contain a `power' key, and NeXT keyboards\n"
"have historically featured screen brightness and volume control keys.\n"
"\n"
"Each mapping may contain zero or more special-key records which associate\n"
"hardware scan codes with such special purpose functions. The title\n"
"`SPECIALS' is printed along with the count of records which follow. For\n"
"each record, the special function's name is printed along with a list of\n"
"scan codes, in hexadecimal format, which are bound to that function. For\n"
"example:\n"
"\n"
" SPECIALS [6]\n"
" alpha-lock: 0x39\n"
" brightness-down: 0x79\n"
" brightness-up: 0x74\n"
" power: 0x7f\n"
" sound-down: 0x77\n"
" sound-up: 0x73\n"
"\n", f );
}
//-----------------------------------------------------------------------------
// Print a summary of the various files and directories which are related to
// key mappings.
//-----------------------------------------------------------------------------
static void print_files_info( FILE* f )
{
fputs(
"This is a summary of the various files and directories which are related to\n"
"key mappings.\n"
"\n"
"*.keymapping\n"
" A key mapping file which precisely defines the relationship of all\n"
" hardware-specific keyboard scan-codes with their associated\n"
" functionality.\n"
"\n"
"*.keyboard\n"
" A file describing the physical layout of keys on a particular type of\n"
" keyboard. Each `key' token in this file defines the position and shape\n"
" of the key on the keyboard, as well as the associated scan code which\n"
" that key generates. A .keymapping file, on the other hand, defines the\n"
" characters which are generated by a particular scan code depending upon\n"
" the state of the various modifier keys (such as shift, control, etc.).\n"
" The `interface' and `handler_id' values from a .keymapping file are\n"
" matched against those in each .keyboard file in order to associate a\n"
" particular .keyboard file with a key mapping. Various GUI programs use\n"
" the .keyboard file to display a visual representation of a keyboard for\n"
" the user. Since these files are just plain text, they can be easily\n"
" viewed and interpreted without the aid of a specialized program, thus\n"
" dumpkeymap leaves these files alone.\n"
"\n"
"/System/Library/Keyboards\n"
"/Network/Library/Keyboards\n"
"/Local/Library/Keyboards\n"
"/Library/Keyboards\n"
" Repositories for .keymapping and .keyboard files for MacOS/X, Darwin,\n"
" and MacOS/X Server.\n"
"\n"
"/NextLibrary/Keyboards\n"
"/LocalLibrary/Keyboards\n"
" Repositories for .keymapping and .keyboard files for OpenStep and\n"
" NextStep.\n"
"\n"
"$(HOME)/Library/Keyboards\n"
" Repository for personal .keymapping and .keyboard files.\n"
"\n", f );
}
//-----------------------------------------------------------------------------
// Print a list of the various diagnostic messages which may be emitted.
//-----------------------------------------------------------------------------
static void print_diagnostics_info( FILE* f )
{
fputs(
"The following diagnostic messages may be issued to the standard error\n"
"stream.\n"
"\n"
"Unrecognized option.\n"
" An unrecognized option was specified on the command-line. Invoke\n"
" dumpkeymap with the --help option to view a list of valid options.\n"
"\n"
"Insufficient data in keymapping data stream.\n"
" The key mapping file or data stream is corrupt. Either the file has\n"
" been incorrectly truncated or a field, such as those which indicates\n"
" the number of variable records which follow, contains a corrupt value.\n"
"\n"
"The following diagnostic messages have significance only when trying to\n"
"print .keymapping files mentioned on the command-line.\n"
"\n"
"Bad magic number.\n"
" The mentioned file is not a .keymapping file. The file's content does\n"
" not start with the string `KYM1'.\n"
"\n"
"Unable to open key mapping file.\n"
" The call to fopen() failed; probably because the specified path is\n"
" invalid or dumpkeymap does not have permission to read the file.\n"
"\n"
"Unable to determine key mapping file size.\n"
" The call to fstat() failed, thus memory can not be allocated for\n"
" loading the file.\n"
"\n"
"Unable to read key mapping file.\n"
" The call to fread() failed.\n"
"\n"
"The following diagnostic messages have significance only when trying to\n"
"print the currently active key mapping when no .keymapping files have been\n"
"mentioned on the command-line.\n"
"\n"
"Unable to open event status driver.\n"
" The call to NXOpenEventStatus() failed.\n"
"\n"
"Bad key mapping length.\n"
" The call to NXKeyMappingLength() returned a bogus value.\n"
"\n"
"Unable to get current key mapping.\n"
" The call to NXGetKeyMapping() failed.\n"
"\n"
"The following diagnostic messages have significance only when using\n"
"dumpkeymap on a non-Apple/NeXT platform.\n"
"\n"
"Must specify at least one .keymapping file.\n"
" No .keymapping files were mentioned on the command-line. On\n"
" non-Apple/NeXT platforms, there is no concept of a currently active\n"
" .keymapping file, so at least one file must be mentioned on the\n"
" command-line.\n"
"\n", f );
}
//-----------------------------------------------------------------------------
// Print warranty.
//-----------------------------------------------------------------------------
static void print_warranty( FILE* f )
{
fputs(
"This software is provided by the author `AS IS' and any express or implied\n"
"WARRANTIES, including, but not limited to, the implied warranties of\n"
"MERCHANTABILITY and FITNESS FOR A PARTICULAR PURPOSE are DISCLAIMED. In NO\n"
"EVENT shall the author be LIABLE for any DIRECT, INDIRECT, INCIDENTAL,\n"
"SPECIAL, EXEMPLARY, or CONSEQUENTIAL damages (including, but not limited\n"
"to, procurement of substitute goods or services; loss of use, data, or\n"
"profits; or business interruption) however caused and on any theory of\n"
"liability, whether in contract, strict liability, or tort (including\n"
"negligence or otherwise) arising in any way out of the use of this\n"
"software, even if advised of the possibility of such damage.\n"
"\n", f );
}
//-----------------------------------------------------------------------------
// Print this program's version number.
//-----------------------------------------------------------------------------
static void print_version( FILE* f )
{
fputs( "Version " PROG_VERSION " (built " __DATE__ ")\n\n", f );
}
//-----------------------------------------------------------------------------
// Print a usage summary.
//-----------------------------------------------------------------------------
static void print_usage( FILE* f )
{
fputs(
"Usage: dumpkeymap [options] [-] [file ...]\n"
"\n"
"Prints a textual representation of each Apple/NeXT .keymapping file\n"
"mentioned on the command-line. If no files are mentioned and if the local\n"
"machine is an Apple or NeXT installation, then the key mapping currently in\n"
"use by the WindowServer and the AppKit is printed instead.\n"
"\n"
"Options:\n"
" -h --help\n"
" Display general program instructions and option summary.\n"
"\n"
" -k --help-keymapping\n"
" Display a detailed description of the internal layout of a\n"
" .keymapping file.\n"
"\n"
" -o --help-output\n"
" Display an explanation of the output generated by dumpkeymap when\n"
" dissecting a .keymapping file.\n"
"\n"
" -f --help-files\n"
" Display a summary of the various files and directories which are\n"
" related to key mappings.\n"
"\n"
" -d --help-diagnostics\n"
" Display a list of the various diagnostic messages which may be\n"
" emitted by dumpkeymap.\n"
"\n"
" -v --version\n"
" Display the dumpkeymap version number and warranty information.\n"
"\n"
" - --\n"
" Inhibit processing of options at this point in the argument list.\n"
" An occurrence of `-' or `--' in the argument list causes all\n"
" following arguments to be treated as file names even if an argument\n"
" begins with a `-' character.\n"
"\n", f );
}
//-----------------------------------------------------------------------------
// Print an informational banner.
//-----------------------------------------------------------------------------
static void print_banner( FILE* f )
{
fputs( "\n" PROG_NAME " v" PROG_VERSION " by " AUTHOR_INFO "\n"
COPYRIGHT "\n\n", f );
}
//-----------------------------------------------------------------------------
// Process command-line arguments. Examine options first; collecting files
// along the way. If all is well, process collected file list.
//-----------------------------------------------------------------------------
int main( int const argc, char const* const argv[] )
{
int rc = 0, i, nfiles = 0, more_options = 1, process_files = 1;
int* files = (int*)calloc( argc - 1, sizeof(int) );
print_banner( stdout );
for (i = 1; i < argc; i++)
{
char const* const s = argv[i];
if (!more_options || *s != '-')
files[ nfiles++ ] = i;
else
{
OPT_SWITCH(s)
OPT_CASE(-,--)
more_options = 0;
OPT_CASE(-h,--help)
print_usage( stdout );
process_files = 0;
OPT_CASE(-k,--help-keymapping)
print_internal_layout_info( stdout );
process_files = 0;
OPT_CASE(-o,--help-output)
print_output_info( stdout );
process_files = 0;
OPT_CASE(-f,--help-files)
print_files_info( stdout );
process_files = 0;
OPT_CASE(-d,--help-diagnostics)
print_diagnostics_info( stdout );
process_files = 0;
OPT_CASE(-v,--version)
print_version( stdout );
print_warranty( stdout );
process_files = 0;
OPT_DEFAULT
fprintf( stderr, "ERROR: Unrecognized option: %s\n\n", s );
process_files = 0;
rc = 1;
OPT_SWITCH_END
}
}
if (process_files)
{
if (nfiles == 0)
rc = handle_empty_document_list();
else
for (i = 0; i < nfiles; i++)
rc |= unparse_keymap_file( argv[files[i]] );
}
free( files );
return rc;
}
|