-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.cpp
More file actions
496 lines (420 loc) · 10.4 KB
/
cli.cpp
File metadata and controls
496 lines (420 loc) · 10.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
/*
* libcli, a simple and generic command line interface with small footprint for
* bare metal embedded projects.
*
* Copyright (C) 2025 Julian Friedrich
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* This project is hosted on GitHub:
* https://github.com/fjulian79/libcli
* Please feel free to file issues, open pull requests, or contribute there.
*/
#include <stdio.h>
#include <string.h>
#include <Arduino.h>
#include "cli/cli.hpp"
/**
* If the output is buffered fflush has to be called after printf's without
* a new line termination.
*/
#if CLI_BUFFEREDIO != 0
#define cli_fflush() pStream->flush()
#else
#define cli_fflush()
#endif
/**
* @brief Defines special characters which are used in this context.
*/
const struct
{
/**
* @brief Definition of the character used to sepperate
*/
const char argsep = ' ';
/**
* @brief Defines the sequence to echo to trigger ther terminal bell.
*/
const char bell = '\a';
/**
* @brief Definition of the backspace character.
*/
const char bs = '\b';
/**
* @brief Definition of the form feed character. Sent in case of ctrl-L.
*/
const char ff = 0x0c;
/**
* @brief Defnition on the csi control sequence character.
*/
const char csi = '[';
/**
* @brief Definition of the delete character.
*/
const char del = 0x7f;
/**
* @brief Definition of the escape character.
*/
const char esc = '\033';
/**
* @brief Defines the sequence to echo for a new line.
*/
const char newline = '\n';
/**
* @brief Defintion of the character used to terminate a line.
*/
const char ret = '\r';
/**
* @brief Character which is used to mark the begin and the end of a
* string which shall be recognized as singe argument althow it contains
* the character used to sperate arguments.
*/
const char stresc = '"';
}ascii;
/**
* @brief Defines special vt100 control sequences.
* See https://vt100.net/docs/vt510-rm/chapter4.html for details.
*/
const struct
{
/**
* @brief Used for echo a single delete to the terminal.
* Backspace + CSI Ps K, PS = 0
*/
const char del[6] = "\b\033[0K";
/**
* @brief Used for echo a delete line to the terminal.
* Carriage Return + CSI Ps K, PS = 2
*/
const char clrline[6] = "\r\033[2K";
/**
* @brief Used to clear the screen and rest the cursor to 1:1
* ED (Top to bottom) + CUP (line 1, column 1)
*/
const char clrscr[11] = "\033[2J\033[1;1H";
}vt100;
Cli::Cli() :
pStream(0)
, EscMode(esc_false)
, BufIdx(0)
, Argc(0)
, pCmdTab(0)
, CmdTabSiz(0)
, EchoEnabled(true)
{
argReset();
}
void Cli::begin(Stream *pIoStr)
{
BufIdx = 0;
pCmdTab = CliCommand::getTable();
CmdTabSiz = CliCommand::getCmdCnt();
size_t dropped = CliCommand::getDropCnt();
if (dropped != 0)
{
pIoStr->printf("WARNING: Cli Command table overflow, %d dropped!\n\n",
dropped);
}
setStream(pIoStr);
}
void Cli::setStream(Stream *pIoStr)
{
pStream = pIoStr;
reset();
}
int8_t Cli::loop(void)
{
if(pStream && pStream->available())
{
return read(pStream->read());
}
return 0;
}
int8_t Cli::read(char byte)
{
int8_t ret = 0;
/* No escape so far but ESC received */
if ((EscMode == esc_false) && (byte == ascii.esc))
{
EscMode = esc_true;
}
/* No escape so far but comand terminator received */
else if ((EscMode == esc_false) && (byte == ascii.ret))
{
if(EchoEnabled)
{
pStream->write(ascii.newline);
}
if (BufIdx != 0)
{
Buffer[BufIdx] = '\0';
}
ret=checkCmdTable();
}
/* No escape so far but now DEL or BS received */
else if ((EscMode == esc_false) &&
((byte == ascii.del) || (byte == ascii.bs)))
{
if(BufIdx > 0)
{
BufIdx--;
if(EchoEnabled)
{
pStream->write(vt100.del);
}
}
else
{
sendBell();
}
}
/* No escape so far but now Form feed has been received. */
else if ((EscMode == esc_false) && (byte == ascii.ff))
{
pStream->write(vt100.clrscr);
refreshPrompt();
}
/* Escape received and now the CSI character */
else if ((EscMode == esc_true) && (byte == ascii.csi))
{
EscMode = esc_csi;
}
/* Handle a ANSI escape sequence */
else if (EscMode == esc_csi)
{
/* See https://vt100.net/docs/vt510-rm/chapter4.html for a list thing
* which could be done here
*/
switch (byte)
{
case 'A':
/* Up Key pressed */
restoreLastCmd();
break;
case 'B':
/* Down Key pressed */
break;
case 'C':
/* Right Key pressed */
break;
case 'D':
/* Left Key pressed */
break;
default:
break;
}
EscMode = esc_false;
}
/* All special cases processed treat it like data */
else
{
if (BufIdx == 0 && byte == ascii.newline)
{
/* Ignore the new line of a \r\n combination */
}
else if ( BufIdx < CLI_COMMANDSIZ)
{
Buffer[BufIdx++] = byte;
if(EchoEnabled)
{
pStream->write(byte);
}
}
else
{
sendBell();
}
EscMode = esc_false;
}
cli_fflush();
return ret;
}
void Cli::setEcho(bool state)
{
EchoEnabled = state;
}
void Cli::sendBell(void)
{
pStream->write(ascii.bell);
}
void Cli::refreshPrompt(void)
{
pStream->write(CLI_PROMPT);
pStream->write(Buffer, BufIdx);
}
void Cli::clearLine(void)
{
pStream->write(vt100.clrline);
}
bool Cli::restoreLastCmd(void)
{
uint8_t i = 0;
if (BufIdx != 0)
{
return false;
}
/* the buffer still starts with the last command */
BufIdx = strlen(Buffer);
if (BufIdx == 0)
{
return false;
}
for(i = 0; i < Argc; i++)
{
if(StringArg[i] == false)
{
BufIdx += sprintf(&Buffer[BufIdx],"%c%s",
ascii.argsep, Argv[i]);
}
else
{
BufIdx += sprintf(&Buffer[BufIdx],"%c\"%s\"",
ascii.argsep, Argv[i]);
}
}
pStream->write(Buffer);
return true;
}
int8_t Cli::checkCmdTable(void)
{
uint8_t i = 0;
int8_t ret = 0;
if (BufIdx == 0)
{
goto out;
}
for(i=0; i<CmdTabSiz; i++)
{
if (checkCmd(&pCmdTab[i]))
{
if (Argc > CLI_ARGVSIZ)
{
pStream->printf("Error, to many arguments (max: %d)\n", CLI_ARGVSIZ);
ret=INT8_MIN;
goto out_2;
}
ret=pCmdTab[i].pfunc(*pStream, (const char **)Argv, Argc);
goto out;
}
}
pStream->printf("Error, unknown command: %s\n", Buffer);
/* Setting Buffer[0] to zero prevents printing the invalid command again */
Buffer[0] = 0;
ret=INT8_MIN;
goto out_2;
out:
if (ret != 0)
{
pStream->printf("Error, cmd fails: %d\n", ret);
}
out_2:
reset();
return ret;
}
bool Cli::checkCmd(cliCmd_t *p_cmd)
{
uint8_t i = 0;
uint8_t j = 0;
bool string=false;
if(!p_cmd->name[0])
{
return false;
}
while (p_cmd->name[i])
{
if (p_cmd->name[i] != Buffer[i])
{
return false;
}
i++;
}
if (Buffer[i] != '\0' && Buffer[i] != ascii.argsep)
{
return false;
}
argReset();
while (Buffer[i] != 0)
{
// Handle escape sequences within strings
if (Buffer[i] == '\\' && Buffer[i+1] != 0 && string)
{
// Remove the backslash by shifting remaining chars
j = i;
while (Buffer[j] != 0)
{
Buffer[j] = Buffer[j+1];
j++;
}
// The escaped character is now at position i
// Don't increment i, let the normal flow handle the next char
}
else if (Buffer[i] == ascii.stresc)
{
if (string)
{
// End of string
string = false;
Buffer[i] = 0;
}
else
{
// This is a starting quote, but not at the beginning of an argument
// Just continue, will be handled when we start a new argument
}
}
else if ((Buffer[i] == ascii.argsep) && (string == false))
{
while (Buffer[i] == ascii.argsep)
{
Buffer[i++] = 0;
}
if (Buffer[i] == 0)
{
break;
}
if (Argc == CLI_ARGVSIZ)
{
/* violate the limitation to signalize the error */
Argc++;
break;
}
if (Buffer[i] == ascii.stresc)
{
string = true;
Buffer[i++] = 0;
StringArg[Argc] = true;
}
Argv[Argc] = &Buffer[i];
Argc++;
}
i++;
}
return true;
}
void Cli::argReset(void)
{
Argc=0;
memset(Argv, 0, sizeof(Argv));
for(uint8_t i = 0; i < CLI_ARGVSIZ; i++)
{
StringArg[i] = false;
}
}
void Cli::reset(void)
{
BufIdx = 0;
EscMode = esc_false;
refreshPrompt();
cli_fflush();
}