1 /* built-in troff requests */
8 static int tr_nl
= 1; /* just read a newline */
9 static int c_pc
= '%'; /* page number character */
14 /* skip everything until the end of line */
15 static void jmp_eol(void)
20 } while (c
>= 0 && c
!= '\n');
23 static void tr_vs(char **args
)
25 int vs
= args
[1] ? eval_re(args
[1], n_v
, 'p') : n_v0
;
30 static void tr_ls(char **args
)
32 int ls
= args
[1] ? eval_re(args
[1], n_L
, 0) : n_L0
;
37 static void tr_pl(char **args
)
39 int n
= eval_re(args
[1] ? args
[1] : "11i", n_p
, 'v');
43 static void tr_nr(char **args
)
49 num_set(id
, eval_re(args
[2], num_get(id
), 'u'));
50 num_setinc(id
, args
[3] ? eval(args
[3], 'u') : 0);
53 static void tr_rr(char **args
)
56 for (i
= 1; i
<= NARGS
; i
++)
58 num_del(map(args
[i
]));
61 static void tr_af(char **args
)
64 num_setfmt(map(args
[1]), args
[2]);
67 static void tr_ds(char **args
)
70 str_set(map(args
[1]), args
[2]);
73 static void tr_as(char **args
)
80 s1
= str_get(reg
) ? str_get(reg
) : "";
82 s
= xmalloc(strlen(s1
) + strlen(s2
) + 1);
89 static void tr_rm(char **args
)
92 for (i
= 1; i
<= NARGS
; i
++)
97 static void tr_rn(char **args
)
101 str_rn(map(args
[1]), map(args
[2]));
104 static void tr_po(char **args
)
106 int po
= args
[1] ? eval_re(args
[1], n_o
, 'm') : n_o0
;
111 static void read_regname(char *s
)
114 int n
= n_cp
? 2 : NMLEN
- 1;
115 while (c
== ' ' || c
== '\t')
117 while (c
>= 0 && c
!= ' ' && c
!= '\t' && c
!= '\n' && --n
>= 0) {
126 static void macrobody(struct sbuf
*sbuf
, char *end
)
133 while ((c
= cp_next()) >= 0) {
138 if ((c
= cp_next()) != '.') {
143 if ((n_cp
&& end
[0] == buf
[0] && end
[1] == buf
[1]) ||
150 for (i
= 0; buf
[i
]; i
++)
151 sbuf_add(sbuf
, (unsigned char) buf
[i
]);
158 static void tr_de(char **args
)
166 if (args
[0][1] == 'a' && args
[0][2] == 'm' && str_get(id
))
167 sbuf_append(&sbuf
, str_get(id
));
168 macrobody(&sbuf
, args
[2] ? args
[2] : ".");
169 str_set(id
, sbuf_buf(&sbuf
));
173 static void tr_ig(char **args
)
175 macrobody(NULL
, args
[1] ? args
[1] : ".");
178 /* read into sbuf until stop; if stop is NULL, stop at whitespace */
179 static int read_until(struct sbuf
*sbuf
, char *stop
,
180 int (*next
)(void), void (*back
)(int))
182 char cs
[GNLEN
], cs2
[GNLEN
];
184 while ((c
= next()) >= 0) {
188 if (!stop
&& (c
== ' ' || c
== '\t'))
190 charnext(cs
, next
, back
);
191 if (stop
&& !strcmp(stop
, cs
))
193 charnext_str(cs2
, cs
);
194 sbuf_append(sbuf
, cs2
);
199 /* evaluate .if strcmp (i.e. 'str'str') */
200 static int if_strcmp(int (*next
)(void), void (*back
)(int))
205 charnext(delim
, next
, back
);
208 read_until(&s1
, delim
, next
, back
);
209 read_until(&s2
, delim
, next
, back
);
210 ret
= !strcmp(sbuf_buf(&s1
), sbuf_buf(&s2
));
216 /* evaluate .if condition letters */
217 static int if_cond(int (*next
)(void), void (*back
)(int))
232 /* evaluate .if condition */
233 static int if_eval(int (*next
)(void), void (*back
)(int))
238 read_until(&sbuf
, NULL
, next
, back
);
239 ret
= eval(sbuf_buf(&sbuf
), '\0') > 0;
244 static int eval_if(int (*next
)(void), void (*back
)(int))
251 } while (c
== ' ' || c
== '\t');
257 if (strchr("oetn", c
)) {
258 ret
= if_cond(next
, back
);
259 } else if (!isdigit(c
) && !strchr("-+*/%<=>&:.|()", c
)) {
260 ret
= if_strcmp(next
, back
);
262 ret
= if_eval(next
, back
);
267 static int ie_cond
[NIES
]; /* .ie condition stack */
270 static void tr_if(char **args
)
272 int c
= eval_if(cp_next
, cp_back
);
273 if (args
[0][1] == 'i' && args
[0][2] == 'e') /* .ie command */
275 ie_cond
[ie_depth
++] = c
;
279 static void tr_el(char **args
)
281 cp_blk(ie_depth
> 0 ? ie_cond
[--ie_depth
] : 1);
284 static void tr_na(char **args
)
289 static int adjmode(int c
, int def
)
305 static void tr_ad(char **args
)
314 n_j
= s
[0] == 'p' ? AD_P
| adjmode(s
[1], AD_B
) : adjmode(s
[0], n_j
);
317 static void tr_tm(char **args
)
319 fprintf(stderr
, "%s\n", args
[1]);
322 static void tr_so(char **args
)
328 static void tr_nx(char **args
)
333 static void tr_ex(char **args
)
338 static void tr_sy(char **args
)
343 static void tr_lt(char **args
)
345 int lt
= args
[1] ? eval_re(args
[1], n_lt
, 'm') : n_t0
;
350 static void tr_pc(char **args
)
352 c_pc
= args
[1] ? args
[1][0] : -1;
355 static int tl_next(void)
358 if (c
>= 0 && c
== c_pc
) {
359 in_push(num_str(map("%")), NULL
);
365 static void tr_tl(char **args
)
370 } while (c
>= 0 && (c
== ' ' || c
== '\t'));
372 ren_tl(tl_next
, cp_back
);
375 } while (c
>= 0 && c
!= '\n');
378 static void tr_ec(char **args
)
380 c_ec
= args
[1] ? args
[1][0] : '\\';
383 static void tr_cc(char **args
)
385 c_ec
= args
[1] ? args
[1][0] : '.';
388 static void tr_c2(char **args
)
390 c_ec
= args
[1] ? args
[1][0] : '\'';
393 static void tr_eo(char **args
)
398 static void tr_hc(char **args
)
401 if (!s
|| charread(&s
, c_hc
) < 0)
405 static void tr_nh(char **args
)
410 static void tr_hy(char **args
)
412 n_hy
= args
[1] ? atoi(args
[1]) : 1;
415 static void tr_hyp(char **args
)
417 n_hyp
= args
[1] ? atoi(args
[1]) : 1;
420 static void tr_lg(char **args
)
423 n_lg
= atoi(args
[1]);
426 static void tr_kn(char **args
)
429 n_kn
= atoi(args
[1]);
432 static void tr_cp(char **args
)
435 n_cp
= atoi(args
[1]);
438 static void tr_ss(char **args
)
441 n_ss
= eval_re(args
[1], n_ss
, 0);
442 n_sss
= args
[2] ? eval_re(args
[2], n_sss
, 0) : n_ss
;
446 static void tr_ssh(char **args
)
448 n_ssh
= args
[1] ? eval_re(args
[1], n_ssh
, 0) : 0;
451 static void tr_cs(char **args
)
453 struct font
*fn
= args
[1] ? dev_font(dev_pos(args
[1])) : NULL
;
455 font_setcs(fn
, args
[2] ? eval(args
[2], 0) : 0,
456 args
[3] ? eval(args
[3], 0) : 0);
459 static void tr_fzoom(char **args
)
461 struct font
*fn
= args
[1] ? dev_font(dev_pos(args
[1])) : NULL
;
463 font_setzoom(fn
, args
[2] ? eval(args
[2], 0) : 0);
466 static void tr_ff(char **args
)
468 struct font
*fn
= args
[1] ? dev_font(dev_pos(args
[1])) : NULL
;
470 for (i
= 2; i
<= NARGS
; i
++)
471 if (fn
&& args
[i
] && args
[i
][0] && args
[i
][1])
472 font_feat(fn
, args
[i
] + 1, args
[i
][0] == '+');
475 static void tr_nm(char **args
)
482 n_ln
= eval_re(args
[1], n_ln
, 0);
484 if (args
[2] && isdigit(args
[2][0]))
485 n_nM
= MAX(1, eval(args
[2], 0));
486 if (args
[3] && isdigit(args
[3][0]))
487 n_nS
= MAX(0, eval(args
[3], 0));
488 if (args
[4] && isdigit(args
[4][0]))
489 n_nI
= MAX(0, eval(args
[4], 0));
492 static void tr_nn(char **args
)
494 n_nn
= args
[1] ? eval(args
[1], 0) : 1;
497 static void tr_bd(char **args
)
499 if (!args
[1] || !strcmp("S", args
[1]))
501 font_setbd(dev_font(dev_pos(args
[1])), args
[2] ? eval(args
[2], 'u') : 0);
504 static void tr_it(char **args
)
508 n_itn
= eval(args
[1], 0);
514 static void tr_mc(char **args
)
517 if (s
&& charread(&s
, c_mc
) >= 0) {
519 n_mcn
= args
[2] ? eval(args
[2], 'm') : SC_EM
;
525 static void tr_tc(char **args
)
528 if (!s
|| charread(&s
, c_tc
) < 0)
532 static void tr_lc(char **args
)
535 if (!s
|| charread(&s
, c_lc
) < 0)
539 static void tr_lf(char **args
)
542 in_lf(args
[2], eval(args
[1], 0));
545 static void tr_chop(char **args
)
550 in_lf(args
[2], eval(args
[1], 0));
554 sbuf_append(&sbuf
, str_get(id
));
555 if (!sbuf_empty(&sbuf
)) {
556 sbuf_cut(&sbuf
, sbuf_len(&sbuf
) - 1);
557 str_set(id
, sbuf_buf(&sbuf
));
563 /* character translation (.tr) */
564 static struct dict cmap
; /* character mapping */
565 static char cmap_src
[NCMAPS
][GNLEN
]; /* source character */
566 static char cmap_dst
[NCMAPS
][GNLEN
]; /* character mapping */
567 static int cmap_n
; /* number of translated character */
569 void cmap_add(char *c1
, char *c2
)
571 int i
= dict_get(&cmap
, c1
);
573 strcpy(cmap_dst
[i
], c2
);
574 } else if (cmap_n
< NCMAPS
) {
575 strcpy(cmap_src
[cmap_n
], c1
);
576 strcpy(cmap_dst
[cmap_n
], c2
);
577 dict_put(&cmap
, cmap_src
[cmap_n
], cmap_n
);
582 char *cmap_map(char *c
)
584 int i
= dict_get(&cmap
, c
);
585 return i
>= 0 ? cmap_dst
[i
] : c
;
588 static void tr_tr(char **args
)
591 char c1
[GNLEN
], c2
[GNLEN
];
592 while (s
&& charread(&s
, c1
) >= 0) {
593 if (charread(&s
, c2
) < 0)
599 /* character definition (.char) */
600 static char cdef_src
[NCDEFS
][GNLEN
]; /* source character */
601 static char *cdef_dst
[NCDEFS
]; /* character definition */
602 static int cdef_fn
[NCDEFS
]; /* owning font */
603 static int cdef_n
; /* number of defined characters */
604 static int cdef_expanding
; /* inside cdef_expand() call */
606 static int cdef_find(char *c
, int fn
)
609 for (i
= 0; i
< cdef_n
; i
++)
610 if ((!cdef_fn
[i
] || cdef_fn
[i
] == fn
) && !strcmp(cdef_src
[i
], c
))
615 /* return the definition of the given character */
616 char *cdef_map(char *c
, int fn
)
618 int i
= cdef_find(c
, fn
);
619 return !cdef_expanding
&& i
>= 0 ? cdef_dst
[i
] : NULL
;
622 int cdef_expand(struct wb
*wb
, char *s
, int fn
)
624 char *d
= cdef_map(s
, fn
);
633 static void cdef_add(char *fn
, char *cs
, char *def
)
637 if (!def
|| charread(&cs
, c
) < 0)
639 i
= cdef_find(c
, -1);
640 if (i
< 0 && cdef_n
< NCDEFS
)
643 strncpy(cdef_src
[i
], c
, sizeof(cdef_src
[i
]) - 1);
644 cdef_dst
[i
] = xmalloc(strlen(def
) + 1);
645 strcpy(cdef_dst
[i
], def
);
646 cdef_fn
[i
] = fn
? dev_pos(fn
) : 0;
650 static void cdef_remove(char *cs
)
654 if (!cs
|| charread(&cs
, c
) < 0)
656 for (i
= 0; i
< cdef_n
; i
++) {
657 if (!strcmp(cdef_src
[i
], c
)) {
660 cdef_src
[i
][0] = '\0';
665 static void tr_char(char **args
)
667 cdef_add(NULL
, args
[1], args
[2]);
670 static void tr_rchar(char **args
)
673 for (i
= 1; i
<= NARGS
; i
++)
675 cdef_remove(args
[i
]);
678 static void tr_ochar(char **args
)
680 cdef_add(args
[1], args
[2], args
[3]);
683 static void tr_fmap(char **args
)
685 struct font
*fn
= args
[1] ? dev_font(dev_pos(args
[1])) : NULL
;
687 font_map(fn
, args
[2], args
[3]);
690 static void arg_regname(struct sbuf
*sbuf
)
694 sbuf_append(sbuf
, reg
);
698 static void arg_string(struct sbuf
*sbuf
)
701 while ((c
= cp_next()) == ' ')
705 while (c
> 0 && c
!= '\n') {
714 static int mkargs_arg(struct sbuf
*sbuf
, int (*next
)(void), void (*back
)(int))
723 if (c
< 0 || c
== '\n')
729 while (c
>= 0 && c
!= '\n') {
730 if (!quoted
&& c
== ' ')
732 if (quoted
&& c
== '"') {
746 /* read macro arguments */
747 int tr_readargs(char **args
, struct sbuf
*sbuf
, int (*next
)(void), void (*back
)(int))
752 idx
[n
] = sbuf_len(sbuf
);
753 if (mkargs_arg(sbuf
, next
, back
))
757 for (i
= 0; i
< n
; i
++)
758 args
[i
] = sbuf_buf(sbuf
) + idx
[i
];
762 /* read macro arguments; trims tabs if rmtabs is nonzero */
763 static int mkargs(char **args
, struct sbuf
*sbuf
)
765 int n
= tr_readargs(args
, sbuf
, cp_next
, cp_back
);
770 /* read request arguments; trims tabs too */
771 static int mkargs_req(char **args
, struct sbuf
*sbuf
)
778 idx
[n
] = sbuf_len(sbuf
);
779 while (c
== ' ' || c
== '\t')
781 while (c
>= 0 && c
!= '\n' && c
!= ' ' && c
!= '\t') {
785 if (sbuf_len(sbuf
) > idx
[n
])
790 if (c
< 0 || c
== '\n')
793 for (i
= 0; i
< n
; i
++)
794 args
[i
] = sbuf_buf(sbuf
) + idx
[i
];
799 /* read arguments for .ds */
800 static int mkargs_ds(char **args
, struct sbuf
*sbuf
)
804 idx
[n
++] = sbuf_len(sbuf
);
806 idx
[n
++] = sbuf_len(sbuf
);
811 for (i
= 0; i
< n
; i
++)
812 args
[i
] = sbuf_buf(sbuf
) + idx
[i
];
816 /* read arguments for commands .nr that expect a register name */
817 static int mkargs_reg1(char **args
, struct sbuf
*sbuf
)
820 int idx0
= sbuf_len(sbuf
);
822 n
= mkargs_req(args
+ 1, sbuf
) + 1;
823 args
[0] = sbuf_buf(sbuf
) + idx0
;
827 /* do not read arguments; for .if, .ie and .el */
828 static int mkargs_null(char **args
, struct sbuf
*sbuf
)
833 /* read the whole line for .tm */
834 static int mkargs_eol(char **args
, struct sbuf
*sbuf
)
836 int idx0
= sbuf_len(sbuf
);
841 while (c
>= 0 && c
!= '\n') {
845 args
[0] = sbuf_buf(sbuf
) + idx0
;
851 void (*f
)(char **args
);
852 int (*args
)(char **args
, struct sbuf
*sbuf
);
854 {TR_DIVBEG
, tr_divbeg
},
855 {TR_DIVEND
, tr_divend
},
856 {TR_POPREN
, tr_popren
},
857 {"ab", tr_ab
, mkargs_eol
},
860 {"am", tr_de
, mkargs_reg1
},
861 {"as", tr_as
, mkargs_ds
},
870 {"char", tr_char
, mkargs_ds
},
871 {"chop", tr_chop
, mkargs_reg1
},
876 {"de", tr_de
, mkargs_reg1
},
878 {"ds", tr_ds
, mkargs_ds
},
881 {"el", tr_el
, mkargs_null
},
891 {"fspecial", tr_fspecial
},
901 {"ie", tr_if
, mkargs_null
},
902 {"if", tr_if
, mkargs_null
},
921 {"nr", tr_nr
, mkargs_reg1
},
930 {"rchar", tr_rchar
, mkargs_ds
},
941 {"sy", tr_sy
, mkargs_eol
},
945 {"tl", tr_tl
, mkargs_null
},
946 {"tm", tr_tm
, mkargs_eol
},
947 {"tr", tr_tr
, mkargs_eol
},
952 /* read the next troff request; return zero if a request was executed. */
955 char *args
[NARGS
+ 3] = {NULL
};
963 if (c
< 0 || (c
!= c_cc
&& c
!= c_c2
)) {
967 memset(args
, 0, sizeof(args
));
972 read_regname(cmd
+ 1);
974 req
= str_dget(map(cmd
+ 1));
977 req
->args(args
+ 1, &sbuf
);
979 mkargs_req(args
+ 1, &sbuf
);
983 mkargs(args
+ 1, &sbuf
);
985 if (str_get(map(cmd
+ 1)))
986 in_push(str_get(map(cmd
+ 1)), args
+ 1);
995 while (!tr_nextreq())
998 tr_nl
= c
== '\n' || c
< 0;
1005 for (i
= 0; i
< LEN(cmds
); i
++)
1006 str_dset(map(cmds
[i
].id
), &cmds
[i
]);
1007 dict_init(&cmap
, NCMAPS
, -1, 0, 0);