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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
#include "protoString.h"
#include "protoDebug.h"
#include <string.h>
#include <stdio.h>
#include <ctype.h> // for isspace()
ProtoTokenator::ProtoTokenator(const char* text,
char delimiter,
bool stripWhiteSpace,
unsigned int maxCount,
bool reverseOrder,
bool stripTokens)
: token(delimiter), strip_whitespace(stripWhiteSpace), strip_tokens(stripTokens),
reverse(reverseOrder), max_count(maxCount), remain(maxCount),
text_ptr(text), prev_item(NULL)
{
Reset();
}
ProtoTokenator::~ProtoTokenator()
{
if (NULL != prev_item)
{
delete[] prev_item;
prev_item = NULL;
}
}
bool ProtoTokenator::TokenMatch(char c) const
{
return ((c == token) || (isspace(token) && isspace(c)));
} // end ProtoTokenator::TokenMatch()
void ProtoTokenator::Reset(const char* text, char delimiter)
{
remain = max_count;
if (NULL != text) text_ptr = text;
if ('\0' != delimiter) token = delimiter;
if (reverse)
{
next_ptr = text_ptr;
if (NULL != next_ptr)
next_ptr += strlen(next_ptr) - 1;
if (isspace(token))
{
// Advance to start of any trailing white space
while (NULL != next_ptr)
{
if (isspace(*next_ptr))
{
if (text_ptr == next_ptr)
next_ptr = NULL;
else
next_ptr--;
}
else
{
break;
}
}
}
}
else
{
next_ptr = text_ptr;
if (isspace(token))
{
// advance to end of any leading white space
while (NULL != next_ptr)
{
if ('\0' == *next_ptr)
next_ptr = NULL;
else if (isspace(*next_ptr))
next_ptr++;
else
break;
}
}
}
} // end ProtoTokenator::Reset()
const char* const ProtoTokenator::GetNextItem(bool detach)
{
if (reverse)
{
if (strip_whitespace)
{
// Strip any trailing white space, if required
while (NULL != next_ptr)
{
if (isspace(*next_ptr))
{
if (text_ptr == next_ptr)
next_ptr = NULL;
else
next_ptr--;
}
else
{
break;
}
}
}
if (NULL == next_ptr) return NULL;
if ((0 != max_count) && (0 == remain))
{
// Count was limited, so return remainder as last item
// (strip whitespace from head if required)
long itemLen = next_ptr - text_ptr + 1;
const char* headPtr = text_ptr;
if (strip_whitespace)
{
while ((0 != itemLen) && (isspace(*headPtr)))
{
headPtr++;
itemLen--;
}
}
// (strip extraneous token(s) from tail if required)
if (strip_tokens)
{
const char* tailPtr = headPtr + itemLen - 1;
while ((0 != itemLen) && TokenMatch(*tailPtr))
{
tailPtr--;
itemLen--;
}
}
// TBD - save "prev_len" only allocate a new "prev_item" when longer string is needed.
if (NULL != prev_item) delete[] prev_item;
if (NULL == (prev_item = new char[itemLen+1]))
{
PLOG(PL_ERROR, "ProtoTokenator::GetNextItem() new char[] error: %s\n", GetErrorString());
return NULL;
}
strncpy(prev_item, headPtr, itemLen);
prev_item[itemLen] = '\0';
next_ptr = NULL;
if (detach)
{
const char* item = prev_item;
prev_item = NULL;
return item;
}
else
{
return prev_item;
}
}
const char* ptr = next_ptr;
// Advance to next token
while (text_ptr != ptr)
{
if (TokenMatch(*ptr))
break;
else
ptr--;
}
size_t itemLen = next_ptr - ptr;
bool firstItem = false;
if (text_ptr == ptr)
{
if (TokenMatch(*ptr))
firstItem = false;
else
firstItem = true;
}
const char* headPtr = ptr;
if (firstItem)
itemLen += 1;
else
headPtr += 1;
// Strip any leading whitespace, if required
if (strip_whitespace)
{
while ((0 != itemLen) && isspace(*headPtr))
{
headPtr++;
itemLen--;
}
}
if (NULL != prev_item) delete[] prev_item;
if (NULL == (prev_item = new char[itemLen+1]))
{
PLOG(PL_ERROR, "ProtoTokenator::GetNextItem() new char[] error: %s\n", GetErrorString());
return NULL;
}
strncpy(prev_item, headPtr, itemLen);
prev_item[itemLen] = '\0';
if (text_ptr == ptr--)
{
ptr = NULL;
}
else if (isspace(token))
{
// Advance to start of white space
while (NULL != ptr)
{
if (isspace(*ptr))
{
if (text_ptr == ptr)
ptr = NULL;
else
ptr--;
}
else
{
break;
}
}
}
next_ptr = ptr;
}
else
{
// Strip any leading white space, if required
if (strip_whitespace)
{
while (NULL != next_ptr)
{
if ('\0' == *next_ptr)
next_ptr = NULL;
else if (isspace(*next_ptr))
next_ptr++;
else
break;
}
}
if (NULL == next_ptr) return NULL;
if ((0 != max_count) && (0 == remain))
{
// Count was limited, so return remainder as last item
// (strip trailing whitespace if required)
size_t itemLen = strlen(next_ptr);
if (strip_whitespace)
{
const char* tailPtr = next_ptr + itemLen - 1;
while ((0 != itemLen) && (isspace(*tailPtr)))
{
tailPtr--;
itemLen--;
}
}
// (strip extraneous leading token(s) if required)
if (strip_tokens)
{
while ((0 != itemLen) && TokenMatch(*next_ptr))
{
next_ptr++;
itemLen--;
}
}
if (NULL != prev_item) delete[] prev_item;
if (NULL == (prev_item = new char[itemLen+1]))
{
PLOG(PL_ERROR, "ProtoTokenator::GetNextItem() new char[] error: %s\n", GetErrorString());
return NULL;
}
strncpy(prev_item, next_ptr, itemLen + 1);
next_ptr = NULL;
if (detach)
{
const char* item = prev_item;
prev_item = NULL;
return item;
}
else
{
return prev_item;
}
}
const char* ptr;
if (isspace(token))
{
// Advance to start of white space
ptr = next_ptr;
while (NULL != ptr)
{
if ('\0' == *ptr)
ptr = NULL;
else if (isspace(*ptr))
break;
else
ptr++;
}
}
else
{
ptr = strchr(next_ptr, token);
}
size_t itemLen = (NULL == ptr) ? strlen(next_ptr) : (ptr++ - next_ptr);
// Strip trailing whitespace, if required
if (strip_whitespace)
{
const char* tailPtr = next_ptr + itemLen - 1;
while ((0 != itemLen) && (isspace(*tailPtr--)))
itemLen--;
}
if (NULL != prev_item) delete[] prev_item;
if (NULL == (prev_item = new char[itemLen+1]))
{
PLOG(PL_ERROR, "ProtoTokenator::GetNextItem() new char[] error: %s\n", GetErrorString());
return NULL;
}
strncpy(prev_item, next_ptr, itemLen);
prev_item[itemLen] = '\0';
if (strip_whitespace || isspace(token))
{
// Advance to end of white space
while (NULL != ptr)
{
if ('\0' == *ptr)
ptr = NULL;
else if (isspace(*ptr))
ptr++;
else
break;
}
}
next_ptr = ptr;
}
if (0 != max_count) remain -= 1;
if (detach)
{
const char* item = prev_item;
prev_item = NULL;
return item;
}
else
{
return prev_item;
}
} // end ProtoTokenator::GetNextItem()