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 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
|
/* fmtdump.c -- compile format file and dump out instructions
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
*/
#include "h/mh.h"
#include "sbr/charstring.h"
#include "sbr/fmt_new.h"
#include "scansbr.h"
#include "sbr/getarguments.h"
#include "sbr/smatch.h"
#include "sbr/ambigsw.h"
#include "sbr/print_version.h"
#include "sbr/print_help.h"
#include "sbr/error.h"
#include "sbr/fmt_compile.h"
#include "sbr/fmt_scan.h"
#include "sbr/done.h"
#include "sbr/utils.h"
#include "sbr/globals.h"
#define FMTDUMP_SWITCHES \
X("form formatfile", 0, FORMSW) \
X("format string", 5, FMTSW) \
X("version", 0, VERSIONSW) \
X("help", 0, HELPSW) \
#define X(sw, minchars, id) id,
DEFINE_SWITCH_ENUM(FMTDUMP);
#undef X
#define X(sw, minchars, id) { sw, minchars, id },
DEFINE_SWITCH_ARRAY(FMTDUMP, switches);
#undef X
/* for assignlabel */
static struct format *lvec[128];
static int lused = 0;
/*
* static prototypes
*/
static void fmt_dump (struct format *);
static void dumpone(struct format *);
static int findlabel(struct format *);
static void assignlabel(struct format *);
static char *f_typestr(int);
static char *c_typestr(int);
static char *c_flagsstr(int);
static void litputs(char *);
static void litputc(char);
int
main (int argc, char **argv)
{
char *cp, *form = NULL, *format = NULL;
char buf[BUFSIZ], *nfs, **argp, **arguments;
struct format *fmt;
if (nmh_init(argv[0], true, false)) { return 1; }
arguments = getarguments (invo_name, argc, argv, 1);
argp = arguments;
while ((cp = *argp++)) {
if (*cp == '-') {
switch (smatch (++cp, switches)) {
case AMBIGSW:
ambigsw (cp, switches);
done (1);
case UNKWNSW:
die("-%s unknown", cp);
case HELPSW:
snprintf (buf, sizeof(buf), "%s [switches]", invo_name);
print_help (buf, switches, 1);
done (0);
case VERSIONSW:
print_version(invo_name);
done (0);
case FORMSW:
if (!(form = *argp++) || *form == '-')
die("missing argument to %s", argp[-2]);
format = NULL;
continue;
case FMTSW:
if (!(format = *argp++) || *format == '-')
die("missing argument to %s", argp[-2]);
form = NULL;
continue;
}
}
if (form)
die("only one form at a time!");
form = cp;
}
/*
* Get new format string. Must be before chdir().
*/
nfs = new_fs (form, format, FORMAT);
(void) fmt_compile(nfs, &fmt, 1);
fmt_dump(fmt);
fmt_free(fmt, 1);
done(0);
return 1;
}
static void
fmt_dump (struct format *fmth)
{
int i;
struct format *fmt, *addr;
/* Assign labels */
for (fmt = fmth; fmt; ++fmt) {
i = fmt->f_type;
if (i == FT_IF_S ||
i == FT_IF_S_NULL ||
i == FT_IF_V_EQ ||
i == FT_IF_V_NE ||
i == FT_IF_V_GT ||
i == FT_IF_MATCH ||
i == FT_IF_AMATCH ||
i == FT_GOTO) {
addr = fmt + fmt->f_skip;
if (findlabel(addr) < 0)
assignlabel(addr);
}
if (fmt->f_type == FT_DONE && fmt->f_value == 0)
break;
}
/* Dump them out! */
for (fmt = fmth; fmt; ++fmt) {
dumpone(fmt);
if (fmt->f_type == FT_DONE && fmt->f_value == 0)
break;
}
}
static void
dumpone(struct format *fmt)
{
int i;
if ((i = findlabel(fmt)) >= 0)
printf("L%d:", i);
putchar('\t');
fputs(f_typestr((int)fmt->f_type), stdout);
switch (fmt->f_type) {
case FT_COMP:
case FT_LS_COMP:
case FT_LV_COMPFLAG:
case FT_LV_COMP:
fputs(", comp ", stdout);
litputs(fmt->f_comp->c_name);
if (fmt->f_comp->c_type)
printf(", c_type %s", c_typestr(fmt->f_comp->c_type));
if (fmt->f_comp->c_flags)
printf(", c_flags %s", c_flagsstr(fmt->f_comp->c_flags));
break;
case FT_LV_SEC:
case FT_LV_MIN:
case FT_LV_HOUR:
case FT_LV_MDAY:
case FT_LV_MON:
case FT_LS_MONTH:
case FT_LS_LMONTH:
case FT_LS_ZONE:
case FT_LV_YEAR:
case FT_LV_WDAY:
case FT_LS_DAY:
case FT_LS_WEEKDAY:
case FT_LV_YDAY:
case FT_LV_ZONE:
case FT_LV_CLOCK:
case FT_LV_RCLOCK:
case FT_LV_DAYF:
case FT_LV_ZONEF:
case FT_LV_DST:
case FT_LS_822DATE:
case FT_LS_PRETTY:
case FT_LOCALDATE:
case FT_GMTDATE:
case FT_PARSEDATE:
fputs(", c_name ", stdout);
litputs(fmt->f_comp->c_name);
if (fmt->f_comp->c_type)
printf(", c_type %s", c_typestr(fmt->f_comp->c_type));
if (fmt->f_comp->c_flags)
printf(", c_flags %s", c_flagsstr(fmt->f_comp->c_flags));
break;
case FT_LS_ADDR:
case FT_LS_PERS:
case FT_LS_MBOX:
case FT_LS_HOST:
case FT_LS_PATH:
case FT_LS_GNAME:
case FT_LS_NOTE:
case FT_LS_822ADDR:
case FT_LV_HOSTTYPE:
case FT_LV_INGRPF:
case FT_LV_NOHOSTF:
case FT_LS_FRIENDLY:
case FT_PARSEADDR:
case FT_MYMBOX:
case FT_GETMYMBOX:
case FT_GETMYADDR:
fputs(", c_name ", stdout);
litputs(fmt->f_comp->c_name);
if (fmt->f_comp->c_type)
printf(", c_type %s", c_typestr(fmt->f_comp->c_type));
if (fmt->f_comp->c_flags)
printf(", c_flags %s", c_flagsstr(fmt->f_comp->c_flags));
break;
case FT_COMPF:
printf(", width %d, fill '", fmt->f_width);
litputc(fmt->f_fill);
fputs("' name ", stdout);
litputs(fmt->f_comp->c_name);
if (fmt->f_comp->c_type)
printf(", c_type %s", c_typestr(fmt->f_comp->c_type));
if (fmt->f_comp->c_flags)
printf(", c_flags %s", c_flagsstr(fmt->f_comp->c_flags));
break;
case FT_STRF:
case FT_NUMF:
printf(", width %d, fill '", fmt->f_width);
litputc(fmt->f_fill);
putchar('\'');
break;
case FT_LIT:
putchar(' ');
litputs(fmt->f_text);
break;
case FT_CHAR:
putchar(' ');
putchar('\'');
litputc(fmt->f_char);
putchar('\'');
break;
case FT_IF_S:
case FT_IF_S_NULL:
case FT_IF_MATCH:
case FT_IF_AMATCH:
fputs(" continue else goto", stdout);
/* FALLTHRU */
case FT_GOTO:
i = findlabel(fmt + fmt->f_skip);
printf(" L%d", i);
break;
case FT_IF_V_EQ:
case FT_IF_V_NE:
case FT_IF_V_GT:
i = findlabel(fmt + fmt->f_skip);
printf(" %d continue else goto L%d", fmt->f_value, i);
break;
case FT_V_EQ:
case FT_V_NE:
case FT_V_GT:
case FT_LV_LIT:
case FT_LV_PLUS_L:
case FT_LV_MINUS_L:
case FT_LV_MULTIPLY_L:
case FT_LV_DIVIDE_L:
case FT_LV_MODULO_L:
printf(" value %d", fmt->f_value);
break;
case FT_LS_LIT:
fputs(" str ", stdout);
litputs(fmt->f_text);
break;
case FT_LS_GETENV:
fputs(" getenv ", stdout);
litputs(fmt->f_text);
break;
case FT_LS_DECODECOMP:
fputs(", comp ", stdout);
litputs(fmt->f_comp->c_name);
break;
case FT_LS_DECODE:
break;
case FT_LS_TRIM:
printf(", width %d", fmt->f_width);
break;
case FT_LV_DAT:
printf(", value dat[%d]", fmt->f_value);
break;
}
putchar('\n');
}
static int
findlabel(struct format *addr)
{
int i;
for (i = 0; i < lused; ++i)
if (addr == lvec[i])
return i;
return -1;
}
static void
assignlabel(struct format *addr)
{
lvec[lused++] = addr;
}
static char *
f_typestr(int t)
{
static char buf[32];
switch (t) {
case FT_COMP: return "COMP";
case FT_COMPF: return "COMPF";
case FT_LIT: return "LIT";
case FT_CHAR: return "CHAR";
case FT_NUM: return "NUM";
case FT_NUMF: return "NUMF";
case FT_STR: return "STR";
case FT_STRF: return "STRF";
case FT_STRFW: return "STRFW";
case FT_STRLIT: return "STRLIT";
case FT_STRLITZ: return "STRLITZ";
case FT_PUTADDR: return "PUTADDR";
case FT_LS_COMP: return "LS_COMP";
case FT_LS_LIT: return "LS_LIT";
case FT_LS_GETENV: return "LS_GETENV";
case FT_LS_CFIND: return "LS_CFIND";
case FT_LS_DECODECOMP: return "LS_DECODECOMP";
case FT_LS_DECODE: return "LS_DECODE";
case FT_LS_TRIM: return "LS_TRIM";
case FT_LV_COMP: return "LV_COMP";
case FT_LV_COMPFLAG: return "LV_COMPFLAG";
case FT_LV_LIT: return "LV_LIT";
case FT_LV_DAT: return "LV_DAT";
case FT_LV_STRLEN: return "LV_STRLEN";
case FT_LV_PLUS_L: return "LV_PLUS_L";
case FT_LV_MINUS_L: return "LV_MINUS_L";
case FT_LV_MULTIPLY_L: return "LV_MULTIPLY_L";
case FT_LV_DIVIDE_L: return "LV_DIVIDE_L";
case FT_LV_MODULO_L: return "LV_MODULO_L";
case FT_LV_CHAR_LEFT: return "LV_CHAR_LEFT";
case FT_LS_MONTH: return "LS_MONTH";
case FT_LS_LMONTH: return "LS_LMONTH";
case FT_LS_ZONE: return "LS_ZONE";
case FT_LS_DAY: return "LS_DAY";
case FT_LS_WEEKDAY: return "LS_WEEKDAY";
case FT_LS_822DATE: return "LS_822DATE";
case FT_LS_PRETTY: return "LS_PRETTY";
case FT_LS_KILO: return "LS_KILO";
case FT_LS_KIBI: return "LS_KIBI";
case FT_LS_ORDINAL: return "LS_ORDINAL";
case FT_LV_SEC: return "LV_SEC";
case FT_LV_MIN: return "LV_MIN";
case FT_LV_HOUR: return "LV_HOUR";
case FT_LV_MDAY: return "LV_MDAY";
case FT_LV_MON: return "LV_MON";
case FT_LV_YEAR: return "LV_YEAR";
case FT_LV_YDAY: return "LV_YDAY";
case FT_LV_WDAY: return "LV_WDAY";
case FT_LV_ZONE: return "LV_ZONE";
case FT_LV_CLOCK: return "LV_CLOCK";
case FT_LV_RCLOCK: return "LV_RCLOCK";
case FT_LV_DAYF: return "LV_DAYF";
case FT_LV_DST: return "LV_DST";
case FT_LV_ZONEF: return "LV_ZONEF";
case FT_LS_PERS: return "LS_PERS";
case FT_LS_MBOX: return "LS_MBOX";
case FT_LS_HOST: return "LS_HOST";
case FT_LS_PATH: return "LS_PATH";
case FT_LS_GNAME: return "LS_GNAME";
case FT_LS_NOTE: return "LS_NOTE";
case FT_LS_ADDR: return "LS_ADDR";
case FT_LS_822ADDR: return "LS_822ADDR";
case FT_LS_FRIENDLY: return "LS_FRIENDLY";
case FT_LV_HOSTTYPE: return "LV_HOSTTYPE";
case FT_LV_INGRPF: return "LV_INGRPF";
case FT_LS_UNQUOTE: return "LS_UNQUOTE";
case FT_LV_NOHOSTF: return "LV_NOHOSTF";
case FT_LOCALDATE: return "LOCALDATE";
case FT_GMTDATE: return "GMTDATE";
case FT_PARSEDATE: return "PARSEDATE";
case FT_PARSEADDR: return "PARSEADDR";
case FT_FORMATADDR: return "FORMATADDR";
case FT_CONCATADDR: return "CONCATADDR";
case FT_MYMBOX: return "MYMBOX";
case FT_GETMYMBOX: return "GETMYMBOX";
case FT_GETMYADDR: return "GETMYADDR";
case FT_SAVESTR: return "SAVESTR";
case FT_DONE: return "DONE";
case FT_PAUSE: return "PAUSE";
case FT_NOP: return "NOP";
case FT_GOTO: return "GOTO";
case FT_IF_S_NULL: return "IF_S_NULL";
case FT_IF_S: return "IF_S";
case FT_IF_V_EQ: return "IF_V_EQ";
case FT_IF_V_NE: return "IF_V_NE";
case FT_IF_V_GT: return "IF_V_GT";
case FT_IF_MATCH: return "IF_MATCH";
case FT_IF_AMATCH: return "IF_AMATCH";
case FT_S_NULL: return "S_NULL";
case FT_S_NONNULL: return "S_NONNULL";
case FT_V_EQ: return "V_EQ";
case FT_V_NE: return "V_NE";
case FT_V_GT: return "V_GT";
case FT_V_MATCH: return "V_MATCH";
case FT_V_AMATCH: return "V_AMATCH";
default:
snprintf(buf, sizeof buf, "/* ??? #%d */", t);
return buf;
}
}
#define FNORD(v, s) if (t & (v)) { \
if (i++ > 0) \
strcat(buf, "|"); \
strcat(buf, s); }
static char *
c_typestr(int t)
{
int i;
static char buf[64];
buf[0] = '\0';
if (t & ~(CT_ADDR|CT_DATE))
snprintf(buf, sizeof buf, "0x%x ", (unsigned)t);
strcat(buf, "<");
i = 0;
FNORD(CT_ADDR, "ADDR");
FNORD(CT_DATE, "DATE");
strcat(buf, ">");
return buf;
}
static char *
c_flagsstr(int t)
{
int i;
static char buf[64];
buf[0] = '\0';
if (t & ~(CF_TRUE|CF_PARSED|CF_DATEFAB|CF_TRIMMED))
snprintf(buf, sizeof buf, "0x%x ", (unsigned)t);
strcat(buf, "<");
i = 0;
FNORD(CF_TRUE, "TRUE");
FNORD(CF_PARSED, "PARSED");
FNORD(CF_DATEFAB, "DATEFAB");
FNORD(CF_TRIMMED, "TRIMMED");
strcat(buf, ">");
return buf;
}
#undef FNORD
static void
litputs(char *s)
{
if (s) {
putchar('"');
while (*s)
litputc(*s++);
putchar('"');
} else
fputs("<nil>", stdout);
}
static void
litputc(char c)
{
if (c & ~ 0177) {
putchar('M');
putchar('-');
c &= 0177;
}
if (c < 0x20 || c == 0177) {
if (c == '\b') {
putchar('\\');
putchar('b');
} else if (c == '\f') {
putchar('\\');
putchar('f');
} else if (c == '\n') {
putchar('\\');
putchar('n');
} else if (c == '\r') {
putchar('\\');
putchar('r');
} else if (c == '\t') {
putchar('\\');
putchar('t');
} else {
putchar('^');
putchar(c ^ 0x40); /* DEL to ?, others to alpha */
}
} else
putchar(c);
}
|