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
336
337
338
339
340
341
342
343
344
|
/* Case-independent string comparison HTString.c
**
** Original version came with listserv implementation.
** Version TBL Oct 91 replaces one which modified the strings.
** 02-Dec-91 (JFG) Added stralloccopy and stralloccat
** 23 Jan 92 (TBL) Changed strallocc* to 8 char HTSAC* for VM and suchlike
** 6 Oct 92 (TBL) Moved WWW_TraceFlag in here to be in library
*/
#include <ctype.h>
#include "HTUtils.h"
#include "tcp.h"
#include "LYLeaks.h"
#include "LYStrings.h"
#define FREE(x) if (x) {free(x); x = NULL;}
PUBLIC int WWW_TraceFlag = 0; /* Global trace flag for ALL W3 code */
#ifndef VC
#define VC "unknown"
#endif /* !VC */
PUBLIC CONST char * HTLibraryVersion = VC; /* String for help screen etc */
/*
** strcasecomp8 is a variant of strcasecomp (below)
** ------------ -----------
** but uses 8bit upper/lower case information
** from the current display charset.
** It returns 0 if exact match.
*/
PUBLIC int strcasecomp8 ARGS2(
CONST char*, a,
CONST char *, b)
{
CONST char *p = a;
CONST char *q = b;
for ( ; *p && *q; p++, q++) {
int diff = UPPER8(*p, *q);
if (diff) return diff;
}
if (*p)
return 1; /* p was longer than q */
if (*q)
return -1; /* p was shorter than q */
return 0; /* Exact match */
}
/*
** strncasecomp8 is a variant of strncasecomp (below)
** ------------- ------------
** but uses 8bit upper/lower case information
** from the current display charset.
** It returns 0 if exact match.
*/
PUBLIC int strncasecomp8 ARGS3(
CONST char*, a,
CONST char *, b,
int, n)
{
CONST char *p = a;
CONST char *q = b;
for ( ; ; p++, q++) {
int diff;
if (p == (a+n))
return 0; /* Match up to n characters */
if (!(*p && *q))
return (*p - *q);
diff = UPPER8(*p, *q);
if (diff)
return diff;
}
/*NOTREACHED*/
}
#ifndef VM /* VM has these already it seems */
/* Strings of any length
** ---------------------
*/
PUBLIC int strcasecomp ARGS2(
CONST char*, a,
CONST char *, b)
{
CONST char *p = a;
CONST char *q = b;
for ( ; *p && *q; p++, q++) {
int diff = TOLOWER(*p) - TOLOWER(*q);
if (diff) return diff;
}
if (*p)
return 1; /* p was longer than q */
if (*q)
return -1; /* p was shorter than q */
return 0; /* Exact match */
}
/* With count limit
** ----------------
*/
PUBLIC int strncasecomp ARGS3(
CONST char*, a,
CONST char *, b,
int, n)
{
CONST char *p = a;
CONST char *q = b;
for ( ; ; p++, q++) {
int diff;
if (p == (a+n))
return 0; /* Match up to n characters */
if (!(*p && *q))
return (*p - *q);
diff = TOLOWER(*p) - TOLOWER(*q);
if (diff)
return diff;
}
/*NOTREACHED*/
}
#endif /* VM */
/* Allocate a new copy of a string, and returns it
*/
PUBLIC char * HTSACopy ARGS2(
char **, dest,
CONST char *, src)
{
FREE(*dest);
if (src) {
*dest = (char *) malloc (strlen(src) + 1);
if (*dest == NULL)
outofmem(__FILE__, "HTSACopy");
strcpy (*dest, src);
}
return *dest;
}
/* String Allocate and Concatenate
*/
PUBLIC char * HTSACat ARGS2(
char **, dest,
CONST char *, src)
{
if (src && *src) {
if (*dest) {
int length = strlen(*dest);
*dest = (char *)realloc(*dest, length + strlen(src) + 1);
if (*dest == NULL)
outofmem(__FILE__, "HTSACat");
strcpy (*dest + length, src);
} else {
*dest = (char *)malloc(strlen(src) + 1);
if (*dest == NULL)
outofmem(__FILE__, "HTSACat");
strcpy (*dest, src);
}
}
return *dest;
}
/* Find next Field
** ---------------
**
** On entry,
** *pstr points to a string containig white space separated
** field, optionlly quoted.
**
** On exit,
** *pstr has been moved to the first delimiter past the
** field
** THE STRING HAS BEEN MUTILATED by a 0 terminator
**
** returns a pointer to the first field
*/
PUBLIC char * HTNextField ARGS1(
char **, pstr)
{
char * p = *pstr;
char * start; /* start of field */
while (*p && WHITE(*p))
p++; /* Strip white space */
if (!*p) {
*pstr = p;
return NULL; /* No first field */
}
if (*p == '"') { /* quoted field */
p++;
start = p;
for (; *p && *p!='"'; p++) {
if (*p == '\\' && p[1])
p++; /* Skip escaped chars */
}
} else {
start = p;
while (*p && !WHITE(*p))
p++; /* Skip first field */
}
if (*p)
*p++ = '\0';
*pstr = p;
return start;
}
/* Find next Token
** ---------------
** Finds the next token in a string
** On entry,
** *pstr points to a string to be parsed.
** delims lists characters to be recognized as delimiters.
** If NULL default is white white space "," ";" or "=".
** The word can optionally be quoted or enclosed with
** chars from bracks.
** Comments surrrounded by '(' ')' are filtered out
** unless they are specifically reqested by including
** ' ' or '(' in delims or bracks.
** bracks lists bracketing chars. Some are recognized as
** special, for those give the opening char.
** If NULL defaults to <"> and "<" ">".
** found points to location to fill with the ending delimiter
** found, or is NULL.
**
** On exit,
** *pstr has been moved to the first delimiter past the
** field
** THE STRING HAS BEEN MUTILATED by a 0 terminator
** found points to the delimiter found unless it was NULL.
** Returns a pointer to the first word or NULL on error
*/
PUBLIC char * HTNextTok ARGS4(
char **, pstr,
const char *, delims,
const char *, bracks,
char *, found)
{
char * p = *pstr;
char * start = NULL;
BOOL get_blanks, skip_comments;
BOOL get_comments;
BOOL get_closing_char_too = FALSE;
char closer;
if (!pstr || !*pstr) return NULL;
if (!delims) delims = " ;,=" ;
if (!bracks) bracks = "<\"" ;
get_blanks = (!strchr(delims,' ') && !strchr(bracks,' '));
get_comments = (strchr(bracks,'(') != NULL);
skip_comments = (!get_comments && !strchr(delims,'(') && !get_blanks);
#define skipWHITE(c) (!get_blanks && WHITE(c))
while (*p && skipWHITE(*p))
p++; /* Strip white space */
if (!*p) {
*pstr = p;
if (found) *found = '\0';
return NULL; /* No first field */
}
while (1) {
/* Strip white space and other delimiters */
while (*p && (skipWHITE(*p) || strchr(delims,*p))) p++;
if (!*p) {
*pstr = p;
if (found) *found = *(p-1);
return NULL; /* No field */
}
if (*p == '(' && (skip_comments || get_comments)) { /* Comment */
int comment_level = 0;
if (get_comments && !start) start = p+1;
for(;*p && (*p!=')' || --comment_level>0); p++) {
if (*p == '(') comment_level++;
else if (*p == '"') { /* quoted field within Comment */
for(p++; *p && *p!='"'; p++)
if (*p == '\\' && *(p+1)) p++; /* Skip escaped chars */
if (!*p) break; /* (invalid) end of string found, leave */
}
if (*p == '\\' && *(p+1)) p++; /* Skip escaped chars */
}
if (get_comments)
break;
if (*p) p++;
if (get_closing_char_too) {
if (!*p || (!strchr(bracks,*p) && strchr(delims,*p))) {
break;
} else
get_closing_char_too = (strchr(bracks,*p) != NULL);
}
} else if (strchr(bracks,*p)) { /* quoted or bracketted field */
switch (*p) {
case '<': closer = '>'; break;
case '[': closer = ']'; break;
case '{': closer = '}'; break;
case ':': closer = ';'; break;
default: closer = *p;
}
if (!start) start = ++p;
for(;*p && *p!=closer; p++)
if (*p == '\\' && *(p+1)) p++; /* Skip escaped chars */
if (get_closing_char_too) {
p++;
if (!*p || (!strchr(bracks,*p) && strchr(delims,*p))) {
break;
} else
get_closing_char_too = (strchr(bracks,*p) != NULL);
} else
break; /* kr95-10-9: needs to stop here */
#if 0
} else if (*p == '<') { /* quoted field */
if (!start) start = ++p;
for(;*p && *p!='>'; p++)
if (*p == '\\' && *(p+1)) p++; /* Skip escaped chars */
break; /* kr95-10-9: needs to stop here */
#endif
} else { /* Spool field */
if (!start) start = p;
while(*p && !skipWHITE(*p) && !strchr(bracks,*p) &&
!strchr(delims,*p))
p++;
if (*p && strchr(bracks,*p)) {
get_closing_char_too = TRUE;
} else {
if (*p=='(' && skip_comments) {
*pstr = p;
HTNextTok(pstr, NULL, "(", found); /* Advance pstr */
*p = '\0';
if (*pstr && **pstr) (*pstr)++;
return start;
}
break; /* Got it */
}
}
}
if (found) *found = *p;
if (*p) *p++ = '\0';
*pstr = p;
return start;
}
|