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