BrlAPI 0.8
brlapi_protocol.h
Go to the documentation of this file.
1/*
2 * libbrlapi - A library providing access to braille terminals for applications.
3 *
4 * Copyright (C) 2002-2024 by
5 * Samuel Thibault <Samuel.Thibault@ens-lyon.org>
6 * Sébastien Hinderer <Sebastien.Hinderer@ens-lyon.org>
7 *
8 * libbrlapi comes with ABSOLUTELY NO WARRANTY.
9 *
10 * This is free software, placed under the terms of the
11 * GNU Lesser General Public License, as published by the Free Software
12 * Foundation; either version 2.1 of the License, or (at your option) any
13 * later version. Please see the file LICENSE-LGPL for details.
14 *
15 * Web Page: http://brltty.app/
16 *
17 * This software is maintained by Dave Mielke <dave@mielke.cc>.
18 */
19
24#ifndef BRLAPI_INCLUDED_PROTOCOL
25#define BRLAPI_INCLUDED_PROTOCOL
26
27#ifdef __cplusplus
28extern "C" {
29#endif /* __cplusplus */
30
31#include "brlapi.h"
32
33/* this is for UINT32_MAX */
34#include <inttypes.h>
35#ifndef UINT32_MAX
36#define UINT32_MAX (4294967295U)
37#endif /* UINT32_MAX */
38
39/* The type size_t is defined there! */
40#include <unistd.h>
41
52#define BRLAPI_PROTOCOL_VERSION ((uint32_t) 8)
56#define BRLAPI_MAXPACKETSIZE 4096
57
58#define BRLAPI_PACKET_VERSION 'v'
59#define BRLAPI_PACKET_AUTH 'a'
60#define BRLAPI_PACKET_GETDRIVERNAME 'n'
61#define BRLAPI_PACKET_GETMODELID 'd'
62#define BRLAPI_PACKET_GETDISPLAYSIZE 's'
63#define BRLAPI_PACKET_ENTERTTYMODE 't'
64#define BRLAPI_PACKET_SETFOCUS 'F'
65#define BRLAPI_PACKET_LEAVETTYMODE 'L'
66#define BRLAPI_PACKET_KEY 'k'
67#define BRLAPI_PACKET_IGNOREKEYRANGES 'm'
68#define BRLAPI_PACKET_ACCEPTKEYRANGES 'u'
69#define BRLAPI_PACKET_WRITE 'w'
70#define BRLAPI_PACKET_ENTERRAWMODE '*'
71#define BRLAPI_PACKET_LEAVERAWMODE '#'
72#define BRLAPI_PACKET_PACKET 'p'
73#define BRLAPI_PACKET_ACK 'A'
74#define BRLAPI_PACKET_ERROR 'e'
75#define BRLAPI_PACKET_EXCEPTION 'E'
76#define BRLAPI_PACKET_SUSPENDDRIVER 'S'
77#define BRLAPI_PACKET_RESUMEDRIVER 'R'
78#define BRLAPI_PACKET_SYNCHRONIZE 'Z'
79#define BRLAPI_PACKET_PARAM_VALUE (('P'<<8) + 'V')
80#define BRLAPI_PACKET_PARAM_REQUEST (('P'<<8) + 'R')
81#define BRLAPI_PACKET_PARAM_UPDATE (('P'<<8) + 'U')
84#define BRLAPI_DEVICE_MAGIC (0xdeadbeefL)
85
87typedef struct {
88 uint32_t size;
91
93#define BRLAPI_HEADERSIZE sizeof(brlapi_header_t)
94
96typedef struct {
99
101typedef struct {
102 uint32_t type;
103 unsigned char key;
105
106typedef struct {
107 uint32_t type[1];
109
110#define BRLAPI_AUTH_NONE 'N'
111#define BRLAPI_AUTH_KEY 'K'
112#define BRLAPI_AUTH_CRED 'C'
115typedef struct {
116 uint32_t code;
118 unsigned char packet;
120
122typedef struct {
123 uint32_t magic;
124 unsigned char nameLength;
125 char name;
127
129#define BRLAPI_WF_DISPLAYNUMBER 0X01
130#define BRLAPI_WF_REGION 0X02
131#define BRLAPI_WF_TEXT 0X04
132#define BRLAPI_WF_ATTR_AND 0X08
133#define BRLAPI_WF_ATTR_OR 0X10
134#define BRLAPI_WF_CURSOR 0X20
135#define BRLAPI_WF_CHARSET 0X40
138typedef struct {
139 uint32_t flags;
140 unsigned char data;
142
144#define BRLAPI_PVF_GLOBAL 0X01
146#define BRLAPI_MAXPARAMSIZE (BRLAPI_MAXPACKETSIZE - (sizeof(uint32_t) + sizeof(brlapi_param_t) + 2*sizeof(uint32_t)))
147
149typedef struct {
150 uint32_t flags;
152 uint32_t subparam_hi;
153 uint32_t subparam_lo;
154 unsigned char data[BRLAPI_MAXPARAMSIZE];
156
158#define BRLAPI_PARAMF_GET 0X100
159#define BRLAPI_PARAMF_SUBSCRIBE 0X200
160#define BRLAPI_PARAMF_UNSUBSCRIBE 0X400
163typedef struct {
164 uint32_t flags;
166 uint32_t subparam_hi;
167 uint32_t subparam_lo;
169
172typedef union {
173 unsigned char data[BRLAPI_MAXPACKETSIZE];
182 uint32_t uint32;
184
185/* brlapi_writePacket */
201ssize_t brlapi_writePacket(brlapi_fileDescriptor fd, brlapi_packetType_t type, const void *buf, size_t size);
202
203/* brlapi_readPacketHeader */
221
222/* brlapi_readPacketContent */
243ssize_t brlapi_readPacketContent(brlapi_fileDescriptor fd, size_t packetSize, void *buf, size_t bufSize);
244
245/* brlapi_readPacket */
267ssize_t brlapi_readPacket(brlapi_fileDescriptor fd, brlapi_packetType_t *type, void *buf, size_t size);
268
269/* brlapi_fd_mutex */
295#ifdef __MINGW32__
296#include <windows.h>
297extern HANDLE brlapi_fd_mutex;
298#else /* __MINGW32__ */
299#include <pthread.h>
300extern pthread_mutex_t brlapi_fd_mutex;
301#endif /* __MINGW32__ */
302
305#ifdef __cplusplus
306}
307#endif /* __cplusplus */
308
309#endif /* BRLAPI_INCLUDED_PROTOCOL */
Types, defines and functions prototypes for BrlAPI's library.
int brlapi_fileDescriptor
Definition: brlapi.h:164
uint32_t brlapi_packetType_t
Definition: brlapi.h:1405
brlapi_param_t
Definition: brlapi_param.h:36
#define BRLAPI_MAXPACKETSIZE
Definition: brlapi_protocol.h:56
pthread_mutex_t brlapi_fd_mutex
ssize_t brlapi_readPacketHeader(brlapi_fileDescriptor fd, brlapi_packetType_t *packetType)
ssize_t brlapi_readPacket(brlapi_fileDescriptor fd, brlapi_packetType_t *type, void *buf, size_t size)
ssize_t brlapi_readPacketContent(brlapi_fileDescriptor fd, size_t packetSize, void *buf, size_t bufSize)
#define BRLAPI_MAXPARAMSIZE
Definition: brlapi_protocol.h:146
ssize_t brlapi_writePacket(brlapi_fileDescriptor fd, brlapi_packetType_t type, const void *buf, size_t size)
Definition: brlapi_protocol.h:101
uint32_t type
Definition: brlapi_protocol.h:102
unsigned char key
Definition: brlapi_protocol.h:103
Definition: brlapi_protocol.h:106
Definition: brlapi_protocol.h:115
unsigned char packet
Definition: brlapi_protocol.h:118
brlapi_packetType_t type
Definition: brlapi_protocol.h:117
uint32_t code
Definition: brlapi_protocol.h:116
Definition: brlapi_protocol.h:122
char name
Definition: brlapi_protocol.h:125
uint32_t magic
Definition: brlapi_protocol.h:123
unsigned char nameLength
Definition: brlapi_protocol.h:124
Definition: brlapi_protocol.h:87
brlapi_packetType_t type
Definition: brlapi_protocol.h:89
uint32_t size
Definition: brlapi_protocol.h:88
Definition: brlapi_protocol.h:163
uint32_t subparam_lo
Definition: brlapi_protocol.h:167
uint32_t flags
Definition: brlapi_protocol.h:164
uint32_t subparam_hi
Definition: brlapi_protocol.h:166
brlapi_param_t param
Definition: brlapi_protocol.h:165
Definition: brlapi_protocol.h:149
uint32_t flags
Definition: brlapi_protocol.h:150
uint32_t subparam_lo
Definition: brlapi_protocol.h:153
brlapi_param_t param
Definition: brlapi_protocol.h:151
uint32_t subparam_hi
Definition: brlapi_protocol.h:152
Definition: brlapi_protocol.h:96
uint32_t protocolVersion
Definition: brlapi_protocol.h:97
Definition: brlapi_protocol.h:138
unsigned char data
Definition: brlapi_protocol.h:140
uint32_t flags
Definition: brlapi_protocol.h:139
Definition: brlapi_protocol.h:172
brlapi_errorPacket_t error
Definition: brlapi_protocol.h:177
brlapi_authServerPacket_t authServer
Definition: brlapi_protocol.h:176
uint32_t uint32
Definition: brlapi_protocol.h:182
brlapi_getDriverSpecificModePacket_t getDriverSpecificMode
Definition: brlapi_protocol.h:178
brlapi_paramValuePacket_t paramValue
Definition: brlapi_protocol.h:180
brlapi_versionPacket_t version
Definition: brlapi_protocol.h:174
brlapi_authClientPacket_t authClient
Definition: brlapi_protocol.h:175
brlapi_writeArgumentsPacket_t writeArguments
Definition: brlapi_protocol.h:179
brlapi_paramRequestPacket_t paramRequest
Definition: brlapi_protocol.h:181