]> diplodocus.org Git - nmh/blob - uip/fmtdump.c
Alter HasSuffixC()'s char * to be const.
[nmh] / uip / fmtdump.c
1
2 /*
3 * fmtdump.c -- compile format file and dump out instructions
4 *
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
8 */
9
10 #include <h/mh.h>
11 #include <h/fmt_scan.h>
12 #include <h/fmt_compile.h>
13 #include <h/scansbr.h>
14
15 #define FMTDUMP_SWITCHES \
16 X("form formatfile", 0, FORMSW) \
17 X("format string", 5, FMTSW) \
18 X("version", 0, VERSIONSW) \
19 X("help", 0, HELPSW) \
20
21 #define X(sw, minchars, id) id,
22 DEFINE_SWITCH_ENUM(FMTDUMP);
23 #undef X
24
25 #define X(sw, minchars, id) { sw, minchars, id },
26 DEFINE_SWITCH_ARRAY(FMTDUMP, switches);
27 #undef X
28
29 /* for assignlabel */
30 static struct format *lvec[128];
31 static int lused = 0;
32
33 /*
34 * static prototypes
35 */
36 static void fmt_dump (struct format *);
37 static void dumpone(struct format *);
38 static int findlabel(struct format *);
39 static void assignlabel(struct format *);
40 static char *f_typestr(int);
41 static char *c_typestr(int);
42 static char *c_flagsstr(int);
43 static void litputs(char *);
44 static void litputc(char);
45
46
47 int
48 main (int argc, char **argv)
49 {
50 char *cp, *form = NULL, *format = NULL;
51 char buf[BUFSIZ], *nfs, **argp, **arguments;
52 struct format *fmt;
53
54 if (nmh_init(argv[0], 2)) { return 1; }
55
56 arguments = getarguments (invo_name, argc, argv, 1);
57 argp = arguments;
58
59 while ((cp = *argp++)) {
60 if (*cp == '-') {
61 switch (smatch (++cp, switches)) {
62 case AMBIGSW:
63 ambigsw (cp, switches);
64 done (1);
65 case UNKWNSW:
66 adios (NULL, "-%s unknown", cp);
67
68 case HELPSW:
69 snprintf (buf, sizeof(buf), "%s [switches]", invo_name);
70 print_help (buf, switches, 1);
71 done (0);
72 case VERSIONSW:
73 print_version(invo_name);
74 done (0);
75
76 case FORMSW:
77 if (!(form = *argp++) || *form == '-')
78 adios (NULL, "missing argument to %s", argp[-2]);
79 format = NULL;
80 continue;
81 case FMTSW:
82 if (!(format = *argp++) || *format == '-')
83 adios (NULL, "missing argument to %s", argp[-2]);
84 form = NULL;
85 continue;
86
87 }
88 }
89 if (form)
90 adios (NULL, "only one form at a time!");
91 else
92 form = cp;
93 }
94
95 /*
96 * Get new format string. Must be before chdir().
97 */
98 nfs = new_fs (form, format, FORMAT);
99 (void) fmt_compile(nfs, &fmt, 1);
100
101 fmt_dump(fmt);
102
103 fmt_free(fmt, 1);
104
105 done(0);
106 return 1;
107 }
108
109 static void
110 fmt_dump (struct format *fmth)
111 {
112 int i;
113 struct format *fmt, *addr;
114
115 /* Assign labels */
116 for (fmt = fmth; fmt; ++fmt) {
117 i = fmt->f_type;
118 if (i == FT_IF_S ||
119 i == FT_IF_S_NULL ||
120 i == FT_IF_V_EQ ||
121 i == FT_IF_V_NE ||
122 i == FT_IF_V_GT ||
123 i == FT_IF_MATCH ||
124 i == FT_IF_AMATCH ||
125 i == FT_GOTO) {
126 addr = fmt + fmt->f_skip;
127 if (findlabel(addr) < 0)
128 assignlabel(addr);
129 }
130 if (fmt->f_type == FT_DONE && fmt->f_value == 0)
131 break;
132 }
133
134 /* Dump them out! */
135 for (fmt = fmth; fmt; ++fmt) {
136 dumpone(fmt);
137 if (fmt->f_type == FT_DONE && fmt->f_value == 0)
138 break;
139 }
140 }
141
142 static void
143 dumpone(struct format *fmt)
144 {
145 int i;
146
147 if ((i = findlabel(fmt)) >= 0)
148 printf("L%d:", i);
149 putchar('\t');
150
151 fputs(f_typestr((int)fmt->f_type), stdout);
152
153 switch (fmt->f_type) {
154
155 case FT_COMP:
156 case FT_LS_COMP:
157 case FT_LV_COMPFLAG:
158 case FT_LV_COMP:
159 printf(", comp ");
160 litputs(fmt->f_comp->c_name);
161 if (fmt->f_comp->c_type)
162 printf(", c_type %s", c_typestr(fmt->f_comp->c_type));
163 if (fmt->f_comp->c_flags)
164 printf(", c_flags %s", c_flagsstr(fmt->f_comp->c_flags));
165 break;
166
167 case FT_LV_SEC:
168 case FT_LV_MIN:
169 case FT_LV_HOUR:
170 case FT_LV_MDAY:
171 case FT_LV_MON:
172 case FT_LS_MONTH:
173 case FT_LS_LMONTH:
174 case FT_LS_ZONE:
175 case FT_LV_YEAR:
176 case FT_LV_WDAY:
177 case FT_LS_DAY:
178 case FT_LS_WEEKDAY:
179 case FT_LV_YDAY:
180 case FT_LV_ZONE:
181 case FT_LV_CLOCK:
182 case FT_LV_RCLOCK:
183 case FT_LV_DAYF:
184 case FT_LV_ZONEF:
185 case FT_LV_DST:
186 case FT_LS_822DATE:
187 case FT_LS_PRETTY:
188 case FT_LOCALDATE:
189 case FT_GMTDATE:
190 case FT_PARSEDATE:
191 printf(", c_name ");
192 litputs(fmt->f_comp->c_name);
193 if (fmt->f_comp->c_type)
194 printf(", c_type %s", c_typestr(fmt->f_comp->c_type));
195 if (fmt->f_comp->c_flags)
196 printf(", c_flags %s", c_flagsstr(fmt->f_comp->c_flags));
197 break;
198
199 case FT_LS_ADDR:
200 case FT_LS_PERS:
201 case FT_LS_MBOX:
202 case FT_LS_HOST:
203 case FT_LS_PATH:
204 case FT_LS_GNAME:
205 case FT_LS_NOTE:
206 case FT_LS_822ADDR:
207 case FT_LV_HOSTTYPE:
208 case FT_LV_INGRPF:
209 case FT_LV_NOHOSTF:
210 case FT_LS_FRIENDLY:
211 case FT_PARSEADDR:
212 case FT_MYMBOX:
213 case FT_GETMYMBOX:
214 case FT_GETMYADDR:
215 printf(", c_name ");
216 litputs(fmt->f_comp->c_name);
217 if (fmt->f_comp->c_type)
218 printf(", c_type %s", c_typestr(fmt->f_comp->c_type));
219 if (fmt->f_comp->c_flags)
220 printf(", c_flags %s", c_flagsstr(fmt->f_comp->c_flags));
221 break;
222
223 case FT_COMPF:
224 printf(", width %d, fill '", fmt->f_width);
225 litputc(fmt->f_fill);
226 printf("' name ");
227 litputs(fmt->f_comp->c_name);
228 if (fmt->f_comp->c_type)
229 printf(", c_type %s", c_typestr(fmt->f_comp->c_type));
230 if (fmt->f_comp->c_flags)
231 printf(", c_flags %s", c_flagsstr(fmt->f_comp->c_flags));
232 break;
233
234 case FT_STRF:
235 case FT_NUMF:
236 printf(", width %d, fill '", fmt->f_width);
237 litputc(fmt->f_fill);
238 putchar('\'');
239 break;
240
241 case FT_LIT:
242 #ifdef FT_LIT_FORCE
243 case FT_LIT_FORCE:
244 #endif
245 putchar(' ');
246 litputs(fmt->f_text);
247 break;
248
249 case FT_LITF:
250 printf(", width %d, fill '", fmt->f_width);
251 litputc(fmt->f_fill);
252 printf("' ");
253 litputs(fmt->f_text);
254 break;
255
256 case FT_CHAR:
257 putchar(' ');
258 putchar('\'');
259 litputc(fmt->f_char);
260 putchar('\'');
261 break;
262
263
264 case FT_IF_S:
265 case FT_IF_S_NULL:
266 case FT_IF_MATCH:
267 case FT_IF_AMATCH:
268 printf(" continue else goto");
269 case FT_GOTO:
270 i = findlabel(fmt + fmt->f_skip);
271 printf(" L%d", i);
272 break;
273
274 case FT_IF_V_EQ:
275 case FT_IF_V_NE:
276 case FT_IF_V_GT:
277 i = findlabel(fmt + fmt->f_skip);
278 printf(" %d continue else goto L%d", fmt->f_value, i);
279 break;
280
281 case FT_V_EQ:
282 case FT_V_NE:
283 case FT_V_GT:
284 case FT_LV_LIT:
285 case FT_LV_PLUS_L:
286 case FT_LV_MINUS_L:
287 case FT_LV_MULTIPLY_L:
288 case FT_LV_DIVIDE_L:
289 case FT_LV_MODULO_L:
290 printf(" value %d", fmt->f_value);
291 break;
292
293 case FT_LS_LIT:
294 printf(" str ");
295 litputs(fmt->f_text);
296 break;
297
298 case FT_LS_GETENV:
299 printf(" getenv ");
300 litputs(fmt->f_text);
301 break;
302
303 case FT_LS_DECODECOMP:
304 printf(", comp ");
305 litputs(fmt->f_comp->c_name);
306 break;
307
308 case FT_LS_DECODE:
309 break;
310
311 case FT_LS_TRIM:
312 printf(", width %d", fmt->f_width);
313 break;
314
315 case FT_LV_DAT:
316 printf(", value dat[%d]", fmt->f_value);
317 break;
318 }
319 putchar('\n');
320 }
321
322 static int
323 findlabel(struct format *addr)
324 {
325 int i;
326
327 for (i = 0; i < lused; ++i)
328 if (addr == lvec[i])
329 return(i);
330 return(-1);
331 }
332
333 static void
334 assignlabel(struct format *addr)
335 {
336 lvec[lused++] = addr;
337 }
338
339 static char *
340 f_typestr(int t)
341 {
342 static char buf[32];
343
344 switch (t) {
345 case FT_COMP: return("COMP");
346 case FT_COMPF: return("COMPF");
347 case FT_LIT: return("LIT");
348 case FT_LITF: return("LITF");
349 #ifdef FT_LIT_FORCE
350 case FT_LIT_FORCE: return("LIT_FORCE");
351 #endif
352 case FT_CHAR: return("CHAR");
353 case FT_NUM: return("NUM");
354 case FT_NUMF: return("NUMF");
355 case FT_STR: return("STR");
356 case FT_STRF: return("STRF");
357 case FT_STRFW: return("STRFW");
358 case FT_PUTADDR: return("PUTADDR");
359 case FT_STRLIT: return("STRLIT");
360 case FT_STRLITZ: return("STRLITZ");
361 case FT_LS_COMP: return("LS_COMP");
362 case FT_LS_LIT: return("LS_LIT");
363 case FT_LS_GETENV: return("LS_GETENV");
364 case FT_LS_DECODECOMP: return("FT_LS_DECODECOMP");
365 case FT_LS_DECODE: return("FT_LS_DECODE");
366 case FT_LS_TRIM: return("LS_TRIM");
367 case FT_LV_COMP: return("LV_COMP");
368 case FT_LV_COMPFLAG: return("LV_COMPFLAG");
369 case FT_LV_LIT: return("LV_LIT");
370 case FT_LV_DAT: return("LV_DAT");
371 case FT_LV_STRLEN: return("LV_STRLEN");
372 case FT_LV_PLUS_L: return("LV_PLUS_L");
373 case FT_LV_MINUS_L: return("LV_MINUS_L");
374 case FT_LV_MULTIPLY_L: return("LV_MULTIPLY_L");
375 case FT_LV_DIVIDE_L: return("LV_DIVIDE_L");
376 case FT_LV_MODULO_L: return("LV_MODULO_L");
377 case FT_LV_CHAR_LEFT: return("LV_CHAR_LEFT");
378 case FT_LS_KILO: return("LS_KILO");
379 case FT_LS_KIBI: return("LS_KIBI");
380 case FT_LS_MONTH: return("LS_MONTH");
381 case FT_LS_LMONTH: return("LS_LMONTH");
382 case FT_LS_ZONE: return("LS_ZONE");
383 case FT_LS_DAY: return("LS_DAY");
384 case FT_LS_WEEKDAY: return("LS_WEEKDAY");
385 case FT_LS_822DATE: return("LS_822DATE");
386 case FT_LS_PRETTY: return("LS_PRETTY");
387 case FT_LV_SEC: return("LV_SEC");
388 case FT_LV_MIN: return("LV_MIN");
389 case FT_LV_HOUR: return("LV_HOUR");
390 case FT_LV_MDAY: return("LV_MDAY");
391 case FT_LV_MON: return("LV_MON");
392 case FT_LV_YEAR: return("LV_YEAR");
393 case FT_LV_YDAY: return("LV_YDAY");
394 case FT_LV_WDAY: return("LV_WDAY");
395 case FT_LV_ZONE: return("LV_ZONE");
396 case FT_LV_CLOCK: return("LV_CLOCK");
397 case FT_LV_RCLOCK: return("LV_RCLOCK");
398 case FT_LV_DAYF: return("LV_DAYF");
399 case FT_LV_DST: return("LV_DST");
400 case FT_LV_ZONEF: return("LV_ZONEF");
401 case FT_LS_ADDR: return("LS_ADDR");
402 case FT_LS_PERS: return("LS_PERS");
403 case FT_LS_MBOX: return("LS_MBOX");
404 case FT_LS_HOST: return("LS_HOST");
405 case FT_LS_PATH: return("LS_PATH");
406 case FT_LS_GNAME: return("LS_GNAME");
407 case FT_LS_NOTE: return("LS_NOTE");
408 case FT_LS_822ADDR: return("LS_822ADDR");
409 case FT_LS_FRIENDLY: return("LS_FRIENDLY");
410 case FT_LV_HOSTTYPE: return("LV_HOSTTYPE");
411 case FT_LV_INGRPF: return("LV_INGRPF");
412 case FT_LV_NOHOSTF: return("LV_NOHOSTF");
413 case FT_LOCALDATE: return("LOCALDATE");
414 case FT_GMTDATE: return("GMTDATE");
415 case FT_PARSEDATE: return("PARSEDATE");
416 case FT_PARSEADDR: return("PARSEADDR");
417 case FT_FORMATADDR: return("FORMATADDR");
418 case FT_CONCATADDR: return("CONCATADDR");
419 case FT_MYMBOX: return("MYMBOX");
420 case FT_GETMYMBOX: return("GETMYMBOX");
421 case FT_GETMYADDR: return("GETMYADDR");
422 case FT_SAVESTR: return("SAVESTR");
423 #ifdef FT_PAUSE
424 case FT_PAUSE: return ("PAUSE");
425 #endif
426 case FT_DONE: return("DONE");
427 case FT_NOP: return("NOP");
428 case FT_GOTO: return("GOTO");
429 case FT_IF_S_NULL: return("IF_S_NULL");
430 case FT_IF_S: return("IF_S");
431 case FT_IF_V_EQ: return("IF_V_EQ");
432 case FT_IF_V_NE: return("IF_V_NE");
433 case FT_IF_V_GT: return("IF_V_GT");
434 case FT_IF_MATCH: return("IF_MATCH");
435 case FT_IF_AMATCH: return("IF_AMATCH");
436 case FT_S_NULL: return("S_NULL");
437 case FT_S_NONNULL: return("S_NONNULL");
438 case FT_V_EQ: return("V_EQ");
439 case FT_V_NE: return("V_NE");
440 case FT_V_GT: return("V_GT");
441 case FT_V_MATCH: return("V_MATCH");
442 case FT_V_AMATCH: return("V_AMATCH");
443 default:
444 printf(buf, "/* ??? #%d */", t);
445 return(buf);
446 }
447 }
448
449 #define FNORD(v, s) if (t & (v)) { \
450 if (i++ > 0) \
451 strcat(buf, "|"); \
452 strcat(buf, s); }
453
454 static char *
455 c_typestr(int t)
456 {
457 int i;
458 static char buf[64];
459
460 buf[0] = '\0';
461 if (t & ~(CT_ADDR|CT_DATE))
462 printf(buf, "0x%x ", t);
463 strcat(buf, "<");
464 i = 0;
465 FNORD(CT_ADDR, "ADDR");
466 FNORD(CT_DATE, "DATE");
467 strcat(buf, ">");
468 return(buf);
469 }
470
471 static char *
472 c_flagsstr(int t)
473 {
474 int i;
475 static char buf[64];
476
477 buf[0] = '\0';
478 if (t & ~(CF_TRUE|CF_PARSED|CF_DATEFAB|CF_TRIMMED))
479 printf(buf, "0x%x ", t);
480 strcat(buf, "<");
481 i = 0;
482 FNORD(CF_TRUE, "TRUE");
483 FNORD(CF_PARSED, "PARSED");
484 FNORD(CF_DATEFAB, "DATEFAB");
485 FNORD(CF_TRIMMED, "TRIMMED");
486 strcat(buf, ">");
487 return(buf);
488 }
489 #undef FNORD
490
491 static void
492 litputs(char *s)
493 {
494 if (s) {
495 putc('"', stdout);
496 while (*s)
497 litputc(*s++);
498 putc('"', stdout);
499 } else
500 fputs("<nil>", stdout);
501 }
502
503 static void
504 litputc(char c)
505 {
506 if (c & ~ 0177) {
507 putc('M', stdout);
508 putc('-', stdout);
509 c &= 0177;
510 }
511 if (c < 0x20 || c == 0177) {
512 if (c == '\b') {
513 putc('\\', stdout);
514 putc('b', stdout);
515 } else if (c == '\f') {
516 putc('\\', stdout);
517 putc('f', stdout);
518 } else if (c == '\n') {
519 putc('\\', stdout);
520 putc('n', stdout);
521 } else if (c == '\r') {
522 putc('\\', stdout);
523 putc('r', stdout);
524 } else if (c == '\t') {
525 putc('\\', stdout);
526 putc('t', stdout);
527 } else {
528 putc('^', stdout);
529 putc(c ^ 0x40, stdout); /* DEL to ?, others to alpha */
530 }
531 } else
532 putc(c, stdout);
533 }