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
|
/*
* 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>.
*/
/* apitest provides a small test utility for BRLTTY's API */
#include "prologue.h"
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include "options.h"
#include "brl_cmds.h"
#include "brl_dots.h"
#include "cmd.h"
#include "cmd_brlapi.h"
#define BRLAPI_NO_DEPRECATED
#include "brlapi.h"
static brlapi_connectionSettings_t settings;
static int opt_learnMode;
static int opt_showDots;
static int opt_showName;
static int opt_showSize;
static int opt_showKeyCodes;
static int opt_suspendMode;
BEGIN_OPTION_TABLE(programOptions)
{ .letter = 'n',
.word = "name",
.setting.flag = &opt_showName,
.description = "Show the name of the braille driver."
},
{ .letter = 'w',
.word = "window",
.setting.flag = &opt_showSize,
.description = "Show the dimensions of the braille window."
},
{ .letter = 'd',
.word = "dots",
.setting.flag = &opt_showDots,
.description = "Show dot pattern."
},
{ .letter = 'l',
.word = "learn",
.setting.flag = &opt_learnMode,
.description = "Enter interactive command learn mode."
},
{ .letter = 'k',
.word = "keycodes",
.setting.flag = &opt_showKeyCodes,
.description = "Enter interactive keycode learn mode."
},
{ .letter = 's',
.word = "suspend",
.setting.flag = &opt_suspendMode,
.description = "Suspend the braille driver (press ^C or send SIGUSR1 to resume)."
},
{ .letter = 'b',
.word = "brlapi",
.argument = "[host][:port]",
.setting.string = &settings.host,
.description = "BrlAPIa host and/or port to connect to."
},
{ .letter = 'a',
.word = "auth",
.argument = "file",
.setting.string = &settings.auth,
.description = "BrlAPI authorization/authentication string."
},
END_OPTION_TABLE
static void showDisplaySize(void)
{
unsigned int x, y;
fprintf(stderr,"Getting display size: ");
if (brlapi_getDisplaySize(&x, &y)<0) {
brlapi_perror("failed");
exit(PROG_EXIT_FATAL);
}
fprintf(stderr, "%dX%d\n", x, y);
}
static void showDriverName(void)
{
char name[30];
fprintf(stderr, "Getting driver name: ");
if (brlapi_getDriverName(name, sizeof(name))<0) {
brlapi_perror("failed");
exit(PROG_EXIT_FATAL);
}
fprintf(stderr, "%s\n", name);
}
#define DOTS_TEXT "dots: "
#define DOTS_TEXTLEN (strlen(DOTS_TEXT))
#define DOTS_LEN 8
#define DOTS_TOTALLEN (DOTS_TEXTLEN+DOTS_LEN)
static void showDots(void)
{
unsigned int x, y;
brlapi_keyCode_t k;
if (brlapi_getDisplaySize(&x, &y)<0) {
brlapi_perror("failed");
exit(PROG_EXIT_FATAL);
}
if (brlapi_enterTtyMode(-1, NULL)<0) {
brlapi_perror("enterTtyMode");
exit(PROG_EXIT_FATAL);
}
if (x*y<DOTS_TOTALLEN) {
fprintf(stderr,"can't show dots with a braille display with less than %d cells\n",(int)DOTS_TOTALLEN);
exit(PROG_EXIT_SEMANTIC);
}
{
char text[x*y+1];
unsigned char or[x*y];
brlapi_writeArguments_t wa = BRLAPI_WRITEARGUMENTS_INITIALIZER;
fprintf(stderr,"Showing dot patterns\n");
memcpy(text,DOTS_TEXT,DOTS_TEXTLEN);
memset(text+DOTS_TEXTLEN,' ',sizeof(text)-DOTS_TEXTLEN);
text[x*y] = 0;
wa.regionBegin = 1;
wa.regionSize = sizeof(or);
wa.text = text;
memset(or,0,sizeof(or));
or[DOTS_TEXTLEN+0] = BRL_DOT_1;
or[DOTS_TEXTLEN+1] = BRL_DOT_2;
or[DOTS_TEXTLEN+2] = BRL_DOT_3;
or[DOTS_TEXTLEN+3] = BRL_DOT_4;
or[DOTS_TEXTLEN+4] = BRL_DOT_5;
or[DOTS_TEXTLEN+5] = BRL_DOT_6;
or[DOTS_TEXTLEN+6] = BRL_DOT_7;
or[DOTS_TEXTLEN+7] = BRL_DOT_8;
wa.orMask = or;
if (brlapi_write(&wa)<0) {
brlapi_perror("brlapi_write");
exit(PROG_EXIT_FATAL);
}
}
brlapi_readKey(1, &k);
}
static void enterLearnMode(void)
{
int res;
brlapi_keyCode_t code;
int cmd;
char buf[0X100];
fprintf(stderr,"Entering command learn mode\n");
if (brlapi_enterTtyMode(-1, NULL)<0) {
brlapi_perror("enterTtyMode");
return;
}
if (brlapi_writeText(BRLAPI_CURSOR_OFF, "command learn mode")<0) {
brlapi_perror("brlapi_writeText");
exit(PROG_EXIT_FATAL);
}
while ((res = brlapi_readKey(1, &code)) != -1) {
fprintf(stderr, "got key %016"BRLAPI_PRIxKEYCODE"\n",code);
cmd = cmdBrlapiToBrltty(code);
describeCommand(cmd, buf, sizeof(buf),
CDO_IncludeName | CDO_IncludeOperand);
brlapi_writeText(BRLAPI_CURSOR_OFF, buf);
fprintf(stderr, "%s\n", buf);
if (cmd==BRL_CMD_LEARN) return;
}
brlapi_perror("brlapi_readKey");
}
static void showKeyCodes(void)
{
int res;
brlapi_keyCode_t cmd;
char buf[0X100];
fprintf(stderr,"Entering keycode learn mode\n");
if (brlapi_getDriverName(buf, sizeof(buf))==-1) {
brlapi_perror("getDriverName");
return;
}
if (brlapi_enterTtyMode(-1, buf)<0) {
brlapi_perror("enterTtyMode");
return;
}
if (brlapi_acceptAllKeys()==-1) {
brlapi_perror("acceptAllKeys");
return;
}
if (brlapi_writeText(BRLAPI_CURSOR_OFF, "show key codes")<0) {
brlapi_perror("brlapi_writeText");
exit(PROG_EXIT_FATAL);
}
while ((res = brlapi_readKey(1, &cmd)) != -1) {
sprintf(buf, "0X%" BRLAPI_PRIxKEYCODE " (%" BRLAPI_PRIuKEYCODE ")",cmd, cmd);
brlapi_writeText(BRLAPI_CURSOR_OFF, buf);
fprintf(stderr, "%s\n", buf);
}
brlapi_perror("brlapi_readKey");
}
#ifdef SIGUSR1
static void emptySignalHandler(int sig) { }
#endif /* SIGUSR1 */
static void suspendDriver(void)
{
char name[30];
fprintf(stderr, "Getting driver name: ");
if (brlapi_getDriverName(name, sizeof(name))<0) {
brlapi_perror("failed");
exit(PROG_EXIT_FATAL);
}
fprintf(stderr, "%s\n", name);
fprintf(stderr, "Suspending\n");
if (brlapi_suspendDriver(name)) {
brlapi_perror("suspend");
} else {
#ifdef SIGUSR1
signal(SIGUSR1,emptySignalHandler);
#endif /* SIGUSR1 */
fprintf(stderr, "Sleeping\n");
#ifdef HAVE_PAUSE
pause();
#endif /* HAVE_PAUSE */
fprintf(stderr, "Resuming\n");
#ifdef SIGUSR1
signal(SIGUSR1,SIG_DFL);
#endif /* SIGUSR1 */
if (brlapi_resumeDriver())
brlapi_perror("resumeDriver");
}
}
int
main (int argc, char *argv[]) {
ProgramExitStatus exitStatus = PROG_EXIT_SUCCESS;
brlapi_fileDescriptor fd;
settings.host = NULL; settings.auth = NULL;
{
static const OptionsDescriptor descriptor = {
OPTION_TABLE(programOptions),
.applicationName = "apitest"
};
PROCESS_OPTIONS(descriptor, argc, argv);
}
fprintf(stderr, "Connecting to BrlAPI... ");
if ((fd=brlapi_openConnection(&settings, &settings)) != (brlapi_fileDescriptor)(-1)) {
fprintf(stderr, "done (fd=%"PRIfd")\n", fd);
fprintf(stderr,"Connected to %s using auth %s\n", settings.host, settings.auth);
if (opt_showName) {
showDriverName();
}
if (opt_showSize) {
showDisplaySize();
}
if (opt_showDots) {
showDots();
}
if (opt_learnMode) {
enterLearnMode();
}
if (opt_showKeyCodes) {
showKeyCodes();
}
if (opt_suspendMode) {
suspendDriver();
}
brlapi_closeConnection();
fprintf(stderr, "Disconnected\n");
} else {
fprintf(stderr, "failed to connect to %s using auth %s",settings.host, settings.auth);
brlapi_perror("");
exitStatus = PROG_EXIT_FATAL;
}
return exitStatus;
}
|