1 /* rendering lines and managing traps */
8 #define cfmt env_fmt() /* current formatter */
9 #define cwb env_wb() /* current word buffer */
13 struct sbuf sbuf
; /* diversion output */
14 int reg
; /* diversion register */
15 int tpos
; /* diversion trap position */
16 int treg
; /* diversion trap register */
17 int dl
; /* diversion width */
18 int prev_d
; /* previous \n(.d value */
19 int prev_h
; /* previous \n(.h value */
20 int prev_mk
; /* previous .mk internal register */
21 int prev_ns
; /* previous .ns value */
23 static struct div divs
[NPREV
]; /* diversion stack */
24 static struct div
*cdiv
; /* current diversion */
25 static int ren_div
; /* rendering a diversion */
26 static int trap_em
= -1; /* end macro */
28 static int ren_nl
; /* just after a newline */
29 static int ren_partial
; /* reading an input line in render_rec() */
30 static int ren_unbuf
[8]; /* ren_back() buffer */
32 static int ren_aborted
; /* .ab executed */
34 static int bp_first
= 1; /* prior to the first page */
35 static int bp_next
= 1; /* next page number */
36 static int bp_count
; /* number of pages so far */
37 static int bp_ejected
; /* current ejected page */
38 static int bp_final
; /* 1: executing em, 2: the final page, 3: the 2nd final page */
39 static int ren_level
; /* the depth of render_rec() calls */
41 static char c_fa
[GNLEN
]; /* field delimiter */
42 static char c_fb
[GNLEN
]; /* field padding */
44 static int ren_next(void)
46 return ren_un
> 0 ? ren_unbuf
[--ren_un
] : tr_next();
49 static void ren_back(int c
)
51 ren_unbuf
[ren_un
++] = c
;
54 void tr_di(char **args
)
57 cdiv
= cdiv
? cdiv
+ 1 : divs
;
58 memset(cdiv
, 0, sizeof(*cdiv
));
59 sbuf_init(&cdiv
->sbuf
);
60 cdiv
->reg
= map(args
[1]);
62 if (args
[0][2] == 'a' && str_get(cdiv
->reg
)) /* .da */
63 sbuf_append(&cdiv
->sbuf
, str_get(cdiv
->reg
));
64 sbuf_printf(&cdiv
->sbuf
, "%c%s\n", c_cc
, TR_DIVBEG
);
74 sbuf_putnl(&cdiv
->sbuf
);
75 sbuf_printf(&cdiv
->sbuf
, "%c%s\n", c_cc
, TR_DIVEND
);
76 str_set(cdiv
->reg
, sbuf_buf(&cdiv
->sbuf
));
77 sbuf_done(&cdiv
->sbuf
);
84 cdiv
= cdiv
> divs
? cdiv
- 1 : NULL
;
88 int charwid(int fn
, int sz
, int wid
)
91 return dev_getcs(n_f
) * SC_EM
/ 36;
92 return DEVWID(sz
, wid
) + (dev_getbd(fn
) ? dev_getbd(fn
) - 1 : 0);
97 return cdiv
? cdiv
->reg
: -1;
102 return fmt_wid(cfmt
) + wb_wid(cwb
);
105 void tr_divbeg(char **args
)
111 void tr_divend(char **args
)
114 errdie("neatroff: diversion stack empty\n");
119 static int trap_reg(int pos
);
120 static int trap_pos(int pos
);
121 static void trap_exec(int reg
);
123 static void ren_page(int pg
, int force
)
125 if (!force
&& bp_final
>= 2)
135 if (trap_pos(-1) == 0)
136 trap_exec(trap_reg(-1));
139 static int ren_first(void)
141 if (bp_first
&& !cdiv
) {
143 ren_page(bp_next
, 1);
149 /* when nodiv, do not append .sp to diversions */
150 static void ren_sp(int n
, int nodiv
)
153 /* ignore .sp without arguments when reading diversions */
154 if (!n
&& ren_div
&& !n_u
)
159 if (cdiv
&& !nodiv
) {
160 sbuf_putnl(&cdiv
->sbuf
);
161 sbuf_printf(&cdiv
->sbuf
, "%csp %du\n", c_cc
, n
? n
: n_v
);
167 static int render_rec(int level
);
168 static void trap_exec(int reg
)
171 int partial
= ren_partial
;
173 sprintf(cmd
, "%c%s %d\n", c_cc
, TR_POPREN
, ren_level
);
175 in_push(str_get(reg
), NULL
);
178 render_rec(++ren_level
);
179 /* executed the trap while in the middle of an input line */
181 fmt_suppressnl(cfmt
);
185 static int detect_traps(int beg
, int end
)
187 int pos
= trap_pos(beg
);
188 return pos
>= 0 && (cdiv
|| pos
< n_p
) && pos
<= end
;
191 /* return 1 if executed a trap */
192 static int ren_traps(int beg
, int end
, int dosp
)
194 int pos
= trap_pos(beg
);
195 if (detect_traps(beg
, end
)) {
196 if (dosp
&& pos
> beg
)
197 ren_sp(pos
- beg
, 0);
198 trap_exec(trap_reg(beg
));
204 static int detect_pagelimit(int ne
)
206 return !cdiv
&& n_nl
+ ne
>= n_p
;
209 /* start a new page if needed */
210 static int ren_pagelimit(int ne
)
212 if (detect_pagelimit(ne
)) {
213 ren_page(bp_next
, 0);
219 /* return 1 if triggered a trap */
220 static int down(int n
)
222 if (ren_traps(n_d
, n_d
+ (n
? n
: n_v
), 1))
225 return ren_pagelimit(0);
228 /* line adjustment */
229 static int ren_ljust(struct sbuf
*spre
, int w
, int ad
, int li
, int ll
)
232 int llen
= ll
- ljust
;
234 if ((ad
& AD_B
) == AD_C
)
235 ljust
+= llen
> w
? (llen
- w
) / 2 : 0;
236 if ((ad
& AD_B
) == AD_R
)
239 sbuf_printf(spre
, "%ch'%du'", c_ec
, ljust
);
240 if (cdiv
&& cdiv
->dl
< w
+ ljust
)
241 cdiv
->dl
= w
+ ljust
;
245 /* append the line to the current diversion or send it to out.c */
246 static void ren_out(char *beg
, char *mid
, char *end
)
249 sbuf_append(&cdiv
->sbuf
, beg
);
250 sbuf_append(&cdiv
->sbuf
, mid
);
251 sbuf_append(&cdiv
->sbuf
, end
);
261 static void ren_transparent(char *s
)
264 sbuf_printf(&cdiv
->sbuf
, "%s\n", s
);
269 static int zwid(void)
271 struct glyph
*g
= dev_glyph("0", n_f
);
272 return charwid(n_f
, n_s
, g
? g
->wid
: 0);
275 /* append the line number to the output line */
276 static void ren_lnum(struct sbuf
*spre
)
283 if (n_nn
<= 0 && (n_ln
% n_nM
) == 0)
284 sprintf(num
, "%d", n_ln
);
285 wb_hmov(&wb
, n_nI
* zwid());
287 wb_hmov(&wb
, (3 - strlen(num
)) * zwid());
292 wb_hmov(&wb
, n_nS
* zwid());
293 sbuf_append(spre
, sbuf_buf(&wb
.sbuf
));
301 /* append margin character */
302 static void ren_mc(struct sbuf
*sbuf
, int w
, int ljust
)
306 if (w
+ ljust
< n_l
+ n_mcn
)
307 wb_hmov(&wb
, n_l
+ n_mcn
- w
- ljust
);
308 wb_putexpand(&wb
, c_mc
);
309 sbuf_append(sbuf
, sbuf_buf(&wb
.sbuf
));
313 /* process a line and print it with ren_out() */
314 static int ren_line(char *line
, int w
, int ad
, int body
,
315 int li
, int ll
, int els_neg
, int els_pos
)
317 struct sbuf sbeg
, send
;
318 int prev_d
, lspc
, ljust
;
322 lspc
= MAX(1, n_L
) * n_v
; /* line space, ignoreing \x */
326 if (!n_ns
|| line
[0] || els_neg
|| els_pos
) {
328 if (line
[0] && n_nm
&& body
)
330 ljust
= ren_ljust(&sbeg
, w
, ad
, li
, ll
);
331 if (line
[0] && body
&& n_mc
)
332 ren_mc(&send
, w
, ljust
);
333 ren_out(sbuf_buf(&sbeg
), line
, sbuf_buf(&send
));
341 if (detect_traps(prev_d
, n_d
) || detect_pagelimit(lspc
- n_v
)) {
342 if (!ren_pagelimit(lspc
- n_v
))
343 ren_traps(prev_d
, n_d
, 0);
346 if (lspc
- n_v
&& down(lspc
- n_v
))
351 /* read a line from fmt and send it to ren_line() */
352 static int ren_passline(struct fmt
*fmt
)
355 int ll
, li
, els_neg
, els_pos
, w
, ret
;
358 if (!fmt_morewords(fmt
))
361 fmt_nextline(fmt
, &sbuf
, &w
, &li
, &ll
, &els_neg
, &els_pos
);
362 if ((n_cp
&& !n_u
) || n_na
)
366 ret
= ren_line(sbuf_buf(&sbuf
), w
, ad
, 1, li
, ll
, els_neg
, els_pos
);
371 /* output formatted lines in fmt */
372 static void ren_fmtpop(struct fmt
*fmt
)
374 while (fmt_morelines(fmt
))
378 /* format and output all lines in fmt */
379 static void ren_fmtpopall(struct fmt
*fmt
)
381 while (fmt_fill(fmt
))
386 /* output current line; returns 1 if triggered a trap */
387 static int ren_br(void)
392 return ren_passline(cfmt
);
395 void tr_br(char **args
)
397 ren_fmtpopall(cfmt
); /* output the completed lines first */
398 if (args
[0][0] == c_cc
)
402 void tr_sp(char **args
)
405 int n
= args
[1] ? eval(args
[1], 'v') : n_v
;
406 if (args
[0][0] == c_cc
)
408 if (n
&& !n_ns
&& !traps
)
412 void tr_sv(char **args
)
414 int n
= eval(args
[1], 'v');
416 if (n_d
+ n
< f_nexttrap())
422 void tr_ns(char **args
)
427 void tr_rs(char **args
)
432 void tr_os(char **args
)
439 void tr_mk(char **args
)
442 num_set(map(args
[1]), n_d
);
447 void tr_rt(char **args
)
449 int n
= args
[1] ? eval_re(args
[1], n_d
, 'v') : n_mk
;
450 if (n
>= 0 && n
< n_d
)
454 void tr_ne(char **args
)
456 int n
= args
[1] ? eval(args
[1], 'v') : n_v
;
459 if (!ren_traps(n_d
, n_d
+ n
- 1, 1))
463 static void ren_ejectpage(int br
)
465 bp_ejected
= bp_count
;
468 while (bp_count
== bp_ejected
&& !cdiv
) {
469 if (detect_traps(n_d
, n_p
)) {
470 ren_traps(n_d
, n_p
, 1);
473 ren_page(bp_next
, 0);
478 void tr_bp(char **args
)
480 if (!cdiv
&& (args
[1] || !n_ns
)) {
482 bp_next
= eval_re(args
[1], n_pg
, 0);
483 ren_ejectpage(args
[0][0] == c_cc
);
487 void tr_pn(char **args
)
490 bp_next
= eval_re(args
[1], n_pg
, 0);
493 static void ren_ps(char *s
)
495 int ps
= !s
|| !*s
|| !strcmp("0", s
) ? n_s0
: eval_re(s
, n_s
, 0);
500 void tr_ps(char **args
)
505 void tr_ll(char **args
)
507 int ll
= args
[1] ? eval_re(args
[1], n_l
, 'm') : n_l0
;
512 void tr_in(char **args
)
514 int in
= args
[1] ? eval_re(args
[1], n_i
, 'm') : n_i0
;
515 if (args
[0][0] == c_cc
)
522 void tr_ti(char **args
)
524 if (args
[0][0] == c_cc
)
527 n_ti
= eval_re(args
[1], n_i
, 'm');
530 static void ren_ft(char *s
)
532 int fn
= !s
|| !*s
|| !strcmp("P", s
) ? n_f0
: dev_pos(s
);
534 errmsg("neatroff: failed to mount <%s>\n", s
);
541 void tr_ft(char **args
)
546 void tr_fp(char **args
)
550 if (dev_mnt(atoi(args
[1]), args
[2], args
[3] ? args
[3] : args
[2]) < 0)
551 errmsg("neatroff: failed to mount <%s>\n", args
[2]);
554 void tr_nf(char **args
)
556 if (args
[0][0] == c_cc
)
561 void tr_fi(char **args
)
563 if (args
[0][0] == c_cc
)
568 void tr_ce(char **args
)
570 if (args
[0][0] == c_cc
)
572 n_ce
= args
[1] ? atoi(args
[1]) : 1;
575 void tr_fc(char **args
)
579 if (fa
&& charread(&fa
, c_fa
) >= 0) {
580 if (!fb
|| charread(&fb
, c_fb
) < 0)
588 static void ren_cl(char *s
)
590 int m
= !s
|| !*s
? n_m0
: clr_get(s
);
595 void tr_cl(char **args
)
600 void tr_ab(char **args
)
602 fprintf(stderr
, "%s\n", args
[1]);
606 static void ren_cmd(struct wb
*wb
, int c
, char *arg
)
610 wb_hmov(wb
, N_SS(n_f
, n_s
));
622 wb_vmov(wb
, SC_EM
/ 2);
628 wb_hmov(wb
, eval(arg
, 'm'));
631 num_set(map(arg
), wb
== cwb
? f_hpos() - n_lb
: wb_wid(wb
));
647 while (fmt_fillreq(cfmt
))
657 wb_vmov(wb
, -SC_EM
/ 2);
660 wb_vmov(wb
, eval(arg
, 'v'));
666 wb_els(wb
, eval(arg
, 'v'));
675 wb_hmov(wb
, SC_EM
/ 6);
681 wb_hmov(wb
, SC_EM
/ 12);
684 wb_italiccorrection(wb
);
687 wb_italiccorrectionleft(wb
);
695 static void ren_field(struct wb
*wb
, int (*next
)(void), void (*back
)(int));
696 static void ren_tab(struct wb
*wb
, char *tc
, int (*next
)(void), void (*back
)(int));
698 /* insert a character, escape sequence, field or etc into wb */
699 static void ren_put(struct wb
*wb
, char *c
, int (*next
)(void), void (*back
)(int))
704 if (c
[0] == ' ' || c
[0] == '\n') {
708 if (c
[0] == '\t' || c
[0] == '\x01') {
709 ren_tab(wb
, c
[0] == '\t' ? c_tc
: c_lc
, next
, back
);
712 if (c_fa
[0] && !strcmp(c_fa
, c
)) {
713 ren_field(wb
, next
, back
);
719 ren_char(wb
, next
, back
);
720 wb_hmov(wb
, w
- wb_wid(wb
));
724 if (ren_nl
&& next
== ren_next
) {
727 while (n
>= 0 && n
!= '\n') {
732 ren_transparent(arg
);
736 if (strchr(" bCcDdefHhkLlmNoprSsuvXxZz0^|{}&/,", c
[1])) {
738 if (strchr(ESC_P
, c
[1]))
739 unquotednext(arg
, c
[1], next
, back
);
740 if (strchr(ESC_Q
, c
[1]))
741 quotednext(arg
, next
, back
);
743 snprintf(c
, GNLEN
, "%c%c", c_ec
, c_ec
);
744 } else if (c
[1] == 'N') {
745 snprintf(c
, GNLEN
, "GID=%s", arg
);
747 ren_cmd(wb
, c
[1], arg
);
752 if (!ren_div
&& cdef_map(c
, n_f
)) { /* .char characters */
756 if (!n_lg
|| ren_div
|| wb_lig(wb
, c
)) {
757 if (n_kn
&& !ren_div
)
763 /* read one character and place it inside wb buffer */
764 int ren_char(struct wb
*wb
, int (*next
)(void), void (*back
)(int))
767 if (charnext(c
, next
, back
) < 0)
769 ren_put(wb
, c
, next
, back
);
773 /* like ren_char(); return 1 if d1 was read and 2 if d2 was read */
774 static int ren_chardel(struct wb
*wb
, int (*next
)(void), void (*back
)(int),
778 if (charnext(c
, next
, back
) < 0)
780 if (d1
&& !strcmp(d1
, c
))
782 if (d2
&& !strcmp(d2
, c
))
784 ren_put(wb
, c
, next
, back
);
788 /* read the argument of \w and push its width */
789 int ren_wid(int (*next
)(void), void (*back
)(int))
795 charnext(delim
, next
, back
);
798 while (c
>= 0 && c
!= '\n') {
800 if (ren_chardel(&wb
, next
, back
, delim
, NULL
))
806 wb_wconf(&wb
, &n_ct
, &n_st
, &n_sb
, &n_llx
, &n_lly
, &n_urx
, &n_ury
);
811 /* return 1 if d1 was read and 2 if d2 was read */
812 static int ren_until(struct wb
*wb
, char *d1
, char *d2
,
813 int (*next
)(void), void (*back
)(int))
817 while (c
>= 0 && c
!= '\n') {
819 ret
= ren_chardel(wb
, next
, back
, d1
, d2
);
829 static void wb_cpy(struct wb
*dst
, struct wb
*src
, int left
)
831 wb_hmov(dst
, left
- wb_wid(dst
));
835 void ren_tl(int (*next
)(void), void (*back
)(int))
841 charnext(delim
, next
, back
);
842 /* the left-adjusted string */
843 ren_until(&wb2
, delim
, NULL
, next
, back
);
844 wb_cpy(&wb
, &wb2
, 0);
845 /* the centered string */
846 ren_until(&wb2
, delim
, NULL
, next
, back
);
847 wb_cpy(&wb
, &wb2
, (n_lt
- wb_wid(&wb2
)) / 2);
848 /* the right-adjusted string */
849 ren_until(&wb2
, delim
, NULL
, next
, back
);
850 wb_cpy(&wb
, &wb2
, n_lt
- wb_wid(&wb2
));
851 /* flushing the line */
852 ren_line(sbuf_buf(&wb
.sbuf
), wb_wid(&wb
), AD_L
, 0,
853 0, n_lt
, wb
.els_neg
, wb
.els_pos
);
858 static void ren_field(struct wb
*wb
, int (*next
)(void), void (*back
)(int))
860 struct wb wbs
[NFIELDS
];
863 int left
, right
, cur_left
;
865 while (n
< LEN(wbs
)) {
867 if (ren_until(&wbs
[n
++], c_fb
, c_fa
, next
, back
) != 1)
870 left
= wb
== cwb
? f_hpos() : wb_wid(wb
);
871 right
= tab_next(left
);
872 for (i
= 0; i
< n
; i
++)
873 wid
+= wb_wid(&wbs
[i
]);
874 pad
= (right
- left
- wid
) / (n
> 1 ? n
- 1 : 1);
875 rem
= (right
- left
- wid
) % (n
> 1 ? n
- 1 : 1);
876 for (i
= 0; i
< n
; i
++) {
880 cur_left
= right
- wb_wid(&wbs
[i
]);
882 cur_left
= wb_wid(wb
) + pad
+ (i
+ rem
>= n
);
883 wb_cpy(wb
, &wbs
[i
], cur_left
);
888 static void ren_tab(struct wb
*wb
, char *tc
, int (*next
)(void), void (*back
)(int))
891 int pos
= wb
== cwb
? f_hpos() : wb_wid(wb
);
892 int ins
= tab_next(pos
); /* insertion position */
893 int typ
= tab_type(pos
); /* tab type */
896 if (typ
== 'R' || typ
== 'C') {
898 while (c
>= 0 && c
!= '\n' && c
!= '\t' && c
!= '\x01') {
900 ren_char(&t
, next
, back
);
906 ins
-= wb_wid(&t
) / 2;
909 if (!tc
[0] || ins
<= pos
)
910 wb_hmov(wb
, ins
- pos
);
912 ren_hline(wb
, ins
- pos
, tc
);
917 /* parse characters and troff requests of s and append them to wb */
918 int ren_parse(struct wb
*wb
, char *s
)
926 if (ren_char(wb
, sstr_next
, sstr_back
))
935 /* cause nested render_rec() to exit */
936 void tr_popren(char **args
)
938 ren_level
= args
[1] ? atoi(args
[1]) : 0;
941 #define FMT_PAR() (n_u && !n_na && !n_ce && (n_j & AD_P) == AD_P)
943 /* read characters from tr.c and pass the rendered lines to out.c */
944 static int render_rec(int level
)
947 while (ren_level
>= level
) {
948 while (!tr_nextreq())
949 if (ren_level
< level
)
951 if (ren_level
< level
)
970 ren_partial
= c
!= '\n';
971 /* add cwb (the current word) to cfmt */
972 if (c
== ' ' || c
== '\n') {
973 if (!wb_part(cwb
)) { /* not after a \c */
974 while (fmt_word(cfmt
, cwb
))
978 while (fmt_newline(cfmt
))
986 /* flush the line if necessary */
987 if ((!FMT_PAR() && (c
== ' ' || c
== '\n')) || c
< 0)
989 if (c
== '\n' || ren_nl
) /* end or start of input line */
991 if (c
== '\n' && n_it
&& --n_itn
== 0)
993 if (c
== '\n' && !wb_part(cwb
))
994 n_ce
= MAX(0, n_ce
- 1);
995 if (c
!= ' ' && c
>= 0) {
997 ren_char(cwb
, ren_next
, ren_back
);
1005 /* render input words */
1009 while (!tr_nextreq())
1011 ren_first(); /* transition to the first page */
1014 if (fmt_morewords(cfmt
))
1015 ren_page(bp_next
, 1);
1022 #define tposval(i) (tpos[i] < 0 ? n_p + tpos[i] : tpos[i])
1024 static int tpos
[NTRAPS
]; /* trap positions */
1025 static int treg
[NTRAPS
]; /* trap registers */
1028 static int trap_first(int pos
)
1032 for (i
= 0; i
< ntraps
; i
++)
1033 if (treg
[i
] >= 0 && tposval(i
) > pos
)
1034 if (best
< 0 || tposval(i
) < tposval(best
))
1039 static int trap_byreg(int reg
)
1042 for (i
= 0; i
< ntraps
; i
++)
1048 static int trap_bypos(int reg
, int pos
)
1051 for (i
= 0; i
< ntraps
; i
++)
1052 if (treg
[i
] >= 0 && tposval(i
) == pos
)
1053 if (reg
== -1 || treg
[i
] == reg
)
1058 void tr_wh(char **args
)
1063 pos
= eval(args
[1], 'v');
1064 id
= trap_bypos(-1, pos
);
1072 id
= trap_byreg(-1);
1079 void tr_ch(char **args
)
1086 id
= trap_byreg(reg
);
1088 tpos
[id
] = args
[2] ? eval(args
[2], 'v') : -1;
1091 void tr_dt(char **args
)
1096 cdiv
->tpos
= eval(args
[1], 'v');
1097 cdiv
->treg
= map(args
[2]);
1103 void tr_em(char **args
)
1105 trap_em
= args
[1] ? map(args
[1]) : -1;
1108 static int trap_pos(int pos
)
1110 int ret
= trap_first(pos
);
1114 return cdiv
->treg
&& cdiv
->tpos
> pos
? cdiv
->tpos
: -1;
1115 return ret
>= 0 ? tposval(ret
) : -1;
1118 static int trap_reg(int pos
)
1120 int ret
= trap_first(pos
);
1122 return cdiv
->treg
&& cdiv
->tpos
> pos
? cdiv
->treg
: -1;
1123 return ret
>= 0 ? treg
[ret
] : -1;
1126 int f_nexttrap(void)
1128 int pos
= trap_pos(n_d
);
1130 return pos
>= 0 ? pos
: 0x7fffffff;
1131 return (pos
>= 0 && pos
< n_p
? pos
: n_p
) - n_d
;