Whamcloud - gitweb
LU-10308 misc: update Intel copyright messages for 2017
[fs/lustre-release.git] / libcfs / include / libcfs / util / parser.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2014, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * libcfs/include/libcfs/util/parser.h
33  *
34  * A command line parser.
35  *
36  */
37
38 #ifndef _PARSER_H_
39 #define _PARSER_H_
40
41 #define HISTORY 100             /* Don't let history grow unbounded    */
42 #define MAXARGS 512
43
44 #define CMD_COMPLETE    0
45 #define CMD_INCOMPLETE  1
46 #define CMD_NONE        2
47 #define CMD_AMBIG       3
48 #define CMD_HELP        4
49
50 typedef struct parser_cmd {
51         char    *pc_name;
52         int     (* pc_func)(int, char **);
53         struct parser_cmd * pc_sub_cmd;
54         char *pc_help;
55 } command_t;
56
57 typedef struct argcmd {
58         char    *ac_name;
59         int      (*ac_func)(int, char **);
60         char     *ac_help;
61 } argcmd_t;
62
63 typedef struct network {
64         char    *type;
65         char    *server;
66         int     port;
67 } network_t;
68
69 int Parser_quit(int argc, char **argv);
70 int Parser_version(int argc, char **argv);
71 void Parser_init(char *, command_t *);  /* Set prompt and load command list */
72 int Parser_commands(void);                      /* Start the command parser */
73 void Parser_qhelp(int, char **);        /* Quick help routine */
74 int Parser_help(int, char **);          /* Detailed help routine */
75 void Parser_ignore_errors(int ignore);  /* Set the ignore errors flag */
76 void Parser_printhelp(char *);          /* Detailed help routine */
77 void Parser_exit(int, char **);         /* Shuts down command parser */
78 int Parser_execarg(int argc, char **argv, command_t cmds[]);
79 int execute_line(char * line);
80 int Parser_list_commands(const command_t *cmdlist, char *buffer,
81                          size_t buf_size, const char *parent_cmd,
82                          int col_start, int col_num);
83
84 /* Converts a string to an integer */
85 int Parser_int(char *, int *);
86
87 /* Prompts for a string, with default values and a maximum length */
88 char *Parser_getstr(const char *prompt, const char *deft, char *res, 
89                     size_t len);
90
91 /* Prompts for an integer, with minimum, maximum and default values and base */
92 int Parser_getint(const char *prompt, long min, long max, long deft,
93                   int base);
94
95 /* Prompts for a yes/no, with default */
96 int Parser_getbool(const char *prompt, int deft);
97
98 /* Extracts an integer from a string, or prompts if it cannot get one */
99 long Parser_intarg(const char *inp, const char *prompt, int deft,
100                    int min, int max, int base);
101
102 /* Extracts a word from the input, or propmts if it cannot get one */
103 char *Parser_strarg(char *inp, const char *prompt, const char *deft,
104                     char *answer, int len);
105
106 /* Extracts an integer from a string  with a base */
107 int Parser_arg2int(const char *inp, long *result, int base);
108
109 /* Convert human readable size string to and int; "1k" -> 1000 */
110 int Parser_size(int *sizep, char *str);
111
112 /* Convert a string boolean to an int; "enable" -> 1 */
113 int Parser_bool(int *b, char *str);
114
115 #endif