/* * 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-2019 by The BRLTTY Developers. * * BRLTTY comes with ABSOLUTELY NO WARRANTY. * * This is free software, placed under the terms of the * GNU Lesser General Public License, as published by the Free Software * Foundation; either version 2.1 of the License, or (at your option) any * later version. Please see the file LICENSE-LGPL for details. * * Web Page: http://brltty.app/ * * This software is maintained by Dave Mielke . */ #include "prologue.h" #include #include #include #include #include #ifdef HAVE_LANGINFO_H #include #endif /* HAVE_LANGINFO_H */ #ifdef HAVE_SYS_WAIT_H #include #endif /* HAVE_SYS_WAIT_H */ #include "parameters.h" #include "embed.h" #include "log.h" #include "strfmt.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 "async_alarm.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 "core.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 braille window has been manually moved. */ reportBrailleWindowMoved(); ses->motx = ses->winx; ses->moty = ses->winy; #ifdef ENABLE_CONTRACTED_BRAILLE isContracted = 0; #endif /* ENABLE_CONTRACTED_BRAILLE */ #ifdef ENABLE_SPEECH_SUPPORT if (ses->trackScreenCursor && spk.track.isActive && (scr.number == spk.track.screenNumber)) { ses->trackScreenCursor = 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 (routeScreenCursor(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) { slideBrailleWindowVertically(description.posy); placeBrailleWindowHorizontally(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 int handleApiCommands (int command, void *data) { return api.handleCommand(command); } static int addScreenCommands (void) { return pushCommandHandler("screen", KTB_CTX_DEFAULT, handleScreenCommands, NULL, NULL); } static int addCommands (void) { if (!pushCommandEnvironment("main", preprocessCommand, postprocessCommand)) return 0; pushCommandHandler("unhandled", KTB_CTX_DEFAULT, handleUnhandledCommands, NULL, NULL); addMiscellaneousCommands(); addLearnCommands(); addSpeechCommands(); addClipboardCommands(); addPreferencesCommands(); addToggleCommands(); addTouchCommands(); addKeycodeCommands(); addInputCommands(); addNavigationCommands(); addScreenCommands(); addCustomCommands(); pushCommandHandler("API", KTB_CTX_DEFAULT, handleApiCommands, NULL, NULL); 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) { cancelDelayedCursorTrackingAlarm(); ses = getSessionEntry(scr.number); if (state == FIRST) { addCommands(); } } } } 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; rowcomponents.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; } } } STR_END_FORMATTER void getTimeFormattingData (TimeFormattingData *fmt) { getCurrentTime(&fmt->value); expandTimeValue(&fmt->value, &fmt->components); fmt->meridian = getMeridianString(&fmt->components.hour); } int isCursorPosition (int x) { return (x == scr.posx) && (ses->winy == scr.posy) && showScreenCursor(); } int isWordBreak (const ScreenCharacter *characters, int x) { if (!iswspace(characters[x].text)) return 0; return !isCursorPosition(x); } int getWordWrapLength (int row, int from, int count) { int width = scr.cols; if (from >= width) return 0; int end = from + count; if (end >= width) return width - from; ScreenCharacter characters[width]; readScreenRow(row, width, characters); int to = end; int onWordBreak = iswspace(characters[to].text); if (!onWordBreak) { int index = to; while (index > from) { if (iswspace(characters[--index].text)) { to = index; onWordBreak = 1; break; } } } if (onWordBreak) { while (to < width) { if (!iswspace(characters[to].text)) break; if ((to >= end) && isCursorPosition(to)) break; to += 1; } } return to - from; } void setWordWrapStart (int start) { if (start < 0) start = 0; ses->winx = start; if (start > 0) { int end = start + textCount; if (end > scr.cols) end = scr.cols; ScreenCharacter characters[end]; readScreenRow(ses->winy, end, characters); while (end > 0) { if (!isWordBreak(characters, --end)) { end += 1; break; } } start = end - textCount; if (start < 0) start = 0; if (start > 0) { if (!isWordBreak(characters, start-1)) { while (start < end) { if (isWordBreak(characters, start)) break; start += 1; } } while (start < end) { if (!isWordBreak(characters, start)) break; start += 1; } } if (start < end) ses->winx = start; } } void placeBrailleWindowHorizontally (int x) { if (prefs.slidingBrailleWindow) { 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 placeBrailleWindowRight (void) { placeRightEdge(scr.cols-1); } int moveBrailleWindowLeft (unsigned int amount) { if (ses->winx < 1) return 0; if (amount < 1) return 0; ses->winx -= MIN(ses->winx, amount); return 1; } int moveBrailleWindowRight (unsigned int amount) { if (amount < 1) return 0; int newx = ses->winx + amount; if (newx >= scr.cols) return 0; ses->winx = newx; return 1; } int shiftBrailleWindowLeft (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 > 0) { ScreenCharacter characters[reference]; readScreenRow(ses->winy, reference, characters); if (!isWordBreak(characters, first-1)) { while (!isWordBreak(characters, first)) first += 1; } while (isWordBreak(characters, first)) first += 1; } if (first == reference) { if (!first) return 0; first -= 1; } ses->winx = first; return 1; } #endif /* ENABLE_CONTRACTED_BRAILLE */ if (prefs.wordWrap) { if (ses->winx < 1) return 0; setWordWrapStart(ses->winx - amount); return 1; } return moveBrailleWindowLeft(amount); } int shiftBrailleWindowRight (unsigned int amount) { #ifdef ENABLE_CONTRACTED_BRAILLE if (isContracting()) { amount = getContractedLength(amount); } else #endif /* ENABLE_CONTRACTED_BRAILLE */ if (prefs.wordWrap) { amount = getWordWrapLength(ses->winy, ses->winx, amount); } return moveBrailleWindowRight(amount); } void slideBrailleWindowVertically (int y) { if (y < ses->winy) { ses->winy = y; } else if (y >= (int)(ses->winy + brl.textRows)) { ses->winy = y - (brl.textRows - 1); } } static int isWithinBrailleWindow (int x, int y) { return (x >= ses->winx) && (x < (int)(ses->winx + textCount)) && (y >= ses->winy) && (y < (int)(ses->winy + brl.textRows)) ; } static AsyncHandle delayedCursorTrackingAlarm; ASYNC_ALARM_CALLBACK(handleDelayedCursorTrackingAlarm) { asyncDiscardHandle(delayedCursorTrackingAlarm); delayedCursorTrackingAlarm = NULL; ses->trkx = ses->dctx; ses->trky = ses->dcty; ses->dctx = -1; ses->dcty = -1; scheduleUpdate("delayed cursor tracking"); } void cancelDelayedCursorTrackingAlarm (void) { if (delayedCursorTrackingAlarm) { asyncCancelRequest(delayedCursorTrackingAlarm); delayedCursorTrackingAlarm = NULL; } } int trackScreenCursor (int place) { if (!SCR_CURSOR_OK()) return 0; if (place) { cancelDelayedCursorTrackingAlarm(); } else if (delayedCursorTrackingAlarm) { /* A cursor tracking motion has been delayed. If the cursor returned * to its initial location in the mean time then we discard and ignore * the previous motion. Otherwise we wait for the timer to expire. */ if ((ses->dctx == scr.posx) && (ses->dcty == scr.posy)) { cancelDelayedCursorTrackingAlarm(); } return 1; } else if ((prefs.cursorTrackingDelay > 0) && (ses->dctx != -1) && !isWithinBrailleWindow(ses->trkx, ses->trky)) { /* The cursor may move spuriously while a program updates information * on a status bar. If cursor tracking is on and the cursor was * outside the braille window before it moved, we delay the tracking * motion for a while so as not to obnoxiously move the braille window * in case the cursor will eventually return to its initial location * within a short time. */ ses->dctx = ses->trkx; ses->dcty = ses->trky; int delay = 250 << (prefs.cursorTrackingDelay - 1); asyncNewRelativeAlarm(&delayedCursorTrackingAlarm, delay, handleDelayedCursorTrackingAlarm, NULL); return 1; } /* anything but -1 */ ses->dctx = 0; ses->dcty = 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; readScreenRow(ses->winy, length, 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 && !isWithinBrailleWindow(scr.posx, scr.posy)) { placeBrailleWindowHorizontally(scr.posx); } if (prefs.slidingBrailleWindow) { int reset = textCount * 3 / 10; int trigger = prefs.eagerSlidingBrailleWindow? 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; } if (prefs.wordWrap) { int length = getWordWrapLength(ses->winy, ses->winx, textCount); int next = ses->winx + length; if (scr.posx >= next) ses->winx = next; } slideBrailleWindowVertically(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) { int location = spk.track.speechLocation; if (location != SPK_LOC_NONE) { placeBrailleWindowHorizontally(location % scr.cols); slideBrailleWindowVertically(spk.track.firstLine + (location / scr.cols)); scheduleUpdate("speech tracked"); } } int isAutospeakActive (void) { if (speech->definition.code == noSpeech.definition.code) return 0; if (prefs.autospeak) return 1; if (braille->definition.code != noBraille.definition.code) return 0; return !opt_quietIfNoBraille; } 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; itext; *a++ = character->attributes; } } sayWideCharacters(&spk, text, attributes, count, options); } void speakCharacters (const ScreenCharacter *characters, size_t count, int spell, int interrupt) { SayOptions sayOptions = 0; if (interrupt) sayOptions |= SAY_OPT_MUTE_FIRST; if (isAllSpaceCharacters(characters, count)) { switch (prefs.speechWhitespaceIndicator) { default: case swsNone: break; case swsSaySpace: { wchar_t buffer[0X100]; size_t length = convertTextToWchars(buffer, gettext("space"), ARRAY_COUNT(buffer)); sayWideCharacters(&spk, buffer, NULL, length, sayOptions); break; } } } else if (count == 1) { wchar_t character = characters[0].text; const char *prefix = NULL; if (iswupper(character)) { switch (prefs.speechUppercaseIndicator) { default: case sucNone: break; case sucSayCap: // "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 sucRaisePitch: 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(&spk, buffer, NULL, length, sayOptions); } else { if (iswpunct(character)) sayOptions |= SAY_OPT_ALL_PUNCTUATION; sayWideCharacters(&spk, &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(&spk, string, NULL, length, sayOptions); } else { sayScreenCharacters(characters, count, sayOptions); } } int speakIndent (const ScreenCharacter *characters, int count, int evenIfNoIndent) { int length = scr.cols; ScreenCharacter buffer[length]; if (!characters) { readScreenRow(ses->spky, length, buffer); characters = buffer; count = length; } int indent = findFirstNonSpaceCharacter(characters, count); if ((indent < 1) && !evenIfNoIndent) return 0; char message[50]; const char *text = message; if (indent < 0) { text = gettext("blank line"); } else { snprintf(message, sizeof(message), "%s %d", gettext("indent"), indent); } logMessage(LOG_CATEGORY(SPEECH_EVENTS), "line indent: %d", indent); sayString(&spk, text, SAY_OPT_MUTE_FIRST); return 1; } #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): BRL_NO_CURSOR; } int getContractedCursor (void) { int offset = getUncontractedCursorOffset(scr.posx, scr.posy); return ((offset != BRL_NO_CURSOR) && !ses->hideScreenCursor)? 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 showScreenCursor (void) { return scr.cursor && prefs.showScreenCursor && !(ses->hideScreenCursor || brl.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 isSameCharacter ( const ScreenCharacter *character1, const ScreenCharacter *character2 ) { return isSameText(character1, character2) && isSameAttributes(character1, character2); } int isSameRow ( const ScreenCharacter *characters1, const ScreenCharacter *characters2, int count, IsSameCharacter isSameCharacter ) { int i; for (i=0; iwaitResult = 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 (!writeBrailleWindow(&brl, NULL)) return 0; drainBrailleOutput(&brl, duration); return 1; } static void exitSessions (void *data) { cancelDelayedCursorTrackingAlarm(); 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; } #ifdef SIGCHLD ASYNC_SIGNAL_HANDLER(handleChildDeath) { } #endif /* SIGCHLD */ #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_BLOCK_SIGNALS asyncBlockObtainableSignals(); #endif /* ASYNC_CAN_BLOCK_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 */ #ifdef SIGCHLD asyncHandleSignal(SIGCHLD, handleChildDeath, NULL); #endif /* SIGCHLD */ #endif /* ASYNC_CAN_HANDLE_SIGNALS */ interruptEnabledCount = 0; interruptEvent = NULL; interruptPending = 0; delayedCursorTrackingAlarm = NULL; 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 (!trackScreenCursor(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; }