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