forked from NevermindZZT/letter-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.c
1310 lines (1195 loc) · 32.8 KB
/
shell.c
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @file shell.c
* @author Letter ([email protected])
* @brief letter shell
* @version 2.0.0
* @date 2018-12-29
*
* @Copyright (c) 2018 Letter
*
*/
#include "shell.h"
#include "string.h"
#include "stdio.h"
#include "stdarg.h"
#if SHELL_AUTO_PRASE == 1
#include "shell_ext.h"
#endif
/**
* @brief shell提示信息文本索引
*/
enum
{
TEXT_INFO,
TEXT_PWD_HINT,
TEXT_PWD_RIGHT,
TEXT_PWD_ERROR,
TEXT_FUN_LIST,
TEXT_VAR_LIST,
TEXT_CMD_NONE,
TEXT_CMD_TOO_LONG,
TEXT_READ_NOT_DEF,
};
/**
* @brief shell提示信息文本
*/
static const char *shellText[] =
{
[TEXT_INFO] = "\r\n\r\n"
"+=========================================================+\r\n"
"| (C) COPYRIGHT 2019 Letter |\r\n"
"| Letter shell v"SHELL_VERSION" |\r\n"
"| Build: "__DATE__" "__TIME__" |\r\n"
"+=========================================================+\r\n",
[TEXT_PWD_HINT] = "\r\nPlease input password:",
[TEXT_PWD_RIGHT] = "\r\npassword confirm success.\r\n",
[TEXT_PWD_ERROR] = "\r\npassword confirm failed.\r\n",
[TEXT_FUN_LIST] = "\r\nCOMMAND LIST:\r\n\r\n",
[TEXT_VAR_LIST] = "\r\nVARIABLE LIST:\r\n\r\n",
[TEXT_CMD_NONE] = "Command not found\r\n",
[TEXT_CMD_TOO_LONG] = "\r\nWarnig: Command is too long\r\n",
[TEXT_READ_NOT_DEF] = "error: shell.read must be defined\r\n",
};
static SHELL_TypeDef *shellList[SHELL_MAX_NUMBER] = {NULL}; /**< shell列表 */
static void shellAdd(SHELL_TypeDef *shell);
static void shellDisplayItem(SHELL_TypeDef *shell, unsigned short index);
static void shellEnter(SHELL_TypeDef *shell);
static void shellTab(SHELL_TypeDef *shell);
static void shellBackspace(SHELL_TypeDef *shell);
static void shellAnsiStart(SHELL_TypeDef *shell);
#if SHELL_USING_VAR == 1
static void shellDisplayVariable(SHELL_TypeDef *shell, char *var);
void shellListVariables(void);
#endif /** SHELL_USING_VAR == 1 */
#if SHELL_USING_CMD_EXPORT != 1
/**
* @brief shell默认命令表
*
* @note 当使用命令表方式定义命令的时候,此表才会生效
* @note 添加命令时,可使用SHELL_CMD_ITEM宏,如SHELL_CMD_ITEM(help, shellHelp, command help)
* @note 可不使用默认命令表,初始化完成之后,可调用shellSetCommandList接口设置命令表
*/
const SHELL_CommandTypeDef shellDefaultCommandList[] =
{
SHELL_CMD_ITEM_EX(help, shellHelp, command help, help [command] --show help info of command),
#if SHELL_USING_VAR == 1
SHELL_CMD_ITEM(vars, shellListVariables, show vars),
SHELL_CMD_ITEM_EX(setVar, shellSetVariable, set var, setVar $[var] [value]),
#endif /** SHELL_USING_VAR == 1 */
SHELL_CMD_ITEM(cls, shellClear, clear command line),
};
#if SHELL_USING_VAR == 1
/**
* @brief shell默认变量表
*
*/
const SHELL_VaribaleTypeDef shellDefaultVariableList[] =
{
};
#endif /** SHELL_USING_VAR == 1 */
#endif /** SHELL_USING_CMD_EXPORT != 1 */
/**
* @brief 默认按键响应映射函数表
*
*/
const SHELL_KeyFunctionDef shellDefaultKeyFunctionList[] =
{
{SHELL_KEY_LF, shellEnter},
{SHELL_KEY_CR, shellEnter},
{SHELL_KEY_TAB, shellTab},
{SHELL_KEY_BACKSPACE, shellBackspace},
{SHELL_KEY_DELETE, shellBackspace},
{SHELL_KEY_ESC, shellAnsiStart},
};
/**
* @brief shell初始化
*
* @param shell shell对象
*/
void shellInit(SHELL_TypeDef *shell)
{
shell->length = 0;
shell->cursor = 0;
shell->historyCount = 0;
shell->historyFlag = 0;
shell->historyOffset = 0;
shell->status.inputMode = SHELL_IN_NORMAL;
shell->status.isActive = 0;
shell->status.tabFlag = 0;
shell->command = SHELL_DEFAULT_COMMAND;
shellAdd(shell);
#if SHELL_USING_AUTH == 1
shell->status.authFlag = 0;
shellDisplay(shell, shellText[TEXT_PWD_HINT]);
#else
shellDisplay(shell, shellText[TEXT_INFO]);
shellDisplay(shell, shell->command);
#endif
#if SHELL_USING_CMD_EXPORT == 1
#if defined(__CC_ARM) || (defined(__ARMCC_VERSION) && __ARMCC_VERSION >= 6000000)
extern const unsigned int shellCommand$$Base;
extern const unsigned int shellCommand$$Limit;
extern const unsigned int shellVariable$$Base;
extern const unsigned int shellVariable$$Limit;
shell->commandBase = (SHELL_CommandTypeDef *)(&shellCommand$$Base);
shell->commandNumber = ((unsigned int)(&shellCommand$$Limit)
- (unsigned int)(&shellCommand$$Base))
/ sizeof(SHELL_CommandTypeDef);
#if SHELL_USING_VAR == 1
shell->variableBase = (SHELL_VaribaleTypeDef *)(&shellVariable$$Base);
shell->variableNumber = ((unsigned int)(&shellVariable$$Limit)
- (unsigned int)(&shellVariable$$Base))
/ sizeof(SHELL_VaribaleTypeDef);
#endif /** SHELL_USING_VAR == 1 */
#elif defined(__ICCARM__)
shell->commandBase = (SHELL_CommandTypeDef *)(__section_begin("shellCommand"));
shell->commandNumber = ((unsigned int)(__section_end("shellCommand"))
- (unsigned int)(__section_begin("shellCommand")))
/ sizeof(SHELL_CommandTypeDef);
#if SHELL_USING_VAR == 1
shell->variableBase = (SHELL_VaribaleTypeDef *)(__section_begin("shellVariable"));
shell->variableNumber = ((unsigned int)(__section_end("shellVariable"))
- (unsigned int)(__section_begin("shellVariable")))
/ sizeof(SHELL_VaribaleTypeDef);
#endif /** SHELL_USING_VAR == 1 */
#elif defined(__GNUC__)
extern const unsigned int _shell_command_start;
extern const unsigned int _shell_command_end;
shell->commandBase = (SHELL_CommandTypeDef *)(&_shell_command_start);
shell->commandNumber = ((unsigned int)(&_shell_command_end)
- (unsigned int)(&_shell_command_start))
/ sizeof(SHELL_CommandTypeDef);
#if SHELL_USING_VAR == 1
extern const unsigned int _shell_variable_start;
extern const unsigned int _shell_variable_end;
shell->variableBase = (SHELL_VaribaleTypeDef *)(&_shell_variable_start);
shell->variableNumber = ((unsigned int)(&_shell_variable_end)
- (unsigned int)(&_shell_variable_start))
/ sizeof(SHELL_VaribaleTypeDef);
#endif /** SHELL_USING_VAR == 1 */
#else
#error not supported compiler, please use command table mode
#endif
#else
shell->commandBase = (SHELL_CommandTypeDef *)shellDefaultCommandList;
shell->commandNumber = sizeof(shellDefaultCommandList) / sizeof(SHELL_CommandTypeDef);
#if SHELL_USING_VAR == 1
shell->variableBase = (SHELL_VaribaleTypeDef *)shellDefaultVariableList;
shell->variableNumber = sizeof(shellDefaultVariableList) / sizeof(SHELL_VaribaleTypeDef);
#endif /** SHELL_USING_VAR == 1 */
#endif
}
#if SHELL_USING_CMD_EXPORT != 1
/**
* @brief shell设置命令表
*
* @param shell shell对象
* @param base 命令表基址
* @param size 命令数量
*
* @note 此接口不可在shellInit之前调用
* @note 不调用此接口,则使用默认命令表或命令导出形成的命令表(取决于命令定义方式)
*/
void shellSetCommandList(SHELL_TypeDef *shell, SHELL_CommandTypeDef *base, unsigned short size)
{
shell->commandBase = base;
shell->commandNumber = size;
}
#if SHELL_USING_VAR == 1
/**
* @brief shell设置变量表
*
* @param shell shell对象
* @param base 变量表基址
* @param size 变量数量
*
* @note 此接口不可在shellInit之前调用
* @note 不调用此接口,则使用默认命令表或命令导出形成的命令表(取决于命令定义方式)
*/
void shellSetVariableList(SHELL_TypeDef *shell, SHELL_VaribaleTypeDef *base, unsigned short size)
{
shell->variableBase = base;
shell->variableNumber = size;
}
#endif /** SHELL_USING_VAR == 1 */
#endif /** SHELL_USING_CMD_EXPORT != 1 */
/**
* @brief shell设置按键响应
*
* @param shell shell对象
* @param base 按键响应表基址
* @param size 按键响应数量
*/
void shellSetKeyFuncList(SHELL_TypeDef *shell, SHELL_KeyFunctionDef *base, unsigned short size)
{
shell->keyFuncBase = (int)base;
shell->keyFuncNumber = size;
}
/**
* @brief 添加shell到shell列表
*
* @param shell shell对象
*/
static void shellAdd(SHELL_TypeDef *shell)
{
for (short i = 0; i < SHELL_MAX_NUMBER; i++)
{
if (shellList[i] == NULL)
{
shellList[i] = shell;
return;
}
}
}
/**
* @brief 获取当前活动shell
*
* @return SHELL_TypeDef* 当前活动shell对象
*/
SHELL_TypeDef *shellGetCurrent(void)
{
for (short i = 0; i < SHELL_MAX_NUMBER; i++)
{
if (shellList[i] != NULL && shellList[i]->status.isActive == 1)
{
return shellList[i];
}
}
return NULL;
}
#if SHELL_PRINT_BUFFER > 0
/**
* @brief shell格式化输出
*
* @param shell shell对象
* @param fmt 格式化字符串
* @param ... 参数
*/
void shellPrint(SHELL_TypeDef *shell, char *fmt, ...)
{
char buffer[SHELL_PRINT_BUFFER];
va_list vargs;
if (!shell)
{
return;
}
va_start(vargs, fmt);
vsnprintf(buffer, SHELL_PRINT_BUFFER - 1, fmt, vargs);
va_end(vargs);
shellDisplay(shell, buffer);
}
#endif
/**
* @brief shell显示字符串
*
* @param shell shell对象
* @param string 字符串
* @return unsigned short 字符串长度
*/
unsigned short shellDisplay(SHELL_TypeDef *shell, const char *string)
{
unsigned short count = 0;
if (shell->write == NULL)
{
return 0;
}
while(*string)
{
shell->write(*string++);
count ++;
}
return count;
}
/**
* @brief shell显示字符
*
* @param shell shel对象
* @param data 字符
*/
static void shellDisplayByte(SHELL_TypeDef *shell, char data)
{
if (shell->write == NULL)
{
return;
}
shell->write(data);
}
#if SHELL_USING_VAR == 1 || SHELL_DISPLAY_RETURN == 1
/**
* @brief shell显示值
*
* @param shell shell对象
* @param value 值
*/
static void shellDisplayValue(SHELL_TypeDef *shell, int value)
{
char str[11] = "0000000000";
unsigned int v = value;
char i = 10;
char tmp;
if (value < 0)
{
shellDisplay(shell, "-");
v = -v;
}
while (v)
{
str[--i] = v % 10 + 48;
v /= 10;
}
shellDisplay(shell, str + i - (value == 0));
v = value;
if (value < 0)
{
v = (unsigned int)value;
}
i = 8;
str[8] = 0;
while (v)
{
tmp = v & 0x0000000F;
str[--i] = (tmp > 9) ? (tmp + 87) : (tmp + 48);
v >>= 4;
}
shellDisplay(shell, ", 0x");
shellDisplay(shell, str);
shellDisplay(shell, "\r\n");
}
#endif
#if SHELL_DISPLAY_RETURN == 1
/**
* @brief shell显示函数调用返回值
*
* @param shell shel对象
* @param value 值
*/
static void shellDisplayReturn(SHELL_TypeDef *shell, int value)
{
shellDisplay(shell, "Return: ");
shellDisplayValue(shell, value);
}
#endif /** SHELL_DISPLAY_RETURN == 1 */
/**
* @brief shell字符串复制
*
* @param dest 目标字符串
* @param src 源字符串
* @return unsigned short 字符串长度
*/
static unsigned short shellStringCopy(char *dest, char* src)
{
unsigned short count = 0;
while (*(src + count))
{
*(dest + count) = *(src + count);
count++;
}
*(dest + count) = 0;
return count;
}
/**
* @brief shell字符串比较
*
* @param dest 目标字符串
* @param src 源字符串
* @return unsigned short 匹配长度
*/
static unsigned short shellStringCompare(char* dest, char *src)
{
unsigned short match = 0;
unsigned short i = 0;
while (*(dest +i) && *(src + i))
{
if (*(dest + i) != *(src +i))
{
break;
}
match ++;
i++;
}
return match;
}
/**
* @brief shell删除
*
* @param shell shell对象
* @param length 删除的长度
*/
static void shellDelete(SHELL_TypeDef *shell, unsigned short length)
{
while (length--)
{
shellDisplay(shell, "\b \b");
}
}
/**
* @brief shell清除输入
*
* @param shell shell对象
*/
static void shellClearLine(SHELL_TypeDef *shell)
{
for (short i = shell->length - shell->cursor; i > 0; i--)
{
shellDisplayByte(shell, ' ');
}
shellDelete(shell, shell->length);
}
/**
* @brief shell历史记录添加
*
* @param shell shell对象
*/
static void shellHistoryAdd(SHELL_TypeDef *shell)
{
shell->historyOffset = 0;
if (strcmp(shell->history[shell->historyFlag - 1], shell->buffer) == 0)
{
return;
}
if (shellStringCopy(shell->history[shell->historyFlag], shell->buffer) != 0)
{
shell->historyFlag++;
}
if (++shell->historyCount > SHELL_HISTORY_MAX_NUMBER)
{
shell->historyCount = SHELL_HISTORY_MAX_NUMBER;
}
if (shell->historyFlag >= SHELL_HISTORY_MAX_NUMBER)
{
shell->historyFlag = 0;
}
}
/**
* @brief shell历史记录查找
*
* @param shell shell对象
* @param dir 查找方向
*/
static void shellHistory(SHELL_TypeDef *shell, unsigned char dir)
{
#if SHELL_USING_AUTH == 1
if (!shell->status.authFlag)
{
return;
}
#endif
if (dir == 0)
{
if (shell->historyOffset--
<= -((shell->historyCount > shell->historyFlag)
? shell->historyCount : shell->historyFlag))
{
shell->historyOffset = -((shell->historyCount > shell->historyFlag)
? shell->historyCount : shell->historyFlag);
}
}
else if (dir == 1)
{
if (++shell->historyOffset > 0)
{
shell->historyOffset = 0;
return;
}
}
else
{
return;
}
shellClearLine(shell);
if (shell->historyOffset == 0)
{
shell->cursor = shell->length = 0;
}
else
{
if ((shell->length = shellStringCopy(shell->buffer,
shell->history[(shell->historyFlag + SHELL_HISTORY_MAX_NUMBER
+ shell->historyOffset) % SHELL_HISTORY_MAX_NUMBER])) == 0)
{
return;
}
shell->cursor = shell->length;
shellDisplay(shell, shell->buffer);
}
}
/**
* @brief shell回车输入处理
*
* @param shell shell对象
*/
static void shellEnter(SHELL_TypeDef *shell)
{
unsigned char paramCount = 0;
unsigned char quotes = 0;
unsigned char record = 1;
SHELL_CommandTypeDef *base;
unsigned char runFlag = 0;
int returnValue;
(void) returnValue;
#if SHELL_USING_AUTH == 1
if(shell->status.authFlag == 0)
{
if((shell->length != strlen(SHELL_USER_PASSWORD))
||(strncmp(shell->buffer, SHELL_USER_PASSWORD, strlen(SHELL_USER_PASSWORD)) != 0))
{
shellDisplay(shell, shellText[TEXT_PWD_ERROR]);
shellDisplay(shell, shellText[TEXT_PWD_HINT]);
}
else
{
shell->status.authFlag = 1;
shellDisplay(shell, shellText[TEXT_PWD_RIGHT]);
shellDisplay(shell, shellText[TEXT_INFO]);
shellDisplay(shell, shell->command);
}
shell->length = 0;
shell->cursor = 0;
return;
}
#endif
if (shell->length == 0)
{
shellDisplay(shell, shell->command);
return;
}
*(shell->buffer + shell->length++) = 0;
shellHistoryAdd(shell);
for (unsigned short i = 0; i < shell->length; i++)
{
if ((quotes != 0 ||
(*(shell->buffer + i) != ' ' &&
*(shell->buffer + i) != '\t' &&
*(shell->buffer + i) != ',')) &&
*(shell->buffer + i) != 0)
{
if (*(shell->buffer + i) == '\"')
{
quotes = quotes ? 0 : 1;
#if SHELL_AUTO_PRASE == 0
*(shell->buffer + i) = 0;
continue;
#endif
}
if (record == 1)
{
shell->param[paramCount++] = shell->buffer + i;
record = 0;
}
if (*(shell->buffer + i) == '\\' &&
*(shell->buffer + i) != 0)
{
i++;
}
}
else
{
*(shell->buffer + i) = 0;
record = 1;
}
}
shell->length = 0;
shell->cursor = 0;
if (paramCount == 0)
{
shellDisplay(shell, shell->command);
return;
}
shellDisplay(shell, "\r\n");
base = shell->commandBase;
if (strcmp((const char *)shell->param[0], "help") == 0)
{
shell->status.isActive = 1;
shellHelp(paramCount, shell->param);
shell->status.isActive = 0;
shellDisplay(shell, shell->command);
return;
}
#if SHELL_USING_VAR == 1
if (shell->param[0][0] == '$')
{
shellDisplayVariable(shell, shell->param[0]);
shellDisplay(shell, shell->command);
return;
}
#endif /** SHELL_USING_VAR == 1 */
for (unsigned char i = 0; i < shell->commandNumber; i++)
{
if (strcmp((const char *)shell->param[0], (base + i)->name) == 0)
{
runFlag = 1;
shell->status.isActive = 1;
#if SHELL_AUTO_PRASE == 0
returnValue = (base + i)->function(paramCount, shell->param);
#else
returnValue = shellExtRun((base + i)->function, paramCount, shell->param);
#endif /** SHELL_AUTO_PRASE == 0 */
shell->status.isActive = 0;
#if SHELL_DISPLAY_RETURN == 1
shellDisplayReturn(shell, returnValue);
#endif /** SHELL_DISPLAY_RETURN == 1 */
break;
}
}
if (runFlag == 0)
{
shellDisplay(shell, shellText[TEXT_CMD_NONE]);
}
shellDisplay(shell, shell->command);
}
/**
* @brief shell退格输入处理
*
* @param shell shell对象
*/
static void shellBackspace(SHELL_TypeDef *shell)
{
if (shell->length == 0)
{
return;
}
if (shell->cursor == shell->length)
{
shell->length--;
shell->cursor--;
shell->buffer[shell->length] = 0;
shellDelete(shell, 1);
}
else if (shell->cursor > 0)
{
for (short i = 0; i < shell->length - shell->cursor; i++)
{
shell->buffer[shell->cursor + i - 1] = shell->buffer[shell->cursor + i];
}
shell->length--;
shell->cursor--;
shell->buffer[shell->length] = 0;
shellDisplayByte(shell, '\b');
for (short i = shell->cursor; i < shell->length; i++)
{
shellDisplayByte(shell, shell->buffer[i]);
}
shellDisplayByte(shell, ' ');
for (short i = shell->length - shell->cursor + 1; i > 0; i--)
{
shellDisplayByte(shell, '\b');
}
}
}
/**
* @brief shell Tab键输入处理
*
* @param shell shell对象
*/
static void shellTab(SHELL_TypeDef *shell)
{
unsigned short maxMatch = SHELL_COMMAND_MAX_LENGTH;
unsigned short lastMatchIndex = 0;
unsigned short matchNum = 0;
unsigned short length;
SHELL_CommandTypeDef *base = shell->commandBase;
#if SHELL_USING_AUTH == 1
if (!shell->status.authFlag)
{
return;
}
#endif
if (shell->length != 0)
{
shell->buffer[shell->length] = 0;
for (short i = 0; i < shell->commandNumber; i++)
{
if (shellStringCompare(shell->buffer,
(char *)(base + i)->name)
== shell->length)
{
if (matchNum != 0)
{
if (matchNum == 1)
{
shellDisplay(shell, "\r\n");
}
shellDisplayItem(shell, lastMatchIndex);
length = shellStringCompare((char *)(base + lastMatchIndex)->name,
(char *)(base +i)->name);
maxMatch = (maxMatch > length) ? length : maxMatch;
}
lastMatchIndex = i;
matchNum ++;
}
}
if (matchNum == 0)
{
return;
}
if (matchNum == 1)
{
shellClearLine(shell);
}
if (matchNum != 0)
{
shell->length = shellStringCopy(shell->buffer,
(char *)(base + lastMatchIndex)->name);
}
if (matchNum > 1)
{
shellDisplayItem(shell, lastMatchIndex);
shellDisplay(shell, shell->command);
shell->length = maxMatch;
}
shell->buffer[shell->length] = 0;
shell->cursor = shell->length;
shellDisplay(shell, shell->buffer);
}
else
{
shell->status.isActive = 1;
shellHelp(1, (void *)0);
shell->status.isActive = 0;
shellDisplay(shell, shell->command);
}
#if SHELL_LONG_HELP == 1
if (SHELL_GET_TICK())
{
if (matchNum == 1
&& shell->status.tabFlag == 1
&& SHELL_GET_TICK() - shell->activeTime < SHELL_DOUBLE_CLICK_TIME)
{
shellClearLine(shell);
for (short i = shell->length; i >= 0; i--)
{
shell->buffer[i + 5] = shell->buffer[i];
}
shellStringCopy(shell->buffer, "help");
shell->buffer[4] = ' ';
shell->length += 5;
shell->cursor = shell->length;
shellDisplay(shell, shell->buffer);
}
}
#endif /** SHELL_LONG_HELP == 1 */
}
/**
* @brief shell正常按键处理
*
* @param shell shell对象
* @param data 输入的数据
*/
static void shellNormal(SHELL_TypeDef *shell, char data)
{
if (data == 0)
{
return;
}
if (shell->length < SHELL_COMMAND_MAX_LENGTH - 1)
{
if (shell->length == shell->cursor)
{
shell->buffer[shell->length++] = data;
shell->cursor++;
shellDisplayByte(shell, data);
}
else
{
for (short i = shell->length - shell->cursor; i > 0; i--)
{
shell->buffer[shell->cursor + i] = shell->buffer[shell->cursor + i - 1];
}
shell->buffer[shell->cursor++] = data;
shell->buffer[++shell->length] = 0;
for (short i = shell->cursor - 1; i < shell->length; i++)
{
shellDisplayByte(shell, shell->buffer[i]);
}
for (short i = shell->length - shell->cursor; i > 0; i--)
{
shellDisplayByte(shell, '\b');
}
}
}
else
{
shellDisplay(shell, shellText[TEXT_CMD_TOO_LONG]);
shellDisplay(shell, shell->command);
shellDisplay(shell, shell->buffer);
shell->cursor = shell->length;
}
}
/**
* @brief shell开始ansi控制序列
*
* @param shell shell对象
*/
static void shellAnsiStart(SHELL_TypeDef *shell)
{
shell->status.inputMode = SHELL_ANSI_ESC;
}
/**
* @brief shell ansi控制序列处理
*
* @param shell shell对象
* @param data 输入的数据
*/
void shellAnsi(SHELL_TypeDef *shell, char data)
{
switch ((unsigned char)(shell->status.inputMode))
{
case SHELL_ANSI_CSI:
switch (data)
{
case 0x41: /** 方向上键 */
shellHistory(shell, 0);
break;
case 0x42: /** 方向下键 */
shellHistory(shell, 1);
break;
case 0x43: /** 方向右键 */
if (shell->cursor < shell->length)
{
shellDisplayByte(shell, shell->buffer[shell->cursor]);
shell->cursor++;
}
break;
case 0x44: /** 方向左键 */
if (shell->cursor > 0)
{
shellDisplayByte(shell, '\b');
shell->cursor--;
}
break;
default:
break;
}
shell->status.inputMode = SHELL_IN_NORMAL;
break;
case SHELL_ANSI_ESC:
if (data == 0x5B)
{
shell->status.inputMode = SHELL_ANSI_CSI;
}
else
{
shell->status.inputMode = SHELL_IN_NORMAL;
}
break;
default:
break;
}
}
/**
* @brief shell处理
*
* @param shell shell对象
* @param data 输入数据
*/
void shellHandler(SHELL_TypeDef *shell, char data)
{
#if SHELL_USING_AUTH == 1 && SHELL_LOCK_TIMEOUT > 0
if (SHELL_GET_TICK())
{
if (SHELL_GET_TICK() - shell->activeTime > SHELL_LOCK_TIMEOUT)
{
shell->status.authFlag = 0;
}
}
#endif
if (shell->status.inputMode == SHELL_IN_NORMAL)
{
char keyDefFind = 0;
SHELL_KeyFunctionDef *base = (SHELL_KeyFunctionDef *)shell->keyFuncBase;
#if SHELL_USING_AUTH == 1
if (shell->status.authFlag == 1)
{
#endif
for (short i = 0; i < shell->keyFuncNumber; i++)
{
if (base[i].keyCode == data) {
if (base[i].keyFunction) {
base[i].keyFunction(shell);
}
keyDefFind = 1;
}
}