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