146f15ce6ebe02712103f306c34c1f5bf1977c51
[libcmdline.git] / src / lib / cmdline_parse.h
1 /*-
2  * Copyright (c) <2010>, Intel Corporation
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  *   notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  *   notice, this list of conditions and the following disclaimer in
14  *   the documentation and/or other materials provided with the
15  *   distribution.
16  *
17  * - Neither the name of Intel Corporation nor the names of its
18  *   contributors may be used to endorse or promote products derived
19  *   from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
30  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
32  * OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 /*
36  * Copyright (c) 2009, Olivier MATZ <zer0@droids-corp.org>
37  * All rights reserved.
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions are met:
40  *
41  *     * Redistributions of source code must retain the above copyright
42  *       notice, this list of conditions and the following disclaimer.
43  *     * Redistributions in binary form must reproduce the above copyright
44  *       notice, this list of conditions and the following disclaimer in the
45  *       documentation and/or other materials provided with the distribution.
46  *     * Neither the name of the University of California, Berkeley nor the
47  *       names of its contributors may be used to endorse or promote products
48  *       derived from this software without specific prior written permission.
49  *
50  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
51  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
52  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
53  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
54  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
55  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
56  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
57  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
59  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60  */
61
62 #ifndef _CMDLINE_PARSE_H_
63 #define _CMDLINE_PARSE_H_
64
65 #include <sys/types.h>
66
67 #ifndef offsetof
68 #define offsetof(type, field)  ((size_t) &( ((type *)0)->field) )
69 #endif
70
71 /* return status for parsing */
72 #define CMDLINE_PARSE_SUCCESS        0
73 #define CMDLINE_PARSE_AMBIGUOUS     -1
74 #define CMDLINE_PARSE_NOMATCH       -2
75 #define CMDLINE_PARSE_BAD_ARGS      -3
76 #define CMDLINE_PARSE_UNTERMINATED_QUOTE -4
77
78 /* return status for completion */
79 #define CMDLINE_PARSE_COMPLETE_FINISHED 0
80 #define CMDLINE_PARSE_COMPLETE_AGAIN    1
81 #define CMDLINE_PARSE_COMPLETED_BUFFER  2
82
83 #define CMDLINE_MAX_TOKEN_SIZE 128 /* including '\0' */
84
85 /**
86  * Stores a pointer to the ops struct, and the offset: the place to
87  * write the parsed result in the destination structure.
88  */
89 struct cmdline_token_hdr {
90         struct cmdline_token_ops *ops;
91         unsigned int offset;
92 };
93 typedef struct cmdline_token_hdr cmdline_parse_token_hdr_t;
94
95 /**
96  * A token is defined by this structure.
97  *
98  * parse() takes the token as first argument, then the source buffer
99  * starting at the token we want to parse. The 3rd arg is a pointer
100  * where we store the parsed data (as binary). It returns the number of
101  * parsed chars on success and a negative value on error.
102  *
103  * complete_get_nb() returns the number of possible values for this
104  * token if completion is possible. If it is NULL or if it returns 0,
105  * no completion is possible.
106  *
107  * complete_get_elt() copy in dstbuf (the size is specified in the
108  * parameter) the i-th possible completion for this token.  returns 0
109  * on success or and a negative value on error.
110  *
111  * get_help() fills the dstbuf with the help for the token. It returns
112  * -1 on error and 0 on success.
113  */
114 struct cmdline_token_ops {
115         /** parse(token ptr, buf, res pts) */
116         int (*parse)(cmdline_parse_token_hdr_t *, const char *, void *);
117         /** return the num of possible choices for this token */
118         int (*complete_get_nb)(cmdline_parse_token_hdr_t *);
119         /** return the elt x for this token (token, idx, dstbuf, size) */
120         int (*complete_get_elt)(cmdline_parse_token_hdr_t *, int, char *, unsigned int);
121         /** get help for this token (token, dstbuf, size) */
122         int (*get_help)(cmdline_parse_token_hdr_t *, char *, unsigned int);
123 };
124
125 struct cmdline;
126 /**
127  * Store a instruction, which is a pointer to a callback function and
128  * its parameter that is called when the instruction is parsed, a help
129  * string, and a list of token composing this instruction.
130  */
131 struct cmdline_inst {
132         /* f(parsed_struct, data) */
133         void (*f)(void *, struct cmdline *, void *);
134         void *data;
135         char *help_str;
136         cmdline_parse_token_hdr_t *tokens[];
137 };
138 typedef struct cmdline_inst cmdline_parse_inst_t;
139
140 /**
141  * A context is identified by its name, and contains a list of
142  * instruction
143  *
144  */
145 typedef cmdline_parse_inst_t *cmdline_parse_ctx_t;
146
147 /**
148  * Try to parse a buffer according to the specified context. The
149  * argument buf must ends with "\n\0". The function returns
150  * CMDLINE_PARSE_AMBIGUOUS, CMDLINE_PARSE_NOMATCH or
151  * CMDLINE_PARSE_BAD_ARGS on error. Else it calls the associated
152  * function (defined in the context) and returns 0
153  * (CMDLINE_PARSE_SUCCESS).
154  */
155 int cmdline_parse(struct cmdline *cl, const char *buf);
156
157 /**
158  * complete() must be called with *state==0 (try to complete) or
159  * with *state==-1 (just display choices), then called without
160  * modifying *state until it returns CMDLINE_PARSE_COMPLETED_BUFFER or
161  * CMDLINE_PARSE_COMPLETED_BUFFER.
162  *
163  * It returns < 0 on error.
164  *
165  * Else it returns:
166  *   - CMDLINE_PARSE_COMPLETED_BUFFER on completion (one possible
167  *     choice). In this case, the chars are appended in dst buffer.
168  *   - CMDLINE_PARSE_COMPLETE_AGAIN if there is several possible
169  *     choices. In this case, you must call the function again,
170  *     keeping the value of state intact.
171  *   - CMDLINE_PARSE_COMPLETED_BUFFER when the iteration is
172  *     finished. The dst is not valid for this last call.
173  *
174  * The returned dst buf ends with \0.
175  */
176 int cmdline_complete(struct cmdline *cl, const char *buf, int *state,
177                      char *dst, unsigned int size);
178
179
180 /* return true if(!c || iscomment(c) || isblank(c) ||
181  * isendofline(c)) */
182 int cmdline_isendoftoken(char c);
183
184 /* quote a string and escape original quotes */
185 int cmdline_quote_token(char *dst, unsigned dstlen, const char *src);
186
187 /* remove quote and stop when we reach the end of token */
188 int cmdline_unquote_token(char *dst, unsigned dstlen, const char *src);
189
190 #endif /* _CMDLINE_PARSE_H_ */