ren: add .ss
[neatroff.git] / tr.c
blobc7518754bfc5047789ad50020f162ea754741992
1 #include <ctype.h>
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <string.h>
5 #include "roff.h"
7 static int tr_nl = 1;
8 static int c_pc = '%'; /* page number character */
9 int c_ec = '\\';
10 int c_cc = '.';
11 int c_c2 = '\'';
13 /* skip everything until the end of line */
14 static void jmp_eol(void)
16 int c;
17 do {
18 c = cp_next();
19 } while (c >= 0 && c != '\n');
22 static void tr_vs(char **args)
24 int vs = args[1] ? eval_re(args[1], n_v, 'p') : n_v0;
25 n_v0 = n_v;
26 n_v = MAX(0, vs);
29 static void tr_ls(char **args)
31 int ls = args[1] ? eval_re(args[1], n_L, 0) : n_L0;
32 n_L0 = n_L;
33 n_L = MAX(1, ls);
36 static void tr_pl(char **args)
38 int n = eval_re(args[1] ? args[1] : "11i", n_p, 'v');
39 n_p = MAX(0, n);
42 static void tr_nr(char **args)
44 int id;
45 if (!args[2])
46 return;
47 id = map(args[1]);
48 num_set(id, eval_re(args[2], num_get(id, 0), 'u'));
49 num_inc(id, args[3] ? eval(args[3], 'u') : 0);
52 static void tr_rr(char **args)
54 int i;
55 for (i = 1; i <= NARGS; i++)
56 if (args[i])
57 num_del(map(args[i]));
60 static void tr_af(char **args)
62 if (args[2])
63 num_setfmt(map(args[1]), args[2]);
66 static void tr_ds(char **args)
68 if (args[2])
69 str_set(map(args[1]), args[2]);
72 static void tr_as(char **args)
74 int reg;
75 char *s1, *s2, *s;
76 if (!args[2])
77 return;
78 reg = map(args[1]);
79 s1 = str_get(reg) ? str_get(reg) : "";
80 s2 = args[2];
81 s = malloc(strlen(s1) + strlen(s2) + 1);
82 strcpy(s, s1);
83 strcat(s, s2);
84 str_set(reg, s);
85 free(s);
88 static void tr_rm(char **args)
90 int i;
91 for (i = 1; i <= NARGS; i++)
92 if (args[i])
93 str_rm(map(args[i]));
96 static void tr_rn(char **args)
98 if (!args[2])
99 return;
100 str_rn(map(args[1]), map(args[2]));
103 static void tr_po(char **args)
105 int po = args[1] ? eval_re(args[1], n_o, 'm') : n_o0;
106 n_o0 = n_o;
107 n_o = MAX(0, po);
110 static char *arg_regname(char *s, int len);
112 static void macrobody(struct sbuf *sbuf, char *end)
114 char buf[NMLEN];
115 int i, c;
116 int first = 1;
117 cp_back('\n');
118 cp_wid(0); /* copy-mode; disable \w handling */
119 while ((c = cp_next()) >= 0) {
120 if (sbuf && !first)
121 sbuf_add(sbuf, c);
122 first = 0;
123 if (c == '\n') {
124 c = cp_next();
125 if (c == '.') {
126 arg_regname(buf, sizeof(buf));
127 if ((n_cp && end[0] == buf[0] && end[1] == buf[1]) ||
128 !strcmp(end, buf)) {
129 jmp_eol();
130 break;
132 if (!sbuf)
133 continue;
134 sbuf_add(sbuf, '.');
135 for (i = 0; buf[i]; i++)
136 sbuf_add(sbuf, (unsigned char) buf[i]);
137 continue;
139 if (sbuf && c >= 0)
140 sbuf_add(sbuf, c);
143 cp_wid(1);
146 static void tr_de(char **args)
148 struct sbuf sbuf;
149 int id;
150 if (!args[1])
151 return;
152 id = map(args[1]);
153 sbuf_init(&sbuf);
154 if (args[0][1] == 'a' && args[0][2] == 'm' && str_get(id))
155 sbuf_append(&sbuf, str_get(id));
156 macrobody(&sbuf, args[2] ? args[2] : ".");
157 str_set(id, sbuf_buf(&sbuf));
158 sbuf_done(&sbuf);
161 static void tr_ig(char **args)
163 macrobody(NULL, args[1] ? args[1] : ".");
166 void schar_read(char *d, int (*next)(void))
168 d[0] = next();
169 d[1] = '\0';
170 if (d[0] == c_ni) {
171 d[1] = next();
172 d[2] = '\0';
174 if (d[0] == c_ec) {
175 d[1] = next();
176 d[2] = '\0';
177 if (d[1] == '(') {
178 d[2] = next();
179 d[3] = next();
180 d[4] = '\0';
185 int schar_jump(char *d, int (*next)(void), void (*back)(int))
187 int c, i;
188 for (i = 0; d[i]; i++)
189 if ((c = next()) != d[i])
190 break;
191 if (d[i]) {
192 back(c);
193 while (i > 0)
194 back(d[--i]);
195 return 1;
197 return 0;
200 /* read into sbuf until stop; if stop is NULL, stop at whitespace */
201 static int read_until(struct sbuf *sbuf, char *stop)
203 int c;
204 while ((c = cp_next()) >= 0) {
205 cp_back(c);
206 if (c == '\n')
207 return 1;
208 if (!stop && (c == ' ' || c == '\t'))
209 return 0;
210 if (stop && !schar_jump(stop, cp_next, cp_back))
211 return 0;
212 sbuf_add(sbuf, cp_next());
214 return 1;
217 /* evaluate .if strcmp (i.e. 'str'str') */
218 static int if_strcmp(void)
220 char delim[GNLEN];
221 struct sbuf s1, s2;
222 int ret;
223 schar_read(delim, cp_next);
224 sbuf_init(&s1);
225 sbuf_init(&s2);
226 read_until(&s1, delim);
227 read_until(&s2, delim);
228 ret = !strcmp(sbuf_buf(&s1), sbuf_buf(&s2));
229 sbuf_done(&s1);
230 sbuf_done(&s2);
231 return ret;
234 /* evaluate .if condition letters */
235 static int if_cond(void)
237 switch (cp_next()) {
238 case 'o':
239 return n_pg % 2;
240 case 'e':
241 return !(n_pg % 2);
242 case 't':
243 return 1;
244 case 'n':
245 return 0;
247 return 0;
250 /* evaluate .if condition */
251 static int if_eval(void)
253 struct sbuf sbuf;
254 int ret;
255 sbuf_init(&sbuf);
256 if (!read_until(&sbuf, NULL))
257 cp_back(' ');
258 ret = eval(sbuf_buf(&sbuf), '\0') > 0;
259 sbuf_done(&sbuf);
260 return ret;
263 static int ie_cond[NIES]; /* .ie condition stack */
264 static int ie_depth;
266 static void tr_if(char **args)
268 int neg = 0;
269 int ret;
270 int c;
271 do {
272 c = cp_next();
273 } while (c == ' ' || c == '\t');
274 if (c == '!') {
275 neg = 1;
276 c = cp_next();
278 cp_back(c);
279 if (strchr("oetn", c)) {
280 ret = if_cond();
281 } else if (!isdigit(c) && !strchr("-+*/%<=>&:.|()", c)) {
282 ret = if_strcmp();
283 } else {
284 ret = if_eval();
286 if (args[0][1] == 'i' && args[0][2] == 'e') /* .ie command */
287 if (ie_depth < NIES)
288 ie_cond[ie_depth++] = ret != neg;
289 cp_blk(ret == neg);
292 static void tr_el(char **args)
294 cp_blk(ie_depth > 0 ? ie_cond[--ie_depth] : 1);
297 static void tr_na(char **args)
299 n_na = 1;
302 static void tr_ad(char **args)
304 n_na = 0;
305 if (!args[1])
306 return;
307 switch (args[1][0]) {
308 case '0' + AD_L:
309 case 'l':
310 n_j = AD_L;
311 break;
312 case '0' + AD_R:
313 case 'r':
314 n_j = AD_R;
315 break;
316 case '0' + AD_C:
317 case 'c':
318 n_j = AD_C;
319 break;
320 case '0' + AD_B:
321 case 'b':
322 case 'n':
323 n_j = AD_B;
324 break;
328 static void tr_tm(char **args)
330 fprintf(stderr, "%s\n", args[1]);
333 static void tr_so(char **args)
335 if (args[1])
336 in_so(args[1]);
339 static void tr_nx(char **args)
341 if (args[1])
342 in_nx(args[1]);
345 static void tr_ex(char **args)
347 in_ex();
350 static void tr_sy(char **args)
352 system(args[1]);
355 static void tr_lt(char **args)
357 int lt = args[1] ? eval_re(args[1], n_lt, 'm') : n_t0;
358 n_t0 = n_t0;
359 n_lt = MAX(0, lt);
362 static void tr_pc(char **args)
364 c_pc = args[1] ? args[1][0] : -1;
367 static int tl_next(void)
369 int c = cp_next();
370 if (c >= 0 && c == c_pc) {
371 in_push(num_str(REG('%', '\0')), NULL);
372 c = cp_next();
374 return c;
377 static void tr_tl(char **args)
379 int c;
380 do {
381 c = cp_next();
382 } while (c >= 0 && (c == ' ' || c == '\t'));
383 cp_back(c);
384 ren_tl(tl_next, cp_back);
385 do {
386 c = cp_next();
387 } while (c >= 0 && c != '\n');
390 static void tr_ec(char **args)
392 c_ec = args[1] ? args[1][0] : '\\';
395 static void tr_cc(char **args)
397 c_ec = args[1] ? args[1][0] : '.';
400 static void tr_c2(char **args)
402 c_ec = args[1] ? args[1][0] : '\'';
405 static void tr_eo(char **args)
407 c_ec = -1;
410 static void tr_hc(char **args)
412 strcpy(c_hc, args[1] ? args[1] : "\\%");
415 static void tr_nh(char **args)
417 n_hy = 0;
420 static void tr_hy(char **args)
422 n_hy = args[1] ? atoi(args[1]) : 1;
425 static void tr_lg(char **args)
427 if (args[1])
428 n_lg = atoi(args[1]);
431 static void tr_kn(char **args)
433 if (args[1])
434 n_kn = atoi(args[1]);
437 static void tr_cp(char **args)
439 if (args[1])
440 n_cp = atoi(args[1]);
443 static void tr_ss(char **args)
445 if (args[1])
446 n_ss = eval_re(args[1], n_ss, 0);
449 static char *arg_regname(char *s, int len)
451 char *e = n_cp ? s + 2 : s + len;
452 int c = cp_next();
453 while (c == ' ' || c == '\t')
454 c = cp_next();
455 while (s < e && c >= 0 && c != ' ' && c != '\t' && c != '\n') {
456 *s++ = c;
457 c = cp_next();
459 if (c >= 0)
460 cp_back(c);
461 *s++ = '\0';
462 return s;
465 static char *arg_normal(char *s, int len)
467 char *e = s + len - 1;
468 int quoted = 0;
469 int c;
470 c = cp_next();
471 while (c == ' ')
472 c = cp_next();
473 if (c == '"') {
474 quoted = 1;
475 c = cp_next();
477 while (s < e && c > 0 && c != '\n') {
478 if (!quoted && c == ' ')
479 break;
480 if (quoted && c == '"') {
481 c = cp_next();
482 if (c != '"')
483 break;
485 *s++ = c;
486 c = cp_next();
488 if (c >= 0)
489 cp_back(c);
490 *s++ = '\0';
491 return s;
494 static char *arg_string(char *s, int len)
496 char *e = s + len - 1;
497 int c;
498 while ((c = cp_next()) == ' ')
500 if (c == '"')
501 c = cp_next();
502 while (s < e && c > 0 && c != '\n') {
503 *s++ = c;
504 c = cp_next();
506 *s++ = '\0';
507 if (c >= 0)
508 cp_back(c);
509 return s;
512 /* read macro arguments; trims tabs if rmtabs is nonzero */
513 static int mkargs(char **args, char *buf, int len)
515 char *s = buf;
516 char *e = buf + len - 1;
517 int c;
518 int n = 0;
519 while (n < NARGS) {
520 char *r = s;
521 c = cp_next();
522 if (c < 0 || c == '\n')
523 return n;
524 cp_back(c);
525 s = arg_normal(s, e - s);
526 if (*r != '\0')
527 args[n++] = r;
529 jmp_eol();
530 return n;
533 /* read request arguments; trims tabs too */
534 static int mkargs_req(char **args, char *buf, int len)
536 char *r, *s = buf;
537 char *e = buf + len - 1;
538 int c;
539 int n = 0;
540 c = cp_next();
541 while (n < NARGS && s < e) {
542 r = s;
543 while (c == ' ' || c == '\t')
544 c = cp_next();
545 while (c >= 0 && c != '\n' && c != ' ' && c != '\t' && s < e) {
546 *s++ = c;
547 c = cp_next();
549 *s++ = '\0';
550 if (*r != '\0')
551 args[n++] = r;
552 if (c < 0 || c == '\n')
553 return n;
555 jmp_eol();
556 return n;
559 /* read arguments for .ds */
560 static int mkargs_ds(char **args, char *buf, int len)
562 char *s = buf;
563 char *e = buf + len - 1;
564 int c;
565 args[0] = s;
566 s = arg_regname(s, e - s);
567 args[1] = s;
568 cp_wid(0);
569 s = arg_string(s, e - s);
570 cp_wid(1);
571 c = cp_next();
572 if (c >= 0 && c != '\n')
573 jmp_eol();
574 return 2;
577 /* read arguments for commands .nr that expect a register name */
578 static int mkargs_reg1(char **args, char *buf, int len)
580 char *s = buf;
581 char *e = buf + len - 1;
582 args[0] = s;
583 s = arg_regname(s, e - s);
584 return mkargs_req(args + 1, s, e - s) + 1;
587 /* do not read arguments; for .if, .ie and .el */
588 static int mkargs_null(char **args, char *buf, int len)
590 return 0;
593 /* read the whole line for .tm */
594 static int mkargs_eol(char **args, char *buf, int len)
596 char *s = buf;
597 char *e = buf + len - 1;
598 int c;
599 args[0] = s;
600 c = cp_next();
601 while (c == ' ')
602 c = cp_next();
603 while (s < e && c >= 0 && c != '\n') {
604 *s++ = c;
605 c = cp_next();
607 *s = '\0';
608 return 1;
611 static struct cmd {
612 char *id;
613 void (*f)(char **args);
614 int (*args)(char **args, char *buf, int len);
615 } cmds[] = {
616 {TR_DIVBEG, tr_divbeg},
617 {TR_DIVEND, tr_divend},
618 {TR_EJECT, tr_eject},
619 {"ab", tr_ab, mkargs_eol},
620 {"ad", tr_ad},
621 {"af", tr_af},
622 {"am", tr_de, mkargs_reg1},
623 {"as", tr_as, mkargs_ds},
624 {"bp", tr_bp},
625 {"br", tr_br},
626 {"c2", tr_c2},
627 {"cc", tr_cc},
628 {"ce", tr_ce},
629 {"ch", tr_ch},
630 {"cp", tr_cp},
631 {"da", tr_di},
632 {"de", tr_de, mkargs_reg1},
633 {"di", tr_di},
634 {"ds", tr_ds, mkargs_ds},
635 {"dt", tr_dt},
636 {"ec", tr_ec},
637 {"el", tr_el, mkargs_null},
638 {"em", tr_em},
639 {"eo", tr_eo},
640 {"ev", tr_ev},
641 {"ex", tr_ex},
642 {"fc", tr_fc},
643 {"fi", tr_fi},
644 {"fp", tr_fp},
645 {"ft", tr_ft},
646 {"hc", tr_hc},
647 {"hy", tr_hy},
648 {"hw", tr_hw},
649 {"ie", tr_if, mkargs_null},
650 {"if", tr_if, mkargs_null},
651 {"ig", tr_ig},
652 {"in", tr_in},
653 {"kn", tr_kn},
654 {"lg", tr_lg},
655 {"ll", tr_ll},
656 {"ls", tr_ls},
657 {"lt", tr_lt},
658 {"mk", tr_mk},
659 {"na", tr_na},
660 {"ne", tr_ne},
661 {"nf", tr_nf},
662 {"nh", tr_nh},
663 {"nr", tr_nr, mkargs_reg1},
664 {"ns", tr_ns},
665 {"nx", tr_nx},
666 {"os", tr_os},
667 {"pc", tr_pc},
668 {"pl", tr_pl},
669 {"pn", tr_pn},
670 {"po", tr_po},
671 {"ps", tr_ps},
672 {"rm", tr_rm},
673 {"rn", tr_rn},
674 {"rr", tr_rr},
675 {"rs", tr_rs},
676 {"rt", tr_rt},
677 {"so", tr_so},
678 {"sp", tr_sp},
679 {"ss", tr_ss},
680 {"sv", tr_sv},
681 {"sy", tr_sy, mkargs_eol},
682 {"ta", tr_ta},
683 {"ti", tr_ti},
684 {"tl", tr_tl, mkargs_null},
685 {"tm", tr_tm, mkargs_eol},
686 {"vs", tr_vs},
687 {"wh", tr_wh},
690 int tr_next(void)
692 int c = cp_next();
693 int nl = c == '\n';
694 char *args[NARGS + 3] = {NULL};
695 char cmd[RNLEN];
696 char buf[LNLEN];
697 struct cmd *req;
698 while (tr_nl && c >= 0 && (c == c_cc || c == c_c2)) {
699 nl = 1;
700 memset(args, 0, sizeof(args));
701 args[0] = cmd;
702 cmd[0] = c;
703 req = NULL;
704 arg_regname(cmd + 1, sizeof(cmd) - 1);
705 req = str_dget(map(cmd + 1));
706 if (req) {
707 if (req->args)
708 req->args(args + 1, buf, sizeof(buf));
709 else
710 mkargs_req(args + 1, buf, sizeof(buf));
711 req->f(args);
712 } else {
713 cp_wid(0);
714 mkargs(args + 1, buf, sizeof(buf));
715 cp_wid(1);
716 if (str_get(map(cmd + 1)))
717 in_push(str_get(map(cmd + 1)), args + 1);
719 c = cp_next();
720 nl = c == '\n';
722 tr_nl = c < 0 || nl;
723 return c;
726 void tr_init(void)
728 int i;
729 for (i = 0; i < LEN(cmds); i++)
730 str_dset(map(cmds[i].id), &cmds[i]);
733 void tr_first(void)
735 cp_back(tr_next());
736 tr_nl = 1;