Forgot to add these files in the previous commit. This is the
[deliverable/binutils-gdb.git] / gdb / serial.h
CommitLineData
c906108c 1/* Remote serial support interface definitions for GDB, the GNU Debugger.
c2c6d25f 2 Copyright 1992, 1993, 1999 Free Software Foundation, Inc.
c906108c 3
c5aa993b 4 This file is part of GDB.
c906108c 5
c5aa993b
JM
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
c906108c 10
c5aa993b
JM
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
c906108c 15
c5aa993b
JM
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
c906108c
SS
20
21#ifndef SERIAL_H
22#define SERIAL_H
23
c2c6d25f
JM
24/* For most routines, if a failure is indicated, then errno should be
25 examined. */
c906108c 26
c2c6d25f
JM
27/* Terminal state pointer. This is specific to each type of
28 interface. */
c906108c 29
c2c6d25f
JM
30typedef void *serial_ttystate;
31struct _serial_t;
c906108c
SS
32typedef struct _serial_t *serial_t;
33
c2c6d25f
JM
34/* Try to open NAME. Returns a new serial_t on success, NULL on
35 failure. */
c906108c 36
c2c6d25f
JM
37extern serial_t serial_open (const char *name);
38#define SERIAL_OPEN(NAME) serial_open(NAME)
c906108c 39
c2c6d25f 40/* Open a new serial stream using a file handle. */
c906108c 41
c2c6d25f
JM
42extern serial_t serial_fdopen (const int fd);
43#define SERIAL_FDOPEN(FD) serial_fdopen(FD)
c906108c 44
c2c6d25f 45/* Push out all buffers, close the device and destroy SERIAL_T. */
c906108c 46
c2c6d25f
JM
47extern void serial_close (serial_t);
48#define SERIAL_CLOSE(SERIAL_T) serial_close ((SERIAL_T))
c906108c 49
c2c6d25f
JM
50/* Push out all buffers and destroy SERIAL_T without closing the
51 device. */
c906108c 52
c2c6d25f
JM
53extern void serial_un_fdopen (serial_t scb);
54#define SERIAL_UN_FDOPEN(SERIAL_T) serial_un_fdopen ((SERIAL_T))
c906108c 55
c2c6d25f
JM
56/* Read one char from the serial device with TIMEOUT seconds to wait
57 or -1 to wait forever. Use timeout of 0 to effect a poll. Returns
2acceee2
JM
58 unsigned char if ok, else one of the following codes. Note that
59 all error return-codes are guaranteed to be < 0. */
60
61enum serial_rc {
62 SERIAL_ERROR = -1, /* General error. */
63 SERIAL_TIMEOUT = -2, /* Timeout during read. ui_loop_hook() can,
64 unfortunatly, force this to be returned. */
65 SERIAL_EOF = -3 /* General end-of-file or remote target
66 connection closed, indication. Includes
67 things like the line dropping dead. */
68};
c2c6d25f
JM
69
70extern int serial_readchar (serial_t scb, int timeout);
71#define SERIAL_READCHAR(SERIAL_T, TIMEOUT) serial_readchar ((SERIAL_T), (TIMEOUT))
72
73/* Write LEN chars from STRING to the port SERIAL_T. Returns 0 for
74 success, non-zero for failure. */
75
76extern int serial_write (serial_t scb, const char *str, int len);
77#define SERIAL_WRITE(SERIAL_T, STRING,LEN) serial_write (SERIAL_T, STRING, LEN)
78
79/* Write a printf style string onto the serial port. */
80
81extern void serial_printf (serial_t desc, const char *,...) ATTR_FORMAT (printf, 2, 3);
c906108c
SS
82
83/* Allow pending output to drain. */
84
c2c6d25f
JM
85extern int serial_drain_output (serial_t);
86#define SERIAL_DRAIN_OUTPUT(SERIAL_T) serial_drain_output ((SERIAL_T))
c5aa993b 87
c2c6d25f
JM
88/* Flush (discard) pending output. Might also flush input (if this
89 system can't flush only output). */
c906108c 90
c2c6d25f
JM
91extern int serial_flush_output (serial_t);
92#define SERIAL_FLUSH_OUTPUT(SERIAL_T) serial_flush_output ((SERIAL_T))
c906108c 93
c2c6d25f
JM
94/* Flush pending input. Might also flush output (if this system can't
95 flush only input). */
c906108c 96
c2c6d25f
JM
97extern int serial_flush_input (serial_t);
98#define SERIAL_FLUSH_INPUT(SERIAL_T) serial_flush_input ((SERIAL_T))
c906108c
SS
99
100/* Send a break between 0.25 and 0.5 seconds long. */
101
c2c6d25f 102extern int serial_send_break (serial_t scb);
c906108c
SS
103#define SERIAL_SEND_BREAK(SERIAL_T) serial_send_break (SERIAL_T)
104
105/* Turn the port into raw mode. */
106
c2c6d25f
JM
107extern void serial_raw (serial_t scb);
108#define SERIAL_RAW(SERIAL_T) serial_raw ((SERIAL_T))
c906108c
SS
109
110/* Return a pointer to a newly malloc'd ttystate containing the state
111 of the tty. */
c2c6d25f
JM
112
113extern serial_ttystate serial_get_tty_state (serial_t scb);
114#define SERIAL_GET_TTY_STATE(SERIAL_T) serial_get_tty_state ((SERIAL_T))
c906108c
SS
115
116/* Set the state of the tty to TTYSTATE. The change is immediate.
117 When changing to or from raw mode, input might be discarded.
c2c6d25f
JM
118 Returns 0 for success, negative value for error (in which case
119 errno contains the error). */
120
121extern int serial_set_tty_state (serial_t scb, serial_ttystate ttystate);
122#define SERIAL_SET_TTY_STATE(SERIAL_T, TTYSTATE) serial_set_tty_state ((SERIAL_T), (TTYSTATE))
c906108c 123
c2c6d25f
JM
124/* printf_filtered a user-comprehensible description of ttystate on
125 the specified STREAM. FIXME: At present this sends output to the
126 default stream - GDB_STDOUT. */
127
128extern void serial_print_tty_state (serial_t scb, serial_ttystate ttystate, struct gdb_file *);
129#define SERIAL_PRINT_TTY_STATE(SERIAL_T, TTYSTATE, STREAM) serial_print_tty_state ((SERIAL_T), (TTYSTATE), (STREAM))
c906108c
SS
130
131/* Set the tty state to NEW_TTYSTATE, where OLD_TTYSTATE is the
132 current state (generally obtained from a recent call to
133 SERIAL_GET_TTY_STATE), but be careful not to discard any input.
c2c6d25f
JM
134 This means that we never switch in or out of raw mode, even if
135 NEW_TTYSTATE specifies a switch. */
136
137extern int serial_noflush_set_tty_state (serial_t scb, serial_ttystate new_ttystate, serial_ttystate old_ttystate);
c906108c 138#define SERIAL_NOFLUSH_SET_TTY_STATE(SERIAL_T, NEW_TTYSTATE, OLD_TTYSTATE) \
c2c6d25f 139serial_noflush_set_tty_state ((SERIAL_T), (NEW_TTYSTATE), (OLD_TTYSTATE))
c906108c 140
c2c6d25f
JM
141/* Set the baudrate to the decimal value supplied. Returns 0 for
142 success, -1 for failure. */
c906108c 143
c2c6d25f
JM
144extern int serial_setbaudrate (serial_t scb, int rate);
145#define SERIAL_SETBAUDRATE(SERIAL_T, RATE) serial_setbaudrate ((SERIAL_T), (RATE))
c906108c 146
c2c6d25f
JM
147/* Set the number of stop bits to the value specified. Returns 0 for
148 success, -1 for failure. */
c906108c 149
c2c6d25f
JM
150#define SERIAL_1_STOPBITS 1
151#define SERIAL_1_AND_A_HALF_STOPBITS 2 /* 1.5 bits, snicker... */
152#define SERIAL_2_STOPBITS 3
c906108c 153
c2c6d25f
JM
154extern int serial_setstopbits (serial_t scb, int num);
155#define SERIAL_SETSTOPBITS(SERIAL_T, NUM) serial_setstopbits ((SERIAL_T), (NUM))
c906108c 156
c2c6d25f 157/* Asynchronous serial interface: */
c906108c 158
c2c6d25f 159/* Can the serial device support asynchronous mode? */
c906108c 160
c2c6d25f
JM
161extern int serial_can_async_p (serial_t scb);
162#define SERIAL_CAN_ASYNC_P(SERIAL_T) serial_can_async_p ((SERIAL_T))
c906108c 163
c2c6d25f 164/* Has the serial device been put in asynchronous mode? */
c906108c 165
c2c6d25f
JM
166extern int serial_is_async_p (serial_t scb);
167#define SERIAL_IS_ASYNC_P(SERIAL_T) serial_is_async_p ((SERIAL_T))
c906108c 168
c2c6d25f
JM
169/* For ASYNC enabled devices, register a callback and enable
170 asynchronous mode. To disable asynchronous mode, register a NULL
171 callback. */
c906108c 172
2acceee2 173typedef void (serial_event_ftype) (serial_t scb, void *context);
c2c6d25f
JM
174extern void serial_async (serial_t scb, serial_event_ftype *handler, void *context);
175#define SERIAL_ASYNC(SERIAL_T, HANDLER, CONTEXT) serial_async ((SERIAL_T), (HANDLER), (CONTEXT))
c906108c 176
c2c6d25f
JM
177/* Provide direct access to the underlying FD (if any) used to
178 implement the serial device. This interface is clearly
179 deprecated. Will call internal_error() if the operation isn't
180 applicable to the current serial device. */
c906108c 181
c2c6d25f
JM
182extern int deprecated_serial_fd (serial_t scb);
183#define DEPRECATED_SERIAL_FD(SERIAL_T) deprecated_serial_fd ((SERIAL_T))
c906108c 184
2acceee2
JM
185/* Trace/debug mechanism.
186
187 SERIAL_DEBUG() enables/disables internal debugging.
188 SERIAL_DEBUG_P() indicates the current debug state. */
189
190extern void serial_debug (serial_t scb, int debug_p);
191#define SERIAL_DEBUG(SERIAL_T, DEBUG_P) serial_debug ((SERIAL_T), (DEBUG_P))
192
193extern int serial_debug_p (serial_t scb);
194#define SERIAL_DEBUG_P(SERIAL_T) serial_debug_p ((SERIAL_T))
195
c906108c 196
c2c6d25f 197/* Details of an instance of a serial object */
c906108c 198
c2c6d25f
JM
199struct _serial_t
200 {
201 int fd; /* File descriptor */
202 struct serial_ops *ops; /* Function vector */
203 void *state; /* Local context info for open FD */
204 serial_ttystate ttystate; /* Not used (yet) */
2acceee2
JM
205 int bufcnt; /* Amount of data remaining in receive
206 buffer. -ve for sticky errors. */
c2c6d25f
JM
207 unsigned char *bufp; /* Current byte */
208 unsigned char buf[BUFSIZ]; /* Da buffer itself */
2acceee2
JM
209 int current_timeout; /* (ser-unix.c termio{,s} only), last
210 value of VTIME */
211 int timeout_remaining; /* (ser-unix.c termio{,s} only), we
212 still need to wait for this many
213 more seconds. */
c2c6d25f
JM
214 char *name; /* The name of the device or host */
215 struct _serial_t *next; /* Pointer to the next serial_t */
216 int refcnt; /* Number of pointers to this block */
2acceee2
JM
217 int debug_p; /* Trace this serial devices operation. */
218 int async_state; /* Async internal state. */
c2c6d25f
JM
219 void *async_context; /* Async event thread's context */
220 serial_event_ftype *async_handler;/* Async event handler */
221 };
222
223struct serial_ops
224 {
225 char *name;
226 struct serial_ops *next;
227 int (*open) (serial_t, const char *name);
228 void (*close) (serial_t);
229 int (*readchar) (serial_t, int timeout);
230 int (*write) (serial_t, const char *str, int len);
231 /* Discard pending output */
232 int (*flush_output) (serial_t);
233 /* Discard pending input */
234 int (*flush_input) (serial_t);
235 int (*send_break) (serial_t);
236 void (*go_raw) (serial_t);
237 serial_ttystate (*get_tty_state) (serial_t);
238 int (*set_tty_state) (serial_t, serial_ttystate);
239 void (*print_tty_state) (serial_t, serial_ttystate, struct gdb_file *);
240 int (*noflush_set_tty_state) (serial_t, serial_ttystate, serial_ttystate);
241 int (*setbaudrate) (serial_t, int rate);
242 int (*setstopbits) (serial_t, int num);
243 /* Wait for output to drain */
244 int (*drain_output) (serial_t);
245 /* Change the serial device into/out of asynchronous mode, call
246 the specified function when ever there is something
247 interesting. */
248 void (*async) (serial_t scb, int async_p);
249 };
250
251/* Add a new serial interface to the interface list */
c906108c 252
c2c6d25f 253extern void serial_add_interface (struct serial_ops * optable);
c906108c
SS
254
255/* File in which to record the remote debugging session */
256
c2c6d25f 257extern void serial_log_command (const char *);
c906108c
SS
258
259#endif /* SERIAL_H */
This page took 0.046685 seconds and 4 git commands to generate.