4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 * Copyright (c) 2009, Olivier MATZ <zer0@droids-corp.org>
36 * All rights reserved.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions are met:
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in the
44 * documentation and/or other materials provided with the distribution.
45 * * Neither the name of the University of California, Berkeley nor the
46 * names of its contributors may be used to endorse or promote products
47 * derived from this software without specific prior written permission.
49 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
50 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
51 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
52 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
53 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
54 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
55 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
56 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
57 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
58 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 * This file is a small equivalent to the GNU readline library, but it
66 * was originally designed for small systems, like Atmel AVR
67 * microcontrollers (8 bits). Indeed, we don't use any malloc that is
68 * sometimes not implemented (or just not recommended) on such
71 * Obviously, it does not support as many things as the GNU readline,
72 * but at least it supports some interesting features like a kill
73 * buffer and a command history.
75 * It also have a feature that does not have the GNU readline (as far
76 * as I know): we can have several instances of it running at the same
77 * time, even on a monothread program, since it works with callbacks.
79 * The lib is designed for a client-side or a server-side use:
80 * - server-side: the server receives all data from a socket, including
81 * control chars, like arrows, tabulations, ... The client is
82 * very simple, it can be a telnet or a minicom through a serial line.
83 * - client-side: the client receives its data through its stdin for
88 #include <cmdline_cirbuf.h>
89 #include <cmdline_vt100.h>
96 #define RDLINE_BUF_SIZE 512
97 #define RDLINE_PROMPT_SIZE 32
98 #define RDLINE_VT100_BUF_SIZE 8
99 #define RDLINE_HISTORY_BUF_SIZE BUFSIZ
100 #define RDLINE_HISTORY_MAX_LINE 64
110 typedef int (rdline_write_char_t)(struct rdline *rdl, char);
111 typedef void (rdline_validate_t)(struct rdline *rdl,
112 const char *buf, unsigned int size);
113 typedef int (rdline_complete_t)(struct rdline *rdl, const char *buf,
114 char *dstbuf, unsigned int dstsize,
118 enum rdline_status status;
122 char left_buf[RDLINE_BUF_SIZE+2]; /* reserve 2 chars for the \n\0 */
123 char right_buf[RDLINE_BUF_SIZE];
125 char prompt[RDLINE_PROMPT_SIZE];
126 unsigned int prompt_size;
128 char kill_buf[RDLINE_BUF_SIZE];
129 unsigned int kill_size;
132 struct cirbuf history;
133 char history_buf[RDLINE_HISTORY_BUF_SIZE];
134 int history_cur_line;
136 /* callbacks and func pointers */
137 rdline_write_char_t *write_char;
138 rdline_validate_t *validate;
139 rdline_complete_t *complete;
142 struct cmdline_vt100 vt100;
149 * Init fields for a struct rdline. Call this only once at the beginning
151 * \param rdl A pointer to an uninitialized struct rdline
152 * \param write_char The function used by the function to write a character
153 * \param validate A pointer to the function to execute when the
154 * user validates the buffer.
155 * \param complete A pointer to the function to execute when the
156 * user completes the buffer.
158 int rdline_init(struct rdline *rdl,
159 rdline_write_char_t *write_char,
160 rdline_validate_t *validate,
161 rdline_complete_t *complete);
165 * Init the current buffer, and display a prompt.
166 * \param rdl A pointer to a struct rdline
167 * \param prompt A string containing the prompt
169 void rdline_newline(struct rdline *rdl, const char *prompt);
172 * Call it and all received chars will be ignored.
173 * \param rdl A pointer to a struct rdline
175 void rdline_stop(struct rdline *rdl);
178 * Same than rdline_stop() except that next calls to rdline_char_in()
179 * will return RDLINE_RES_EXITED.
180 * \param rdl A pointer to a struct rdline
182 void rdline_quit(struct rdline *rdl);
185 * Restart after a call to rdline_stop() or rdline_quit()
186 * \param rdl A pointer to a struct rdline
188 void rdline_restart(struct rdline *rdl);
191 * Redisplay the current buffer
192 * \param rdl A pointer to a struct rdline
194 void rdline_redisplay(struct rdline *rdl);
197 * Reset the current buffer and setup for a new line.
198 * \param rdl A pointer to a struct rdline
200 void rdline_reset(struct rdline *rdl);
203 /* return status for rdline_char_in() */
204 #define RDLINE_RES_SUCCESS 0
205 #define RDLINE_RES_VALIDATED 1
206 #define RDLINE_RES_COMPLETE 2
207 #define RDLINE_RES_NOT_RUNNING -1
208 #define RDLINE_RES_EOF -2
209 #define RDLINE_RES_EXITED -3
212 * append a char to the readline buffer.
213 * Return RDLINE_RES_VALIDATE when the line has been validated.
214 * Return RDLINE_RES_COMPLETE when the user asked to complete the buffer.
215 * Return RDLINE_RES_NOT_RUNNING if it is not running.
216 * Return RDLINE_RES_EOF if EOF (ctrl-d on an empty line).
217 * Else return RDLINE_RES_SUCCESS.
218 * XXX error case when the buffer is full ?
220 * \param rdl A pointer to a struct rdline
221 * \param c The character to append
223 int rdline_char_in(struct rdline *rdl, char c);
226 * Return the current buffer, terminated by '\0'.
227 * \param rdl A pointer to a struct rdline
229 const char *rdline_get_buffer(struct rdline *rdl);
233 * Add the buffer to history.
234 * return < 0 on error.
235 * \param rdl A pointer to a struct rdline
236 * \param buf A buffer that is terminated by '\0'
238 int rdline_add_history(struct rdline *rdl, const char *buf);
241 * Clear current history
242 * \param rdl A pointer to a struct rdline
244 void rdline_clear_history(struct rdline *rdl);
247 * Get the i-th history item
249 char *rdline_get_history_item(struct rdline *rdl, unsigned int i);
255 #endif /* _RDLINE_H_ */