Imported Upstream version 16.04
[deb_dpdk.git] / lib / librte_cmdline / cmdline_parse_string.c
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 #include <stdio.h>
62 #include <inttypes.h>
63 #include <ctype.h>
64 #include <string.h>
65 #include <stdarg.h>
66 #include <errno.h>
67 #include <rte_string_fns.h>
68
69 #include "cmdline_parse.h"
70 #include "cmdline_parse_string.h"
71
72 struct cmdline_token_ops cmdline_token_string_ops = {
73         .parse = cmdline_parse_string,
74         .complete_get_nb = cmdline_complete_get_nb_string,
75         .complete_get_elt = cmdline_complete_get_elt_string,
76         .get_help = cmdline_get_help_string,
77 };
78
79 #define MULTISTRING_HELP "Mul-choice STRING"
80 #define ANYSTRING_HELP   "Any STRING"
81 #define FIXEDSTRING_HELP "Fixed STRING"
82
83 static unsigned int
84 get_token_len(const char *s)
85 {
86         char c;
87         unsigned int i=0;
88
89         c = s[i];
90         while (c!='#' && c!='\0') {
91                 i++;
92                 c = s[i];
93         }
94         return i;
95 }
96
97 static const char *
98 get_next_token(const char *s)
99 {
100         unsigned int i;
101         i = get_token_len(s);
102         if (s[i] == '#')
103                 return s+i+1;
104         return NULL;
105 }
106
107 int
108 cmdline_parse_string(cmdline_parse_token_hdr_t *tk, const char *buf, void *res,
109         unsigned ressize)
110 {
111         struct cmdline_token_string *tk2;
112         struct cmdline_token_string_data *sd;
113         unsigned int token_len;
114         const char *str;
115
116         if (res && ressize < STR_TOKEN_SIZE)
117                 return -1;
118
119         if (!tk || !buf || ! *buf)
120                 return -1;
121
122         tk2 = (struct cmdline_token_string *)tk;
123
124         sd = &tk2->string_data;
125
126         /* fixed string */
127         if (sd->str) {
128                 str = sd->str;
129                 do {
130                         token_len = get_token_len(str);
131
132                         /* if token is too big... */
133                         if (token_len >= STR_TOKEN_SIZE - 1) {
134                                 continue;
135                         }
136
137                         if ( strncmp(buf, str, token_len) ) {
138                                 continue;
139                         }
140
141                         if ( !cmdline_isendoftoken(*(buf+token_len)) ) {
142                                 continue;
143                         }
144
145                         break;
146                 } while ( (str = get_next_token(str)) != NULL );
147
148                 if (!str)
149                         return -1;
150         }
151         /* unspecified string */
152         else {
153                 token_len = 0;
154                 while(!cmdline_isendoftoken(buf[token_len]) &&
155                       token_len < (STR_TOKEN_SIZE-1))
156                         token_len++;
157
158                 /* return if token too long */
159                 if (token_len >= STR_TOKEN_SIZE - 1) {
160                         return -1;
161                 }
162         }
163
164         if (res) {
165                 /* we are sure that token_len is < STR_TOKEN_SIZE-1 */
166                 snprintf(res, STR_TOKEN_SIZE, "%s", buf);
167                 *((char *)res + token_len) = 0;
168         }
169
170
171         return token_len;
172 }
173
174 int cmdline_complete_get_nb_string(cmdline_parse_token_hdr_t *tk)
175 {
176         struct cmdline_token_string *tk2;
177         struct cmdline_token_string_data *sd;
178         const char *str;
179         int ret = 1;
180
181         if (!tk)
182                 return -1;
183
184         tk2 = (struct cmdline_token_string *)tk;
185         sd = &tk2->string_data;
186
187         if (!sd->str)
188                 return 0;
189
190         str = sd->str;
191         while( (str = get_next_token(str)) != NULL ) {
192                 ret++;
193         }
194         return ret;
195 }
196
197 int cmdline_complete_get_elt_string(cmdline_parse_token_hdr_t *tk, int idx,
198                                     char *dstbuf, unsigned int size)
199 {
200         struct cmdline_token_string *tk2;
201         struct cmdline_token_string_data *sd;
202         const char *s;
203         unsigned int len;
204
205         if (!tk || !dstbuf || idx < 0)
206                 return -1;
207
208         tk2 = (struct cmdline_token_string *)tk;
209         sd = &tk2->string_data;
210
211         s = sd->str;
212
213         while (idx-- && s)
214                 s = get_next_token(s);
215
216         if (!s)
217                 return -1;
218
219         len = get_token_len(s);
220         if (len > size - 1)
221                 return -1;
222
223         memcpy(dstbuf, s, len);
224         dstbuf[len] = '\0';
225         return 0;
226 }
227
228
229 int cmdline_get_help_string(cmdline_parse_token_hdr_t *tk, char *dstbuf,
230                             unsigned int size)
231 {
232         struct cmdline_token_string *tk2;
233         struct cmdline_token_string_data *sd;
234         const char *s;
235
236         if (!tk || !dstbuf)
237                 return -1;
238
239         tk2 = (struct cmdline_token_string *)tk;
240         sd = &tk2->string_data;
241
242         s = sd->str;
243
244         if (s) {
245                 if (get_next_token(s))
246                         snprintf(dstbuf, size, MULTISTRING_HELP);
247                 else
248                         snprintf(dstbuf, size, FIXEDSTRING_HELP);
249         } else
250                 snprintf(dstbuf, size, ANYSTRING_HELP);
251
252         return 0;
253 }