first public release
[dpdk.git] / lib / librte_cmdline / cmdline_vt100.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without 
8  *   modification, are permitted provided that the following conditions 
9  *   are met:
10  * 
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 
16  *       distribution.
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 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.
32  * 
33  *  version: DPDK.L.1.2.3-3
34  */
35
36 /*
37  * Copyright (c) 2009, Olivier MATZ <zer0@droids-corp.org>
38  * All rights reserved.
39  * Redistribution and use in source and binary forms, with or without
40  * modification, are permitted provided that the following conditions are met:
41  *
42  *     * Redistributions of source code must retain the above copyright
43  *       notice, this list of conditions and the following disclaimer.
44  *     * Redistributions in binary form must reproduce the above copyright
45  *       notice, this list of conditions and the following disclaimer in the
46  *       documentation and/or other materials provided with the distribution.
47  *     * Neither the name of the University of California, Berkeley nor the
48  *       names of its contributors may be used to endorse or promote products
49  *       derived from this software without specific prior written permission.
50  *
51  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
52  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
53  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
54  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
55  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
56  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
57  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
58  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
60  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61  */
62
63 #include <stdlib.h>
64 #include <stdint.h>
65 #include <stdio.h>
66 #include <string.h>
67 #include <stdarg.h>
68 #include <ctype.h>
69 #include <termios.h>
70
71 #include "cmdline_vt100.h"
72
73 const char *cmdline_vt100_commands[] = {
74         vt100_up_arr,
75         vt100_down_arr,
76         vt100_right_arr,
77         vt100_left_arr,
78         "\177",
79         "\n",
80         "\001",
81         "\005",
82         "\013",
83         "\031",
84         "\003",
85         "\006",
86         "\002",
87         vt100_suppr,
88         vt100_tab,
89         "\004",
90         "\014",
91         "\r",
92         "\033\177",
93         vt100_word_left,
94         vt100_word_right,
95         "?",
96         "\027",
97         "\020",
98         "\016",
99         "\033\144",
100 };
101
102 void
103 vt100_init(struct cmdline_vt100 *vt)
104 {
105         vt->state = CMDLINE_VT100_INIT;
106 }
107
108
109 static int
110 match_command(char *buf, unsigned int size)
111 {
112         const char *cmd;
113         size_t cmdlen;
114         unsigned int i = 0;
115
116         for (i=0 ; i<sizeof(cmdline_vt100_commands)/sizeof(const char *) ; i++) {
117                 cmd = *(cmdline_vt100_commands + i);
118
119                 cmdlen = strnlen(cmd, CMDLINE_VT100_BUF_SIZE);
120                 if (size == cmdlen &&
121                     !strncmp(buf, cmd, cmdlen)) {
122                         return i;
123                 }
124         }
125
126         return -1;
127 }
128
129 int
130 vt100_parser(struct cmdline_vt100 *vt, char ch)
131 {
132         unsigned int size;
133         uint8_t c = (uint8_t) ch;
134
135         if (vt->bufpos >= CMDLINE_VT100_BUF_SIZE) {
136                 vt->state = CMDLINE_VT100_INIT;
137                 vt->bufpos = 0;
138         }
139
140         vt->buf[vt->bufpos++] = c;
141         size = vt->bufpos;
142
143         switch (vt->state) {
144         case CMDLINE_VT100_INIT:
145                 if (c == 033) {
146                         vt->state = CMDLINE_VT100_ESCAPE;
147                 }
148                 else {
149                         vt->bufpos = 0;
150                         goto match_command;
151                 }
152                 break;
153
154         case CMDLINE_VT100_ESCAPE:
155                 if (c == 0133) {
156                         vt->state = CMDLINE_VT100_ESCAPE_CSI;
157                 }
158                 else if (c >= 060 && c <= 0177) { /* XXX 0177 ? */
159                         vt->bufpos = 0;
160                         vt->state = CMDLINE_VT100_INIT;
161                         goto match_command;
162                 }
163                 break;
164
165         case CMDLINE_VT100_ESCAPE_CSI:
166                 if (c >= 0100 && c <= 0176) {
167                         vt->bufpos = 0;
168                         vt->state = CMDLINE_VT100_INIT;
169                         goto match_command;
170                 }
171                 break;
172
173         default:
174                 vt->bufpos = 0;
175                 break;
176         }
177
178         return -2;
179
180  match_command:
181         return match_command(vt->buf, size);
182 }