cmdline (merge-intel): add intel licences
[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
77 /* return status for completion */
78 #define CMDLINE_PARSE_COMPLETE_FINISHED 0
79 #define CMDLINE_PARSE_COMPLETE_AGAIN    1
80 #define CMDLINE_PARSE_COMPLETED_BUFFER  2
81
82 /**
83  * Stores a pointer to the ops struct, and the offset: the place to
84  * write the parsed result in the destination structure.
85  */
86 struct cmdline_token_hdr {
87         struct cmdline_token_ops *ops;
88         unsigned int offset;
89 };
90 typedef struct cmdline_token_hdr cmdline_parse_token_hdr_t;
91
92 /**
93  * A token is defined by this structure.
94  *
95  * parse() takes the token as first argument, then the source buffer
96  * starting at the token we want to parse. The 3rd arg is a pointer
97  * where we store the parsed data (as binary). It returns the number of
98  * parsed chars on success and a negative value on error.
99  *
100  * complete_get_nb() returns the number of possible values for this
101  * token if completion is possible. If it is NULL or if it returns 0,
102  * no completion is possible.
103  *
104  * complete_get_elt() copy in dstbuf (the size is specified in the
105  * parameter) the i-th possible completion for this token.  returns 0
106  * on success or and a negative value on error.
107  *
108  * get_help() fills the dstbuf with the help for the token. It returns
109  * -1 on error and 0 on success.
110  */
111 struct cmdline_token_ops {
112         /** parse(token ptr, buf, res pts) */
113         int (*parse)(cmdline_parse_token_hdr_t *, const char *, void *);
114         /** return the num of possible choices for this token */
115         int (*complete_get_nb)(cmdline_parse_token_hdr_t *);
116         /** return the elt x for this token (token, idx, dstbuf, size) */
117         int (*complete_get_elt)(cmdline_parse_token_hdr_t *, int, char *, unsigned int);
118         /** get help for this token (token, dstbuf, size) */
119         int (*get_help)(cmdline_parse_token_hdr_t *, char *, unsigned int);
120 };
121
122 struct cmdline;
123 /**
124  * Store a instruction, which is a pointer to a callback function and
125  * its parameter that is called when the instruction is parsed, a help
126  * string, and a list of token composing this instruction.
127  */
128 struct cmdline_inst {
129         /* f(parsed_struct, data) */
130         void (*f)(void *, struct cmdline *, void *);
131         void *data;
132         char *help_str;
133         cmdline_parse_token_hdr_t *tokens[];
134 };
135 typedef struct cmdline_inst cmdline_parse_inst_t;
136
137 /**
138  * A context is identified by its name, and contains a list of
139  * instruction
140  *
141  */
142 typedef cmdline_parse_inst_t *cmdline_parse_ctx_t;
143
144 /**
145  * Try to parse a buffer according to the specified context. The
146  * argument buf must ends with "\n\0". The function returns
147  * CMDLINE_PARSE_AMBIGUOUS, CMDLINE_PARSE_NOMATCH or
148  * CMDLINE_PARSE_BAD_ARGS on error. Else it calls the associated
149  * function (defined in the context) and returns 0
150  * (CMDLINE_PARSE_SUCCESS).
151  */
152 int cmdline_parse(struct cmdline *cl, const char *buf);
153
154 /**
155  * complete() must be called with *state==0 (try to complete) or
156  * with *state==-1 (just display choices), then called without
157  * modifying *state until it returns CMDLINE_PARSE_COMPLETED_BUFFER or
158  * CMDLINE_PARSE_COMPLETED_BUFFER.
159  *
160  * It returns < 0 on error.
161  *
162  * Else it returns:
163  *   - CMDLINE_PARSE_COMPLETED_BUFFER on completion (one possible
164  *     choice). In this case, the chars are appended in dst buffer.
165  *   - CMDLINE_PARSE_COMPLETE_AGAIN if there is several possible
166  *     choices. In this case, you must call the function again,
167  *     keeping the value of state intact.
168  *   - CMDLINE_PARSE_COMPLETED_BUFFER when the iteration is
169  *     finished. The dst is not valid for this last call.
170  *
171  * The returned dst buf ends with \0.
172  */
173 int cmdline_complete(struct cmdline *cl, const char *buf, int *state,
174                      char *dst, unsigned int size);
175
176
177 /* return true if(!c || iscomment(c) || isblank(c) ||
178  * isendofline(c)) */
179 int cmdline_isendoftoken(char c);
180
181 #endif /* _CMDLINE_PARSE_H_ */