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
|
/*
* BRLTTY - A background process providing access to the console screen (when in
* text mode) for a blind person using a refreshable braille display.
*
* Copyright (C) 1995-2014 by The BRLTTY Developers.
*
* BRLTTY 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://mielke.cc/brltty/
*
* This software is maintained by Dave Mielke <dave@mielke.cc>.
*/
#include "prologue.h"
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <time.h>
#ifdef HAVE_LANGINFO_H
#include <langinfo.h>
#endif /* HAVE_LANGINFO_H */
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif /* HAVE_SYS_WAIT_H */
#include "embed.h"
#include "log.h"
#include "parameters.h"
#include "brl_cmds.h"
#include "cmd_queue.h"
#include "cmd_custom.h"
#include "cmd_navigation.h"
#include "cmd_input.h"
#include "cmd_keycodes.h"
#include "cmd_touch.h"
#include "cmd_toggle.h"
#include "cmd_preferences.h"
#include "cmd_clipboard.h"
#include "cmd_speech.h"
#include "cmd_learn.h"
#include "cmd_miscellaneous.h"
#include "timing.h"
#include "async_wait.h"
#include "async_event.h"
#include "async_signal.h"
#include "alert.h"
#include "ctb.h"
#include "routing.h"
#include "charset.h"
#include "scr.h"
#include "update.h"
#include "ses.h"
#include "brl.h"
#include "brl_utils.h"
#include "prefs.h"
#include "api_control.h"
#include "brltty.h"
#ifdef ENABLE_SPEECH_SUPPORT
#include "spk.h"
#endif /* ENABLE_SPEECH_SUPPORT */
BrailleDisplay brl; /* For the Braille routines */
ScreenDescription scr;
SessionEntry *ses = NULL;
unsigned char infoMode = 0;
unsigned int textStart;
unsigned int textCount;
unsigned char textMaximized = 0;
unsigned int statusStart;
unsigned int statusCount;
unsigned int fullWindowShift; /* Full window horizontal distance */
unsigned int halfWindowShift; /* Half window horizontal distance */
unsigned int verticalWindowShift; /* Window vertical distance */
#ifdef ENABLE_CONTRACTED_BRAILLE
int isContracted = 0;
int contractedLength;
int contractedStart;
int contractedOffsets[0X100];
int contractedTrack = 0;
#endif /* ENABLE_CONTRACTED_BRAILLE */
static void
checkRoutingStatus (RoutingStatus ok, int wait) {
RoutingStatus status = getRoutingStatus(wait);
if (status != ROUTING_NONE) {
alert((status > ok)? ALERT_ROUTING_FAILED: ALERT_ROUTING_SUCCEEDED);
ses->spkx = scr.posx;
ses->spky = scr.posy;
}
}
typedef struct {
int motionColumn;
int motionRow;
} PrecommandState;
static void *
preprocessCommand (void) {
PrecommandState *pre;
if ((pre = malloc(sizeof(*pre)))) {
pre->motionColumn = ses->winx;
pre->motionRow = ses->winy;
suspendUpdates();
return pre;
} else {
logMallocError();
}
return NULL;
}
static void
postprocessCommand (void *state, int command, int handled) {
PrecommandState *pre = state;
if (pre) {
resumeUpdates(0);
if (handled) scheduleUpdate("command executed");
if ((ses->winx != pre->motionColumn) || (ses->winy != pre->motionRow)) {
/* The window has been manually moved. */
ses->motx = ses->winx;
ses->moty = ses->winy;
#ifdef ENABLE_CONTRACTED_BRAILLE
isContracted = 0;
#endif /* ENABLE_CONTRACTED_BRAILLE */
#ifdef ENABLE_SPEECH_SUPPORT
if (ses->trackCursor && spk.track.isActive && (scr.number == spk.track.screenNumber)) {
ses->trackCursor = 0;
alert(ALERT_CURSOR_UNLINKED);
}
#endif /* ENABLE_SPEECH_SUPPORT */
}
if (!(command & BRL_MSK_BLK)) {
if (command & BRL_FLG_MOTION_ROUTE) {
int left = ses->winx;
int right = MIN(left+textCount, scr.cols) - 1;
int top = ses->winy;
int bottom = MIN(top+brl.textRows, scr.rows) - 1;
if ((scr.posx < left) || (scr.posx > right) ||
(scr.posy < top) || (scr.posy > bottom)) {
if (routeCursor(MIN(MAX(scr.posx, left), right),
MIN(MAX(scr.posy, top), bottom),
scr.number)) {
alert(ALERT_ROUTING_STARTED);
checkRoutingStatus(ROUTING_WRONG_COLUMN, 1);
{
ScreenDescription description;
describeScreen(&description);
if (description.number == scr.number) {
slideWindowVertically(description.posy);
placeWindowHorizontally(description.posx);
}
}
}
}
}
}
free(pre);
}
}
static int
handleUnhandledCommands (int command, void *data) {
switch (command & BRL_MSK_CMD) {
case BRL_CMD_NOOP: /* do nothing but loop */
break;
default:
alert(ALERT_COMMAND_REJECTED);
return 0;
}
return 1;
}
static void
setSessionEntry (void) {
describeScreen(&scr);
if (scr.number == -1) scr.number = userVirtualTerminal(0);
{
typedef enum {SAME, DIFFERENT, FIRST} State;
State state = (!ses)? FIRST:
(scr.number == ses->number)? SAME:
DIFFERENT;
if (state != SAME) {
ses = getSessionEntry(scr.number);
if (state == FIRST) {
pushCommandEnvironment("main", preprocessCommand, postprocessCommand);
pushCommandHandler("unhandled", KTB_CTX_DEFAULT,
handleUnhandledCommands, NULL, NULL);
addMiscellaneousCommands();
addLearnCommands();
addSpeechCommands();
addClipboardCommands();
addPreferencesCommands();
addToggleCommands();
addTouchCommands();
addKeycodeCommands();
addInputCommands();
addNavigationCommands();
addScreenCommands();
addCustomCommands();
}
}
}
}
void
updateSessionAttributes (void) {
setSessionEntry();
{
int maximum = MAX(scr.rows-(int)brl.textRows, 0);
int *table[] = {&ses->winy, &ses->moty, NULL};
int **value = table;
while (*value) {
if (**value > maximum) **value = maximum;
value += 1;
}
}
{
int maximum = MAX(scr.cols-1, 0);
int *table[] = {&ses->winx, &ses->motx, NULL};
int **value = table;
while (*value) {
if (**value > maximum) **value = maximum;
value += 1;
}
}
}
void
fillStatusSeparator (wchar_t *text, unsigned char *dots) {
if ((prefs.statusSeparator != ssNone) && (statusCount > 0)) {
int onRight = statusStart > 0;
unsigned int column = (onRight? statusStart: textStart) - 1;
wchar_t textSeparator;
#ifdef HAVE_WCHAR_H
const wchar_t textSeparator_left = 0X23B8; /* LEFT VERTICAL BOX LINE */
const wchar_t textSeparator_right = 0X23B9; /* RIGHT VERTICAL BOX LINE */
const wchar_t textSeparator_block = 0X2503; /* BOX DRAWINGS HEAVY VERTICAL */
#else /* HAVE_WCHAR_H */
const wchar_t textSeparator_left = 0X5B; /* LEFT SQUARE BRACKET */
const wchar_t textSeparator_right = 0X5D; /* RIGHT SQUARE BRACKET */
const wchar_t textSeparator_block = 0X7C; /* VERTICAL LINE */
#endif /* HAVE_WCHAR_H */
unsigned char dotsSeparator;
const unsigned char dotsSeparator_left = BRL_DOT1 | BRL_DOT2 | BRL_DOT3 | BRL_DOT7;
const unsigned char dotsSeparator_right = BRL_DOT4 | BRL_DOT5 | BRL_DOT6 | BRL_DOT8;
const unsigned char dotsSeparator_block = dotsSeparator_left | dotsSeparator_right;
text += column;
dots += column;
switch (prefs.statusSeparator) {
case ssBlock:
textSeparator = textSeparator_block;
dotsSeparator = dotsSeparator_block;
break;
case ssStatusSide:
textSeparator = onRight? textSeparator_right: textSeparator_left;
dotsSeparator = onRight? dotsSeparator_right: dotsSeparator_left;
break;
case ssTextSide:
textSeparator = onRight? textSeparator_left: textSeparator_right;
dotsSeparator = onRight? dotsSeparator_left: dotsSeparator_right;
break;
default:
textSeparator = WC_C(' ');
dotsSeparator = 0;
break;
}
{
unsigned int row;
for (row=0; row<brl.textRows; row+=1) {
*text = textSeparator;
text += brl.textColumns;
*dots = dotsSeparator;
dots += brl.textColumns;
}
}
}
}
int
writeBrailleCharacters (const char *mode, const wchar_t *characters, size_t length) {
wchar_t textBuffer[brl.textColumns * brl.textRows];
fillTextRegion(textBuffer, brl.buffer,
textStart, textCount, brl.textColumns, brl.textRows,
characters, length);
{
size_t modeLength = mode? getUtf8Length(mode): 0;
wchar_t modeCharacters[modeLength + 1];
convertTextToWchars(modeCharacters, mode, ARRAY_COUNT(modeCharacters));
fillTextRegion(textBuffer, brl.buffer,
statusStart, statusCount, brl.textColumns, brl.textRows,
modeCharacters, modeLength);
}
fillStatusSeparator(textBuffer, brl.buffer);
return braille->writeWindow(&brl, textBuffer);
}
int
writeBrailleText (const char *mode, const char *text) {
size_t count = getTextLength(text) + 1;
wchar_t characters[count];
size_t length = convertTextToWchars(characters, text, count);
return writeBrailleCharacters(mode, characters, length);
}
int
showBrailleText (const char *mode, const char *text, int minimumDelay) {
int ok = writeBrailleText(mode, text);
drainBrailleOutput(&brl, minimumDelay);
return ok;
}
static inline const char *
getMeridianString_am (void) {
#ifdef AM_STR
return nl_langinfo(AM_STR);
#else /* AM_STR */
return "am";
#endif /* AM_STR */
}
static inline const char *
getMeridianString_pm (void) {
#ifdef PM_STR
return nl_langinfo(PM_STR);
#else /* PM_STR */
return "pm";
#endif /* PM_STR */
}
static const char *
getMeridianString (uint8_t *hour) {
const char *string = NULL;
switch (prefs.timeFormat) {
case tf12Hour: {
const uint8_t twelve = 12;
string = (*hour < twelve)? getMeridianString_am(): getMeridianString_pm();
*hour %= twelve;
if (!*hour) *hour = twelve;
break;
}
default:
break;
}
return string;
}
size_t
formatBrailleTime (char *buffer, size_t size, const TimeFormattingData *fmt) {
size_t length;
char time[0X40];
STR_BEGIN(buffer, size);
{
const char *hourFormat = "%02" PRIu8;
const char *minuteFormat = "%02" PRIu8;
const char *secondFormat = "%02" PRIu8;
char separator;
switch (prefs.timeSeparator) {
default:
case tsColon:
separator = ':';
break;
case tsDot:
separator = '.';
break;
}
switch (prefs.timeFormat) {
default:
case tf24Hour:
break;
case tf12Hour:
hourFormat = "%" PRIu8;
break;
}
STR_BEGIN(time, sizeof(time));
STR_PRINTF(hourFormat, fmt->components.hour);
STR_PRINTF("%c", separator);
STR_PRINTF(minuteFormat, fmt->components.minute);
if (prefs.showSeconds) {
STR_PRINTF("%c", separator);
STR_PRINTF(secondFormat, fmt->components.second);
}
if (fmt->meridian) STR_PRINTF("%s", fmt->meridian);
STR_END
}
if (prefs.datePosition == dpNone) {
STR_PRINTF("%s", time);
} else {
char date[0X40];
{
const char *yearFormat = "%04" PRIu16;
const char *monthFormat = "%02" PRIu8;
const char *dayFormat = "%02" PRIu8;
uint16_t year = fmt->components.year;
uint8_t month = fmt->components.month + 1;
uint8_t day = fmt->components.day + 1;
char separator;
switch (prefs.dateSeparator) {
default:
case dsDash:
separator = '-';
break;
case dsSlash:
separator = '/';
break;
case dsDot:
separator = '.';
break;
}
STR_BEGIN(date, sizeof(date));
switch (prefs.dateFormat) {
default:
case dfYearMonthDay:
STR_PRINTF(yearFormat, year);
STR_PRINTF("%c", separator);
STR_PRINTF(monthFormat, month);
STR_PRINTF("%c", separator);
STR_PRINTF(dayFormat, day);
break;
case dfMonthDayYear:
STR_PRINTF(monthFormat, month);
STR_PRINTF("%c", separator);
STR_PRINTF(dayFormat, day);
STR_PRINTF("%c", separator);
STR_PRINTF(yearFormat, year);
break;
case dfDayMonthYear:
STR_PRINTF(dayFormat, day);
STR_PRINTF("%c", separator);
STR_PRINTF(monthFormat, month);
STR_PRINTF("%c", separator);
STR_PRINTF(yearFormat, year);
break;
}
STR_END
switch (prefs.datePosition) {
case dpBeforeTime:
STR_PRINTF("%s %s", date, time);
break;
case dpAfterTime:
STR_PRINTF("%s %s", time, date);
break;
default:
STR_PRINTF("%s", date);
break;
}
}
}
length = STR_LENGTH;
STR_END
return length;
}
void
getTimeFormattingData (TimeFormattingData *fmt) {
getCurrentTime(&fmt->value);
expandTimeValue(&fmt->value, &fmt->components);
fmt->meridian = getMeridianString(&fmt->components.hour);
}
void
slideWindowVertically (int y) {
if (y < ses->winy)
ses->winy = y;
else if (y >= (int)(ses->winy + brl.textRows))
ses->winy = y - (brl.textRows - 1);
}
void
placeWindowHorizontally (int x) {
if (prefs.slidingWindow) {
ses->winx = MAX(0, (x - (int)(textCount / 2)));
} else {
ses->winx = x / textCount * textCount;
}
}
void
placeRightEdge (int column) {
#ifdef ENABLE_CONTRACTED_BRAILLE
if (isContracting()) {
ses->winx = 0;
while (1) {
int length = getContractedLength(textCount);
int end = ses->winx + length;
if (end > column) break;
if (end == ses->winx) break;
ses->winx = end;
}
} else
#endif /* ENABLE_CONTRACTED_BRAILLE */
{
ses->winx = column / textCount * textCount;
}
}
void
placeWindowRight (void) {
placeRightEdge(scr.cols-1);
}
int
moveWindowLeft (unsigned int amount) {
if (ses->winx < 1) return 0;
if (amount < 1) return 0;
ses->winx -= MIN(ses->winx, amount);
return 1;
}
int
moveWindowRight (unsigned int amount) {
int newx = ses->winx + amount;
if ((newx > ses->winx) && (newx < scr.cols)) {
ses->winx = newx;
return 1;
}
return 0;
}
int
shiftWindowLeft (unsigned int amount) {
#ifdef ENABLE_CONTRACTED_BRAILLE
if (isContracting()) {
int reference = ses->winx;
int first = 0;
int last = ses->winx - 1;
while (first <= last) {
int end = (ses->winx = (first + last) / 2) + getContractedLength(amount);
if (end < reference) {
first = ses->winx + 1;
} else {
last = ses->winx - 1;
}
}
if (first == reference) {
if (!first) return 0;
first -= 1;
}
ses->winx = first;
return 1;
}
#endif /* ENABLE_CONTRACTED_BRAILLE */
return moveWindowLeft(amount);
}
int
shiftWindowRight (unsigned int amount) {
#ifdef ENABLE_CONTRACTED_BRAILLE
if (isContracting()) amount = getContractedLength(amount);
#endif /* ENABLE_CONTRACTED_BRAILLE */
return moveWindowRight(amount);
}
int
trackCursor (int place) {
if (!SCR_CURSOR_OK()) return 0;
#ifdef ENABLE_CONTRACTED_BRAILLE
if (isContracted) {
ses->winy = scr.posy;
if (scr.posx < ses->winx) {
int length = scr.posx + 1;
ScreenCharacter characters[length];
int onspace = 1;
readScreen(0, ses->winy, length, 1, characters);
while (length) {
if ((iswspace(characters[--length].text) != 0) != onspace) {
if (onspace) {
onspace = 0;
} else {
++length;
break;
}
}
}
ses->winx = length;
}
contractedTrack = 1;
return 1;
}
#endif /* ENABLE_CONTRACTED_BRAILLE */
if (place) {
if ((scr.posx < ses->winx) || (scr.posx >= (int)(ses->winx + textCount)) ||
(scr.posy < ses->winy) || (scr.posy >= (int)(ses->winy + brl.textRows))) {
placeWindowHorizontally(scr.posx);
}
}
if (prefs.slidingWindow) {
int reset = textCount * 3 / 10;
int trigger = prefs.eagerSlidingWindow? textCount*3/20: 0;
if (scr.posx < (ses->winx + trigger)) {
ses->winx = MAX(scr.posx-reset, 0);
} else if (scr.posx >= (int)(ses->winx + textCount - trigger)) {
ses->winx = MAX(MIN(scr.posx+reset+1, scr.cols)-(int)textCount, 0);
}
} else if (scr.posx < ses->winx) {
ses->winx -= ((ses->winx - scr.posx - 1) / textCount + 1) * textCount;
if (ses->winx < 0) ses->winx = 0;
} else {
ses->winx += (scr.posx - ses->winx) / textCount * textCount;
}
slideWindowVertically(scr.posy);
return 1;
}
ScreenCharacterType
getScreenCharacterType (const ScreenCharacter *character) {
if (iswspace(character->text)) return SCT_SPACE;
if (iswalnum(character->text)) return SCT_WORD;
if (wcschr(WS_C("_"), character->text)) return SCT_WORD;
return SCT_NONWORD;
}
int
findFirstNonSpaceCharacter (const ScreenCharacter *characters, int count) {
int index = 0;
while (index < count) {
if (getScreenCharacterType(&characters[index]) != SCT_SPACE) return index;
index += 1;
}
return -1;
}
int
findLastNonSpaceCharacter (const ScreenCharacter *characters, int count) {
int index = count;
while (index > 0)
if (getScreenCharacterType(&characters[--index]) != SCT_SPACE)
return index;
return -1;
}
int
isAllSpaceCharacters (const ScreenCharacter *characters, int count) {
return findFirstNonSpaceCharacter(characters, count) < 0;
}
#ifdef ENABLE_SPEECH_SUPPORT
volatile SpeechSynthesizer spk;
void
trackSpeech (void) {
placeWindowHorizontally(spk.track.speechLocation % scr.cols);
slideWindowVertically(spk.track.firstLine + (spk.track.speechLocation / scr.cols));
scheduleUpdate("speech tracked");
}
int
autospeak (void) {
if (speech->definition.code == noSpeech.definition.code) return 0;
if (prefs.autospeak) return 1;
if (opt_quietIfNoBraille) return 0;
return braille->definition.code == noBraille.definition.code;
}
void
sayScreenCharacters (const ScreenCharacter *characters, size_t count, SayOptions options) {
wchar_t text[count];
wchar_t *t = text;
unsigned char attributes[count];
unsigned char *a = attributes;
{
unsigned int i;
for (i=0; i<count; i+=1) {
const ScreenCharacter *character = &characters[i];
*t++ = character->text;
*a++ = character->attributes;
}
}
sayWideCharacters(text, attributes, count, options);
}
void
speakCharacters (const ScreenCharacter *characters, size_t count, int spell) {
SayOptions sayOptions = SAY_OPT_MUTE_FIRST;
if (isAllSpaceCharacters(characters, count)) {
switch (prefs.whitespaceIndicator) {
default:
case wsNone:
break;
case wsSaySpace: {
wchar_t buffer[0X100];
size_t length = convertTextToWchars(buffer, gettext("space"), ARRAY_COUNT(buffer));
sayWideCharacters(buffer, NULL, length, sayOptions);
break;
}
}
} else if (count == 1) {
wchar_t character = characters[0].text;
const char *prefix = NULL;
if (iswupper(character)) {
switch (prefs.uppercaseIndicator) {
default:
case ucNone:
break;
case ucSayCap:
// "cap" here, used during speech output, is short for "capital".
// It is spoken just before an uppercase letter, e.g. "cap A".
prefix = gettext("cap");
break;
case ucRaisePitch:
sayOptions |= SAY_OPT_HIGHER_PITCH;
break;
}
}
if (prefix) {
wchar_t buffer[0X100];
size_t length = convertTextToWchars(buffer, prefix, ARRAY_COUNT(buffer));
buffer[length++] = WC_C(' ');
buffer[length++] = character;
sayWideCharacters(buffer, NULL, length, sayOptions);
} else {
if (iswpunct(character)) sayOptions |= SAY_OPT_ALL_PUNCTUATION;
sayWideCharacters(&character, NULL, 1, sayOptions);
}
} else if (spell) {
wchar_t string[count * 2];
size_t length = 0;
unsigned int index = 0;
while (index < count) {
string[length++] = characters[index++].text;
string[length++] = WC_C(' ');
}
string[length] = WC_C('\0');
sayWideCharacters(string, NULL, length, sayOptions);
} else {
sayScreenCharacters(characters, count, sayOptions);
}
}
#endif /* ENABLE_SPEECH_SUPPORT */
#ifdef ENABLE_CONTRACTED_BRAILLE
int
isContracting (void) {
return (prefs.textStyle == tsContractedBraille) && contractionTable;
}
int
getUncontractedCursorOffset (int x, int y) {
return ((y == ses->winy) && (x >= ses->winx) && (x < scr.cols))? (x - ses->winx): -1;
}
int
getContractedCursor (void) {
int offset = getUncontractedCursorOffset(scr.posx, scr.posy);
return ((offset >= 0) && !ses->hideCursor)? offset: CTB_NO_CURSOR;
}
int
getContractedLength (unsigned int outputLimit) {
int inputLength = scr.cols - ses->winx;
wchar_t inputBuffer[inputLength];
int outputLength = outputLimit;
unsigned char outputBuffer[outputLength];
readScreenText(ses->winx, ses->winy, inputLength, 1, inputBuffer);
contractText(contractionTable,
inputBuffer, &inputLength,
outputBuffer, &outputLength,
NULL, getContractedCursor());
return inputLength;
}
#endif /* ENABLE_CONTRACTED_BRAILLE */
int
showCursor (void) {
return scr.cursor && prefs.showCursor && !ses->hideCursor;
}
int
isSameText (
const ScreenCharacter *character1,
const ScreenCharacter *character2
) {
return character1->text == character2->text;
}
int
isSameAttributes (
const ScreenCharacter *character1,
const ScreenCharacter *character2
) {
return character1->attributes == character2->attributes;
}
int
isSameRow (
const ScreenCharacter *characters1,
const ScreenCharacter *characters2,
int count,
IsSameCharacter isSameCharacter
) {
int i;
for (i=0; i<count; ++i)
if (!isSameCharacter(&characters1[i], &characters2[i]))
return 0;
return 1;
}
int
canBraille (void) {
return braille && brl.buffer && !brl.noDisplay && !brl.isSuspended;
}
static unsigned int interruptEnabledCount;
static AsyncEvent *interruptEvent;
static int interruptPending;
static WaitResult waitResult;
typedef struct {
WaitResult waitResult;
} InterruptEventParameters;
int
brlttyInterrupt (WaitResult waitResult) {
if (interruptEvent) {
InterruptEventParameters *iep;
if ((iep = malloc(sizeof(*iep)))) {
memset(iep, 0, sizeof(*iep));
iep->waitResult = waitResult;
if (asyncSignalEvent(interruptEvent, iep)) {
return 1;
}
free(iep);
} else {
logMallocError();
}
}
return 0;
}
ASYNC_EVENT_CALLBACK(handleCoreInterrupt) {
InterruptEventParameters *iep = parameters->signalData;
if (iep) {
interruptPending = 1;
waitResult = iep->waitResult;
free(iep);
}
}
int
brlttyEnableInterrupt (void) {
if (!interruptEnabledCount) {
if (!(interruptEvent = asyncNewEvent(handleCoreInterrupt, NULL))) {
return 0;
}
}
interruptEnabledCount += 1;
return 1;
}
int
brlttyDisableInterrupt (void) {
if (!interruptEnabledCount) return 0;
if (!--interruptEnabledCount) {
asyncDiscardEvent(interruptEvent);
interruptEvent = NULL;
}
return 1;
}
typedef void UnmonitoredConditionHandler (const void *data);
static void
handleRoutingDone (const void *data) {
const RoutingStatus *status = data;
alert((*status > ROUTING_DONE)? ALERT_ROUTING_FAILED: ALERT_ROUTING_SUCCEEDED);
ses->spkx = scr.posx;
ses->spky = scr.posy;
}
static void
handleBrailleDriverFailed (const void *data) {
restartBrailleDriver();
}
static volatile unsigned int programTerminationRequestCount;
static volatile time_t programTerminationRequestTime;
typedef struct {
UnmonitoredConditionHandler *handler;
const void *data;
} UnmonitoredConditionDescriptor;
ASYNC_CONDITION_TESTER(checkUnmonitoredConditions) {
UnmonitoredConditionDescriptor *ucd = data;
if (interruptPending) {
ucd->data = &waitResult;
interruptPending = 0;
return 1;
}
if (programTerminationRequestCount) {
static const WaitResult result = WAIT_STOP;
ucd->data = &result;
return 1;
}
{
static RoutingStatus status;
if ((status = getRoutingStatus(0)) != ROUTING_NONE) {
ucd->handler = handleRoutingDone;
ucd->data = &status;
return 1;
}
}
if (brl.hasFailed) {
ucd->handler = handleBrailleDriverFailed;
return 1;
}
return 0;
}
WaitResult
brlttyWait (int duration) {
UnmonitoredConditionDescriptor ucd = {
.handler = NULL,
.data = NULL
};
if (asyncAwaitCondition(duration, checkUnmonitoredConditions, &ucd)) {
if (!ucd.handler) {
const WaitResult *result = ucd.data;
return *result;
}
ucd.handler(ucd.data);
}
return 1;
}
int
showDotPattern (unsigned char dots, unsigned char duration) {
if (braille->writeStatus && (brl.statusColumns > 0)) {
unsigned int length = brl.statusColumns * brl.statusRows;
unsigned char cells[length]; /* status cell buffer */
memset(cells, dots, length);
if (!braille->writeStatus(&brl, cells)) return 0;
}
memset(brl.buffer, dots, brl.textColumns*brl.textRows);
if (!braille->writeWindow(&brl, NULL)) return 0;
drainBrailleOutput(&brl, duration);
return 1;
}
static void
exitSessions (void *data) {
if (ses) {
popCommandEnvironment();
ses = NULL;
}
deallocateSessionEntries();
}
#ifdef ASYNC_CAN_HANDLE_SIGNALS
ASYNC_SIGNAL_HANDLER(handleProgramTerminationRequest) {
time_t now = time(NULL);
if (difftime(now, programTerminationRequestTime) > PROGRAM_TERMINATION_REQUEST_RESET_SECONDS) {
programTerminationRequestCount = 0;
}
if ((programTerminationRequestCount += 1) > PROGRAM_TERMINATION_REQUEST_COUNT_THRESHOLD) {
exit(1);
}
programTerminationRequestTime = now;
}
#endif /* ASYNC_CAN_HANDLE_SIGNALS */
ProgramExitStatus
brlttyConstruct (int argc, char *argv[]) {
{
TimeValue now;
getMonotonicTime(&now);
srand(now.seconds ^ now.nanoseconds);
}
{
ProgramExitStatus exitStatus = brlttyPrepare(argc, argv);
if (exitStatus != PROG_EXIT_SUCCESS) return exitStatus;
}
programTerminationRequestCount = 0;
programTerminationRequestTime = time(NULL);
#ifdef ASYNC_CAN_OBTAIN_SIGNALS
asyncBlockObtainableSignals();
#endif /* ASYNC_CAN_OBTAIN_SIGNALS */
#ifdef ASYNC_CAN_HANDLE_SIGNALS
#ifdef SIGPIPE
/* We ignore SIGPIPE before calling brlttyStart() so that a driver which uses
* a broken pipe won't abort program execution.
*/
asyncIgnoreSignal(SIGPIPE, NULL);
#endif /* SIGPIPE */
#ifdef SIGTERM
asyncHandleSignal(SIGTERM, handleProgramTerminationRequest, NULL);
#endif /* SIGTERM */
#ifdef SIGINT
asyncHandleSignal(SIGINT, handleProgramTerminationRequest, NULL);
#endif /* SIGINT */
#endif /* ASYNC_CAN_HANDLE_SIGNALS */
interruptEnabledCount = 0;
interruptEvent = NULL;
interruptPending = 0;
beginCommandQueue();
beginUpdates();
suspendUpdates();
{
ProgramExitStatus exitStatus = brlttyStart();
if (exitStatus != PROG_EXIT_SUCCESS) return exitStatus;
}
onProgramExit("sessions", exitSessions, NULL);
setSessionEntry();
ses->trkx = scr.posx; ses->trky = scr.posy;
if (!trackCursor(1)) ses->winx = ses->winy = 0;
ses->motx = ses->winx; ses->moty = ses->winy;
ses->spkx = ses->winx; ses->spky = ses->winy;
resumeUpdates(1);
return PROG_EXIT_SUCCESS;
}
int
brlttyDestruct (void) {
suspendUpdates();
endProgram();
endCommandQueue();
return 1;
}
|