Test for r8309/r8321.
[sgt/halibut] / bk_text.c
CommitLineData
d7482997 1/*
2 * text backend for Halibut
3 */
4
5#include <stdio.h>
6#include <stdlib.h>
7#include <assert.h>
8#include "halibut.h"
9
10typedef enum { LEFT, LEFTPLUS, CENTRE } alignment;
11typedef struct {
12 alignment align;
6e674706 13 int number_at_all, just_numbers;
db662ca1 14 wchar_t *underline;
63223c78 15 wchar_t *number_suffix;
d7482997 16} alignstruct;
17
18typedef struct {
19 int indent, indent_code;
20 int listindentbefore, listindentafter;
21 int width;
22 alignstruct atitle, achapter, *asect;
23 int nasect;
24 int include_version_id;
25 int indent_preambles;
2ac8ceac 26 int charset;
d7482997 27 word bullet;
db662ca1 28 wchar_t *lquote, *rquote, *rule;
50d6b4bd 29 char *filename;
db662ca1 30 wchar_t *listsuffix, *startemph, *endemph;
d7482997 31} textconfig;
32
2ac8ceac 33typedef struct {
34 FILE *fp;
35 int charset;
36 charset_state state;
37} textfile;
38
39static void text_heading(textfile *, word *, word *, word *, alignstruct,
db662ca1 40 int, int, textconfig *);
41static void text_rule(textfile *, int, int, textconfig *);
42static void text_para(textfile *, word *, wchar_t *, word *, int, int, int,
43 textconfig *);
2ac8ceac 44static void text_codepara(textfile *, word *, int, int);
db662ca1 45static void text_versionid(textfile *, word *, textconfig *);
d7482997 46
2ac8ceac 47static void text_output(textfile *, const wchar_t *);
48static void text_output_many(textfile *, int, wchar_t);
d7482997 49
50static alignment utoalign(wchar_t *p) {
51 if (!ustricmp(p, L"centre") || !ustricmp(p, L"center"))
52 return CENTRE;
53 if (!ustricmp(p, L"leftplus"))
54 return LEFTPLUS;
55 return LEFT;
56}
57
58static textconfig text_configure(paragraph *source) {
59 textconfig ret;
db662ca1 60 paragraph *p;
61 int n;
d7482997 62
63 /*
64 * Non-negotiables.
65 */
66 ret.bullet.next = NULL;
67 ret.bullet.alt = NULL;
68 ret.bullet.type = word_Normal;
69 ret.atitle.just_numbers = FALSE; /* ignored */
6e674706 70 ret.atitle.number_at_all = TRUE; /* ignored */
d7482997 71
72 /*
73 * Defaults.
74 */
75 ret.indent = 7;
76 ret.indent_code = 2;
77 ret.listindentbefore = 1;
78 ret.listindentafter = 3;
79 ret.width = 68;
80 ret.atitle.align = CENTRE;
db662ca1 81 ret.atitle.underline = L"\x2550\0=\0\0";
d7482997 82 ret.achapter.align = LEFT;
83 ret.achapter.just_numbers = FALSE;
6e674706 84 ret.achapter.number_at_all = TRUE;
e5e6bf9d 85 ret.achapter.number_suffix = L": ";
db662ca1 86 ret.achapter.underline = L"\x203E\0-\0\0";
d7482997 87 ret.nasect = 1;
f1530049 88 ret.asect = snewn(ret.nasect, alignstruct);
d7482997 89 ret.asect[0].align = LEFTPLUS;
90 ret.asect[0].just_numbers = TRUE;
6e674706 91 ret.asect[0].number_at_all = TRUE;
e5e6bf9d 92 ret.asect[0].number_suffix = L" ";
db662ca1 93 ret.asect[0].underline = L"\0";
d7482997 94 ret.include_version_id = TRUE;
95 ret.indent_preambles = FALSE;
db662ca1 96 ret.bullet.text = L"\x2022\0-\0\0";
97 ret.rule = L"\x2500\0-\0\0";
50d6b4bd 98 ret.filename = dupstr("output.txt");
3e030063 99 ret.startemph = L"_\0_\0\0";
100 ret.endemph = uadv(ret.startemph);
db662ca1 101 ret.listsuffix = L".";
2ac8ceac 102 ret.charset = CS_ASCII;
db662ca1 103 /*
104 * Default quote characters are Unicode matched single quotes,
105 * falling back to the TeXlike `'.
106 */
107 ret.lquote = L"\x2018\0\x2019\0`\0'\0\0";
108 ret.rquote = uadv(ret.lquote);
d7482997 109
db662ca1 110 /*
111 * Two-pass configuration so that we can pick up global config
112 * (e.g. `quotes') before having it overridden by specific
113 * config (`text-quotes'), irrespective of the order in which
114 * they occur.
115 */
116 for (p = source; p; p = p->next) {
117 if (p->type == para_Config) {
118 if (!ustricmp(p->keyword, L"quotes")) {
119 if (*uadv(p->keyword) && *uadv(uadv(p->keyword))) {
120 ret.lquote = uadv(p->keyword);
121 ret.rquote = uadv(ret.lquote);
122 }
123 }
124 }
125 }
126
127 for (p = source; p; p = p->next) {
128 if (p->type == para_Config) {
129 if (!ustricmp(p->keyword, L"text-indent")) {
130 ret.indent = utoi(uadv(p->keyword));
131 } else if (!ustricmp(p->keyword, L"text-charset")) {
0960a3d8 132 ret.charset = charset_from_ustr(&p->fpos, uadv(p->keyword));
db662ca1 133 } else if (!ustricmp(p->keyword, L"text-filename")) {
50d6b4bd 134 sfree(ret.filename);
db662ca1 135 ret.filename = dupstr(adv(p->origkeyword));
136 } else if (!ustricmp(p->keyword, L"text-indent-code")) {
137 ret.indent_code = utoi(uadv(p->keyword));
138 } else if (!ustricmp(p->keyword, L"text-width")) {
139 ret.width = utoi(uadv(p->keyword));
140 } else if (!ustricmp(p->keyword, L"text-list-indent")) {
141 ret.listindentbefore = utoi(uadv(p->keyword));
142 } else if (!ustricmp(p->keyword, L"text-listitem-indent")) {
143 ret.listindentafter = utoi(uadv(p->keyword));
144 } else if (!ustricmp(p->keyword, L"text-chapter-align")) {
145 ret.achapter.align = utoalign(uadv(p->keyword));
146 } else if (!ustricmp(p->keyword, L"text-chapter-underline")) {
147 ret.achapter.underline = uadv(p->keyword);
148 } else if (!ustricmp(p->keyword, L"text-chapter-numeric")) {
149 ret.achapter.just_numbers = utob(uadv(p->keyword));
6e674706 150 } else if (!ustricmp(p->keyword, L"text-chapter-shownumber")) {
151 ret.achapter.number_at_all = utob(uadv(p->keyword));
db662ca1 152 } else if (!ustricmp(p->keyword, L"text-chapter-suffix")) {
153 ret.achapter.number_suffix = uadv(p->keyword);
154 } else if (!ustricmp(p->keyword, L"text-section-align")) {
155 wchar_t *q = uadv(p->keyword);
d7482997 156 int n = 0;
db662ca1 157 if (uisdigit(*q)) {
158 n = utoi(q);
159 q = uadv(q);
d7482997 160 }
161 if (n >= ret.nasect) {
162 int i;
f1530049 163 ret.asect = sresize(ret.asect, n+1, alignstruct);
d7482997 164 for (i = ret.nasect; i <= n; i++)
165 ret.asect[i] = ret.asect[ret.nasect-1];
166 ret.nasect = n+1;
167 }
db662ca1 168 ret.asect[n].align = utoalign(q);
169 } else if (!ustricmp(p->keyword, L"text-section-underline")) {
170 wchar_t *q = uadv(p->keyword);
d7482997 171 int n = 0;
db662ca1 172 if (uisdigit(*q)) {
173 n = utoi(q);
174 q = uadv(q);
d7482997 175 }
176 if (n >= ret.nasect) {
177 int i;
f1530049 178 ret.asect = sresize(ret.asect, n+1, alignstruct);
d7482997 179 for (i = ret.nasect; i <= n; i++)
180 ret.asect[i] = ret.asect[ret.nasect-1];
181 ret.nasect = n+1;
182 }
db662ca1 183 ret.asect[n].underline = q;
184 } else if (!ustricmp(p->keyword, L"text-section-numeric")) {
185 wchar_t *q = uadv(p->keyword);
d7482997 186 int n = 0;
db662ca1 187 if (uisdigit(*q)) {
188 n = utoi(q);
189 q = uadv(q);
d7482997 190 }
191 if (n >= ret.nasect) {
192 int i;
f1530049 193 ret.asect = sresize(ret.asect, n+1, alignstruct);
d7482997 194 for (i = ret.nasect; i <= n; i++)
195 ret.asect[i] = ret.asect[ret.nasect-1];
196 ret.nasect = n+1;
197 }
db662ca1 198 ret.asect[n].just_numbers = utob(q);
6e674706 199 } else if (!ustricmp(p->keyword, L"text-section-shownumber")) {
200 wchar_t *q = uadv(p->keyword);
201 int n = 0;
202 if (uisdigit(*q)) {
203 n = utoi(q);
204 q = uadv(q);
205 }
206 if (n >= ret.nasect) {
207 int i;
208 ret.asect = sresize(ret.asect, n+1, alignstruct);
209 for (i = ret.nasect; i <= n; i++)
210 ret.asect[i] = ret.asect[ret.nasect-1];
211 ret.nasect = n+1;
212 }
213 ret.asect[n].number_at_all = utob(q);
db662ca1 214 } else if (!ustricmp(p->keyword, L"text-section-suffix")) {
215 wchar_t *q = uadv(p->keyword);
63223c78 216 int n = 0;
db662ca1 217 if (uisdigit(*q)) {
218 n = utoi(q);
219 q = uadv(q);
63223c78 220 }
221 if (n >= ret.nasect) {
222 int i;
f1530049 223 ret.asect = sresize(ret.asect, n+1, alignstruct);
e5e6bf9d 224 for (i = ret.nasect; i <= n; i++) {
63223c78 225 ret.asect[i] = ret.asect[ret.nasect-1];
e5e6bf9d 226 }
63223c78 227 ret.nasect = n+1;
228 }
db662ca1 229 ret.asect[n].number_suffix = q;
230 } else if (!ustricmp(p->keyword, L"text-title-align")) {
231 ret.atitle.align = utoalign(uadv(p->keyword));
232 } else if (!ustricmp(p->keyword, L"text-title-underline")) {
233 ret.atitle.underline = uadv(p->keyword);
234 } else if (!ustricmp(p->keyword, L"text-versionid")) {
235 ret.include_version_id = utob(uadv(p->keyword));
236 } else if (!ustricmp(p->keyword, L"text-indent-preamble")) {
237 ret.indent_preambles = utob(uadv(p->keyword));
238 } else if (!ustricmp(p->keyword, L"text-bullet")) {
239 ret.bullet.text = uadv(p->keyword);
240 } else if (!ustricmp(p->keyword, L"text-rule")) {
241 ret.rule = uadv(p->keyword);
242 } else if (!ustricmp(p->keyword, L"text-list-suffix")) {
243 ret.listsuffix = uadv(p->keyword);
244 } else if (!ustricmp(p->keyword, L"text-emphasis")) {
245 if (*uadv(p->keyword) && *uadv(uadv(p->keyword))) {
246 ret.startemph = uadv(p->keyword);
247 ret.endemph = uadv(ret.startemph);
248 }
249 } else if (!ustricmp(p->keyword, L"text-quotes")) {
250 if (*uadv(p->keyword) && *uadv(uadv(p->keyword))) {
251 ret.lquote = uadv(p->keyword);
252 ret.rquote = uadv(ret.lquote);
253 }
d7482997 254 }
255 }
256 }
257
db662ca1 258 /*
259 * Now process fallbacks on quote characters, underlines, the
260 * rule character, the emphasis characters, and bullets.
261 */
262 while (*uadv(ret.rquote) && *uadv(uadv(ret.rquote)) &&
263 (!cvt_ok(ret.charset, ret.lquote) ||
264 !cvt_ok(ret.charset, ret.rquote))) {
265 ret.lquote = uadv(ret.rquote);
266 ret.rquote = uadv(ret.lquote);
267 }
268
269 while (*uadv(ret.endemph) && *uadv(uadv(ret.endemph)) &&
270 (!cvt_ok(ret.charset, ret.startemph) ||
271 !cvt_ok(ret.charset, ret.endemph))) {
272 ret.startemph = uadv(ret.endemph);
273 ret.endemph = uadv(ret.startemph);
274 }
275
276 while (*ret.atitle.underline && *uadv(ret.atitle.underline) &&
277 !cvt_ok(ret.charset, ret.atitle.underline))
278 ret.atitle.underline = uadv(ret.atitle.underline);
279
280 while (*ret.achapter.underline && *uadv(ret.achapter.underline) &&
281 !cvt_ok(ret.charset, ret.achapter.underline))
282 ret.achapter.underline = uadv(ret.achapter.underline);
283
284 for (n = 0; n < ret.nasect; n++) {
285 while (*ret.asect[n].underline && *uadv(ret.asect[n].underline) &&
286 !cvt_ok(ret.charset, ret.asect[n].underline))
287 ret.asect[n].underline = uadv(ret.asect[n].underline);
288 }
289
290 while (*ret.bullet.text && *uadv(ret.bullet.text) &&
291 !cvt_ok(ret.charset, ret.bullet.text))
292 ret.bullet.text = uadv(ret.bullet.text);
293
294 while (*ret.rule && *uadv(ret.rule) &&
295 !cvt_ok(ret.charset, ret.rule))
296 ret.rule = uadv(ret.rule);
297
d7482997 298 return ret;
299}
300
ba9c1487 301paragraph *text_config_filename(char *filename)
302{
e4ea58f8 303 return cmdline_cfg_simple("text-filename", filename, NULL);
ba9c1487 304}
305
d7482997 306void text_backend(paragraph *sourceform, keywordlist *keywords,
43341922 307 indexdata *idx, void *unused) {
d7482997 308 paragraph *p;
309 textconfig conf;
310 word *prefix, *body, *wp;
311 word spaceword;
2ac8ceac 312 textfile tf;
313 wchar_t *prefixextra;
7136a6c7 314 int nesting, nestindent;
d7482997 315 int indentb, indenta;
316
43341922 317 IGNORE(unused);
d7482997 318 IGNORE(keywords); /* we don't happen to need this */
319 IGNORE(idx); /* or this */
320
321 conf = text_configure(sourceform);
322
323 /*
50d6b4bd 324 * Open the output file.
d7482997 325 */
2ac8ceac 326 tf.fp = fopen(conf.filename, "w");
327 if (!tf.fp) {
50d6b4bd 328 error(err_cantopenw, conf.filename);
d7482997 329 return;
330 }
2ac8ceac 331 tf.charset = conf.charset;
332 tf.state = charset_init_state;
d7482997 333
334 /* Do the title */
335 for (p = sourceform; p; p = p->next)
336 if (p->type == para_Title)
2ac8ceac 337 text_heading(&tf, NULL, NULL, p->words,
db662ca1 338 conf.atitle, conf.indent, conf.width, &conf);
d7482997 339
7136a6c7 340 nestindent = conf.listindentbefore + conf.listindentafter;
8902e0ed 341 nesting = (conf.indent_preambles ? 0 : -conf.indent);
7136a6c7 342
d7482997 343 /* Do the main document */
344 for (p = sourceform; p; p = p->next) switch (p->type) {
345
2614b01d 346 case para_QuotePush:
347 nesting += 2;
348 break;
349 case para_QuotePop:
350 nesting -= 2;
351 assert(nesting >= 0);
352 break;
353
7136a6c7 354 case para_LcontPush:
2614b01d 355 nesting += nestindent;
7136a6c7 356 break;
357 case para_LcontPop:
2614b01d 358 nesting -= nestindent;
359 assert(nesting >= 0);
7136a6c7 360 break;
361
d7482997 362 /*
363 * Things we ignore because we've already processed them or
364 * aren't going to touch them in this pass.
365 */
366 case para_IM:
367 case para_BR:
368 case para_Biblio: /* only touch BiblioCited */
369 case para_VersionID:
d7482997 370 case para_NoCite:
371 case para_Title:
372 break;
373
374 /*
375 * Chapter titles.
376 */
377 case para_Chapter:
378 case para_Appendix:
379 case para_UnnumberedChapter:
2ac8ceac 380 text_heading(&tf, p->kwtext, p->kwtext2, p->words,
db662ca1 381 conf.achapter, conf.indent, conf.width, &conf);
8902e0ed 382 nesting = 0;
d7482997 383 break;
384
385 case para_Heading:
386 case para_Subsect:
2ac8ceac 387 text_heading(&tf, p->kwtext, p->kwtext2, p->words,
d7482997 388 conf.asect[p->aux>=conf.nasect ? conf.nasect-1 : p->aux],
db662ca1 389 conf.indent, conf.width, &conf);
d7482997 390 break;
391
392 case para_Rule:
db662ca1 393 text_rule(&tf, conf.indent + nesting, conf.width - nesting, &conf);
d7482997 394 break;
395
396 case para_Normal:
9057a0a8 397 case para_Copyright:
7136a6c7 398 case para_DescribedThing:
399 case para_Description:
d7482997 400 case para_BiblioCited:
401 case para_Bullet:
402 case para_NumberedList:
403 if (p->type == para_Bullet) {
404 prefix = &conf.bullet;
405 prefixextra = NULL;
406 indentb = conf.listindentbefore;
407 indenta = conf.listindentafter;
408 } else if (p->type == para_NumberedList) {
409 prefix = p->kwtext;
db662ca1 410 prefixextra = conf.listsuffix;
d7482997 411 indentb = conf.listindentbefore;
412 indenta = conf.listindentafter;
7136a6c7 413 } else if (p->type == para_Description) {
414 prefix = NULL;
415 prefixextra = NULL;
416 indentb = conf.listindentbefore;
417 indenta = conf.listindentafter;
d7482997 418 } else {
419 prefix = NULL;
420 prefixextra = NULL;
421 indentb = indenta = 0;
422 }
423 if (p->type == para_BiblioCited) {
424 body = dup_word_list(p->kwtext);
425 for (wp = body; wp->next; wp = wp->next);
426 wp->next = &spaceword;
427 spaceword.next = p->words;
428 spaceword.alt = NULL;
429 spaceword.type = word_WhiteSpace;
430 spaceword.text = NULL;
431 } else {
432 wp = NULL;
433 body = p->words;
434 }
2ac8ceac 435 text_para(&tf, prefix, prefixextra, body,
2614b01d 436 conf.indent + nesting + indentb, indenta,
db662ca1 437 conf.width - nesting - indentb - indenta, &conf);
d7482997 438 if (wp) {
439 wp->next = NULL;
440 free_word_list(body);
441 }
442 break;
443
444 case para_Code:
2ac8ceac 445 text_codepara(&tf, p->words,
2614b01d 446 conf.indent + nesting + conf.indent_code,
447 conf.width - nesting - 2 * conf.indent_code);
d7482997 448 break;
449 }
450
451 /* Do the version ID */
452 if (conf.include_version_id) {
453 for (p = sourceform; p; p = p->next)
454 if (p->type == para_VersionID)
db662ca1 455 text_versionid(&tf, p->words, &conf);
d7482997 456 }
457
458 /*
459 * Tidy up
460 */
2ac8ceac 461 text_output(&tf, NULL); /* end charset conversion */
462 fclose(tf.fp);
e5e6bf9d 463 sfree(conf.asect);
50d6b4bd 464 sfree(conf.filename);
d7482997 465}
466
2ac8ceac 467static void text_output(textfile *tf, const wchar_t *s)
468{
469 char buf[256];
470 int ret, len;
471 const wchar_t **sp;
472
473 if (!s) {
474 sp = NULL;
475 len = 1;
476 } else {
477 sp = &s;
478 len = ustrlen(s);
479 }
480
481 while (len > 0) {
482 ret = charset_from_unicode(sp, &len, buf, lenof(buf),
483 tf->charset, &tf->state, NULL);
484 if (!sp)
485 len = 0;
486 fwrite(buf, 1, ret, tf->fp);
d7482997 487 }
d7482997 488}
489
2ac8ceac 490static void text_output_many(textfile *tf, int n, wchar_t c)
491{
492 wchar_t s[2];
493 s[0] = c;
494 s[1] = L'\0';
495 while (n--)
496 text_output(tf, s);
497}
d7482997 498
db662ca1 499static void text_rdaddw(rdstring *rs, word *text, word *end, textconfig *cfg) {
d7482997 500 for (; text && text != end; text = text->next) switch (text->type) {
501 case word_HyperLink:
502 case word_HyperEnd:
503 case word_UpperXref:
504 case word_LowerXref:
505 case word_XrefEnd:
506 case word_IndexRef:
507 break;
508
509 case word_Normal:
510 case word_Emph:
511 case word_Code:
512 case word_WeakCode:
513 case word_WhiteSpace:
514 case word_EmphSpace:
515 case word_CodeSpace:
516 case word_WkCodeSpace:
517 case word_Quote:
518 case word_EmphQuote:
519 case word_CodeQuote:
520 case word_WkCodeQuote:
521 assert(text->type != word_CodeQuote &&
522 text->type != word_WkCodeQuote);
523 if (towordstyle(text->type) == word_Emph &&
524 (attraux(text->aux) == attr_First ||
525 attraux(text->aux) == attr_Only))
db662ca1 526 rdadds(rs, cfg->startemph);
d7482997 527 else if (towordstyle(text->type) == word_Code &&
528 (attraux(text->aux) == attr_First ||
529 attraux(text->aux) == attr_Only))
db662ca1 530 rdadds(rs, cfg->lquote);
d7482997 531 if (removeattr(text->type) == word_Normal) {
db662ca1 532 if (cvt_ok(cfg->charset, text->text) || !text->alt)
2ac8ceac 533 rdadds(rs, text->text);
d7482997 534 else
db662ca1 535 text_rdaddw(rs, text->alt, NULL, cfg);
d7482997 536 } else if (removeattr(text->type) == word_WhiteSpace) {
2ac8ceac 537 rdadd(rs, L' ');
d7482997 538 } else if (removeattr(text->type) == word_Quote) {
db662ca1 539 rdadds(rs, quoteaux(text->aux) == quote_Open ?
540 cfg->lquote : cfg->rquote);
d7482997 541 }
542 if (towordstyle(text->type) == word_Emph &&
543 (attraux(text->aux) == attr_Last ||
544 attraux(text->aux) == attr_Only))
db662ca1 545 rdadds(rs, cfg->endemph);
d7482997 546 else if (towordstyle(text->type) == word_Code &&
547 (attraux(text->aux) == attr_Last ||
548 attraux(text->aux) == attr_Only))
db662ca1 549 rdadds(rs, cfg->rquote);
d7482997 550 break;
551 }
552}
553
43341922 554static int text_width(void *, word *);
d7482997 555
43341922 556static int text_width_list(void *ctx, word *text) {
d7482997 557 int w = 0;
558 while (text) {
43341922 559 w += text_width(ctx, text);
d7482997 560 text = text->next;
561 }
562 return w;
563}
564
43341922 565static int text_width(void *ctx, word *text) {
db662ca1 566 textconfig *cfg = (textconfig *)ctx;
567 int wid;
568 int attr;
43341922 569
d7482997 570 switch (text->type) {
571 case word_HyperLink:
572 case word_HyperEnd:
573 case word_UpperXref:
574 case word_LowerXref:
575 case word_XrefEnd:
576 case word_IndexRef:
577 return 0;
db662ca1 578 }
579
580 assert(text->type < word_internal_endattrs);
581
582 wid = 0;
583 attr = towordstyle(text->type);
584 if (attr == word_Emph || attr == word_Code) {
585 if (attraux(text->aux) == attr_Only ||
586 attraux(text->aux) == attr_First)
587 wid += ustrwid(attr == word_Emph ? cfg->startemph : cfg->lquote,
588 cfg->charset);
589 }
590 if (attr == word_Emph || attr == word_Code) {
591 if (attraux(text->aux) == attr_Only ||
592 attraux(text->aux) == attr_Last)
593 wid += ustrwid(attr == word_Emph ? cfg->startemph : cfg->lquote,
594 cfg->charset);
595 }
d7482997 596
db662ca1 597 switch (text->type) {
d7482997 598 case word_Normal:
599 case word_Emph:
600 case word_Code:
601 case word_WeakCode:
db662ca1 602 if (cvt_ok(cfg->charset, text->text) || !text->alt)
603 wid += ustrwid(text->text, cfg->charset);
604 else
605 wid += text_width_list(ctx, text->alt);
606 return wid;
d7482997 607
608 case word_WhiteSpace:
609 case word_EmphSpace:
610 case word_CodeSpace:
611 case word_WkCodeSpace:
612 case word_Quote:
613 case word_EmphQuote:
614 case word_CodeQuote:
615 case word_WkCodeQuote:
616 assert(text->type != word_CodeQuote &&
617 text->type != word_WkCodeQuote);
db662ca1 618 if (removeattr(text->type) == word_Quote) {
619 if (quoteaux(text->aux) == quote_Open)
620 wid += ustrwid(cfg->lquote, cfg->charset);
621 else
622 wid += ustrwid(cfg->rquote, cfg->charset);
623 } else
624 wid++; /* space */
d7482997 625 }
db662ca1 626
627 return wid;
d7482997 628}
629
2ac8ceac 630static void text_heading(textfile *tf, word *tprefix, word *nprefix,
631 word *text, alignstruct align,
db662ca1 632 int indent, int width, textconfig *cfg) {
2ac8ceac 633 rdstring t = { 0, 0, NULL };
d7482997 634 int margin, length;
635 int firstlinewidth, wrapwidth;
636 wrappedline *wrapping, *p;
637
6e674706 638 if (align.number_at_all) {
639 if (align.just_numbers && nprefix) {
640 text_rdaddw(&t, nprefix, NULL, cfg);
641 rdadds(&t, align.number_suffix);
642 } else if (!align.just_numbers && tprefix) {
643 text_rdaddw(&t, tprefix, NULL, cfg);
644 rdadds(&t, align.number_suffix);
645 }
d7482997 646 }
db662ca1 647 margin = length = ustrwid(t.text ? t.text : L"", cfg->charset);
d7482997 648
649 if (align.align == LEFTPLUS) {
650 margin = indent - margin;
651 if (margin < 0) margin = 0;
652 firstlinewidth = indent + width - margin - length;
653 wrapwidth = width;
654 } else if (align.align == LEFT || align.align == CENTRE) {
655 margin = 0;
656 firstlinewidth = indent + width - length;
657 wrapwidth = indent + width;
658 }
659
2ac8ceac 660 wrapping = wrap_para(text, firstlinewidth, wrapwidth,
db662ca1 661 text_width, cfg, 0);
d7482997 662 for (p = wrapping; p; p = p->next) {
db662ca1 663 text_rdaddw(&t, p->begin, p->end, cfg);
664 length = ustrwid(t.text ? t.text : L"", cfg->charset);
d7482997 665 if (align.align == CENTRE) {
666 margin = (indent + width - length)/2;
667 if (margin < 0) margin = 0;
668 }
2ac8ceac 669 text_output_many(tf, margin, L' ');
670 text_output(tf, t.text);
671 text_output(tf, L"\n");
db662ca1 672 if (*align.underline) {
2ac8ceac 673 text_output_many(tf, margin, L' ');
db662ca1 674 while (length > 0) {
675 text_output(tf, align.underline);
676 length -= ustrwid(align.underline, cfg->charset);
677 }
2ac8ceac 678 text_output(tf, L"\n");
d7482997 679 }
680 if (align.align == LEFTPLUS)
681 margin = indent;
682 else
683 margin = 0;
684 sfree(t.text);
2ac8ceac 685 t = empty_rdstring;
d7482997 686 }
687 wrap_free(wrapping);
2ac8ceac 688 text_output(tf, L"\n");
d7482997 689
690 sfree(t.text);
691}
692
db662ca1 693static void text_rule(textfile *tf, int indent, int width, textconfig *cfg) {
2ac8ceac 694 text_output_many(tf, indent, L' ');
db662ca1 695 while (width > 0) {
696 text_output(tf, cfg->rule);
697 width -= ustrwid(cfg->rule, cfg->charset);
698 }
2ac8ceac 699 text_output_many(tf, 2, L'\n');
d7482997 700}
701
2ac8ceac 702static void text_para(textfile *tf, word *prefix, wchar_t *prefixextra,
db662ca1 703 word *text, int indent, int extraindent, int width,
704 textconfig *cfg) {
d7482997 705 wrappedline *wrapping, *p;
2ac8ceac 706 rdstring pfx = { 0, 0, NULL };
d7482997 707 int e;
708 int firstlinewidth = width;
709
710 if (prefix) {
db662ca1 711 text_rdaddw(&pfx, prefix, NULL, cfg);
d7482997 712 if (prefixextra)
2ac8ceac 713 rdadds(&pfx, prefixextra);
714 text_output_many(tf, indent, L' ');
715 text_output(tf, pfx.text);
c83c6495 716 /* If the prefix is too long, shorten the first line to fit. */
db662ca1 717 e = extraindent - ustrwid(pfx.text ? pfx.text : L"", cfg->charset);
d7482997 718 if (e < 0) {
c83c6495 719 firstlinewidth += e; /* this decreases it, since e < 0 */
d7482997 720 if (firstlinewidth < 0) {
721 e = indent + extraindent;
722 firstlinewidth = width;
2ac8ceac 723 text_output(tf, L"\n");
c83c6495 724 } else
725 e = 0;
d7482997 726 }
727 sfree(pfx.text);
728 } else
729 e = indent + extraindent;
730
2ac8ceac 731 wrapping = wrap_para(text, firstlinewidth, width,
db662ca1 732 text_width, cfg, 0);
d7482997 733 for (p = wrapping; p; p = p->next) {
2ac8ceac 734 rdstring t = { 0, 0, NULL };
db662ca1 735 text_rdaddw(&t, p->begin, p->end, cfg);
2ac8ceac 736 text_output_many(tf, e, L' ');
737 text_output(tf, t.text);
738 text_output(tf, L"\n");
d7482997 739 e = indent + extraindent;
740 sfree(t.text);
741 }
742 wrap_free(wrapping);
2ac8ceac 743 text_output(tf, L"\n");
d7482997 744}
745
2ac8ceac 746static void text_codepara(textfile *tf, word *text, int indent, int width) {
d7482997 747 for (; text; text = text->next) if (text->type == word_WeakCode) {
db662ca1 748 int wid = ustrwid(text->text, tf->charset);
749 if (wid > width)
750 error(err_text_codeline, &text->fpos, wid, width);
2ac8ceac 751 text_output_many(tf, indent, L' ');
752 text_output(tf, text->text);
753 text_output(tf, L"\n");
d7482997 754 }
755
2ac8ceac 756 text_output(tf, L"\n");
d7482997 757}
758
db662ca1 759static void text_versionid(textfile *tf, word *text, textconfig *cfg) {
2ac8ceac 760 rdstring t = { 0, 0, NULL };
d7482997 761
db662ca1 762 rdadd(&t, L'[');
763 text_rdaddw(&t, text, NULL, cfg);
764 rdadd(&t, L']');
2ac8ceac 765 rdadd(&t, L'\n');
d7482997 766
2ac8ceac 767 text_output(tf, t.text);
d7482997 768 sfree(t.text);
769}