OSDN Git Service

First commitment for the BlackTank LPC1769.
[blacktank/blacktank.git] / ntopt.c
1 /**
2  * @file ntopt.c
3  * @author Shinichiro Nakamura
4  * @brief NT-Shell用オプション解析モジュールの実装。
5  */
6
7 /*
8  * ===============================================================
9  *  Natural Tiny Shell (NT-Shell)
10  *  Version 0.0.7
11  * ===============================================================
12  * Copyright (c) 2010-2011 Shinichiro Nakamura
13  *
14  * Permission is hereby granted, free of charge, to any person
15  * obtaining a copy of this software and associated documentation
16  * files (the "Software"), to deal in the Software without
17  * restriction, including without limitation the rights to use,
18  * copy, modify, merge, publish, distribute, sublicense, and/or
19  * sell copies of the Software, and to permit persons to whom the
20  * Software is furnished to do so, subject to the following
21  * conditions:
22  *
23  * The above copyright notice and this permission notice shall be
24  * included in all copies or substantial portions of the Software.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
28  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
30  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
31  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
32  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33  * OTHER DEALINGS IN THE SOFTWARE.
34  * ===============================================================
35  */
36
37 #include "ntopt.h"
38
39 #define IS_DELIM(c) \
40     (((c) == '\r') || ((c) == '\n') || ((c) == '\t') || ((c) == '\0') || ((c) == ' '))
41
42 static int ntopt_get_count(const char *str);
43 static char *ntopt_get_text(const char *str, const int n, char *buf, int siz);
44
45 static int ntopt_get_count(const char *str)
46 {
47     int cnt = 0;
48     int wc = 0;
49     char *p = (char *)str;
50     while (*p) {
51         if (!IS_DELIM(*p)) {
52             wc++;
53             if (wc == 1) {
54                 cnt++;
55             }
56         } else {
57             wc = 0;
58         }
59         p++;
60     }
61     return cnt;
62 }
63
64 static char *ntopt_get_text(const char *str, const int n, char *buf, int siz)
65 {
66     int cnt = 0;
67     int wc = 0;
68     char *p = (char *)str;
69     while (*p) {
70         if (!IS_DELIM(*p)) {
71             wc++;
72             if ((wc == 1)) {
73                 if (cnt == n) {
74                     char *des = buf;
75                     int cc = 0;
76                     while (!IS_DELIM(*p)) {
77                         cc++;
78                         if (siz <= cc) {
79                             break;
80                         }
81                         *des = *p;
82                         des++;
83                         p++;
84                     }
85                     *des = '\0';
86                     return buf;
87                 }
88                 cnt++;
89             }
90         } else {
91             wc = 0;
92         }
93         p++;
94     }
95     return '\0';
96 }
97
98 int ntopt_parse(
99         const char *str,
100         void *extobj,
101         int (*func)(int argc, char **argv, void *extobj))
102 {
103     int argc;
104     char argv[NTOPT_MAXCNT_ARGC][NTOPT_MAXLEN_ARGV];
105     char *argvp[NTOPT_MAXCNT_ARGC];
106     int i;
107
108     argc = ntopt_get_count(str);
109     if (NTOPT_MAXCNT_ARGC <= argc) {
110         argc = NTOPT_MAXCNT_ARGC;
111     }
112
113     for (i = 0; i < argc; i++) {
114         argvp[i] = ntopt_get_text(str, i, argv[i], sizeof(argv[i]));
115     }
116
117     return func(argc, &argvp[0], extobj);
118 }
119