57971ee616948dc85dd9d3911e57579ee07f8e32
[protos/libecoli.git] / lib / ecoli_tk_int.c
1 /*
2  * Copyright (c) 2016, Olivier MATZ <zer0@droids-corp.org>
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of the University of California, Berkeley nor the
13  *       names of its contributors may be used to endorse or promote products
14  *       derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include <stdio.h>
29 #include <string.h>
30 #include <stdlib.h>
31 #include <limits.h>
32 #include <ctype.h>
33 #include <errno.h>
34
35 #include <ecoli_log.h>
36 #include <ecoli_malloc.h>
37 #include <ecoli_strvec.h>
38 #include <ecoli_tk.h>
39 #include <ecoli_tk_int.h>
40 #include <ecoli_test.h>
41
42 struct ec_tk_int {
43         struct ec_tk gen;
44         long long int min;
45         long long int max;
46         unsigned int base;
47 };
48
49 static int parse_llint(struct ec_tk_int *tk, const char *str,
50         long long *val)
51 {
52         char *endptr;
53
54         errno = 0;
55         *val = strtoll(str, &endptr, tk->base);
56
57         /* out of range */
58         if ((errno == ERANGE && (*val == LLONG_MAX || *val == LLONG_MIN)) ||
59                         (errno != 0 && *val == 0))
60                 return -1;
61
62         if (*val < tk->min || *val > tk->max)
63                 return -1;
64
65         if (*endptr != 0)
66                 return -1;
67
68         return 0;
69 }
70
71 static struct ec_parsed_tk *ec_tk_int_parse(const struct ec_tk *gen_tk,
72         const struct ec_strvec *strvec)
73 {
74         struct ec_tk_int *tk = (struct ec_tk_int *)gen_tk;
75         struct ec_parsed_tk *parsed_tk;
76         struct ec_strvec *match_strvec;
77         const char *str;
78         long long val;
79
80         parsed_tk = ec_parsed_tk_new();
81         if (parsed_tk == NULL)
82                 goto fail;
83
84         if (ec_strvec_len(strvec) == 0)
85                 return parsed_tk;
86
87         str = ec_strvec_val(strvec, 0);
88         if (parse_llint(tk, str, &val) < 0)
89                 return parsed_tk;
90
91         match_strvec = ec_strvec_ndup(strvec, 1);
92         if (match_strvec == NULL)
93                 goto fail;
94
95         ec_parsed_tk_set_match(parsed_tk, gen_tk, match_strvec);
96
97         return parsed_tk;
98
99  fail:
100         ec_parsed_tk_free(parsed_tk);
101         return NULL;
102 }
103
104 static struct ec_tk_ops ec_tk_int_ops = {
105         .typename = "int",
106         .parse = ec_tk_int_parse,
107         .complete = ec_tk_default_complete,
108 };
109
110 struct ec_tk *ec_tk_int_new(const char *id, long long int min,
111         long long int max, unsigned int base)
112 {
113         struct ec_tk_int *tk = NULL;
114
115         tk = (struct ec_tk_int *)ec_tk_new(id, &ec_tk_int_ops, sizeof(*tk));
116         if (tk == NULL)
117                 return NULL;
118
119         tk->min = min;
120         tk->max = max;
121         tk->base = base;
122
123         return &tk->gen;
124 }
125
126 long long ec_tk_int_getval(struct ec_tk *gen_tk, const char *str)
127 {
128         struct ec_tk_int *tk = (struct ec_tk_int *)gen_tk;
129         long long val = 0;
130
131         // XXX check type here
132         // if gen_tk->type != int fail
133
134         parse_llint(tk, str, &val);
135
136         return val;
137 }
138
139 static int ec_tk_int_testcase(void)
140 {
141         struct ec_parsed_tk *p;
142         struct ec_tk *tk;
143         const char *s;
144         int ret = 0;
145
146         tk = ec_tk_int_new(NULL, 0, 256, 0);
147         if (tk == NULL) {
148                 ec_log(EC_LOG_ERR, "cannot create tk\n");
149                 return -1;
150         }
151         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "0", EC_TK_ENDLIST);
152         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "256", "foo", EC_TK_ENDLIST);
153         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "0x100", EC_TK_ENDLIST);
154         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, " 1", EC_TK_ENDLIST);
155         ret |= EC_TEST_CHECK_TK_PARSE(tk, -1, "-1", EC_TK_ENDLIST);
156         ret |= EC_TEST_CHECK_TK_PARSE(tk, -1, "0x101", EC_TK_ENDLIST);
157
158         p = ec_tk_parse(tk, "0");
159         s = ec_parsed_tk_to_string(p);
160         EC_TEST_ASSERT(s != NULL && ec_tk_int_getval(tk, s) == 0);
161         ec_parsed_tk_free(p);
162
163         p = ec_tk_parse(tk, "10");
164         s = ec_parsed_tk_to_string(p);
165         EC_TEST_ASSERT(s != NULL && ec_tk_int_getval(tk, s) == 10);
166         ec_parsed_tk_free(p);
167         ec_tk_free(tk);
168
169         tk = ec_tk_int_new(NULL, -1, LLONG_MAX, 16);
170         if (tk == NULL) {
171                 ec_log(EC_LOG_ERR, "cannot create tk\n");
172                 return -1;
173         }
174         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "0", EC_TK_ENDLIST);
175         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "-1", EC_TK_ENDLIST);
176         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "7fffffffffffffff", EC_TK_ENDLIST);
177         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "0x7fffffffffffffff", EC_TK_ENDLIST);
178         ret |= EC_TEST_CHECK_TK_PARSE(tk, -1, "-2", EC_TK_ENDLIST);
179
180         p = ec_tk_parse(tk, "10");
181         s = ec_parsed_tk_to_string(p);
182         EC_TEST_ASSERT(s != NULL && ec_tk_int_getval(tk, s) == 16);
183         ec_parsed_tk_free(p);
184         ec_tk_free(tk);
185
186         tk = ec_tk_int_new(NULL, LLONG_MIN, 0, 10);
187         if (tk == NULL) {
188                 ec_log(EC_LOG_ERR, "cannot create tk\n");
189                 return -1;
190         }
191         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "0", EC_TK_ENDLIST);
192         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "-1", EC_TK_ENDLIST);
193         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "-9223372036854775808",
194                 EC_TK_ENDLIST);
195         ret |= EC_TEST_CHECK_TK_PARSE(tk, -1, "0x0", EC_TK_ENDLIST);
196         ret |= EC_TEST_CHECK_TK_PARSE(tk, -1, "1", EC_TK_ENDLIST);
197         ec_tk_free(tk);
198
199         /* test completion */
200         tk = ec_tk_int_new(NULL, 0, 10, 0);
201         if (tk == NULL) {
202                 ec_log(EC_LOG_ERR, "cannot create tk\n");
203                 return -1;
204         }
205         ret |= EC_TEST_CHECK_TK_COMPLETE(tk,
206                 "", EC_TK_ENDLIST,
207                 EC_TK_ENDLIST,
208                 "");
209         ret |= EC_TEST_CHECK_TK_COMPLETE(tk,
210                 "x", EC_TK_ENDLIST,
211                 EC_TK_ENDLIST,
212                 "");
213         ret |= EC_TEST_CHECK_TK_COMPLETE(tk,
214                 "1", EC_TK_ENDLIST,
215                 EC_TK_ENDLIST,
216                 "");
217         ec_tk_free(tk);
218
219         return ret;
220 }
221
222 static struct ec_test ec_tk_int_test = {
223         .name = "tk_int",
224         .test = ec_tk_int_testcase,
225 };
226
227 EC_REGISTER_TEST(ec_tk_int_test);