]> git.cameronkatri.com Git - mandoc.git/blob - man_html.c
Implement the first steps of equation parsing from within libmdoc.
[mandoc.git] / man_html.c
1 /* $Id: man_html.c,v 1.80 2011/07/23 22:57:13 kristaps Exp $ */
2 /*
3 * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17 #ifdef HAVE_CONFIG_H
18 #include "config.h"
19 #endif
20
21 #include <sys/types.h>
22
23 #include <assert.h>
24 #include <ctype.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28
29 #include "mandoc.h"
30 #include "out.h"
31 #include "html.h"
32 #include "man.h"
33 #include "main.h"
34
35 /* TODO: preserve ident widths. */
36 /* FIXME: have PD set the default vspace width. */
37
38 #define INDENT 5
39 #define HALFINDENT 3
40
41 #define MAN_ARGS const struct man_meta *m, \
42 const struct man_node *n, \
43 struct mhtml *mh, \
44 struct html *h
45
46 struct mhtml {
47 int fl;
48 #define MANH_LITERAL (1 << 0) /* literal context */
49 };
50
51 struct htmlman {
52 int (*pre)(MAN_ARGS);
53 int (*post)(MAN_ARGS);
54 };
55
56 static void print_bvspace(struct html *,
57 const struct man_node *);
58 static void print_man(MAN_ARGS);
59 static void print_man_head(MAN_ARGS);
60 static void print_man_nodelist(MAN_ARGS);
61 static void print_man_node(MAN_ARGS);
62
63 static int a2width(const struct man_node *,
64 struct roffsu *);
65
66 static int man_alt_pre(MAN_ARGS);
67 static int man_br_pre(MAN_ARGS);
68 static int man_ign_pre(MAN_ARGS);
69 static int man_in_pre(MAN_ARGS);
70 static int man_literal_pre(MAN_ARGS);
71 static void man_root_post(MAN_ARGS);
72 static void man_root_pre(MAN_ARGS);
73 static int man_B_pre(MAN_ARGS);
74 static int man_HP_pre(MAN_ARGS);
75 static int man_I_pre(MAN_ARGS);
76 static int man_IP_pre(MAN_ARGS);
77 static int man_PP_pre(MAN_ARGS);
78 static int man_RS_pre(MAN_ARGS);
79 static int man_SH_pre(MAN_ARGS);
80 static int man_SM_pre(MAN_ARGS);
81 static int man_SS_pre(MAN_ARGS);
82
83 static const struct htmlman mans[MAN_MAX] = {
84 { man_br_pre, NULL }, /* br */
85 { NULL, NULL }, /* TH */
86 { man_SH_pre, NULL }, /* SH */
87 { man_SS_pre, NULL }, /* SS */
88 { man_IP_pre, NULL }, /* TP */
89 { man_PP_pre, NULL }, /* LP */
90 { man_PP_pre, NULL }, /* PP */
91 { man_PP_pre, NULL }, /* P */
92 { man_IP_pre, NULL }, /* IP */
93 { man_HP_pre, NULL }, /* HP */
94 { man_SM_pre, NULL }, /* SM */
95 { man_SM_pre, NULL }, /* SB */
96 { man_alt_pre, NULL }, /* BI */
97 { man_alt_pre, NULL }, /* IB */
98 { man_alt_pre, NULL }, /* BR */
99 { man_alt_pre, NULL }, /* RB */
100 { NULL, NULL }, /* R */
101 { man_B_pre, NULL }, /* B */
102 { man_I_pre, NULL }, /* I */
103 { man_alt_pre, NULL }, /* IR */
104 { man_alt_pre, NULL }, /* RI */
105 { man_ign_pre, NULL }, /* na */
106 { man_br_pre, NULL }, /* sp */
107 { man_literal_pre, NULL }, /* nf */
108 { man_literal_pre, NULL }, /* fi */
109 { NULL, NULL }, /* RE */
110 { man_RS_pre, NULL }, /* RS */
111 { man_ign_pre, NULL }, /* DT */
112 { man_ign_pre, NULL }, /* UC */
113 { man_ign_pre, NULL }, /* PD */
114 { man_ign_pre, NULL }, /* AT */
115 { man_in_pre, NULL }, /* in */
116 { man_ign_pre, NULL }, /* ft */
117 };
118
119 /*
120 * Printing leading vertical space before a block.
121 * This is used for the paragraph macros.
122 * The rules are pretty simple, since there's very little nesting going
123 * on here. Basically, if we're the first within another block (SS/SH),
124 * then don't emit vertical space. If we are (RS), then do. If not the
125 * first, print it.
126 */
127 static void
128 print_bvspace(struct html *h, const struct man_node *n)
129 {
130
131 if (n->body && n->body->child)
132 if (MAN_TBL == n->body->child->type)
133 return;
134
135 if (MAN_ROOT == n->parent->type || MAN_RS != n->parent->tok)
136 if (NULL == n->prev)
137 return;
138
139 print_otag(h, TAG_P, 0, NULL);
140 }
141
142 void
143 html_man(void *arg, const struct man *m)
144 {
145 struct html *h;
146 struct tag *t;
147 struct mhtml mh;
148
149 h = (struct html *)arg;
150
151 print_gen_decls(h);
152
153 memset(&mh, 0, sizeof(struct mhtml));
154
155 t = print_otag(h, TAG_HTML, 0, NULL);
156 print_man(man_meta(m), man_node(m), &mh, h);
157 print_tagq(h, t);
158
159 printf("\n");
160 }
161
162 static void
163 print_man(MAN_ARGS)
164 {
165 struct tag *t;
166
167 t = print_otag(h, TAG_HEAD, 0, NULL);
168 print_man_head(m, n, mh, h);
169 print_tagq(h, t);
170
171 t = print_otag(h, TAG_BODY, 0, NULL);
172 print_man_nodelist(m, n, mh, h);
173 print_tagq(h, t);
174 }
175
176
177 /* ARGSUSED */
178 static void
179 print_man_head(MAN_ARGS)
180 {
181
182 print_gen_head(h);
183 bufcat_fmt(h, "%s(%s)", m->title, m->msec);
184 print_otag(h, TAG_TITLE, 0, NULL);
185 print_text(h, h->buf);
186 }
187
188
189 static void
190 print_man_nodelist(MAN_ARGS)
191 {
192
193 print_man_node(m, n, mh, h);
194 if (n->next)
195 print_man_nodelist(m, n->next, mh, h);
196 }
197
198
199 static void
200 print_man_node(MAN_ARGS)
201 {
202 int child;
203 struct tag *t;
204
205 child = 1;
206 t = h->tags.head;
207
208 switch (n->type) {
209 case (MAN_ROOT):
210 man_root_pre(m, n, mh, h);
211 break;
212 case (MAN_TEXT):
213 /*
214 * If we have a blank line, output a vertical space.
215 * If we have a space as the first character, break
216 * before printing the line's data.
217 */
218 if ('\0' == *n->string) {
219 print_otag(h, TAG_P, 0, NULL);
220 return;
221 }
222
223 if (' ' == *n->string && MAN_LINE & n->flags)
224 print_otag(h, TAG_BR, 0, NULL);
225 else if (MANH_LITERAL & mh->fl && n->prev)
226 print_otag(h, TAG_BR, 0, NULL);
227
228 print_text(h, n->string);
229 return;
230 case (MAN_EQN):
231 print_eqn(h, n->eqn);
232 break;
233 case (MAN_TBL):
234 /*
235 * This will take care of initialising all of the table
236 * state data for the first table, then tearing it down
237 * for the last one.
238 */
239 print_tbl(h, n->span);
240 return;
241 default:
242 /*
243 * Close out scope of font prior to opening a macro
244 * scope.
245 */
246 if (HTMLFONT_NONE != h->metac) {
247 h->metal = h->metac;
248 h->metac = HTMLFONT_NONE;
249 }
250
251 /*
252 * Close out the current table, if it's open, and unset
253 * the "meta" table state. This will be reopened on the
254 * next table element.
255 */
256 if (h->tblt) {
257 print_tblclose(h);
258 t = h->tags.head;
259 }
260 if (mans[n->tok].pre)
261 child = (*mans[n->tok].pre)(m, n, mh, h);
262 break;
263 }
264
265 if (child && n->child)
266 print_man_nodelist(m, n->child, mh, h);
267
268 /* This will automatically close out any font scope. */
269 print_stagq(h, t);
270
271 switch (n->type) {
272 case (MAN_ROOT):
273 man_root_post(m, n, mh, h);
274 break;
275 case (MAN_EQN):
276 break;
277 default:
278 if (mans[n->tok].post)
279 (*mans[n->tok].post)(m, n, mh, h);
280 break;
281 }
282 }
283
284
285 static int
286 a2width(const struct man_node *n, struct roffsu *su)
287 {
288
289 if (MAN_TEXT != n->type)
290 return(0);
291 if (a2roffsu(n->string, su, SCALE_BU))
292 return(1);
293
294 return(0);
295 }
296
297
298 /* ARGSUSED */
299 static void
300 man_root_pre(MAN_ARGS)
301 {
302 struct htmlpair tag[3];
303 struct tag *t, *tt;
304 char b[BUFSIZ], title[BUFSIZ];
305
306 b[0] = 0;
307 if (m->vol)
308 (void)strlcat(b, m->vol, BUFSIZ);
309
310 snprintf(title, BUFSIZ - 1, "%s(%s)", m->title, m->msec);
311
312 PAIR_SUMMARY_INIT(&tag[0], "Document Header");
313 PAIR_CLASS_INIT(&tag[1], "head");
314 if (NULL == h->style) {
315 PAIR_INIT(&tag[2], ATTR_WIDTH, "100%");
316 t = print_otag(h, TAG_TABLE, 3, tag);
317 PAIR_INIT(&tag[0], ATTR_WIDTH, "30%");
318 print_otag(h, TAG_COL, 1, tag);
319 print_otag(h, TAG_COL, 1, tag);
320 print_otag(h, TAG_COL, 1, tag);
321 } else
322 t = print_otag(h, TAG_TABLE, 2, tag);
323
324 print_otag(h, TAG_TBODY, 0, NULL);
325
326 tt = print_otag(h, TAG_TR, 0, NULL);
327
328 PAIR_CLASS_INIT(&tag[0], "head-ltitle");
329 print_otag(h, TAG_TD, 1, tag);
330
331 print_text(h, title);
332 print_stagq(h, tt);
333
334 PAIR_CLASS_INIT(&tag[0], "head-vol");
335 if (NULL == h->style) {
336 PAIR_INIT(&tag[1], ATTR_ALIGN, "center");
337 print_otag(h, TAG_TD, 2, tag);
338 } else
339 print_otag(h, TAG_TD, 1, tag);
340
341 print_text(h, b);
342 print_stagq(h, tt);
343
344 PAIR_CLASS_INIT(&tag[0], "head-rtitle");
345 if (NULL == h->style) {
346 PAIR_INIT(&tag[1], ATTR_ALIGN, "right");
347 print_otag(h, TAG_TD, 2, tag);
348 } else
349 print_otag(h, TAG_TD, 1, tag);
350
351 print_text(h, title);
352 print_tagq(h, t);
353 }
354
355
356 /* ARGSUSED */
357 static void
358 man_root_post(MAN_ARGS)
359 {
360 struct htmlpair tag[3];
361 struct tag *t, *tt;
362
363 PAIR_SUMMARY_INIT(&tag[0], "Document Footer");
364 PAIR_CLASS_INIT(&tag[1], "foot");
365 if (NULL == h->style) {
366 PAIR_INIT(&tag[2], ATTR_WIDTH, "100%");
367 t = print_otag(h, TAG_TABLE, 3, tag);
368 PAIR_INIT(&tag[0], ATTR_WIDTH, "50%");
369 print_otag(h, TAG_COL, 1, tag);
370 print_otag(h, TAG_COL, 1, tag);
371 } else
372 t = print_otag(h, TAG_TABLE, 2, tag);
373
374 tt = print_otag(h, TAG_TR, 0, NULL);
375
376 PAIR_CLASS_INIT(&tag[0], "foot-date");
377 print_otag(h, TAG_TD, 1, tag);
378
379 print_text(h, m->date);
380 print_stagq(h, tt);
381
382 PAIR_CLASS_INIT(&tag[0], "foot-os");
383 if (NULL == h->style) {
384 PAIR_INIT(&tag[1], ATTR_ALIGN, "right");
385 print_otag(h, TAG_TD, 2, tag);
386 } else
387 print_otag(h, TAG_TD, 1, tag);
388
389 if (m->source)
390 print_text(h, m->source);
391 print_tagq(h, t);
392 }
393
394
395 /* ARGSUSED */
396 static int
397 man_br_pre(MAN_ARGS)
398 {
399 struct roffsu su;
400 struct htmlpair tag;
401
402 SCALE_VS_INIT(&su, 1);
403
404 if (MAN_sp == n->tok) {
405 if (NULL != (n = n->child))
406 if ( ! a2roffsu(n->string, &su, SCALE_VS))
407 SCALE_VS_INIT(&su, atoi(n->string));
408 } else
409 su.scale = 0;
410
411 bufinit(h);
412 bufcat_su(h, "height", &su);
413 PAIR_STYLE_INIT(&tag, h);
414 print_otag(h, TAG_DIV, 1, &tag);
415
416 /* So the div isn't empty: */
417 print_text(h, "\\~");
418
419 return(0);
420 }
421
422 /* ARGSUSED */
423 static int
424 man_SH_pre(MAN_ARGS)
425 {
426 struct htmlpair tag;
427
428 if (MAN_BLOCK == n->type) {
429 mh->fl &= ~MANH_LITERAL;
430 PAIR_CLASS_INIT(&tag, "section");
431 print_otag(h, TAG_DIV, 1, &tag);
432 return(1);
433 } else if (MAN_BODY == n->type)
434 return(1);
435
436 print_otag(h, TAG_H1, 0, NULL);
437 return(1);
438 }
439
440 /* ARGSUSED */
441 static int
442 man_alt_pre(MAN_ARGS)
443 {
444 const struct man_node *nn;
445 int i, savelit;
446 enum htmltag fp;
447 struct tag *t;
448
449 if ((savelit = mh->fl & MANH_LITERAL))
450 print_otag(h, TAG_BR, 0, NULL);
451
452 mh->fl &= ~MANH_LITERAL;
453
454 for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
455 t = NULL;
456 switch (n->tok) {
457 case (MAN_BI):
458 fp = i % 2 ? TAG_I : TAG_B;
459 break;
460 case (MAN_IB):
461 fp = i % 2 ? TAG_B : TAG_I;
462 break;
463 case (MAN_RI):
464 fp = i % 2 ? TAG_I : TAG_MAX;
465 break;
466 case (MAN_IR):
467 fp = i % 2 ? TAG_MAX : TAG_I;
468 break;
469 case (MAN_BR):
470 fp = i % 2 ? TAG_MAX : TAG_B;
471 break;
472 case (MAN_RB):
473 fp = i % 2 ? TAG_B : TAG_MAX;
474 break;
475 default:
476 abort();
477 /* NOTREACHED */
478 }
479
480 if (i)
481 h->flags |= HTML_NOSPACE;
482
483 if (TAG_MAX != fp)
484 t = print_otag(h, fp, 0, NULL);
485
486 print_man_node(m, nn, mh, h);
487
488 if (t)
489 print_tagq(h, t);
490 }
491
492 if (savelit)
493 mh->fl |= MANH_LITERAL;
494
495 return(0);
496 }
497
498 /* ARGSUSED */
499 static int
500 man_SM_pre(MAN_ARGS)
501 {
502
503 print_otag(h, TAG_SMALL, 0, NULL);
504 if (MAN_SB == n->tok)
505 print_otag(h, TAG_B, 0, NULL);
506 return(1);
507 }
508
509 /* ARGSUSED */
510 static int
511 man_SS_pre(MAN_ARGS)
512 {
513 struct htmlpair tag;
514
515 if (MAN_BLOCK == n->type) {
516 mh->fl &= ~MANH_LITERAL;
517 PAIR_CLASS_INIT(&tag, "subsection");
518 print_otag(h, TAG_DIV, 1, &tag);
519 return(1);
520 } else if (MAN_BODY == n->type)
521 return(1);
522
523 print_otag(h, TAG_H2, 0, NULL);
524 return(1);
525 }
526
527 /* ARGSUSED */
528 static int
529 man_PP_pre(MAN_ARGS)
530 {
531
532 if (MAN_HEAD == n->type)
533 return(0);
534 else if (MAN_BLOCK == n->type)
535 print_bvspace(h, n);
536
537 return(1);
538 }
539
540 /* ARGSUSED */
541 static int
542 man_IP_pre(MAN_ARGS)
543 {
544 const struct man_node *nn;
545
546 if (MAN_BODY == n->type) {
547 print_otag(h, TAG_DD, 0, NULL);
548 return(1);
549 } else if (MAN_HEAD != n->type) {
550 print_otag(h, TAG_DL, 0, NULL);
551 return(1);
552 }
553
554 /* FIXME: width specification. */
555
556 print_otag(h, TAG_DT, 0, NULL);
557
558 /* For IP, only print the first header element. */
559
560 if (MAN_IP == n->tok && n->child)
561 print_man_node(m, n->child, mh, h);
562
563 /* For TP, only print next-line header elements. */
564
565 if (MAN_TP == n->tok)
566 for (nn = n->child; nn; nn = nn->next)
567 if (nn->line > n->line)
568 print_man_node(m, nn, mh, h);
569
570 return(0);
571 }
572
573 /* ARGSUSED */
574 static int
575 man_HP_pre(MAN_ARGS)
576 {
577 struct htmlpair tag;
578 struct roffsu su;
579 const struct man_node *np;
580
581 if (MAN_HEAD == n->type)
582 return(0);
583 else if (MAN_BLOCK != n->type)
584 return(1);
585
586 np = n->head->child;
587
588 if (NULL == np || ! a2width(np, &su))
589 SCALE_HS_INIT(&su, INDENT);
590
591 bufinit(h);
592
593 print_bvspace(h, n);
594 bufcat_su(h, "margin-left", &su);
595 su.scale = -su.scale;
596 bufcat_su(h, "text-indent", &su);
597 PAIR_STYLE_INIT(&tag, h);
598 print_otag(h, TAG_P, 1, &tag);
599 return(1);
600 }
601
602 /* ARGSUSED */
603 static int
604 man_B_pre(MAN_ARGS)
605 {
606
607 print_otag(h, TAG_B, 0, NULL);
608 return(1);
609 }
610
611 /* ARGSUSED */
612 static int
613 man_I_pre(MAN_ARGS)
614 {
615
616 print_otag(h, TAG_I, 0, NULL);
617 return(1);
618 }
619
620 /* ARGSUSED */
621 static int
622 man_literal_pre(MAN_ARGS)
623 {
624
625 if (MAN_nf != n->tok) {
626 print_otag(h, TAG_BR, 0, NULL);
627 mh->fl &= ~MANH_LITERAL;
628 } else
629 mh->fl |= MANH_LITERAL;
630
631 return(0);
632 }
633
634 /* ARGSUSED */
635 static int
636 man_in_pre(MAN_ARGS)
637 {
638
639 print_otag(h, TAG_BR, 0, NULL);
640 return(0);
641 }
642
643 /* ARGSUSED */
644 static int
645 man_ign_pre(MAN_ARGS)
646 {
647
648 return(0);
649 }
650
651 /* ARGSUSED */
652 static int
653 man_RS_pre(MAN_ARGS)
654 {
655 struct htmlpair tag;
656 struct roffsu su;
657
658 if (MAN_HEAD == n->type)
659 return(0);
660 else if (MAN_BODY == n->type)
661 return(1);
662
663 SCALE_HS_INIT(&su, INDENT);
664 if (n->head->child)
665 a2width(n->head->child, &su);
666
667 bufinit(h);
668 bufcat_su(h, "margin-left", &su);
669 PAIR_STYLE_INIT(&tag, h);
670 print_otag(h, TAG_DIV, 1, &tag);
671 return(1);
672 }