HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
parsing.c
Go to the documentation of this file.
1 
24 #include "user_config.h"
25 
26 #include <inttypes.h>
27 #include <stdint.h>
28 
29 #include <string.h>
30 #include "parsing.h"
31 
32 // =============================================
35 void sep()
36 {
37  printf("==============================\n");
38 }
39 
40 
41 // =============================================
49 void trim_tail(char *str)
50 {
51  if(!str)
52  return;
53  int len = strlen(str);
54  while(len--)
55  {
56  if(str[len] > ' ')
57  break;
58  str[len] = 0;
59  }
60 }
61 
62 
63 // =============================================
70 char *skipspaces(char *ptr)
71 {
72  if(!ptr)
73  return(ptr);
74 
75  while(*ptr == ' ' || *ptr == '\t')
76  ++ptr;
77  return(ptr);
78 }
79 
80 
81 // =============================================
88 char *nextspace(char *ptr)
89 {
90  if(!ptr)
91  return(ptr);
92 
93  while(*ptr)
94  {
95  if(*ptr == ' ' || *ptr == '\t')
96  break;
97  ++ptr;
98  }
99  return(ptr);
100 }
101 
102 
103 // =============================================
110 MEMSPACE
111 char *skipchars(char *str, char *pat)
112 {
113  char *base;
114  if(!str)
115  return(str);
116 
117  while(*str)
118  {
119  base = pat;
120  while(*base)
121  {
122  if(*base == *str)
123  break;
124  ++base;
125  }
126  if(*base != *str)
127  return(str);
128  ++str;
129  }
130  return(str);
131 }
132 
133 
134 // =============================================
142 MEMSPACE
143 int MATCH(char *str, char *pat)
144 {
145  int len;
146  len = strlen(pat);
147  if(strcmp(str,pat) == 0 )
148  return(len);
149  return(0);
150 }
151 
152 
160 MEMSPACE
161 int MATCHARGS(char *str, char *pat, int min, int argc)
162 {
163  if(MATCHI(str,pat))
164  {
165  if(argc >= min)
166  return(1);
167  else
168  printf("%s expected %d arguments only got %d\n", pat, min,argc);
169  }
170  return(0);
171 }
172 
173 
174 // =============================================
182 MEMSPACE
183 int MATCHI(char *str, char *pat)
184 {
185  int len;
186  len = strlen(pat);
187  if(strcasecmp(str,pat) == 0 )
188  return(len);
189  return(0);
190 }
191 
192 
193 // =============================================
202 MEMSPACE
203 int MATCH_LEN(char *str, char *pat)
204 {
205  int len;
206 
207  if(!str || !pat)
208  return(0);
209  len = strlen(pat);
210 
211  if( len )
212  {
213  if(strncmp(str,pat,len) == 0 )
214  return(len);
215  }
216  return(0);
217 }
218 
219 
220 // =============================================
229 MEMSPACE
230 int MATCHI_LEN(char *str, char *pat)
231 {
232  int len;
233 
234  if(!str || !pat)
235  return(0);
236  len = strlen(pat);
237 
238  if( len )
239  {
240  if(strncasecmp(str,pat,len) == 0 )
241  return(len);
242  }
243  return(0);
244 }
245 
246 
247 // =============================================
259 MEMSPACE
260 int split_args(char *str, char *argv[], int max)
261 {
262  int i;
263  int count = 0;
264 // NULL ?
265 
266  for(i=0;i<max;++i)
267  argv[i] = NULL;
268 
269 // You may replace argv[0]
270 // argv[count++] = "main";
271 
272  if(!max)
273  return(0);
274 
275  if(!str)
276  return(0);
277 
278  while(*str && count < max)
279  {
280  str = skipspaces(str);
281  if(!*str)
282  break;
283 
284 // string processing
285  if(*str == '"')
286  {
287  ++str;
288 // Save string pointer
289  argv[count++] = str;
290  while(*str && *str != '"')
291  ++str;
292  if(*str == '"')
293  *str++ = 0;
294  continue;
295  }
296 
297  argv[count++] = str;
298 // Find size of token
299  while(*str > ' ' && *str <= 0x7e)
300  ++str;
301  if(!*str)
302  break;
303  *str = 0;
304  ++str;
305  }
306  return(count);
307 }
308 
309 
310 // =============================================
322 MEMSPACE
323 char *get_token(char *str, char *token, int max)
324 {
325 
326  *token = 0;
327 
328  if(!str || *str == 0)
329  return(str);
330 
331 // Skip beginning spaces
332  str = skipspaces(str);
333 // Delete all trailing spaces
334  trim_tail(str);
335 
336  while(*str > ' ' && max > 0)
337  {
338 
339 // String processing
340 // A token can be a quoted string
341  if(*str == '"')
342  {
343  ++str;
344 // We are pointing at the body of the quoted string now
345  while(*str && *str != '"' && max > 0)
346  {
347  *token++ = *str++;
348  --max;
349  }
350  if(*str == '"')
351  {
352  ++str;
353  *token = 0;
354  --max;
355  break;
356  }
357  break;
358  }
359 
360 // If we have a comma, outside of a string, break
361  if(*str == ',' )
362  break;
363 
364 // copy token
365  *token++ = *str++;
366  --max;
367  }
368 
369 // Skip trailing spaces
370  str = skipspaces(str);
371 // If we had a trailing comma skip it
372  if(*str == ',' )
373  ++str;
374 
375  *token = 0;
376  return(str);
377 }
378 
379 
380 // =============================================
390 
391 MEMSPACE
392 int token(char *str, char *pat)
393 {
394  int patlen;
395  int len;
396  char *ptr;
397 
398  if(!str || *str == 0)
399  return(0);
400 
401  ptr = skipspaces(str);
402  len = 0;
403  while(*ptr > ' ' && *ptr <= 0x7e )
404  {
405  ++len;
406  ++ptr;
407  }
408 
409  if(!len)
410  return(0);
411 
412  patlen = strlen(pat);
413 
414  if(len != patlen)
415  return(0);
416 
417  if(strncmp(str,pat,patlen) == 0)
418  return(len);
419  return(0);
420 }
421 
422 
423 // =============================================
424 
431 MEMSPACE
432 int32_t get_value(char *str)
433 {
434  int base;
435  int ret;
436  char *ptr;
437  char *endptr;
438 
439  if(!str || *str == 0)
440  return(0);
441 
442  ptr = skipspaces(str);
443  base = 10;
444 
445 // convert number base 10, 16, 8 and 2
446  if( (ret = MATCHI_LEN(ptr,"0x")) )
447  {
448  base = 16;
449  ptr += ret;
450  }
451  else if( (ret = MATCHI_LEN(ptr,"0o")) )
452  {
453  base = 8;
454  ptr += ret;
455  }
456  else if( (ret = MATCHI_LEN(ptr,"0b")) )
457  {
458  base = 2;
459  ptr += ret;
460  }
461  return(strtol(ptr, (char **)&endptr, base));
462 }
463 
464 
465 // =============================================
strncasecmp
MEMSPACE int WEAK_ATR strncasecmp(const char *str, const char *pat, size_t len)
Compare two strings without case maximum len bytes in size.
Definition: stringsup.c:352
get_value
MEMSPACE int32_t get_value(char *str)
get a number
Definition: parsing.c:432
MATCH_LEN
MEMSPACE int MATCH_LEN(char *str, char *pat)
Compare two strings limted to length of pattern.
Definition: parsing.c:203
printf
MEMSPACE int printf(const char *format,...)
get_token
MEMSPACE char * get_token(char *str, char *token, int max)
return next token
Definition: parsing.c:323
MATCH
MEMSPACE int MATCH(char *str, char *pat)
Compare two strings.
Definition: parsing.c:143
MATCHI
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
Definition: parsing.c:183
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
strcasecmp
MEMSPACE int WEAK_ATR strcasecmp(const char *str, const char *pat)
Compare two strings without case.
Definition: stringsup.c:328
strtol
MEMSPACE long strtol(const char *nptr, char **endptr, int base)
Convert ASCII string to number in a given base.
Definition: mathio.c:139
parsing.h
Various string and character functions.
trim_tail
MEMSPACE void trim_tail(char *str)
Trim White space and control characters from end of string.
Definition: parsing.c:49
strncmp
MEMSPACE int WEAK_ATR strncmp(const char *str, const char *pat, size_t len)
Compare two strings maximum len bytes in size.
Definition: stringsup.c:303
NULL
#define NULL
Definition: user_config.h:85
strcmp
MEMSPACE int WEAK_ATR strcmp(const char *str, const char *pat)
Compare two strings.
Definition: stringsup.c:278
strlen
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
Definition: stringsup.c:144
sep
MEMSPACE void sep()
print seperator
Definition: parsing.c:35
nextspace
MEMSPACE char * nextspace(char *ptr)
Skip to first white space in a string - tabs and spaces.
Definition: parsing.c:88
MATCHARGS
MEMSPACE int MATCHARGS(char *str, char *pat, int min, int argc)
Match two strings and compare argument index Display message if the number of arguments is too few.
Definition: parsing.c:161
MATCHI_LEN
MEMSPACE int MATCHI_LEN(char *str, char *pat)
Compare two strings without case limted to length of pattern.
Definition: parsing.c:230
token
MEMSPACE int token(char *str, char *pat)
Search for token in a string matching user pattern.
Definition: parsing.c:392
skipspaces
MEMSPACE char * skipspaces(char *ptr)
Skip white space in a string - tabs and spaces.
Definition: parsing.c:70
split_args
MEMSPACE int split_args(char *str, char *argv[], int max)
Split string into arguments stored in argv[] We split source string into arguments Warning: source st...
Definition: parsing.c:260
skipchars
MEMSPACE char * skipchars(char *str, char *pat)
Skip characters defined in user string.
Definition: parsing.c:111