]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Debug/cli/cli.c
Adding basic Tab completion.
[kiibohd-controller.git] / Debug / cli / cli.c
1 /* Copyright (C) 2014 by Jacob Alexander
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 // ----- Includes -----
23
24 // Compiler Includes
25 //#include <stdarg.h>
26
27 // Project Includes
28 #include <buildvars.h>
29 #include "cli.h"
30 #include <led.h>
31 #include <print.h>
32
33
34
35 // ----- Variables -----
36
37 // Basic command dictionary
38 char*       basicCLIDictName = "General Commands";
39 CLIDictItem basicCLIDict[] = {
40         { "cliDebug", "Enables/Disables hex output of the most recent cli input.", cliFunc_cliDebug },
41         { "help",     "You're looking at it :P", cliFunc_help },
42         { "led",      "Enables/Disables indicator LED. Try a couple times just in case the LED is in an odd state.\r\n\t\t\033[33mWarning\033[0m: May adversely affect some modules...", cliFunc_led },
43         { "reload",   "Signals microcontroller to reflash/reload.", cliFunc_reload },
44         { "reset",    "Resets the terminal back to initial settings.", cliFunc_reset },
45         { "restart",  "Sends a software restart, should be similar to powering on the device.", cliFunc_restart },
46         { "version",  "Version information about this firmware.", cliFunc_version },
47         { 0, 0, 0 } // Null entry for dictionary end
48 };
49
50
51
52 // ----- Functions -----
53
54 inline void prompt()
55 {
56         print("\033[2K\r"); // Erases the current line and resets cursor to beginning of line
57         print("\033[1;34m:\033[0m "); // Blue bold prompt
58 }
59
60 // Initialize the CLI
61 inline void init_cli()
62 {
63         // Reset the Line Buffer
64         CLILineBufferCurrent = 0;
65
66         // Set prompt
67         prompt();
68
69         // Register first dictionary
70         CLIDictionariesUsed = 0;
71         registerDictionary_cli( basicCLIDict, basicCLIDictName );
72
73         // Initialize main LED
74         init_errorLED();
75         CLILEDState = 0;
76
77         // Hex debug mode is off by default
78         CLIHexDebugMode = 0;
79 }
80
81 // Query the serial input buffer for any new characters
82 void process_cli()
83 {
84         // Current buffer position
85         uint8_t prev_buf_pos = CLILineBufferCurrent;
86
87         // Process each character while available
88         int result = 0;
89         while ( 1 )
90         {
91                 // No more characters to process
92                 result = usb_serial_getchar(); // Retrieve from serial module // TODO Make USB agnostic
93                 if ( result == -1 )
94                         break;
95
96                 char cur_char = (char)result;
97
98                 // Make sure buffer isn't full
99                 if ( CLILineBufferCurrent >= CLILineBufferMaxSize )
100                 {
101                         print( NL );
102                         erro_print("Serial line buffer is full, dropping character and resetting...");
103
104                         // Clear buffer
105                         CLILineBufferCurrent = 0;
106
107                         // Reset the prompt
108                         prompt();
109
110                         return;
111                 }
112
113                 // Place into line buffer
114                 CLILineBuffer[CLILineBufferCurrent++] = cur_char;
115         }
116
117         // Display Hex Key Input if enabled
118         if ( CLIHexDebugMode && CLILineBufferCurrent > prev_buf_pos )
119         {
120                 print("\033[s\r\n"); // Save cursor position, and move to the next line
121                 print("\033[2K");    // Erases the current line
122
123                 uint8_t pos = prev_buf_pos;
124                 while ( CLILineBufferCurrent > pos )
125                 {
126                         printHex( CLILineBuffer[pos++] );
127                         print(" ");
128                 }
129
130                 print("\033[u"); // Restore cursor position
131         }
132
133         // If buffer has changed, output to screen while there are still characters in the buffer not displayed
134         while ( CLILineBufferCurrent > prev_buf_pos )
135         {
136                 // Check for control characters
137                 switch ( CLILineBuffer[prev_buf_pos] )
138                 {
139                 case 0x0D: // Enter
140                         CLILineBufferCurrent--; // Remove the Enter
141
142                         // Process the current line buffer
143                         commandLookup_cli();
144
145                         // Reset the buffer
146                         CLILineBufferCurrent = 0;
147
148                         // Reset the prompt after processing has finished
149                         print( NL );
150                         prompt();
151
152                         // XXX There is a potential bug here when resetting the buffer (losing valid keypresses)
153                         //     Doesn't look like it will happen *that* often, so not handling it for now -HaaTa
154                         return;
155
156                 case 0x09: // Tab
157                         // Tab completion for the current command
158                         tabCompletion_cli();
159
160                         CLILineBufferCurrent--; // Remove the Tab
161
162                         // XXX There is a potential bug here when resetting the buffer (losing valid keypresses)
163                         //     Doesn't look like it will happen *that* often, so not handling it for now -HaaTa
164                         return;
165
166                 case 0x1B: // Esc
167                         // Check for escape sequence
168                         // TODO
169                         return;
170
171                 case 0x08:
172                 case 0x7F: // Backspace
173                         // TODO - Does not handle case for arrow editing (arrows disabled atm)
174                         CLILineBufferCurrent--; // Remove the backspace
175
176                         // If there are characters in the buffer
177                         if ( CLILineBufferCurrent > 0 )
178                         {
179                                 // Remove character from current position in the line buffer
180                                 CLILineBufferCurrent--;
181
182                                 // Remove character from tty
183                                 print("\b \b");
184                         }
185
186                         break;
187
188                 default:
189                         // Place a null on the end (to use with string print)
190                         CLILineBuffer[CLILineBufferCurrent] = '\0';
191
192                         // Output buffer to screen
193                         dPrint( &CLILineBuffer[prev_buf_pos] );
194
195                         // Buffer reset
196                         prev_buf_pos++;
197
198                         break;
199                 }
200         }
201 }
202
203 // Takes a string, returns two pointers
204 //  One to the first non-space character
205 //  The second to the next argument (first NULL if there isn't an argument). delimited by a space
206 //  Places a NULL at the first space after the first argument
207 inline void argumentIsolation_cli( char* string, char** first, char** second )
208 {
209         // Mark out the first argument
210         // This is done by finding the first space after a list of non-spaces and setting it NULL
211         char* cmdPtr = string - 1;
212         while ( *++cmdPtr == ' ' ); // Skips leading spaces, and points to first character of cmd
213
214         // Locates first space delimiter
215         char* argPtr = cmdPtr + 1;
216         while ( *argPtr != ' ' && *argPtr != '\0' )
217                 argPtr++;
218
219         // Point to the first character of args or a NULL (no args) and set the space delimiter as a NULL
220         (++argPtr)[-1] = '\0';
221
222         // Set return variables
223         *first = cmdPtr;
224         *second = argPtr;
225 }
226
227 // Scans the CLILineBuffer for any valid commands
228 void commandLookup_cli()
229 {
230         // Ignore command if buffer is 0 length
231         if ( CLILineBufferCurrent == 0 )
232                 return;
233
234         // Set the last+1 character of the buffer to NULL for string processing
235         CLILineBuffer[CLILineBufferCurrent] = '\0';
236
237         // Retrieve pointers to command and beginning of arguments
238         // Places a NULL at the first space after the command
239         char* cmdPtr;
240         char* argPtr;
241         argumentIsolation_cli( CLILineBuffer, &cmdPtr, &argPtr );
242
243         // Scan array of dictionaries for a valid command match
244         for ( uint8_t dict = 0; dict < CLIDictionariesUsed; dict++ )
245         {
246                 // Parse each cmd until a null command entry is found, or an argument match
247                 for ( uint8_t cmd = 0; CLIDict[dict][cmd].name != 0; cmd++ )
248                 {
249                         // Compare the first argument and each command entry
250                         if ( eqStr( cmdPtr, CLIDict[dict][cmd].name ) == -1 )
251                         {
252                                 // Run the specified command function pointer
253                                 //   argPtr is already pointing at the first character of the arguments
254                                 (*CLIDict[dict][cmd].function)( argPtr );
255
256                                 return;
257                         }
258                 }
259         }
260
261         // No match for the command...
262         print( NL );
263         erro_dPrint("\"", CLILineBuffer, "\" is not a valid command...type \033[35mhelp\033[0m");
264 }
265
266 // Registers a command dictionary with the CLI
267 inline void registerDictionary_cli( CLIDictItem *cmdDict, char* dictName )
268 {
269         // Make sure this max limit of dictionaries hasn't been reached
270         if ( CLIDictionariesUsed >= CLIMaxDictionaries )
271         {
272                 erro_print("Max number of dictionaries defined already...");
273                 return;
274         }
275
276         // Add dictionary
277         CLIDictNames[CLIDictionariesUsed] = dictName;
278         CLIDict[CLIDictionariesUsed++] = cmdDict;
279 }
280
281 inline void tabCompletion_cli()
282 {
283         // Ignore command if buffer is 0 length
284         if ( CLILineBufferCurrent == 0 )
285                 return;
286
287         // Set the last+1 character of the buffer to NULL for string processing
288         CLILineBuffer[CLILineBufferCurrent] = '\0';
289
290         // Retrieve pointers to command and beginning of arguments
291         // Places a NULL at the first space after the command
292         char* cmdPtr;
293         char* argPtr;
294         argumentIsolation_cli( CLILineBuffer, &cmdPtr, &argPtr );
295
296         // Tab match pointer
297         char* tabMatch = 0;
298         uint8_t matches = 0;
299
300         // Scan array of dictionaries for a valid command match
301         for ( uint8_t dict = 0; dict < CLIDictionariesUsed; dict++ )
302         {
303                 // Parse each cmd until a null command entry is found, or an argument match
304                 for ( uint8_t cmd = 0; CLIDict[dict][cmd].name != 0; cmd++ )
305                 {
306                         // Compare the first argument piece to each command entry to see if it is "like"
307                         // NOTE: To save on processing, we only care about the commands and ignore the arguments
308                         //       If there are arguments, and a valid tab match is found, buffer is cleared (args lost)
309                         //       Also ignores full matches
310                         if ( eqStr( cmdPtr, CLIDict[dict][cmd].name ) == 0 )
311                         {
312                                 // TODO Make list of commands if multiple matches
313                                 matches++;
314                                 tabMatch = CLIDict[dict][cmd].name;
315                         }
316                 }
317         }
318
319         // Only tab complete if there was 1 match
320         if ( matches == 1 )
321         {
322                 // Reset the buffer
323                 CLILineBufferCurrent = 0;
324
325                 // Reprint the prompt (automatically clears the line)
326                 prompt();
327
328                 // Display the command
329                 dPrint( tabMatch );
330
331                 // There are no index counts, so just copy the whole string to the input buffer
332                 while ( *tabMatch != '\0' )
333                 {
334                         CLILineBuffer[CLILineBufferCurrent++] = *tabMatch++;
335                 }
336         }
337 }
338
339
340
341 // ----- CLI Command Functions -----
342
343 void cliFunc_cliDebug( char* args )
344 {
345         // Toggle Hex Debug Mode
346         if ( CLIHexDebugMode )
347         {
348                 print( NL );
349                 info_print("Hex debug mode disabled...");
350                 CLIHexDebugMode = 0;
351         }
352         else
353         {
354                 print( NL );
355                 info_print("Hex debug mode enabled...");
356                 CLIHexDebugMode = 1;
357         }
358 }
359
360 void cliFunc_help( char* args )
361 {
362         // Scan array of dictionaries and print every description
363         //  (no alphabetical here, too much processing/memory to sort...)
364         for ( uint8_t dict = 0; dict < CLIDictionariesUsed; dict++ )
365         {
366                 // Print the name of each dictionary as a title
367                 dPrintStrsNL( NL, "\033[1;32m", CLIDictNames[dict], "\033[0m" );
368
369                 // Parse each cmd/description until a null command entry is found
370                 for ( uint8_t cmd = 0; CLIDict[dict][cmd].name != 0; cmd++ )
371                 {
372                         dPrintStrs(" \033[35m", CLIDict[dict][cmd].name, "\033[0m");
373
374                         // Determine number of spaces to tab by the length of the command and TabAlign
375                         uint8_t padLength = CLIEntryTabAlign - lenStr( CLIDict[dict][cmd].name );
376                         while ( padLength-- > 0 )
377                                 print(" ");
378
379                         dPrintStrNL( CLIDict[dict][cmd].description );
380                 }
381         }
382 }
383
384 void cliFunc_led( char* args )
385 {
386         CLILEDState ^= 1 << 1; // Toggle between 0 and 1
387         errorLED( CLILEDState ); // Enable/Disable error LED
388 }
389
390 void cliFunc_reload( char* args )
391 {
392         // Request to output module to be set into firmware reload mode
393         output_firmwareReload();
394 }
395
396 void cliFunc_reset( char* args )
397 {
398         print("\033c"); // Resets the terminal
399 }
400
401 void cliFunc_restart( char* args )
402 {
403         // Trigger an overall software reset
404         SOFTWARE_RESET();
405 }
406
407 void cliFunc_version( char* args )
408 {
409         print( NL );
410         print( " \033[1mRevision:\033[0m      " CLI_Revision       NL );
411         print( " \033[1mBranch:\033[0m        " CLI_Branch         NL );
412         print( " \033[1mTree Status:\033[0m   " CLI_ModifiedStatus NL );
413         print( " \033[1mRepo Origin:\033[0m   " CLI_RepoOrigin     NL );
414         print( " \033[1mCommit Date:\033[0m   " CLI_CommitDate     NL );
415         print( " \033[1mCommit Author:\033[0m " CLI_CommitAuthor   NL );
416         print( " \033[1mBuild Date:\033[0m    " CLI_BuildDate      NL );
417         print( " \033[1mBuild OS:\033[0m      " CLI_BuildOS        NL );
418         print( " \033[1mArchitecture:\033[0m  " CLI_Arch           NL );
419         print( " \033[1mChip:\033[0m          " CLI_Chip           NL );
420         print( " \033[1mCPU:\033[0m           " CLI_CPU            NL );
421         print( " \033[1mDevice:\033[0m        " CLI_Device         NL );
422         print( " \033[1mModules:\033[0m       " CLI_Modules        NL );
423 }
424