Whamcloud - gitweb
fix readline
[fs/lustre-release.git] / lustre / utils / parser.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2001 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.sf.net/projects/lustre/
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <ctype.h>
25 #include <string.h>
26 #include <stddef.h>
27 #include <unistd.h>
28 #include <sys/param.h>
29 #include <assert.h>
30
31 #include <config.h>
32 #ifdef HAVE_LIBREADLINE
33 #define READLINE_LIBRARY
34 #include <readline/readline.h>
35
36 //extern char **completion_matches __P((char *, rl_compentry_func_t *));
37 extern void using_history(void);
38 extern void stifle_history(int);
39 extern void add_history(char *);
40 #endif
41
42 #include "parser.h"
43
44 static command_t * top_level;           /* Top level of commands, initialized by
45                                     * InitParser                              */
46 static char * parser_prompt = NULL;/* Parser prompt, set by InitParser      */
47 static int done;                   /* Set to 1 if user types exit or quit   */
48
49
50 /* static functions */
51 static char *skipwhitespace(char *s);
52 static char *skiptowhitespace(char *s);
53 static command_t *find_cmd(char *name, command_t cmds[], char **next);
54 static int process(char *s, char **next, command_t *lookup, command_t **result,
55                    char **prev);
56 static void print_commands(char *str, command_t *table);
57
58 static char * skipwhitespace(char * s) 
59 {
60         char * t;
61         int    len;
62
63         len = (int)strlen(s);
64         for (t = s; t <= s + len && isspace(*t); t++);
65         return(t);
66 }
67
68
69 static char * skiptowhitespace(char * s) 
70 {
71         char * t;
72
73         for (t = s; *t && !isspace(*t); t++);
74         return(t);
75 }
76
77 static int line2args(char *line, char **argv, int maxargs)
78 {
79         char *arg;
80         int i = 0; 
81     
82         arg = strtok(line, " \t");
83         if ( arg ) {
84                 argv[i] = arg;
85                 i++;
86         } else 
87                 return 0;
88
89         while( (arg = strtok(NULL, " \t")) && (i <= maxargs)) {
90                 argv[i] = arg;
91                 i++;
92         }
93         return i;
94 }
95
96 /* find a command -- return it if unique otherwise print alternatives */
97 static command_t *Parser_findargcmd(char *name, command_t cmds[])
98 {
99         command_t *cmd;
100
101         for (cmd = cmds; cmd->pc_name; cmd++) {
102                 if (strcmp(name, cmd->pc_name) == 0)
103                         return cmd;
104         }
105         return NULL;
106 }
107
108 int Parser_execarg(int argc, char **argv, command_t cmds[])
109 {
110         command_t *cmd;
111
112         cmd = Parser_findargcmd(argv[0], cmds);
113         if ( cmd ) {
114                 return (cmd->pc_func)(argc, argv);
115         } else {
116                 printf("Try interactive use without arguments or use one of:\n");
117                 for (cmd = cmds; cmd->pc_name; cmd++)
118                         printf("\"%s\" ", cmd->pc_name);
119                 printf("\nas argument.\n");
120         }
121         return -1;
122 }
123
124 /* returns the command_t * (NULL if not found) corresponding to a
125    _partial_ match with the first token in name.  It sets *next to
126    point to the following token. Does not modify *name. */
127 static command_t * find_cmd(char * name, command_t cmds[], char ** next) 
128 {
129         int    i, len;
130     
131         if (!cmds || !name ) 
132                 return NULL;
133     
134         /* This sets name to point to the first non-white space character,
135            and next to the first whitespace after name, len to the length: do
136            this with strtok*/
137         name = skipwhitespace(name);
138         *next = skiptowhitespace(name);
139         len = *next - name;
140         if (len == 0) 
141                 return NULL;
142
143         for (i = 0; cmds[i].pc_name; i++) {
144                 if (strncasecmp(name, cmds[i].pc_name, len) == 0) {
145                         *next = skipwhitespace(*next);
146                         return(&cmds[i]);
147                 }
148         }
149         return NULL;
150 }
151
152 /* Recursively process a command line string s and find the command
153    corresponding to it. This can be ambiguous, full, incomplete,
154    non-existent. */
155 static int process(char *s, char ** next, command_t *lookup,
156                    command_t **result, char **prev)
157 {
158         *result = find_cmd(s, lookup, next);
159         *prev = s; 
160
161         /* non existent */
162         if ( ! *result ) 
163                 return CMD_NONE;
164
165         /* found entry: is it ambigous, i.e. not exact command name and
166            more than one command in the list matches.  Note that find_cmd
167            points to the first ambiguous entry */
168         if ( strncasecmp(s, (*result)->pc_name, strlen((*result)->pc_name)) &&
169              find_cmd(s, (*result) + 1, next)) 
170                 return CMD_AMBIG;
171
172         /* found a unique command: component or full? */
173         if ( (*result)->pc_func ) {
174                 return CMD_COMPLETE;
175         } else {
176                 if ( *next == '\0' ) {
177                         return CMD_INCOMPLETE;
178                 } else {
179                         return process(*next, next, (*result)->pc_sub_cmd, result, prev);
180                 }
181         }
182 }
183
184 #ifdef HAVE_LIBREADLINE
185 static command_t * match_tbl;   /* Command completion against this table */
186 static char * command_generator(const char * text, int state)
187 {
188         static int index,
189                 len;
190         char       *name;
191
192         /* Do we have a match table? */
193         if (!match_tbl)
194                 return NULL;
195
196         /* If this is the first time called on this word, state is 0 */
197         if (!state) {
198                 index = 0;
199                 len = (int)strlen(text);
200         }
201
202         /* Return next name in the command list that paritally matches test */
203         while ( (name = (match_tbl + index)->pc_name) ) {
204                 index++;
205
206                 if (strncasecmp(name, text, len) == 0) {
207                         return(strdup(name));
208                 }
209         }
210
211         /* No more matches */
212         return NULL;
213 }
214
215 /* probably called by readline */
216 static char **command_completion(char * text, int start, int end)
217 {
218         command_t         * table;
219         char        * pos;
220
221         match_tbl = top_level;
222         for (table = find_cmd(rl_line_buffer, match_tbl, &pos);
223              table;
224              table = find_cmd(pos, match_tbl, &pos)) {
225
226                 if (*(pos - 1) == ' ') match_tbl = table->pc_sub_cmd;
227         }
228
229         return(completion_matches(text, command_generator));
230 }
231 #endif
232
233 /* take a string and execute the function or print help */
234 int execute_line(char * line)
235 {
236         command_t         *cmd, *ambig;
237         char *prev;
238         char *next, *tmp;
239         char *argv[MAXARGS];
240         int         i;
241         int rc = 0;
242
243         switch( process(line, &next, top_level, &cmd, &prev) ) {
244         case CMD_AMBIG:
245                 fprintf(stderr, "Ambiguous command \'%s\'\nOptions: ", line);
246                 while( (ambig = find_cmd(prev, cmd, &tmp)) ) {
247                         fprintf(stderr, "%s ", ambig->pc_name);
248                         cmd = ambig + 1;
249                 }
250                 fprintf(stderr, "\n");
251                 break;
252         case CMD_NONE:
253                 fprintf(stderr, "No such command, type help\n");
254                 break;
255         case CMD_INCOMPLETE:
256                 fprintf(stderr,
257                         "'%s' incomplete command.  Use '%s x' where x is one of:\n",
258                         line, line);
259                 fprintf(stderr, "\t");
260                 for (i = 0; cmd->pc_sub_cmd[i].pc_name; i++) {
261                         fprintf(stderr, "%s ", cmd->pc_sub_cmd[i].pc_name);
262                 }
263                 fprintf(stderr, "\n");
264                 break;
265         case CMD_COMPLETE:
266                 i = line2args(line, argv, MAXARGS);
267                 rc = (cmd->pc_func)(i, argv);
268
269                 if (rc == CMD_HELP)
270                         fprintf(stderr, "%s\n", cmd->pc_help);
271
272                 break;
273         }
274
275         return rc;
276 }
277
278 int
279 noop_fn ()
280 {
281         return (0);
282 }
283
284 /* just in case you're ever in an airplane and discover you 
285    forgot to install readline-dev. :) */
286 int init_input() 
287 {
288         int   interactive = isatty (fileno (stdin));
289
290 #ifdef HAVE_LIBREADLINE
291         using_history();
292         stifle_history(HISTORY);
293
294         if (!interactive)
295         {
296                 rl_prep_term_function = (rl_vintfunc_t *)noop_fn;
297                 rl_deprep_term_function = (rl_voidfunc_t *)noop_fn;
298         }
299
300         rl_attempted_completion_function = (CPPFunction *)command_completion;
301         rl_completion_entry_function = (void *)command_generator;
302 #endif 
303         return interactive;
304 }
305
306 #ifndef HAVE_LIBREADLINE
307 #define add_history(s)
308 char * readline(char * prompt) 
309 {
310         char line[2048];
311         int n = 0;
312         if (prompt)
313                 printf ("%s", prompt);
314         if (fgets(line, sizeof(line), stdin) == NULL)
315                 return (NULL);
316         n = strlen(line);
317         if (n && line[n-1] == '\n')
318                 line[n-1] = '\0';
319         return strdup(line);
320 }
321 #endif
322
323 /* this is the command execution machine */
324 int Parser_commands(void)
325 {
326         char *line, *s;
327         int rc = 0;
328         int interactive;
329         
330         interactive = init_input();
331
332         while(!done) {
333                 line = readline(interactive ? parser_prompt : NULL);
334
335                 if (!line) break;
336
337                 s = skipwhitespace(line);
338
339                 if (*s) {
340                         add_history(s);
341                         rc = execute_line(s);
342                 }
343
344                 free(line);
345         }
346         return rc;
347 }
348
349
350 /* sets the parser prompt */
351 void Parser_init(char * prompt, command_t * cmds) 
352 {
353         done = 0;
354         top_level = cmds;
355         if (parser_prompt) free(parser_prompt);
356         parser_prompt = strdup(prompt);
357 }
358
359 /* frees the parser prompt */
360 void Parser_exit(int argc, char *argv[]) 
361 {
362         done = 1;
363         free(parser_prompt);
364         parser_prompt = NULL;
365 }
366
367 /* convert a string to an integer */
368 int Parser_int(char *s, int *val)
369 {
370         int ret;
371
372         if (*s != '0')
373                 ret = sscanf(s, "%d", val);
374         else if (*(s+1) != 'x')
375                 ret = sscanf(s, "%o", val);
376         else {
377                 s++;
378                 ret = sscanf(++s, "%x", val);
379         }
380
381         return(ret);
382 }
383
384
385 void Parser_qhelp(int argc, char *argv[]) {
386
387         printf("Available commands are:\n");
388
389         print_commands(NULL, top_level);
390         printf("For more help type: help command-name\n");
391 }
392
393 int Parser_help(int argc, char **argv) 
394 {
395         char line[1024];
396         char *next, *prev, *tmp;
397         command_t *result, *ambig;
398         int i;
399
400         if ( argc == 1 ) {
401                 Parser_qhelp(argc, argv);
402                 return 0;
403         }
404
405         line[0]='\0';
406         for ( i = 1 ;  i < argc ; i++ ) {
407                 strcat(line, argv[i]);
408         }
409
410         switch ( process(line, &next, top_level, &result, &prev) ) {
411         case CMD_COMPLETE:
412                 fprintf(stderr, "%s: %s\n",line, result->pc_help);
413                 break;
414         case CMD_NONE:
415                 fprintf(stderr, "%s: Unknown command.\n", line);
416                 break;
417         case CMD_INCOMPLETE:
418                 fprintf(stderr,
419                         "'%s' incomplete command.  Use '%s x' where x is one of:\n",
420                         line, line);
421                 fprintf(stderr, "\t");
422                 for (i = 0; result->pc_sub_cmd[i].pc_name; i++) {
423                         fprintf(stderr, "%s ", result->pc_sub_cmd[i].pc_name);
424                 }
425                 fprintf(stderr, "\n");
426                 break;
427         case CMD_AMBIG:
428                 fprintf(stderr, "Ambiguous command \'%s\'\nOptions: ", line);
429                 while( (ambig = find_cmd(prev, result, &tmp)) ) {
430                         fprintf(stderr, "%s ", ambig->pc_name);
431                         result = ambig + 1;
432                 }
433                 fprintf(stderr, "\n");
434                 break;
435         }
436         return 0;
437 }  
438
439
440 void Parser_printhelp(char *cmd)
441 {
442         char *argv[] = { "help", cmd }; 
443         Parser_help(2, argv);
444 }
445
446
447 /*************************************************************************
448  * COMMANDS                                                                 *
449  *************************************************************************/ 
450
451
452 static void print_commands(char * str, command_t * table) {
453         command_t * cmds;
454         char         buf[80];
455
456         for (cmds = table; cmds->pc_name; cmds++) {
457                 if (cmds->pc_func) {
458                         if (str) printf("\t%s %s\n", str, cmds->pc_name);
459                         else printf("\t%s\n", cmds->pc_name);
460                 }
461                 if (cmds->pc_sub_cmd) {
462                         if (str) {
463                                 sprintf(buf, "%s %s", str, cmds->pc_name);
464                                 print_commands(buf, cmds->pc_sub_cmd);
465                         } else {
466                                 print_commands(cmds->pc_name, cmds->pc_sub_cmd);
467                         }
468                 }
469         }
470 }
471
472 char *Parser_getstr(const char *prompt, const char *deft, char *res, 
473                     size_t len)
474 {
475         char *line = NULL;
476         int size = strlen(prompt) + strlen(deft) + 8;
477         char *theprompt;
478         theprompt = malloc(size);
479         assert(theprompt);
480
481         sprintf(theprompt, "%s [%s]: ", prompt, deft);
482
483         line  = readline(theprompt);
484         free(theprompt);
485
486         if ( line == NULL || *line == '\0' ) {
487                 strncpy(res, deft, len);
488         } else {
489                 strncpy(res, line, len);
490         }
491
492         if ( line ) {
493                 free(line);
494                 return res;
495         } else {
496                 return NULL;
497         }
498 }
499
500 /* get integer from prompt, loop forever to get it */
501 int Parser_getint(const char *prompt, long min, long max, long deft, int base)
502 {
503         int rc;
504         long result;
505         char *line;
506         int size = strlen(prompt) + 40;
507         char *theprompt = malloc(size);
508         assert(theprompt);
509         sprintf(theprompt,"%s [%ld, (0x%lx)]: ", prompt, deft, deft);
510
511         fflush(stdout);
512
513         do {
514                 line = NULL;
515                 line = readline(theprompt);
516                 if ( !line ) {
517                         fprintf(stdout, "Please enter an integer.\n");
518                         fflush(stdout);
519                         continue;
520                 }
521                 if ( *line == '\0' ) {
522                         free(line);
523                         result =  deft;
524                         break;
525                 }
526                 rc = Parser_arg2int(line, &result, base);
527                 free(line);
528                 if ( rc != 0 ) {
529                         fprintf(stdout, "Invalid string.\n");
530                         fflush(stdout);
531                 } else if ( result > max || result < min ) {
532                         fprintf(stdout, "Error: response must lie between %ld and %ld.\n",
533                                 min, max);
534                         fflush(stdout);
535                 } else {
536                         break;
537                 }
538         } while ( 1 ) ;
539
540         if (theprompt)
541                 free(theprompt);
542         return result;
543
544 }
545
546 /* get boolean (starting with YyNn; loop forever */
547 int Parser_getbool(const char *prompt, int deft)
548 {
549         int result = 0;
550         char *line;
551         int size = strlen(prompt) + 8;
552         char *theprompt = malloc(size);
553         assert(theprompt);
554
555         fflush(stdout);
556     
557         if ( deft != 0 && deft != 1 ) {
558                 fprintf(stderr, "Error: Parser_getbool given bad default (%d).\n",
559                         deft);
560                 assert ( 0 );
561         }
562         sprintf(theprompt, "%s [%s]: ", prompt, (deft==0)? "N" : "Y");
563
564         do {
565                 line = NULL;
566                 line = readline(theprompt);
567                 if ( line == NULL ) {
568                         result = deft;
569                         break;
570                 }
571                 if ( *line == '\0' ) {
572                         result = deft;
573                         break;
574                 }
575                 if ( *line == 'y' || *line == 'Y' ) {
576                         result = 1;
577                         break;
578                 }
579                 if ( *line == 'n' || *line == 'N' ) {
580                         result = 0;
581                         break;
582                 }
583                 if ( line ) 
584                         free(line);
585                 fprintf(stdout, "Invalid string. Must start with yY or nN\n");
586                 fflush(stdout);
587         } while ( 1 );
588
589         if ( line ) 
590                 free(line);
591         if ( theprompt ) 
592                 free(theprompt);
593         return result;
594 }
595
596 /* parse int out of a string or prompt for it */
597 long Parser_intarg(const char *inp, const char *prompt, int deft,
598                    int min, int max, int base)
599 {
600         long result;
601         int rc; 
602     
603         rc = Parser_arg2int(inp, &result, base);
604
605         if ( rc == 0 ) {
606                 return result;
607         } else {
608                 return Parser_getint(prompt, deft, min, max, base);
609         }
610 }
611
612 /* parse int out of a string or prompt for it */
613 char *Parser_strarg(char *inp, const char *prompt, const char *deft,
614                     char *answer, int len)
615 {
616         if ( inp == NULL || *inp == '\0' ) {
617                 return Parser_getstr(prompt, deft, answer, len);
618         } else 
619                 return inp;
620 }
621
622 /* change a string into a number: return 0 on success. No invalid characters
623    allowed. The processing of base and validity follows strtol(3)*/
624 int Parser_arg2int(const char *inp, long *result, int base)
625 {
626         char *endptr;
627
628         if ( (base !=0) && (base < 2 || base > 36) )
629                 return 1;
630
631         *result = strtol(inp, &endptr, base);
632
633         if ( *inp != '\0' && *endptr == '\0' )
634                 return 0;
635         else 
636                 return 1;
637 }
638
639 /* Convert human readable size string to and int; "1k" -> 1000 */
640 int Parser_size (int *sizep, char *str) {
641         int size;
642         char mod[32];
643
644         switch (sscanf (str, "%d%1[gGmMkK]", &size, mod)) {
645         default:
646                 return (-1);
647
648         case 1:
649                 *sizep = size;
650                 return (0);
651
652         case 2:
653                 switch (*mod) {
654                 case 'g':
655                 case 'G':
656                         *sizep = size << 30;
657                         return (0);
658
659                 case 'm':
660                 case 'M':
661                         *sizep = size << 20;
662                         return (0);
663
664                 case 'k':
665                 case 'K':
666                         *sizep = size << 10;
667                         return (0);
668
669                 default:
670                         *sizep = size;
671                         return (0);
672                 }
673         }
674 }
675
676 /* Convert a string boolean to an int; "enable" -> 1 */
677 int Parser_bool (int *b, char *str) {
678         if (!strcasecmp (str, "no") ||
679             !strcasecmp (str, "n") ||
680             !strcasecmp (str, "off") ||
681             !strcasecmp (str, "disable"))
682         {
683                 *b = 0;
684                 return (0);
685         }
686         
687         if (!strcasecmp (str, "yes") ||
688             !strcasecmp (str, "y") ||
689             !strcasecmp (str, "on") ||
690             !strcasecmp (str, "enable"))
691         {
692                 *b = 1;
693                 return (0);
694         }
695         
696         return (-1);
697 }
698
699 int Parser_quit(int argc, char **argv)
700 {
701         argc = argc;
702         argv = argv;
703         done = 1;
704         return 0;
705 }