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