GDB (API)
/home/stan/gdb/src/gdb/serial.h
Go to the documentation of this file.
00001 /* Remote serial support interface definitions for GDB, the GNU Debugger.
00002    Copyright (C) 1992-2013 Free Software Foundation, Inc.
00003 
00004    This file is part of GDB.
00005 
00006    This program is free software; you can redistribute it and/or modify
00007    it under the terms of the GNU General Public License as published by
00008    the Free Software Foundation; either version 3 of the License, or
00009    (at your option) any later version.
00010 
00011    This program is distributed in the hope that it will be useful,
00012    but WITHOUT ANY WARRANTY; without even the implied warranty of
00013    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014    GNU General Public License for more details.
00015 
00016    You should have received a copy of the GNU General Public License
00017    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
00018 
00019 #ifndef SERIAL_H
00020 #define SERIAL_H
00021 
00022 #ifdef USE_WIN32API
00023 #include <winsock2.h>
00024 #include <windows.h>
00025 #endif
00026 
00027 struct ui_file;
00028 
00029 /* For most routines, if a failure is indicated, then errno should be
00030    examined.  */
00031 
00032 /* Terminal state pointer.  This is specific to each type of
00033    interface.  */
00034 
00035 typedef void *serial_ttystate;
00036 struct serial;
00037 
00038 /* Try to open NAME.  Returns a new `struct serial *' on success, NULL
00039    on failure.  The new serial object has a reference count of 1.
00040    Note that some open calls can block and, if possible, should be
00041    written to be non-blocking, with calls to ui_look_hook so they can
00042    be cancelled.  An async interface for open could be added to GDB if
00043    necessary.  */
00044 
00045 extern struct serial *serial_open (const char *name);
00046 
00047 /* Returns true if SCB is open.  */
00048 
00049 extern int serial_is_open (struct serial *scb);
00050 
00051 /* Find an already opened serial stream using a file handle.  */
00052 
00053 extern struct serial *serial_for_fd (int fd);
00054 
00055 /* Open a new serial stream using a file handle.  */
00056 
00057 extern struct serial *serial_fdopen (const int fd);
00058 
00059 /* Push out all buffers, close the device and unref SCB.  */
00060 
00061 extern void serial_close (struct serial *scb);
00062 
00063 /* Increment reference count of SCB.  */
00064 
00065 extern void serial_ref (struct serial *scb);
00066 
00067 /* Decrement reference count of SCB.  */
00068 
00069 extern void serial_unref (struct serial *scb);
00070 
00071 /* Create a pipe, and put the read end in files[0], and the write end
00072    in filde[1].  Returns 0 for success, negative value for error (in
00073    which case errno contains the error).  */
00074 
00075 extern int gdb_pipe (int fildes[2]);
00076 
00077 /* Create a pipe with each end wrapped in a `struct serial' interface.
00078    Put the read end in scbs[0], and the write end in scbs[1].  Returns
00079    0 for success, negative value for error (in which case errno
00080    contains the error).  */
00081 
00082 extern int serial_pipe (struct serial *scbs[2]);
00083 
00084 /* Push out all buffers and destroy SCB without closing the device.  */
00085 
00086 extern void serial_un_fdopen (struct serial *scb);
00087 
00088 /* Read one char from the serial device with TIMEOUT seconds to wait
00089    or -1 to wait forever.  Use timeout of 0 to effect a poll.
00090    Infinite waits are not permitted.  Returns unsigned char if ok, else
00091    one of the following codes.  Note that all error return-codes are
00092    guaranteed to be < 0.  */
00093 
00094 enum serial_rc {
00095   SERIAL_ERROR = -1,    /* General error.  */
00096   SERIAL_TIMEOUT = -2,  /* Timeout or data-not-ready during read.
00097                            Unfortunately, through
00098                            deprecated_ui_loop_hook (), this can also
00099                            be a QUIT indication.  */
00100   SERIAL_EOF = -3       /* General end-of-file or remote target
00101                            connection closed, indication.  Includes
00102                            things like the line dropping dead.  */
00103 };
00104 
00105 extern int serial_readchar (struct serial *scb, int timeout);
00106 
00107 /* Write COUNT bytes from BUF to the port SCB.  Returns 0 for
00108    success, non-zero for failure.  */
00109 
00110 extern int serial_write (struct serial *scb, const void *buf, size_t count);
00111 
00112 /* Write a printf style string onto the serial port.  */
00113 
00114 extern void serial_printf (struct serial *desc, 
00115                            const char *,...) ATTRIBUTE_PRINTF (2, 3);
00116 
00117 /* Allow pending output to drain.  */
00118 
00119 extern int serial_drain_output (struct serial *);
00120 
00121 /* Flush (discard) pending output.  Might also flush input (if this
00122    system can't flush only output).  */
00123 
00124 extern int serial_flush_output (struct serial *);
00125 
00126 /* Flush pending input.  Might also flush output (if this system can't
00127    flush only input).  */
00128 
00129 extern int serial_flush_input (struct serial *);
00130 
00131 /* Send a break between 0.25 and 0.5 seconds long.  */
00132 
00133 extern int serial_send_break (struct serial *scb);
00134 
00135 /* Turn the port into raw mode.  */
00136 
00137 extern void serial_raw (struct serial *scb);
00138 
00139 /* Return a pointer to a newly malloc'd ttystate containing the state
00140    of the tty.  */
00141 
00142 extern serial_ttystate serial_get_tty_state (struct serial *scb);
00143 
00144 /* Return a pointer to a newly malloc'd ttystate containing a copy
00145    of the state in TTYSTATE.  */
00146 
00147 extern serial_ttystate serial_copy_tty_state (struct serial *scb,
00148                                               serial_ttystate ttystate);
00149 
00150 /* Set the state of the tty to TTYSTATE.  The change is immediate.
00151    When changing to or from raw mode, input might be discarded.
00152    Returns 0 for success, negative value for error (in which case
00153    errno contains the error).  */
00154 
00155 extern int serial_set_tty_state (struct serial *scb, serial_ttystate ttystate);
00156 
00157 /* printf_filtered a user-comprehensible description of ttystate on
00158    the specified STREAM.  FIXME: At present this sends output to the
00159    default stream - GDB_STDOUT.  */
00160 
00161 extern void serial_print_tty_state (struct serial *scb,
00162                                     serial_ttystate ttystate,
00163                                     struct ui_file *);
00164 
00165 /* Set the tty state to NEW_TTYSTATE, where OLD_TTYSTATE is the
00166    current state (generally obtained from a recent call to
00167    serial_get_tty_state()), but be careful not to discard any input.
00168    This means that we never switch in or out of raw mode, even if
00169    NEW_TTYSTATE specifies a switch.  */
00170 
00171 extern int serial_noflush_set_tty_state (struct serial *scb,
00172                                          serial_ttystate new_ttystate,
00173                                          serial_ttystate old_ttystate);
00174 
00175 /* Set the baudrate to the decimal value supplied.  Returns 0 for
00176    success, -1 for failure.  */
00177 
00178 extern int serial_setbaudrate (struct serial *scb, int rate);
00179 
00180 /* Set the number of stop bits to the value specified.  Returns 0 for
00181    success, -1 for failure.  */
00182 
00183 #define SERIAL_1_STOPBITS 1
00184 #define SERIAL_1_AND_A_HALF_STOPBITS 2  /* 1.5 bits, snicker...  */
00185 #define SERIAL_2_STOPBITS 3
00186 
00187 extern int serial_setstopbits (struct serial *scb, int num);
00188 
00189 /* Asynchronous serial interface: */
00190 
00191 /* Can the serial device support asynchronous mode?  */
00192 
00193 extern int serial_can_async_p (struct serial *scb);
00194 
00195 /* Has the serial device been put in asynchronous mode?  */
00196 
00197 extern int serial_is_async_p (struct serial *scb);
00198 
00199 /* For ASYNC enabled devices, register a callback and enable
00200    asynchronous mode.  To disable asynchronous mode, register a NULL
00201    callback.  */
00202 
00203 typedef void (serial_event_ftype) (struct serial *scb, void *context);
00204 extern void serial_async (struct serial *scb,
00205                           serial_event_ftype *handler, void *context);
00206 
00207 /* Trace/debug mechanism.
00208 
00209    serial_debug() enables/disables internal debugging.
00210    serial_debug_p() indicates the current debug state.  */
00211 
00212 extern void serial_debug (struct serial *scb, int debug_p);
00213 
00214 extern int serial_debug_p (struct serial *scb);
00215 
00216 
00217 /* Details of an instance of a serial object.  */
00218 
00219 struct serial
00220   {
00221     /* serial objects are ref counted (but not the underlying
00222        connection, just the object's lifetime in memory).  */
00223     int refcnt;
00224 
00225     int fd;                     /* File descriptor */
00226     /* File descriptor for a separate error stream that should be
00227        immediately forwarded to gdb_stderr.  This may be -1.
00228        If != -1, this descriptor should be non-blocking or
00229        ops->avail should be non-NULL.  */
00230     int error_fd;               
00231     struct serial_ops *ops;     /* Function vector */
00232     void *state;                /* Local context info for open FD */
00233     serial_ttystate ttystate;   /* Not used (yet) */
00234     int bufcnt;                 /* Amount of data remaining in receive
00235                                    buffer.  -ve for sticky errors.  */
00236     unsigned char *bufp;        /* Current byte */
00237     unsigned char buf[BUFSIZ];  /* Da buffer itself */
00238     int current_timeout;        /* (ser-unix.c termio{,s} only), last
00239                                    value of VTIME */
00240     int timeout_remaining;      /* (ser-unix.c termio{,s} only), we
00241                                    still need to wait for this many
00242                                    more seconds.  */
00243     char *name;                 /* The name of the device or host */
00244     struct serial *next;        /* Pointer to the next `struct serial *' */
00245     int debug_p;                /* Trace this serial devices operation.  */
00246     int async_state;            /* Async internal state.  */
00247     void *async_context;        /* Async event thread's context */
00248     serial_event_ftype *async_handler;/* Async event handler */
00249   };
00250 
00251 struct serial_ops
00252   {
00253     char *name;
00254     struct serial_ops *next;
00255     int (*open) (struct serial *, const char *name);
00256     void (*close) (struct serial *);
00257     int (*fdopen) (struct serial *, int fd);
00258     int (*readchar) (struct serial *, int timeout);
00259     int (*write) (struct serial *, const void *buf, size_t count);
00260     /* Discard pending output */
00261     int (*flush_output) (struct serial *);
00262     /* Discard pending input */
00263     int (*flush_input) (struct serial *);
00264     int (*send_break) (struct serial *);
00265     void (*go_raw) (struct serial *);
00266     serial_ttystate (*get_tty_state) (struct serial *);
00267     serial_ttystate (*copy_tty_state) (struct serial *, serial_ttystate);
00268     int (*set_tty_state) (struct serial *, serial_ttystate);
00269     void (*print_tty_state) (struct serial *, serial_ttystate,
00270                              struct ui_file *);
00271     int (*noflush_set_tty_state) (struct serial *, serial_ttystate,
00272                                   serial_ttystate);
00273     int (*setbaudrate) (struct serial *, int rate);
00274     int (*setstopbits) (struct serial *, int num);
00275     /* Wait for output to drain.  */
00276     int (*drain_output) (struct serial *);
00277     /* Change the serial device into/out of asynchronous mode, call
00278        the specified function when ever there is something
00279        interesting.  */
00280     void (*async) (struct serial *scb, int async_p);
00281     /* Perform a low-level read operation, reading (at most) COUNT
00282        bytes into SCB->BUF.  Return zero at end of file.  */
00283     int (*read_prim)(struct serial *scb, size_t count);
00284     /* Perform a low-level write operation, writing (at most) COUNT
00285        bytes from BUF.  */
00286     int (*write_prim)(struct serial *scb, const void *buf, size_t count);
00287     /* Return that number of bytes that can be read from FD
00288        without blocking.  Return value of -1 means that the
00289        read will not block even if less that requested bytes
00290        are available.  */
00291     int (*avail)(struct serial *scb, int fd);
00292 
00293 #ifdef USE_WIN32API
00294     /* Return a handle to wait on, indicating available data from SCB
00295        when signaled, in *READ.  Return a handle indicating errors
00296        in *EXCEPT.  */
00297     void (*wait_handle) (struct serial *scb, HANDLE *read, HANDLE *except);
00298     void (*done_wait_handle) (struct serial *scb);
00299 #endif /* USE_WIN32API */
00300   };
00301 
00302 /* Add a new serial interface to the interface list.  */
00303 
00304 extern void serial_add_interface (struct serial_ops * optable);
00305 
00306 /* File in which to record the remote debugging session.  */
00307 
00308 extern void serial_log_command (const char *);
00309 
00310 #ifdef USE_WIN32API
00311 
00312 /* Windows-only: find or create handles that we can wait on for this
00313    serial device.  */
00314 extern void serial_wait_handle (struct serial *, HANDLE *, HANDLE *);
00315 
00316 /* Windows-only: signal that we are done with the wait handles.  */
00317 extern void serial_done_wait_handle (struct serial *);
00318 
00319 #endif /* USE_WIN32API */
00320 
00321 #endif /* SERIAL_H */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines