1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2021 William Wilgus
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#include "plugin.h"
#include "arg_helper.h"
#ifndef logf
#define logf(...) {}
#endif
#define SWCHAR '-'
#define DECSEPCHAR '.'
int string_parse(const char **parameter, char* buf, size_t buf_sz)
{
/* fills buf with a string upto buf_sz, null terminates the buffer
* strings break on WS by default but can be enclosed in single or double quotes
* opening and closing quotes will not be included in the buffer but will be counted
* use alternating quotes if you really want them included '"text"' or "'text'"
* failure to close the string will result in eating all remaining args till \0
* If buffer full remaining chars are discarded till stopchar or \0 is reached */
char stopchar = ' ';
char stopchars[] = "\'\"";
int skipped = 0;
int found = 0;
const char* start = *parameter;
if (strchr(stopchars, *start))
{
logf("stop char %c\n", *start);
stopchar = *start;
skipped++;
start++;
}
while (*start && *start != stopchar)
{
if (buf_sz > 1)
{
*buf++ = *start;
buf_sz--;
}
found++;
start++;
}
if (*start == stopchar && skipped)
{
start++;
skipped++;
}
*buf = '\0';
if (found > 0)
*parameter = start;
else
skipped = 0;
return found + skipped;
}
int char_parse(const char **parameter, char* character)
{
/* passes *character a single character eats remaining non-WS characters */
char buf[2];
int ret = string_parse(parameter, buf, sizeof(buf));
if (ret && character)
*character = buf[0];
return ret;
}
int bool_parse(const char **parameter, bool *choice)
{
/* determine true false using the first character the rest are skipped/ignored */
int found = 0;
const char tf_val[]="fn0ty1";/* false chars on left f/t should be balanced fffttt */
const char* start = *parameter;
char c = tolower(*start);
const char *tfval = strchr(tf_val, c);
while(isalnum(*++start)) {;}
if (tfval)
{
found = start - (*parameter);
*parameter = start;
}
if (choice)
*choice = (tfval - tf_val) > (signed int) (sizeof(tf_val) / 2) - 1;
return found;
}
int longnum_parse(const char **parameter, long *number, long *decimal)
{
/* passes number and or decimal portion of number base 10 only.. */
long num = 0;
long dec = 0;
int found = 0;
int neg = 0;
logf ("n: %s\n", *parameter);
const char *start = *parameter;
if (*start == '-')
{
neg = 1;
start++;
}
while (isdigit(*start))
{
found++;
num = num *10 + *start - '0';
start++;
}
if (*start == DECSEPCHAR)
{
start++;
while (isdigit(*start))
{
dec = dec *10 + *start - '0';
start++;
}
}
if (found > 0)
{
found = start - (*parameter);
*parameter = start;
}
if(number)
*number = neg ? -num : num;
if (decimal)
*decimal = dec;
return found;
}
int num_parse(const char **parameter, int *number, int *decimal)
{
long num, dec;
int ret = longnum_parse(parameter, &num, &dec);
if(number)
*number = num;
if (decimal)
*decimal = dec;
return ret;
}
/*
*argparse(const char *parameter, int parameter_len,
* int (*arg_callback)(char argchar, const char **parameter))
* parameter : constant char string of arguments
* parameter_len : may be set to -1 if your parameter string is NULL (\0) terminated
* arg_callback : function gets called for each SWCHAR found in the parameter string
* Note: WS at beginning is stripped, **parameter starts at the first NON WS char
* return 0 for arg_callback to quit parsing immediately
*/
void argparse(const char *parameter, int parameter_len, int (*arg_callback)(char argchar, const char **parameter))
{
bool lastchr;
char argchar;
const char *start = parameter;
while (parameter_len < 0 || (parameter - start) < parameter_len)
{
switch (*parameter++)
{
case SWCHAR:
{
if ((*parameter) == '\0')
return;
logf ("%s\n",parameter);
argchar = *parameter;
lastchr = (*(parameter + 1) == '\0');
while (*++parameter || lastchr)
{
lastchr = false;
if (isspace(*parameter))
continue; /* eat spaces at beginning */
if (!arg_callback(argchar, ¶meter))
return;
break;
}
break;
}
case '\0':
{
if (parameter_len <= 0)
return;
}
}
}
}
/* EXAMPLE USAGE
argparse("-n 42 -N 9.9 -n -78.9009 -f -P /rockbox/path/f -s 'Yestest' -B false -B 0 -B true -b n -by -b 1-c ops -c s -k", -1, &arg_callback);
int arg_callback(char argchar, const char **parameter)
{
int ret;
int num, dec;
char c;
char buf[32];
bool bret;
logf ("Arg: %c\n", argchar);
switch (tolower(argchar))
{
case 'k' :
logf("Option K!");
break;
case 'c' :
ret = char_parse(parameter, &c);
if (ret)
{
logf ("Val: %c\n", c);
logf("ate %d chars\n", ret);
}
break;
case 'n' :
ret = num_parse(parameter, &num, &dec);
if (ret)
{
logf ("Val: %d.%d\n", num, dec);
logf("ate %d chars\n", ret);
}
break;
case 's' :
ret = string_parse(parameter, buf, sizeof(buf));
if (ret)
{
logf ("Val: %s\n", buf);
logf("ate %d chars\n", ret);
}
break;
case 'p' :
ret = string_parse(parameter, buf, sizeof(buf));
if (ret)
{
logf ("Path: %s\n", buf);
logf("ate %d chars\n", ret);
}
break;
case 'b' :
ret = bool_parse(parameter, &bret);
if (ret)
{
logf ("Val: %s\n", bret ? "true" : "false");
logf("ate %d chars\n", ret);
}
break;
default :
logf ("Unknown switch '%c'\n",argchar);
//return 0;
}
return 1;
}
*/
|