]>
Commit | Line | Data |
---|---|---|
cfbe03c9 | 1 | /* |
e6ed776f | 2 | * Copyright (C) 1989-95 GROUPE BULL |
cfbe03c9 JS |
3 | * |
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
5 | * of this software and associated documentation files (the "Software"), to | |
6 | * deal in the Software without restriction, including without limitation the | |
7 | * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
8 | * sell copies of the Software, and to permit persons to whom the Software is | |
9 | * furnished to do so, subject to the following conditions: | |
10 | * | |
11 | * The above copyright notice and this permission notice shall be included in | |
12 | * all copies or substantial portions of the Software. | |
13 | * | |
14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
17 | * GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN | |
18 | * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | |
19 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
20 | * | |
21 | * Except as contained in this notice, the name of GROUPE BULL shall not be | |
22 | * used in advertising or otherwise to promote the sale, use or other dealings | |
23 | * in this Software without prior written authorization from GROUPE BULL. | |
24 | */ | |
25 | ||
26 | /*****************************************************************************\ | |
27 | * data.c: * | |
28 | * * | |
29 | * XPM library * | |
30 | * IO utilities * | |
31 | * * | |
32 | * Developed by Arnaud Le Hors * | |
33 | \*****************************************************************************/ | |
34 | ||
e6ed776f | 35 | #ifndef CXPMPROG |
e6ed776f | 36 | #include "XpmI.h" |
cfbe03c9 | 37 | #endif |
e6ed776f | 38 | #include <ctype.h> |
cfbe03c9 | 39 | |
e6ed776f GRG |
40 | #ifndef CXPMPROG |
41 | #define Getc(data, file) getc(file) | |
42 | #define Ungetc(data, c, file) ungetc(c, file) | |
43 | #endif | |
cfbe03c9 | 44 | |
ea258ad3 DW |
45 | #ifdef __OS2__ |
46 | /* Visual Age cannot deal with old, non-ansi, code */ | |
47 | static int | |
48 | ParseComment(xpmData* data) | |
49 | #else | |
cfbe03c9 | 50 | static int |
e6ed776f GRG |
51 | ParseComment(data) |
52 | xpmData *data; | |
ea258ad3 | 53 | #endif |
cfbe03c9 | 54 | { |
e6ed776f | 55 | if (data->type == XPMBUFFER) { |
cfbe03c9 JS |
56 | register char c; |
57 | register unsigned int n = 0; | |
58 | unsigned int notend; | |
59 | char *s, *s2; | |
60 | ||
e6ed776f GRG |
61 | s = data->Comment; |
62 | *s = data->Bcmt[0]; | |
cfbe03c9 JS |
63 | |
64 | /* skip the string beginning comment */ | |
e6ed776f | 65 | s2 = data->Bcmt; |
cfbe03c9 | 66 | do { |
e6ed776f | 67 | c = *data->cptr++; |
cfbe03c9 JS |
68 | *++s = c; |
69 | n++; | |
70 | s2++; | |
e6ed776f | 71 | } while (c == *s2 && *s2 != '\0' && c); |
cfbe03c9 JS |
72 | |
73 | if (*s2 != '\0') { | |
74 | /* this wasn't the beginning of a comment */ | |
e6ed776f | 75 | data->cptr -= n; |
cfbe03c9 JS |
76 | return 0; |
77 | } | |
78 | /* store comment */ | |
e6ed776f GRG |
79 | data->Comment[0] = *s; |
80 | s = data->Comment; | |
cfbe03c9 JS |
81 | notend = 1; |
82 | n = 0; | |
83 | while (notend) { | |
e6ed776f GRG |
84 | s2 = data->Ecmt; |
85 | while (*s != *s2 && c) { | |
86 | c = *data->cptr++; | |
87 | if (n == XPMMAXCMTLEN - 1) { /* forget it */ | |
88 | s = data->Comment; | |
89 | n = 0; | |
90 | } | |
cfbe03c9 JS |
91 | *++s = c; |
92 | n++; | |
93 | } | |
e6ed776f | 94 | data->CommentLength = n; |
cfbe03c9 | 95 | do { |
e6ed776f GRG |
96 | c = *data->cptr++; |
97 | if (n == XPMMAXCMTLEN - 1) { /* forget it */ | |
98 | s = data->Comment; | |
99 | n = 0; | |
100 | } | |
cfbe03c9 | 101 | *++s = c; |
e6ed776f | 102 | n++; |
cfbe03c9 | 103 | s2++; |
e6ed776f | 104 | } while (c == *s2 && *s2 != '\0' && c); |
cfbe03c9 JS |
105 | if (*s2 == '\0') { |
106 | /* this is the end of the comment */ | |
107 | notend = 0; | |
e6ed776f | 108 | data->cptr--; |
cfbe03c9 JS |
109 | } |
110 | } | |
111 | return 0; | |
112 | } else { | |
e6ed776f | 113 | FILE *file = data->stream.file; |
cfbe03c9 JS |
114 | register int c; |
115 | register unsigned int n = 0, a; | |
116 | unsigned int notend; | |
117 | char *s, *s2; | |
118 | ||
e6ed776f GRG |
119 | s = data->Comment; |
120 | *s = data->Bcmt[0]; | |
cfbe03c9 JS |
121 | |
122 | /* skip the string beginning comment */ | |
e6ed776f | 123 | s2 = data->Bcmt; |
cfbe03c9 | 124 | do { |
e6ed776f | 125 | c = Getc(data, file); |
cfbe03c9 JS |
126 | *++s = c; |
127 | n++; | |
128 | s2++; | |
e6ed776f | 129 | } while (c == *s2 && *s2 != '\0' && c != EOF); |
cfbe03c9 JS |
130 | |
131 | if (*s2 != '\0') { | |
132 | /* this wasn't the beginning of a comment */ | |
133 | /* put characters back in the order that we got them */ | |
134 | for (a = n; a > 0; a--, s--) | |
e6ed776f | 135 | Ungetc(data, *s, file); |
cfbe03c9 JS |
136 | return 0; |
137 | } | |
138 | /* store comment */ | |
e6ed776f GRG |
139 | data->Comment[0] = *s; |
140 | s = data->Comment; | |
cfbe03c9 JS |
141 | notend = 1; |
142 | n = 0; | |
143 | while (notend) { | |
e6ed776f GRG |
144 | s2 = data->Ecmt; |
145 | while (*s != *s2 && c != EOF) { | |
146 | c = Getc(data, file); | |
147 | if (n == XPMMAXCMTLEN - 1) { /* forget it */ | |
148 | s = data->Comment; | |
149 | n = 0; | |
150 | } | |
cfbe03c9 JS |
151 | *++s = c; |
152 | n++; | |
153 | } | |
e6ed776f | 154 | data->CommentLength = n; |
cfbe03c9 | 155 | do { |
e6ed776f GRG |
156 | c = Getc(data, file); |
157 | if (n == XPMMAXCMTLEN - 1) { /* forget it */ | |
158 | s = data->Comment; | |
159 | n = 0; | |
160 | } | |
cfbe03c9 | 161 | *++s = c; |
e6ed776f | 162 | n++; |
cfbe03c9 | 163 | s2++; |
e6ed776f | 164 | } while (c == *s2 && *s2 != '\0' && c != EOF); |
cfbe03c9 JS |
165 | if (*s2 == '\0') { |
166 | /* this is the end of the comment */ | |
167 | notend = 0; | |
e6ed776f | 168 | Ungetc(data, *s, file); |
cfbe03c9 JS |
169 | } |
170 | } | |
171 | return 0; | |
172 | } | |
173 | } | |
174 | ||
175 | /* | |
176 | * skip to the end of the current string and the beginning of the next one | |
177 | */ | |
ea258ad3 DW |
178 | #ifdef __OS2__ |
179 | /* Visual Age cannot deal with old, non-ansi, code */ | |
180 | int xpmNextString(xpmData* data) | |
181 | #else | |
cfbe03c9 | 182 | int |
e6ed776f GRG |
183 | xpmNextString(data) |
184 | xpmData *data; | |
ea258ad3 | 185 | #endif |
cfbe03c9 | 186 | { |
e6ed776f GRG |
187 | if (!data->type) |
188 | data->cptr = (data->stream.data)[++data->line]; | |
189 | else if (data->type == XPMBUFFER) { | |
cfbe03c9 JS |
190 | register char c; |
191 | ||
192 | /* get to the end of the current string */ | |
e6ed776f GRG |
193 | if (data->Eos) |
194 | while ((c = *data->cptr++) && c != data->Eos); | |
cfbe03c9 JS |
195 | |
196 | /* | |
197 | * then get to the beginning of the next string looking for possible | |
198 | * comment | |
199 | */ | |
e6ed776f GRG |
200 | if (data->Bos) { |
201 | while ((c = *data->cptr++) && c != data->Bos) | |
202 | if (data->Bcmt && c == data->Bcmt[0]) | |
203 | ParseComment(data); | |
204 | } else if (data->Bcmt) { /* XPM2 natural */ | |
205 | while ((c = *data->cptr++) == data->Bcmt[0]) | |
206 | ParseComment(data); | |
207 | data->cptr--; | |
cfbe03c9 JS |
208 | } |
209 | } else { | |
210 | register int c; | |
e6ed776f | 211 | FILE *file = data->stream.file; |
cfbe03c9 JS |
212 | |
213 | /* get to the end of the current string */ | |
e6ed776f GRG |
214 | if (data->Eos) |
215 | while ((c = Getc(data, file)) != data->Eos && c != EOF); | |
cfbe03c9 JS |
216 | |
217 | /* | |
218 | * then get to the beginning of the next string looking for possible | |
219 | * comment | |
220 | */ | |
e6ed776f GRG |
221 | if (data->Bos) { |
222 | while ((c = Getc(data, file)) != data->Bos && c != EOF) | |
223 | if (data->Bcmt && c == data->Bcmt[0]) | |
224 | ParseComment(data); | |
225 | ||
226 | } else if (data->Bcmt) { /* XPM2 natural */ | |
227 | while ((c = Getc(data, file)) == data->Bcmt[0]) | |
228 | ParseComment(data); | |
229 | Ungetc(data, c, file); | |
cfbe03c9 JS |
230 | } |
231 | } | |
232 | return 0; | |
233 | } | |
234 | ||
235 | ||
cfbe03c9 JS |
236 | /* |
237 | * skip whitespace and return the following word | |
238 | */ | |
ea258ad3 DW |
239 | #ifdef __OS2__ |
240 | /* Visual Age cannot deal with old, non-ansi, code */ | |
241 | unsigned int xpmNextWord( | |
242 | xpmData* data | |
243 | , char* buf | |
244 | , unsigned int buflen | |
245 | ) | |
246 | #else | |
cfbe03c9 | 247 | unsigned int |
e6ed776f GRG |
248 | xpmNextWord(data, buf, buflen) |
249 | xpmData *data; | |
250 | char *buf; | |
251 | unsigned int buflen; | |
ea258ad3 | 252 | #endif |
cfbe03c9 JS |
253 | { |
254 | register unsigned int n = 0; | |
255 | int c; | |
256 | ||
e6ed776f GRG |
257 | if (!data->type || data->type == XPMBUFFER) { |
258 | while (isspace(c = *data->cptr) && c != data->Eos) | |
259 | data->cptr++; | |
cfbe03c9 | 260 | do { |
e6ed776f | 261 | c = *data->cptr++; |
cfbe03c9 JS |
262 | *buf++ = c; |
263 | n++; | |
e6ed776f | 264 | } while (!isspace(c) && c != data->Eos && n < buflen); |
cfbe03c9 | 265 | n--; |
e6ed776f | 266 | data->cptr--; |
cfbe03c9 | 267 | } else { |
e6ed776f | 268 | FILE *file = data->stream.file; |
cfbe03c9 | 269 | |
e6ed776f GRG |
270 | while ((c = Getc(data, file)) != EOF && isspace(c) && c != data->Eos); |
271 | while (!isspace(c) && c != data->Eos && c != EOF && n < buflen) { | |
cfbe03c9 JS |
272 | *buf++ = c; |
273 | n++; | |
e6ed776f | 274 | c = Getc(data, file); |
cfbe03c9 | 275 | } |
e6ed776f | 276 | Ungetc(data, c, file); |
cfbe03c9 JS |
277 | } |
278 | return (n); | |
279 | } | |
280 | ||
e6ed776f GRG |
281 | /* |
282 | * skip whitespace and compute the following unsigned int, | |
283 | * returns 1 if one is found and 0 if not | |
284 | */ | |
ea258ad3 DW |
285 | #ifdef __OS2__ |
286 | /* Visual Age cannot deal with old, non-ansi, code */ | |
287 | int | |
288 | xpmNextUI(xpmData* data, unsigned int* ui_return) | |
289 | #else | |
e6ed776f GRG |
290 | int |
291 | xpmNextUI(data, ui_return) | |
292 | xpmData *data; | |
293 | unsigned int *ui_return; | |
ea258ad3 | 294 | #endif |
e6ed776f GRG |
295 | { |
296 | char buf[BUFSIZ]; | |
297 | int l; | |
298 | ||
299 | l = xpmNextWord(data, buf, BUFSIZ); | |
300 | return xpmatoui(buf, l, ui_return); | |
301 | } | |
302 | ||
cfbe03c9 JS |
303 | /* |
304 | * return end of string - WARNING: malloc! | |
305 | */ | |
ea258ad3 DW |
306 | #ifdef __OS2__ |
307 | /* Visual Age cannot deal with old, non-ansi, code */ | |
308 | int xpmGetString(xpmData* data, char** sptr, unsigned int* l) | |
309 | #else | |
cfbe03c9 | 310 | int |
e6ed776f GRG |
311 | xpmGetString(data, sptr, l) |
312 | xpmData *data; | |
313 | char **sptr; | |
314 | unsigned int *l; | |
ea258ad3 | 315 | #endif |
cfbe03c9 JS |
316 | { |
317 | unsigned int i, n = 0; | |
318 | int c; | |
e6ed776f GRG |
319 | char *p = NULL, *q, buf[BUFSIZ]; |
320 | ||
321 | if (!data->type || data->type == XPMBUFFER) { | |
322 | if (data->cptr) { | |
323 | char *start = data->cptr; | |
324 | while ((c = *data->cptr) && c != data->Eos) | |
325 | data->cptr++; | |
326 | n = data->cptr - start + 1; | |
cfbe03c9 JS |
327 | p = (char *) XpmMalloc(n); |
328 | if (!p) | |
329 | return (XpmNoMemory); | |
330 | strncpy(p, start, n); | |
e6ed776f | 331 | if (data->type) /* XPMBUFFER */ |
cfbe03c9 JS |
332 | p[n - 1] = '\0'; |
333 | } | |
334 | } else { | |
e6ed776f | 335 | FILE *file = data->stream.file; |
cfbe03c9 | 336 | |
e6ed776f | 337 | if ((c = Getc(data, file)) == EOF) |
cfbe03c9 | 338 | return (XpmFileInvalid); |
e6ed776f | 339 | |
cfbe03c9 JS |
340 | i = 0; |
341 | q = buf; | |
342 | p = (char *) XpmMalloc(1); | |
e6ed776f | 343 | while (c != data->Eos && c != EOF) { |
cfbe03c9 JS |
344 | if (i == BUFSIZ) { |
345 | /* get to the end of the buffer */ | |
346 | /* malloc needed memory */ | |
347 | q = (char *) XpmRealloc(p, n + i); | |
348 | if (!q) { | |
349 | XpmFree(p); | |
350 | return (XpmNoMemory); | |
351 | } | |
352 | p = q; | |
353 | q += n; | |
354 | /* and copy what we already have */ | |
355 | strncpy(q, buf, i); | |
356 | n += i; | |
357 | i = 0; | |
358 | q = buf; | |
359 | } | |
360 | *q++ = c; | |
361 | i++; | |
e6ed776f | 362 | c = Getc(data, file); |
cfbe03c9 JS |
363 | } |
364 | if (c == EOF) { | |
365 | XpmFree(p); | |
366 | return (XpmFileInvalid); | |
367 | } | |
368 | if (n + i != 0) { | |
369 | /* malloc needed memory */ | |
370 | q = (char *) XpmRealloc(p, n + i + 1); | |
371 | if (!q) { | |
372 | XpmFree(p); | |
373 | return (XpmNoMemory); | |
374 | } | |
375 | p = q; | |
376 | q += n; | |
377 | /* and copy the buffer */ | |
378 | strncpy(q, buf, i); | |
379 | n += i; | |
380 | p[n++] = '\0'; | |
381 | } else { | |
382 | *p = '\0'; | |
383 | n = 1; | |
384 | } | |
e6ed776f | 385 | Ungetc(data, c, file); |
cfbe03c9 JS |
386 | } |
387 | *sptr = p; | |
388 | *l = n; | |
389 | return (XpmSuccess); | |
390 | } | |
391 | ||
392 | /* | |
393 | * get the current comment line | |
394 | */ | |
ea258ad3 DW |
395 | #ifdef __OS2__ |
396 | /* Visual Age cannot deal with old, non-ansi, code */ | |
397 | int xpmGetCmt(xpmData* data, char** cmt) | |
398 | #else | |
cfbe03c9 | 399 | int |
e6ed776f GRG |
400 | xpmGetCmt(data, cmt) |
401 | xpmData *data; | |
402 | char **cmt; | |
ea258ad3 | 403 | #endif |
cfbe03c9 | 404 | { |
e6ed776f | 405 | if (!data->type) |
cfbe03c9 | 406 | *cmt = NULL; |
e6ed776f GRG |
407 | else if (data->CommentLength) { |
408 | *cmt = (char *) XpmMalloc(data->CommentLength + 1); | |
409 | strncpy(*cmt, data->Comment, data->CommentLength); | |
410 | (*cmt)[data->CommentLength] = '\0'; | |
411 | data->CommentLength = 0; | |
cfbe03c9 JS |
412 | } else |
413 | *cmt = NULL; | |
414 | return 0; | |
415 | } | |
416 | ||
cfbe03c9 JS |
417 | xpmDataType xpmDataTypes[] = |
418 | { | |
419 | "", "!", "\n", '\0', '\n', "", "", "", "", /* Natural type */ | |
420 | "C", "/*", "*/", '"', '"', ",\n", "static char *", "[] = {\n", "};\n", | |
421 | "Lisp", ";", "\n", '"', '"', "\n", "(setq ", " '(\n", "))\n", | |
422 | #ifdef VMS | |
423 | NULL | |
424 | #else | |
425 | NULL, NULL, NULL, 0, 0, NULL, NULL, NULL, NULL | |
426 | #endif | |
427 | }; | |
428 | ||
429 | /* | |
430 | * parse xpm header | |
431 | */ | |
ea258ad3 DW |
432 | #ifdef __OS2__ |
433 | /* Visual Age cannot deal with old, non-ansi, code */ | |
434 | int xpmParseHeader(xpmData* data) | |
435 | #else | |
cfbe03c9 | 436 | int |
e6ed776f GRG |
437 | xpmParseHeader(data) |
438 | xpmData *data; | |
ea258ad3 | 439 | #endif |
cfbe03c9 JS |
440 | { |
441 | char buf[BUFSIZ]; | |
442 | int l, n = 0; | |
443 | ||
e6ed776f GRG |
444 | if (data->type) { |
445 | data->Bos = '\0'; | |
446 | data->Eos = '\n'; | |
447 | data->Bcmt = data->Ecmt = NULL; | |
448 | l = xpmNextWord(data, buf, BUFSIZ); | |
cfbe03c9 JS |
449 | if (l == 7 && !strncmp("#define", buf, 7)) { |
450 | /* this maybe an XPM 1 file */ | |
451 | char *ptr; | |
452 | ||
e6ed776f | 453 | l = xpmNextWord(data, buf, BUFSIZ); |
cfbe03c9 JS |
454 | if (!l) |
455 | return (XpmFileInvalid); | |
e6ed776f GRG |
456 | buf[l] = '\0'; |
457 | ptr = rindex(buf, '_'); | |
cfbe03c9 JS |
458 | if (!ptr || strncmp("_format", ptr, l - (ptr - buf))) |
459 | return XpmFileInvalid; | |
460 | /* this is definitely an XPM 1 file */ | |
e6ed776f | 461 | data->format = 1; |
cfbe03c9 JS |
462 | n = 1; /* handle XPM1 as mainly XPM2 C */ |
463 | } else { | |
464 | ||
465 | /* | |
466 | * skip the first word, get the second one, and see if this is | |
467 | * XPM 2 or 3 | |
468 | */ | |
e6ed776f | 469 | l = xpmNextWord(data, buf, BUFSIZ); |
cfbe03c9 JS |
470 | if ((l == 3 && !strncmp("XPM", buf, 3)) || |
471 | (l == 4 && !strncmp("XPM2", buf, 4))) { | |
472 | if (l == 3) | |
473 | n = 1; /* handle XPM as XPM2 C */ | |
474 | else { | |
475 | /* get the type key word */ | |
e6ed776f | 476 | l = xpmNextWord(data, buf, BUFSIZ); |
cfbe03c9 JS |
477 | |
478 | /* | |
479 | * get infos about this type | |
480 | */ | |
481 | while (xpmDataTypes[n].type | |
482 | && strncmp(xpmDataTypes[n].type, buf, l)) | |
483 | n++; | |
484 | } | |
e6ed776f | 485 | data->format = 0; |
cfbe03c9 JS |
486 | } else |
487 | /* nope this is not an XPM file */ | |
488 | return XpmFileInvalid; | |
489 | } | |
490 | if (xpmDataTypes[n].type) { | |
491 | if (n == 0) { /* natural type */ | |
e6ed776f GRG |
492 | data->Bcmt = xpmDataTypes[n].Bcmt; |
493 | data->Ecmt = xpmDataTypes[n].Ecmt; | |
494 | xpmNextString(data); /* skip the end of the headerline */ | |
495 | data->Bos = xpmDataTypes[n].Bos; | |
496 | data->Eos = xpmDataTypes[n].Eos; | |
cfbe03c9 | 497 | } else { |
e6ed776f GRG |
498 | data->Bcmt = xpmDataTypes[n].Bcmt; |
499 | data->Ecmt = xpmDataTypes[n].Ecmt; | |
500 | if (!data->format) { /* XPM 2 or 3 */ | |
501 | data->Bos = xpmDataTypes[n].Bos; | |
502 | data->Eos = '\0'; | |
cfbe03c9 | 503 | /* get to the beginning of the first string */ |
e6ed776f GRG |
504 | xpmNextString(data); |
505 | data->Eos = xpmDataTypes[n].Eos; | |
cfbe03c9 | 506 | } else /* XPM 1 skip end of line */ |
e6ed776f | 507 | xpmNextString(data); |
cfbe03c9 JS |
508 | } |
509 | } else | |
510 | /* we don't know about that type of XPM file... */ | |
511 | return XpmFileInvalid; | |
512 | } | |
513 | return XpmSuccess; | |
514 | } |