cmdline (merge-intel): remove duplicated definitions of vt100 codes
[libcmdline.git] / src / lib / cmdline_rdline.h
1 /*-
2  * Copyright (c) <2010>, Intel Corporation
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  *   notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  *   notice, this list of conditions and the following disclaimer in
14  *   the documentation and/or other materials provided with the
15  *   distribution.
16  *
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.
20  *
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
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
30  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
32  * OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 /*
36  * Copyright (c) 2009, Olivier MATZ <zer0@droids-corp.org>
37  * All rights reserved.
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions are met:
40  *
41  *     * Redistributions of source code must retain the above copyright
42  *       notice, this list of conditions and the following disclaimer.
43  *     * Redistributions in binary form must reproduce the above copyright
44  *       notice, this list of conditions and the following disclaimer in the
45  *       documentation and/or other materials provided with the distribution.
46  *     * Neither the name of the University of California, Berkeley nor the
47  *       names of its contributors may be used to endorse or promote products
48  *       derived from this software without specific prior written permission.
49  *
50  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
51  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
52  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
53  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
54  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
55  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
56  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
57  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
59  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60  */
61
62 #ifndef _RDLINE_H_
63 #define _RDLINE_H_
64
65 /**
66  * This file is a small equivalent to the GNU readline library, but it
67  * was originally designed for small systems, like Atmel AVR
68  * microcontrollers (8 bits). Indeed, we don't use any malloc that is
69  * sometimes not implemented (or just not recommended) on such
70  * systems.
71  *
72  * Obviously, it does not support as many things as the GNU readline,
73  * but at least it supports some interresting features like a kill
74  * buffer and a command history.
75  *
76  * It also have a feature that does not have the GNU readline (as far
77  * as I know): we can have several instances of it running at the same
78  * time, even on a monothread program, since it works with callbacks.
79  *
80  * The lib is designed for a client-side or a server-side use:
81  * - server-side: the server receives all data from a socket, including
82  *   control chars, like arrows, tabulations, ... The client is
83  *   very simple, it can be a telnet or a minicom through a serial line.
84  * - client-side: the client receives its data through its stdin for
85  *   instance.
86  */
87
88 #include <cmdline_cirbuf.h>
89 #include <cmdline_vt100.h>
90
91 /* configuration */
92 #define RDLINE_BUF_SIZE 256
93 #define RDLINE_PROMPT_SIZE  32
94 #define RDLINE_VT100_BUF_SIZE  8
95 #define RDLINE_HISTORY_BUF_SIZE BUFSIZ
96 #define RDLINE_HISTORY_MAX_LINE 64
97
98 enum rdline_status {
99         RDLINE_INIT,
100         RDLINE_RUNNING
101 };
102
103 struct rdline;
104
105 typedef void (rdline_write_char_t)(struct rdline *rdl, char);
106 typedef void (rdline_validate_t)(struct rdline *rdl,
107                                  const char *buf, unsigned int size);
108 typedef int (rdline_complete_t)(struct rdline *rdl, const char *buf,
109                                 char *dstbuf, unsigned int dstsize,
110                                 int *state);
111
112 struct rdline {
113         enum rdline_status status;
114         /* rdline bufs */
115         struct cirbuf left;
116         struct cirbuf right;
117         char left_buf[RDLINE_BUF_SIZE+2]; /* reserve 2 chars for the \n\0 */
118         char right_buf[RDLINE_BUF_SIZE];
119
120         char prompt[RDLINE_PROMPT_SIZE];
121         unsigned int prompt_size;
122
123 #ifndef NO_RDLINE_KILL_BUF
124         char kill_buf[RDLINE_BUF_SIZE];
125         unsigned int kill_size;
126 #endif
127
128 #ifndef NO_RDLINE_HISTORY
129         /* history */
130         struct cirbuf history;
131         char history_buf[RDLINE_HISTORY_BUF_SIZE];
132         int history_cur_line;
133 #endif
134
135         /* callbacks and func pointers */
136         rdline_write_char_t *write_char;
137         rdline_validate_t *validate;
138         rdline_complete_t *complete;
139
140         /* vt100 parser */
141         struct cmdline_vt100 vt100;
142
143         /* opaque pointer */
144         void *opaque;
145 };
146
147 /**
148  * Init fields for a struct rdline. Call this only once at the beginning
149  * of your program.
150  * \param rdl A pointer to an uninitialized struct rdline
151  * \param write_char The function used by the function to write a character
152  * \param validate A pointer to the function to execute when the
153  *                 user validates the buffer.
154  * \param complete A pointer to the function to execute when the
155  *                 user completes the buffer.
156  */
157 void rdline_init(struct rdline *rdl,
158                  rdline_write_char_t *write_char,
159                  rdline_validate_t *validate,
160                  rdline_complete_t *complete);
161
162
163 /**
164  * Init the current buffer, and display a prompt.
165  * \param rdl A pointer to a struct rdline
166  * \param prompt A string containing the prompt
167  */
168 void rdline_newline(struct rdline *rdl, const char *prompt);
169
170 /**
171  * Call it and all received chars will be ignored.
172  * \param rdl A pointer to a struct rdline
173  */
174 void rdline_stop(struct rdline *rdl);
175
176 /**
177  * Restart after a call to rdline_stop()
178  * \param rdl A pointer to a struct rdline
179  */
180 void rdline_restart(struct rdline *rdl);
181
182 /**
183  * Redisplay the current buffer
184  * \param rdl A pointer to a struct rdline
185  */
186 void rdline_redisplay(struct rdline *rdl);
187
188
189 /* return status for rdline_char_in() */
190 #define RDLINE_RES_SUCCESS       0
191 #define RDLINE_RES_VALIDATED     1
192 #define RDLINE_RES_COMPLETE      2
193 #define RDLINE_RES_NOT_RUNNING  -1
194 #define RDLINE_RES_EOF          -2
195
196 /**
197  * append a char to the readline buffer.
198  * Return RDLINE_RES_VALIDATE when the line has been validated.
199  * Return RDLINE_RES_COMPLETE when the user asked to complete the buffer.
200  * Return RDLINE_RES_NOT_RUNNING if it is not running.
201  * Return RDLINE_RES_EOF if EOF (ctrl-d on an empty line).
202  * Else return RDLINE_RES_SUCCESS.
203  * XXX error case when the buffer is full ?
204  *
205  * \param rdl A pointer to a struct rdline
206  * \param c The character to append
207  */
208 int rdline_char_in(struct rdline *rdl, char c);
209
210 /**
211  * Return the current buffer, terminated by '\0'.
212  * \param rdl A pointer to a struct rdline
213  */
214 const char *rdline_get_buffer(struct rdline *rdl);
215
216
217 /**
218  * Add the buffer to history.
219  * return < 0 on error.
220  * \param rdl A pointer to a struct rdline
221  * \param buf A buffer that is terminated by '\0'
222  */
223 int rdline_add_history(struct rdline *rdl, const char *buf);
224
225 /**
226  * Clear current history
227  * \param rdl A pointer to a struct rdline
228  */
229 void rdline_clear_history(struct rdline *rdl);
230
231 /**
232  * Get the i-th history item
233  */
234 char *rdline_get_history_item(struct rdline *rdl, unsigned int i);
235
236 #endif /* _RDLINE_H_ */