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
|
/*
* XBrlAPI - A background process tinkering with X for proper BrlAPI behavior
*
* Copyright (C) 2003-2016 by Samuel Thibault <Samuel.Thibault@ens-lyon.org>
*
* XBrlAPI comes with ABSOLUTELY NO WARRANTY.
*
* This is free software, placed under the terms of the
* GNU General Public License, as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any
* later version. Please see the file LICENSE-GPL for details.
*
* Web Page: http://brltty.com/
*
* This software is maintained by Dave Mielke <dave@mielke.cc>.
*/
/* Compile with:
* gcc -O3 -Wall xbrlapi.c -L/usr/X11R6/lib -lbrlapi -lX11 -o xbrlapi
*/
#include "prologue.h"
#include <stdio.h>
#include <stdarg.h>
#include <signal.h>
#include <string.h>
#ifdef HAVE_LANGINFO_H
#include <langinfo.h>
#endif /* HAVE_LANGINFO_H */
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#else /* HAVE_SYS_SELECT_H */
#include <sys/time.h>
#endif /* HAVE_SYS_SELECT_H */
#ifdef HAVE_ICONV_H
#include <iconv.h>
#endif /* HAVE_ICONV_H */
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <X11/XKBlib.h>
#include <X11/keysym.h>
#undef CAN_SIMULATE_KEY_PRESSES
#if defined(HAVE_X11_EXTENSIONS_XTEST_H) && defined(HAVE_X11_EXTENSIONS_XKB_H)
#include <X11/extensions/XTest.h>
#define CAN_SIMULATE_KEY_PRESSES
#else /* HAVE_X11_EXTENSIONS_XTEST_H && HAVE_X11_EXTENSIONS_XKB_H */
#warning key press simulation not supported by this build - check that libxtst has been installed
#endif /* HAVE_X11_EXTENSIONS_XTEST_H && HAVE_X11_EXTENSIONS_XKB_H */
#define BRLAPI_NO_DEPRECATED
#include "brlapi.h"
#include "options.h"
//#define DEBUG
#ifdef DEBUG
#define debugf(fmt, ...) fprintf(stderr, fmt, ## __VA_ARGS__)
#else /* DEBUG */
#define debugf(fmt, ...) (void)0
#endif /* DEBUG */
/******************************************************************************
* option handling
*/
static char *auth;
static char *host;
static char *xDisplay;
static int quiet;
static int brlapi_fd;
BEGIN_OPTION_TABLE(programOptions)
{ .letter = 'b',
.word = "brlapi",
.argument = strtext("[host][:port]"),
.setting.string = &host,
.description = strtext("BrlAPI host and/or port to connect to")
},
{ .letter = 'a',
.word = "auth",
.argument = strtext("file"),
.setting.string = &auth,
.description = strtext("BrlAPI authorization/authentication string")
},
{ .letter = 'd',
.word = "display",
.argument = strtext("display"),
.setting.string = &xDisplay,
.description = strtext("X display to connect to")
},
{ .letter = 'q',
.word = "quiet",
.setting.flag = &quiet,
.description = strtext("Do not write any text to the braille device")
},
END_OPTION_TABLE
/******************************************************************************
* error handling
*/
static void api_cleanExit(void) {
if (brlapi_fd>=0)
{
close(brlapi_fd);
brlapi_fd=-1;
}
}
/* dumps errors which are fatal to brlapi only */
static void fatal_brlapi_errno(const char *msg, const char *fmt, ...) {
brlapi_perror(msg);
if (fmt) {
va_list va;
va_start(va,fmt);
vfprintf(stderr,fmt,va);
va_end(va);
}
api_cleanExit();
}
static void exception_handler(int error, brlapi_packetType_t type, const void *packet, size_t size) {
char str[0X100];
brlapi_strexception(str,0X100, error, type, packet, size);
fprintf(stderr, "xbrlapi: BrlAPI exception: %s\nDisconnecting from brlapi\n", str);
api_cleanExit();
}
/* dumps errors which are fatal to the whole xbrlapi */
static void fatal_errno(const char *msg, const char *fmt, ...) {
perror(msg);
if (fmt) {
va_list va;
va_start(va,fmt);
vfprintf(stderr,fmt,va);
va_end(va);
}
exit(PROG_EXIT_FATAL);
}
static void fatal(const char *fmt, ...) {
if (fmt) {
va_list va;
va_start(va,fmt);
vfprintf(stderr,fmt,va);
va_end(va);
}
exit(PROG_EXIT_FATAL);
}
/******************************************************************************
* brlapi handling
*/
#ifndef MIN
#define MIN(a, b) (((a) < (b))? (a): (b))
#endif /* MIN */
static int tobrltty_init(char *auth, char *host) {
brlapi_connectionSettings_t settings;
unsigned int x,y;
settings.host=host;
settings.auth=auth;
static int had_succeeded;
if ((brlapi_fd = brlapi_openConnection(&settings,&settings))<0)
{
if (!had_succeeded)
{
/* This is the first attempt to connect to BRLTTY, and it failed.
* Return the error immediately to the user, to provide feedback to users
* running xbrlapi by hand, but not fill logs, eat battery, spam
* 127.0.0.1 with reconnection attempts.
*/
fatal_brlapi_errno("openConnection",gettext("cannot connect to braille devices daemon brltty at %s\n"),settings.host);
exit(PROG_EXIT_FATAL);
}
return 0;
}
/* We achieved connecting to BRLTTY. If BRLTTY dies later on, we will
* silently try to reconnect to it. */
had_succeeded = 1;
if (brlapi_getDisplaySize(&x,&y)<0)
{
fatal_brlapi_errno("getDisplaySize",NULL);
return 0;
}
brlapi_setExceptionHandler(exception_handler);
return 1;
}
static int getXVTnb(void);
static void getVT(void) {
char *path = getenv("WINDOWPATH");
char *vtnr = getenv("XDG_VTNR");
int vtno = -1;
if (!path && !vtnr)
/* Workaround for old xinit/xdm/gdm/kdm */
vtno = getXVTnb();
if (path || vtnr || vtno == -1) {
if (brlapi_enterTtyModeWithPath(NULL,0,NULL)<0)
{
fatal_brlapi_errno("geTtyPath",gettext("cannot get tty\n"));
return;
}
} else {
if (brlapi_enterTtyMode(vtno,NULL)<0)
{
fatal_brlapi_errno("enterTtyMode",gettext("cannot get tty %d\n"),vtno);
return;
}
}
if (brlapi_ignoreAllKeys()<0)
{
fatal_brlapi_errno("ignoreAllKeys",gettext("cannot ignore keys\n"));
return;
}
#ifdef CAN_SIMULATE_KEY_PRESSES
/* All X keysyms with any modifier */
brlapi_keyCode_t cmd = BRLAPI_KEY_TYPE_SYM;
if (brlapi_acceptKeys(brlapi_rangeType_type, &cmd, 1))
{
fatal_brlapi_errno("acceptKeys",NULL);
return;
}
cmd = BRLAPI_KEY_TYPE_CMD | BRLAPI_KEY_CMD_SHIFT;
if (brlapi_acceptKeys(brlapi_rangeType_key, &cmd, 1))
{
fatal_brlapi_errno("acceptKeys",NULL);
return;
}
cmd = BRLAPI_KEY_TYPE_CMD | BRLAPI_KEY_CMD_UPPER;
if (brlapi_acceptKeys(brlapi_rangeType_key, &cmd, 1))
{
fatal_brlapi_errno("acceptKeys",NULL);
return;
}
cmd = BRLAPI_KEY_TYPE_CMD | BRLAPI_KEY_CMD_CONTROL;
if (brlapi_acceptKeys(brlapi_rangeType_key, &cmd, 1))
{
fatal_brlapi_errno("acceptKeys",NULL);
return;
}
cmd = BRLAPI_KEY_TYPE_CMD | BRLAPI_KEY_CMD_META;
if (brlapi_acceptKeys(brlapi_rangeType_key, &cmd, 1))
{
fatal_brlapi_errno("acceptKeys",NULL);
return;
}
#endif /* CAN_SIMULATE_KEY_PRESSES */
}
static char *last_name;
static void api_setLastName(void) {
if (!last_name) return;
if (brlapi_writeText(0,last_name)<0) {
brlapi_perror("writeText");
fprintf(stderr,gettext("xbrlapi: cannot write window name %s\n"),last_name);
}
}
static void api_setName(const char *wm_name) {
if (brlapi_fd<0) return;
debugf("%s got focus\n",wm_name);
if (last_name) {
if (!strcmp(wm_name,last_name)) return;
free(last_name);
}
if (!(last_name=strdup(wm_name))) fatal_errno("strdup(wm_name)",NULL);
api_setLastName();
}
static int last_win;
static void api_setLastFocus(void)
{
if (brlapi_setFocus(last_win)<0)
fatal_brlapi_errno("setFocus",gettext("cannot set focus to %#010x\n"),last_win);
}
static void api_setFocus(int win) {
if (brlapi_fd<0) return;
debugf("%#010x (%d) got focus\n",win,win);
last_win = win;
api_setLastFocus();
}
/******************************************************************************
* X handling
*/
static const char *Xdisplay;
static Display *dpy;
static Window curWindow;
static Atom netWmNameAtom, utf8StringAtom;
static volatile int grabFailed;
#ifdef HAVE_ICONV_H
iconv_t utf8Conv = (iconv_t)(-1);
#endif /* HAVE_ICONV_H */
#define WINHASHBITS 12
static struct window {
Window win;
Window root;
char *wm_name;
struct window *next;
} *windows[(1<<WINHASHBITS)];
#define WINHASH(win) windows[(win)>>(32-WINHASHBITS)^(win&((1<<WINHASHBITS)-1))]
static void add_window(Window win, Window root, char *wm_name) {
struct window *cur;
if (!(cur=malloc(sizeof(struct window))))
fatal_errno("malloc(struct window)",NULL);
cur->win=win;
cur->wm_name=wm_name;
cur->root=root;
cur->next=WINHASH(win);
WINHASH(win)=cur;
}
static struct window *window_of_Window(Window win) {
struct window *cur;
for (cur=WINHASH(win); cur && cur->win!=win; cur=cur->next);
return cur;
}
static int del_window(Window win) {
struct window **pred;
struct window *cur;
for (pred=&WINHASH(win); cur = *pred, cur && cur->win!=win; pred=&cur->next);
if (cur) {
*pred=cur->next;
free(cur->wm_name);
free(cur);
return 0;
} else return -1;
}
static int ErrorHandler(Display *dpy, XErrorEvent *ev) {
char buffer[128];
if (ev->error_code==BadWindow) {
grabFailed=1;
return 0;
}
if (!XGetErrorText(dpy, ev->error_code, buffer, sizeof(buffer)))
fatal("XGetErrorText");
fprintf(stderr,gettext("xbrlapi: X Error %d, %s on display %s\n"), ev->type, buffer, XDisplayName(Xdisplay));
fprintf(stderr,gettext("xbrlapi: resource %#010lx, req %u:%u\n"),ev->resourceid,ev->request_code,ev->minor_code);
exit(PROG_EXIT_FATAL);
}
static int getXVTnb(void) {
Window root;
Atom property;
Atom actual_type;
int actual_format;
unsigned long nitems;
unsigned long bytes_after;
unsigned char *buf;
int vt = -1;
root=DefaultRootWindow(dpy);
if ((property=XInternAtom(dpy,"XFree86_VT",False))==None) {
fprintf(stderr,gettext("xbrlapi: no XFree86_VT atom\n"));
return -1;
}
if (XGetWindowProperty(dpy,root,property,0,1,False,AnyPropertyType,
&actual_type, &actual_format, &nitems, &bytes_after, &buf)) {
fprintf(stderr,gettext("xbrlapi: cannot get root window XFree86_VT property\n"));
return -1;
}
if (nitems<1) {
fprintf(stderr, gettext("xbrlapi: no items for VT number\n"));
goto out;
}
if (nitems>1)
fprintf(stderr,gettext("xbrlapi: more than one item for VT number\n"));
switch (actual_type) {
case XA_CARDINAL:
case XA_INTEGER:
case XA_WINDOW:
switch (actual_format) {
case 8: vt = (*(uint8_t *)buf); break;
case 16: vt = (*(uint16_t *)buf); break;
case 32: vt = (*(uint32_t *)buf); break;
default: fprintf(stderr, gettext("xbrlapi: bad format for VT number\n")); goto out;
}
break;
default: fprintf(stderr, gettext("xbrlapi: bad type for VT number\n")); goto out;
}
out:
if (!XFree(buf)) fatal("XFree(VTnobuf)");
return vt;
}
static int grabWindow(Window win,int level) {
#ifdef DEBUG
char spaces[level+1];
#endif /* DEBUG */
grabFailed=0;
if (!XSelectInput(dpy,win,PropertyChangeMask|FocusChangeMask|SubstructureNotifyMask) || grabFailed)
return 0;
#ifdef DEBUG
memset(spaces,' ',level);
spaces[level]='\0';
debugf("%sgrabbed %#010lx\n",spaces,win);
#endif /* DEBUG */
return 1;
}
static char *getWindowTitle(Window win) {
int wm_name_size=32;
Atom actual_type;
int actual_format;
unsigned long nitems,bytes_after;
unsigned char *wm_name=NULL;
char *ret;
do {
if (XGetWindowProperty(dpy,win,netWmNameAtom,0,wm_name_size,False,
/*XA_STRING*/AnyPropertyType,&actual_type,&actual_format,&nitems,&bytes_after,
&wm_name)) {
wm_name = NULL;
break; /* window disappeared or not available */
}
wm_name_size+=bytes_after;
if (!bytes_after) break;
if (!XFree(wm_name)) fatal("tempo_XFree(wm_name)");
} while (1);
if (!wm_name) do {
if (XGetWindowProperty(dpy,win,XA_WM_NAME,0,wm_name_size,False,
/*XA_STRING*/AnyPropertyType,&actual_type,&actual_format,&nitems,&bytes_after,
&wm_name))
return NULL; /* window disappeared */
if (wm_name_size >= nitems + 1) break;
wm_name_size += bytes_after + 1;
if (!XFree(wm_name)) fatal("tempo_XFree(wm_name)");
} while (1);
if (actual_type==None) {
XFree(wm_name);
return NULL;
}
wm_name[nitems++] = 0;
ret = strdup((char *) wm_name);
XFree(wm_name);
debugf("type %lx name %s len %ld\n",actual_type,ret,nitems);
#ifdef HAVE_ICONV_H
{
if (actual_type == utf8StringAtom && utf8Conv != (iconv_t)(-1)) {
char *ret2;
size_t input_size, output_size;
char *input, *output;
input_size = nitems;
input = ret;
output_size = nitems * MB_CUR_MAX;
output = ret2 = malloc(output_size);
if (iconv(utf8Conv, &input, &input_size, &output, &output_size) == -1) {
free(ret2);
} else {
free(ret);
ret = realloc(ret2, nitems * MB_CUR_MAX - output_size);
debugf("-> %s\n",ret);
}
}
}
#endif /* HAVE_ICONV_H */
return ret;
}
static int grabWindows(Window win,int level) {
Window root,parent,*children;
unsigned int nchildren,i;
int res=1;
if (!grabWindow(win,level)) return 1; /* window disappeared */
if (!XQueryTree(dpy,win,&root,&parent,&children,&nchildren)) return 0;
add_window(win,root,getWindowTitle(win));
if (!children) return 1;
for (i=0;i<nchildren;i++)
if (children[i] && !grabWindows(children[i],level+1)) {
res=0;
break;
}
if (!XFree(children)) fatal("XFree(children)");
return res;
}
static void setName(const struct window *window) {
if (!window->wm_name)
if (window->win==window->root) api_setName("root");
else api_setName("unknown");
else api_setName(window->wm_name);
}
static void setFocus(Window win) {
struct window *window;
curWindow=win;
api_setFocus((uint32_t)win);
if (!quiet) {
if (!(window=window_of_Window(win))) {
fprintf(stderr,gettext("xbrlapi: didn't grab window %#010lx but got focus\n"),win);
api_setName("unknown");
} else setName(window);
}
}
#ifdef CAN_SIMULATE_KEY_PRESSES
static int tryModifiers(KeyCode keycode, unsigned int *modifiers, unsigned int modifiers_try, KeySym keysym) {
KeySym keysymRet;
unsigned int modifiersRet;
if (!XkbLookupKeySym(dpy, keycode, modifiers_try, &modifiersRet, &keysymRet))
return 0;
if (keysymRet != keysym)
return 0;
*modifiers |= modifiers_try;
return 1;
}
static void ignoreServerKeys(void) {
brlapi_range_t range = {
.first = BRLAPI_KEY_FLG(ControlMask|Mod1Mask),
.last = BRLAPI_KEY_FLG(ControlMask|Mod1Mask)|~BRLAPI_KEY_FLAGS_MASK,
};
if (brlapi_ignoreKeyRanges(&range, 1))
{
fatal_brlapi_errno("ignoreKeyRanges",NULL);
return;
}
}
#endif /* CAN_SIMULATE_KEY_PRESSES */
static void toX_f(const char *display) {
Window root;
XEvent ev;
int i;
int X_fd;
fd_set readfds;
int maxfd;
#ifdef CAN_SIMULATE_KEY_PRESSES
int res;
brlapi_keyCode_t code;
unsigned int keysym, keycode, modifiers, next_modifiers = 0;
Bool haveXTest;
int eventBase, errorBase, majorVersion, minorVersion;
#endif /* CAN_SIMULATE_KEY_PRESSES */
Xdisplay = display;
if (!Xdisplay) Xdisplay=getenv("DISPLAY");
if (!(dpy=XOpenDisplay(Xdisplay))) fatal(gettext("cannot connect to display %s\n"),Xdisplay);
if (!XSetErrorHandler(ErrorHandler)) fatal(gettext("strange old error handler\n"));
#ifdef CAN_SIMULATE_KEY_PRESSES
haveXTest = XTestQueryExtension(dpy, &eventBase, &errorBase, &majorVersion, &minorVersion);
#endif /* CAN_SIMULATE_KEY_PRESSES */
{
int foo;
int major = XkbMajorVersion, minor = XkbMinorVersion;
if (!XkbLibraryVersion(&major, &minor))
fatal(gettext("Incompatible XKB library\n"));
if (!XkbQueryExtension(dpy, &foo, &foo, &foo, &major, &minor))
fatal(gettext("Incompatible XKB server support\n"));
}
X_fd = XConnectionNumber(dpy);
if (brlapi_fd>=0)
{
getVT();
#ifdef CAN_SIMULATE_KEY_PRESSES
ignoreServerKeys();
#endif /* CAN_SIMULATE_KEY_PRESSES */
}
netWmNameAtom = XInternAtom(dpy,"_NET_WM_NAME",False);
utf8StringAtom = XInternAtom(dpy,"UTF8_STRING",False);
#ifdef HAVE_ICONV_H
{
char *localCharset = nl_langinfo(CODESET);
if (strcmp(localCharset, "UTF-8")) {
char buf[strlen(localCharset) + 10 + 1];
snprintf(buf, sizeof(buf), "%s//TRANSLIT", localCharset);
if ((utf8Conv = iconv_open(buf, "UTF-8")) == (iconv_t)(-1))
utf8Conv = iconv_open(localCharset, "UTF-8");
}
}
#endif /* HAVE_ICONV_H */
for (i=0;i<ScreenCount(dpy);i++) {
root=RootWindow(dpy,i);
if (!grabWindows(root,0)) fatal(gettext("cannot grab windows on screen %d\n"),i);
}
{
Window win;
int revert_to;
if (!XGetInputFocus(dpy,&win,&revert_to))
fatal(gettext("failed to get first focus\n"));
setFocus(win);
}
while(1) {
struct timeval timeout={.tv_sec=1,.tv_usec=0};
XFlush(dpy);
FD_ZERO(&readfds);
if (brlapi_fd>=0)
FD_SET(brlapi_fd, &readfds);
FD_SET(X_fd, &readfds);
maxfd = brlapi_fd>=0 && X_fd<brlapi_fd ? brlapi_fd+1 : X_fd+1;
/* Try to reconnect to brlapi every second while disconnected */
if (select(maxfd,&readfds,NULL,NULL,brlapi_fd<=0?&timeout:NULL)<0)
fatal_errno("select",NULL);
if (FD_ISSET(X_fd,&readfds))
while (XPending(dpy)) {
if ((i=XNextEvent(dpy,&ev)))
fatal("XNextEvent: %d\n",i);
switch (ev.type) {
/* focus events */
case FocusIn:
switch (ev.xfocus.detail) {
case NotifyAncestor:
case NotifyInferior:
case NotifyNonlinear:
case NotifyPointerRoot:
case NotifyDetailNone:
setFocus(ev.xfocus.window); break;
} break;
case FocusOut:
/* ignore
switch (ev.xfocus.detail) {
case NotifyAncestor:
case NotifyInferior:
case NotifyNonlinear:
case NotifyPointerRoot:
case NotifyDetailNone:
printf("win %#010lx lost focus\n",ev.xfocus.window);
break;
}
*/
break;
/* create & destroy events */
case CreateNotify: {
/* there's a race condition here : a window may get the focus or change
* its title between it is created and we achieve XSelectInput on it */
Window win = ev.xcreatewindow.window;
struct window *window;
if (!grabWindow(win,0)) break; /* window already disappeared ! */
debugf("win %#010lx created\n",win);
if (!(window = window_of_Window(ev.xcreatewindow.parent))) {
fprintf(stderr,gettext("xbrlapi: didn't grab parent of %#010lx\n"),win);
add_window(win,None,getWindowTitle(win));
} else add_window(win,window->root,getWindowTitle(win));
} break;
case DestroyNotify:
debugf("win %#010lx destroyed\n",ev.xdestroywindow.window);
if (del_window(ev.xdestroywindow.window))
debugf("destroy: didn't grab window %#010lx\n",ev.xdestroywindow.window);
break;
/* Property change: WM_NAME ? */
case PropertyNotify:
if (ev.xproperty.atom==XA_WM_NAME ||
(netWmNameAtom != None && ev.xproperty.atom == netWmNameAtom)) {
Window win = ev.xproperty.window;
debugf("WM_NAME property of %#010lx changed\n",win);
struct window *window;
if (!(window=window_of_Window(win))) {
fprintf(stderr,gettext("xbrlapi: didn't grab window %#010lx\n"),win);
add_window(win,None,getWindowTitle(win));
} else {
if (window->wm_name)
if (!XFree(window->wm_name)) fatal(gettext("XFree(wm_name) for change"));
if ((window->wm_name=getWindowTitle(win))) {
if (!quiet && win==curWindow)
api_setName(window->wm_name);
} else fprintf(stderr,gettext("xbrlapi: window %#010lx changed to NULL name\n"),win);
}
}
break;
case MappingNotify:
XRefreshKeyboardMapping(&ev.xmapping);
break;
/* ignored events */
case UnmapNotify:
case MapNotify:
case MapRequest:
case ReparentNotify:
case ConfigureNotify:
case GravityNotify:
case ConfigureRequest:
case CirculateNotify:
case CirculateRequest:
case ClientMessage:
break;
/* "shouldn't happen" events */
default: fprintf(stderr,gettext("xbrlapi: unhandled event type: %d\n"),ev.type); break;
}
}
if (brlapi_fd>=0) {
#ifdef CAN_SIMULATE_KEY_PRESSES
if (haveXTest && FD_ISSET(brlapi_fd,&readfds)) {
while (((res = brlapi_readKey(0, &code))==1)) {
switch (code & BRLAPI_KEY_TYPE_MASK) {
case BRLAPI_KEY_TYPE_CMD:
switch (code & BRLAPI_KEY_CODE_MASK) {
{
unsigned int modifier;
case BRLAPI_KEY_CMD_SHIFT:
modifier = ShiftMask;
goto doModifier;
case BRLAPI_KEY_CMD_UPPER:
modifier = LockMask;
goto doModifier;
case BRLAPI_KEY_CMD_CONTROL:
modifier = ControlMask;
goto doModifier;
case BRLAPI_KEY_CMD_META:
modifier = Mod1Mask;
goto doModifier;
doModifier:
switch (code & BRLAPI_KEY_FLG_TOGGLE_MASK) {
case 0:
next_modifiers ^= modifier;
break;
case BRLAPI_KEY_FLG_TOGGLE_ON:
next_modifiers |= modifier;
break;
case BRLAPI_KEY_FLG_TOGGLE_OFF:
next_modifiers &= ~modifier;
break;
default:
case BRLAPI_KEY_FLG_TOGGLE_ON | BRLAPI_KEY_FLG_TOGGLE_OFF:
break;
}
break;
}
default:
fprintf(stderr, "xbrlapi: %s: %" BRLAPI_PRIxKEYCODE "\n",
gettext("unexpected cmd"), code);
break;
}
break;
case BRLAPI_KEY_TYPE_SYM:
modifiers = ((code & BRLAPI_KEY_FLAGS_MASK) >> BRLAPI_KEY_FLAGS_SHIFT) & 0xFF;
keysym = code & BRLAPI_KEY_CODE_MASK;
keycode = XKeysymToKeycode(dpy,keysym);
if (keycode == NoSymbol) {
fprintf(stderr,gettext("xbrlapi: Couldn't translate keysym %08X to keycode.\n"),keysym);
continue;
}
{
static const unsigned int tryTable[] = {
0,
ShiftMask,
Mod2Mask,
Mod3Mask,
Mod4Mask,
Mod5Mask,
ShiftMask|Mod2Mask,
ShiftMask|Mod3Mask,
ShiftMask|Mod4Mask,
ShiftMask|Mod5Mask,
0
};
const unsigned int *try = tryTable;
do {
if (tryModifiers(keycode, &modifiers, *try, keysym)) goto foundModifiers;
} while (*++try);
fprintf(stderr,gettext("xbrlapi: Couldn't find modifiers to apply to %d for getting keysym %08X\n"),keycode,keysym);
continue;
}
foundModifiers:
debugf("key %08X: (%d,%x,%x)\n", keysym, keycode, next_modifiers, modifiers);
modifiers |= next_modifiers;
next_modifiers = 0;
if (modifiers)
XkbLockModifiers(dpy, XkbUseCoreKbd, modifiers, modifiers);
XTestFakeKeyEvent(dpy,keycode,True,CurrentTime);
XTestFakeKeyEvent(dpy,keycode,False,CurrentTime);
if (modifiers)
XkbLockModifiers(dpy, XkbUseCoreKbd, modifiers, 0);
break;
default:
fprintf(stderr, "xbrlapi: %s: %" BRLAPI_PRIxKEYCODE "\n",
gettext("unexpected block type"), code);
next_modifiers = 0;
break;
}
}
if (res<0)
fatal_brlapi_errno("brlapi_readKey",NULL);
}
#endif /* CAN_SIMULATE_KEY_PRESSES */
} else {
/* Try to reconnect */
if (tobrltty_init(auth,host))
{
getVT();
#ifdef CAN_SIMULATE_KEY_PRESSES
ignoreServerKeys();
#endif /* CAN_SIMULATE_KEY_PRESSES */
api_setLastName();
api_setLastFocus();
}
}
}
}
/******************************************************************************
* main
*/
static void term_handler(int foo) {
api_cleanExit();
exit(PROG_EXIT_SUCCESS);
}
int
main (int argc, char *argv[]) {
{
static const OptionsDescriptor descriptor = {
OPTION_TABLE(programOptions),
.applicationName = "xbrlapi"
};
PROCESS_OPTIONS(descriptor, argc, argv);
}
signal(SIGTERM,term_handler);
signal(SIGINT,term_handler);
#ifdef SIGHUP
signal(SIGHUP,term_handler);
#endif /* SIGHUP */
#ifdef SIGQUIT
signal(SIGQUIT,term_handler);
#endif /* SIGQUIT */
#ifdef SIGPIPE
signal(SIGPIPE,term_handler);
#endif /* SIGPIPE */
tobrltty_init(auth,host);
toX_f(xDisplay);
return PROG_EXIT_SUCCESS;
}
|