Revise r8309 to use \- rather than - when trying to emit a literal U+002D;
[sgt/halibut] / halibut.h
... / ...
CommitLineData
1#ifndef HALIBUT_HALIBUT_H
2#define HALIBUT_HALIBUT_H
3
4#include <stdio.h>
5#include <wchar.h>
6#include <time.h>
7#include <string.h>
8
9#include "charset.h"
10
11#ifdef __GNUC__
12#define NORETURN __attribute__((__noreturn__))
13#else
14#define NORETURN /* nothing */
15#endif
16
17#ifndef TRUE
18#define TRUE 1
19#endif
20#ifndef FALSE
21#define FALSE 0
22#endif
23
24/* For suppressing unused-parameter warnings */
25#define IGNORE(x) ( (x) = (x) )
26
27#include "tree234.h"
28
29/*
30 * Structure tags
31 */
32typedef struct input_Tag input;
33typedef struct filepos_Tag filepos;
34typedef struct paragraph_Tag paragraph;
35typedef struct word_Tag word;
36typedef struct keywordlist_Tag keywordlist;
37typedef struct keyword_Tag keyword;
38typedef struct numberstate_Tag numberstate;
39typedef struct indexdata_Tag indexdata;
40typedef struct indextag_Tag indextag;
41typedef struct indexentry_Tag indexentry;
42typedef struct macrostack_Tag macrostack;
43
44/*
45 * Data structure to hold a file name and index, a line and a
46 * column number, for reporting errors
47 */
48struct filepos_Tag {
49 char *filename;
50 int line, col;
51};
52
53/*
54 * Data structure to hold all the file names etc for input
55 */
56typedef struct pushback_Tag {
57 int chr;
58 filepos pos;
59} pushback;
60struct input_Tag {
61 char **filenames; /* complete list of input files */
62 int nfiles; /* how many in the list */
63 FILE *currfp; /* the currently open one */
64 int currindex; /* which one is that in the list */
65 pushback *pushback; /* pushed-back input characters */
66 int npushback, pushbacksize;
67 filepos pos;
68 int reportcols; /* report column numbers in errors */
69 macrostack *stack; /* macro expansions in force */
70 int defcharset, charset; /* character sets for input files */
71 charset_state csstate;
72 wchar_t wc[16]; /* wide chars from input conversion */
73 int nwc, wcpos; /* size of, and position in, wc[] */
74 char *pushback_chars; /* used to save input-encoding data */
75};
76
77/*
78 * Data structure to hold the input form of the source, ie a linked
79 * list of paragraphs
80 */
81struct paragraph_Tag {
82 paragraph *next;
83 int type;
84 wchar_t *keyword; /* for most special paragraphs */
85 char *origkeyword; /* same again in original charset */
86 word *words; /* list of words in paragraph */
87 int aux; /* number, in a numbered paragraph
88 * or subsection level
89 */
90 word *kwtext; /* chapter/section indication */
91 word *kwtext2; /* numeric-only form of kwtext */
92 filepos fpos;
93
94 paragraph *parent, *child, *sibling; /* for hierarchy navigation */
95
96 void *private_data; /* for temp use in backends */
97};
98enum {
99 para_IM, /* index merge */
100 para_BR, /* bibliography rewrite */
101 para_Rule, /* random horizontal rule */
102 para_Chapter,
103 para_Appendix,
104 para_UnnumberedChapter,
105 para_Heading,
106 para_Subsect,
107 para_Normal,
108 para_Biblio, /* causes no output unless turned ... */
109 para_BiblioCited, /* ... into this paragraph type */
110 para_Bullet,
111 para_NumberedList,
112 para_DescribedThing,
113 para_Description,
114 para_Code,
115 para_Copyright,
116 para_NoCite,
117 para_Title,
118 para_VersionID,
119 para_Config, /* configuration directive */
120 para_LcontPush, /* begin continuation of list item */
121 para_LcontPop, /* end continuation of list item */
122 para_QuotePush, /* begin block quote */
123 para_QuotePop, /* end block quote */
124 /*
125 * Back ends may define their own paragraph types beyond here,
126 * in case they need to use them internally.
127 */
128 para_NotParaType /* placeholder value */
129};
130
131/*
132 * Data structure to hold an individual word
133 */
134struct word_Tag {
135 word *next, *alt;
136 int type;
137 int aux;
138 int breaks; /* can a line break after it? */
139 wchar_t *text;
140 filepos fpos;
141
142 void *private_data; /* for temp use in backends */
143};
144enum {
145 /* ORDERING CONSTRAINT: these normal-word types ... */
146 word_Normal,
147 word_Emph,
148 word_Code, /* monospaced; `quoted' in text */
149 word_WeakCode, /* monospaced, normal in text */
150 /* ... must be in the same order as these space types ... */
151 word_WhiteSpace, /* text is NULL or ignorable */
152 word_EmphSpace, /* WhiteSpace when emphasised */
153 word_CodeSpace, /* WhiteSpace when code */
154 word_WkCodeSpace, /* WhiteSpace when weak code */
155 /* ... and must be in the same order as these quote types ... */
156 word_Quote, /* text is NULL or ignorable */
157 word_EmphQuote, /* Quote when emphasised */
158 word_CodeQuote, /* (can't happen) */
159 word_WkCodeQuote, /* (can't happen) */
160 /* END ORDERING CONSTRAINT */
161 word_internal_endattrs,
162 word_UpperXref, /* \K */
163 word_LowerXref, /* \k */
164 word_XrefEnd, /* (invisible; no text) */
165 word_IndexRef, /* (always an invisible one) */
166 word_HyperLink, /* (invisible) */
167 word_HyperEnd, /* (also invisible; no text) */
168 /*
169 * Back ends may define their own word types beyond here, in
170 * case they need to use them internally.
171 */
172 word_NotWordType /* placeholder value */
173};
174/* aux values for attributed words */
175enum {
176 attr_Only = 0x0000, /* a lone word with the attribute */
177 attr_First = 0x0001, /* the first of a series */
178 attr_Last = 0x0002, /* the last of a series */
179 attr_Always = 0x0003, /* any other part of a series */
180 attr_mask = 0x0003
181};
182/* aux values for quote-type words */
183enum {
184 quote_Open = 0x0010,
185 quote_Close = 0x0020,
186 quote_mask = 0x0030
187};
188#define isvis(x) ( ( (x) >= word_Normal && (x) <= word_LowerXref ) )
189#define isattr(x) ( ( (x) > word_Normal && (x) < word_WhiteSpace ) || \
190 ( (x) > word_WhiteSpace && (x) < word_internal_endattrs ) )
191#define sameattr(x,y) ( (((x)-(y)) & 3) == 0 )
192#define towordstyle(x) ( word_Normal + ((x) & 3) )
193#define tospacestyle(x) ( word_WhiteSpace + ((x) & 3) )
194#define toquotestyle(x) ( word_Quote + ((x) & 3) )
195#define removeattr(x) ( word_Normal + ((x) &~ 3) )
196
197#define attraux(x) ( (x) & attr_mask )
198#define quoteaux(x) ( (x) & quote_mask )
199
200/*
201 * error.c
202 */
203void fatal(int code, ...) NORETURN;
204void error(int code, ...);
205enum {
206 err_nomemory, /* out of memory */
207 err_optnoarg, /* option `-%s' requires an argument */
208 err_nosuchopt, /* unrecognised option `-%s' */
209 err_cmdcharset, /* unrecognised charset %s (cmdline) */
210 err_futileopt, /* futile option `-%s'%s */
211 err_noinput, /* no input files */
212 err_cantopen, /* unable to open input file `%s' */
213 err_nodata, /* no data in input files */
214 err_brokencodepara, /* line in codepara didn't begin `\c' */
215 err_kwunclosed, /* expected `}' after keyword */
216 err_kwillegal, /* paragraph type expects no keyword */
217 err_kwexpected, /* paragraph type expects a keyword */
218 err_kwtoomany, /* paragraph type expects only 1 */
219 err_bodyillegal, /* paragraph type expects only kws! */
220 err_badparatype, /* invalid command at start of para */
221 err_badmidcmd, /* invalid command in mid-para */
222 err_unexbrace, /* unexpected brace */
223 err_explbr, /* expected `{' after command */
224 err_commenteof, /* EOF inside braced comment */
225 err_kwexprbr, /* expected `}' after cross-ref */
226 err_codequote, /* \q within \c is not supported */
227 err_missingrbrace, /* unclosed braces at end of para */
228 err_missingrbrace2, /* unclosed braces at end of file */
229 err_nestedstyles, /* unable to nest text styles */
230 err_nestedindex, /* unable to nest `\i' thingys */
231 err_indexcase, /* two \i differing only in case */
232 err_nosuchkw, /* unresolved cross-reference */
233 err_multiBR, /* multiple \BRs on same keyword */
234 err_nosuchidxtag, /* \IM on unknown index tag (warning) */
235 err_cantopenw, /* can't open output file for write */
236 err_macroexists, /* this macro already exists */
237 err_sectjump, /* jump a heading level, eg \C -> \S */
238 err_winhelp_ctxclash, /* WinHelp context ID hash clash */
239 err_multikw, /* keyword clash in sections */
240 err_misplacedlcont, /* \lcont not after a list item */
241 err_sectmarkerinblock, /* section marker appeared in block */
242 err_cfginsufarg, /* \cfg{%s} insufficient args (<%d) */
243 err_infonodechar, /* colon/comma in node name in info */
244 err_text_codeline, /* \c line too long in text backend */
245 err_htmlver, /* unrecognised HTML version keyword */
246 err_charset, /* unrecognised character set name */
247 err_nofont, /* unrecognised font name */
248 err_afmeof, /* eof in AFM file */
249 err_afmkey, /* missing expected keyword in AFM */
250 err_afmvers, /* unsupported AFM version */
251 err_afmval, /* missing value(s) for AFM key */
252 err_pfeof, /* eof in Type 1 font file */
253 err_pfhead, /* bad Type 1 header line */
254 err_pfbad, /* otherwise invalide Type 1 font */
255 err_pfnoafm, /* Type 1 font but no AFM */
256 err_chmnames, /* need both or neither of hhp+chm */
257 err_sfntnotable, /* required sfnt table missing */
258 err_sfntnopsname, /* sfnt has no PostScript name */
259 err_sfntbadtable, /* sfnt table not valid */
260 err_sfntnounicmap, /* sfnt has no UCS-2 cmap */
261 err_sfnttablevers, /* sfnt table version unknown */
262 err_sfntbadhdr, /* sfnt has bad header */
263 err_sfntbadglyph, /* sfnt cmap references bad glyph */
264 err_whatever /* random error of another type */
265};
266
267/*
268 * malloc.c
269 */
270#ifdef LOGALLOC
271void *smalloc(char *file, int line, int size);
272void *srealloc(char *file, int line, void *p, int size);
273void sfree(char *file, int line, void *p);
274#define smalloc(x) smalloc(__FILE__, __LINE__, x)
275#define srealloc(x, y) srealloc(__FILE__, __LINE__, x, y)
276#define sfree(x) sfree(__FILE__, __LINE__, x)
277#else
278void *smalloc(int size);
279void *srealloc(void *p, int size);
280void sfree(void *p);
281#endif
282void free_word_list(word *w);
283void free_para_list(paragraph *p);
284word *dup_word_list(word *w);
285char *dupstr(char const *s);
286
287#define snew(type) ( (type *) smalloc (sizeof (type)) )
288#define snewn(number, type) ( (type *) smalloc ((number) * sizeof (type)) )
289#define sresize(array, number, type) \
290 ( (type *) srealloc ((array), (number) * sizeof (type)) )
291#define lenof(array) ( sizeof(array) / sizeof(*(array)) )
292
293/*
294 * ustring.c
295 */
296wchar_t *ustrdup(wchar_t const *s);
297char *ustrtoa(wchar_t const *s, char *outbuf, int size, int charset);
298char *ustrtoa_careful(wchar_t const *s, char *outbuf, int size, int charset);
299wchar_t *ustrfroma(char const *s, wchar_t *outbuf, int size, int charset);
300char *utoa_dup(wchar_t const *s, int charset);
301char *utoa_dup_len(wchar_t const *s, int charset, int *len);
302char *utoa_careful_dup(wchar_t const *s, int charset);
303wchar_t *ufroma_dup(char const *s, int charset);
304char *utoa_locale_dup(wchar_t const *s);
305wchar_t *ufroma_locale_dup(char const *s);
306int ustrlen(wchar_t const *s);
307wchar_t *uadv(wchar_t *s);
308wchar_t *ustrcpy(wchar_t *dest, wchar_t const *source);
309wchar_t *ustrncpy(wchar_t *dest, wchar_t const *source, int n);
310wchar_t utolower(wchar_t);
311int uisalpha(wchar_t);
312int ustrcmp(wchar_t *lhs, wchar_t *rhs);
313int ustricmp(wchar_t const *lhs, wchar_t const *rhs);
314int ustrnicmp(wchar_t const *lhs, wchar_t const *rhs, int maxlen);
315int utoi(wchar_t const *);
316double utof(wchar_t const *);
317int utob(wchar_t const *);
318int uisdigit(wchar_t);
319wchar_t *ustrlow(wchar_t *s);
320wchar_t *ustrftime(const wchar_t *wfmt, const struct tm *timespec);
321int cvt_ok(int charset, const wchar_t *s);
322int charset_from_ustr(filepos *fpos, const wchar_t *name);
323
324/*
325 * wcwidth.c
326 */
327int strwid(char const *s, int charset);
328int ustrwid(wchar_t const *s, int charset);
329
330/*
331 * help.c
332 */
333void help(void);
334void usage(void);
335void showversion(void);
336void listcharsets(void);
337
338/*
339 * licence.c
340 */
341void licence(void);
342
343/*
344 * version.c
345 */
346extern const char *const version;
347
348/*
349 * misc.c
350 */
351char *adv(char *s);
352
353typedef struct stackTag *stack;
354stack stk_new(void);
355void stk_free(stack);
356void stk_push(stack, void *);
357void *stk_pop(stack);
358void *stk_top(stack);
359
360typedef struct tagRdstring rdstring;
361struct tagRdstring {
362 int pos, size;
363 wchar_t *text;
364};
365typedef struct tagRdstringc rdstringc;
366struct tagRdstringc {
367 int pos, size;
368 char *text;
369};
370extern const rdstring empty_rdstring;
371extern const rdstringc empty_rdstringc;
372void rdadd(rdstring *rs, wchar_t c);
373void rdadds(rdstring *rs, wchar_t const *p);
374wchar_t *rdtrim(rdstring *rs);
375void rdaddc(rdstringc *rs, char c);
376void rdaddsc(rdstringc *rs, char const *p);
377void rdaddsn(rdstringc *rc, char const *p, int len);
378char *rdtrimc(rdstringc *rs);
379
380int compare_wordlists(word *a, word *b);
381
382void mark_attr_ends(word *words);
383
384typedef struct tagWrappedLine wrappedline;
385struct tagWrappedLine {
386 wrappedline *next;
387 word *begin, *end; /* first & last words of line */
388 int nspaces; /* number of whitespaces in line */
389 int shortfall; /* how much shorter than max width */
390};
391wrappedline *wrap_para(word *, int, int, int (*)(void *, word *), void *, int);
392void wrap_free(wrappedline *);
393void cmdline_cfg_add(paragraph *cfg, char *string);
394paragraph *cmdline_cfg_new(void);
395paragraph *cmdline_cfg_simple(char *string, ...);
396
397/*
398 * input.c
399 */
400paragraph *read_input(input *in, indexdata *idx);
401
402/*
403 * in_afm.c
404 */
405void read_afm_file(input *in);
406
407/*
408 * in_pf.c
409 */
410void read_pfa_file(input *in);
411void read_pfb_file(input *in);
412
413/*
414 * in_sfnt.c
415 */
416void read_sfnt_file(input *in);
417
418/*
419 * keywords.c
420 */
421struct keywordlist_Tag {
422 int nkeywords;
423 int size;
424 tree234 *keys; /* sorted by `key' field */
425 word **looseends; /* non-keyword list element numbers */
426 int nlooseends;
427 int looseendssize;
428};
429struct keyword_Tag {
430 wchar_t *key; /* the keyword itself */
431 word *text; /* "Chapter 2", "Appendix Q"... */
432 /* (NB: filepos are not set) */
433 paragraph *para; /* the paragraph referenced */
434};
435keyword *kw_lookup(keywordlist *, wchar_t *);
436keywordlist *get_keywords(paragraph *);
437void free_keywords(keywordlist *);
438void subst_keywords(paragraph *, keywordlist *);
439
440/*
441 * index.c
442 */
443
444/*
445 * Data structure to hold both sides of the index.
446 */
447struct indexdata_Tag {
448 tree234 *tags; /* holds type `indextag' */
449 tree234 *entries; /* holds type `indexentry' */
450};
451
452/*
453 * Data structure to hold an index tag (LHS of index).
454 */
455struct indextag_Tag {
456 wchar_t *name;
457 word *implicit_text;
458 filepos implicit_fpos;
459 word **explicit_texts;
460 filepos *explicit_fpos;
461 int nexplicit, explicit_size;
462 int nrefs;
463 indexentry **refs; /* array of entries referenced by tag */
464};
465
466/*
467 * Data structure to hold an index entry (RHS of index).
468 */
469struct indexentry_Tag {
470 word *text;
471 void *backend_data; /* private to back end */
472 filepos fpos;
473};
474
475indexdata *make_index(void);
476void cleanup_index(indexdata *);
477/* index_merge takes responsibility for freeing arg 3 iff implicit; never
478 * takes responsibility for arg 2 */
479void index_merge(indexdata *, int is_explicit, wchar_t *, word *, filepos *);
480void build_index(indexdata *);
481void index_debug(indexdata *);
482indextag *index_findtag(indexdata *idx, wchar_t *name);
483
484/*
485 * contents.c
486 */
487numberstate *number_init(void);
488void number_cfg(numberstate *, paragraph *);
489word *number_mktext(numberstate *, paragraph *, wchar_t *, int *, int *);
490void number_free(numberstate *);
491
492/*
493 * biblio.c
494 */
495void gen_citations(paragraph *, keywordlist *);
496
497/*
498 * bk_text.c
499 */
500void text_backend(paragraph *, keywordlist *, indexdata *, void *);
501paragraph *text_config_filename(char *filename);
502
503/*
504 * bk_html.c
505 */
506void html_backend(paragraph *, keywordlist *, indexdata *, void *);
507paragraph *html_config_filename(char *filename);
508
509/*
510 * bk_whlp.c
511 */
512void whlp_backend(paragraph *, keywordlist *, indexdata *, void *);
513paragraph *whlp_config_filename(char *filename);
514
515/*
516 * bk_man.c
517 */
518void man_backend(paragraph *, keywordlist *, indexdata *, void *);
519paragraph *man_config_filename(char *filename);
520
521/*
522 * bk_info.c
523 */
524void info_backend(paragraph *, keywordlist *, indexdata *, void *);
525paragraph *info_config_filename(char *filename);
526
527/*
528 * bk_paper.c
529 */
530void *paper_pre_backend(paragraph *, keywordlist *, indexdata *);
531void listfonts(void);
532
533/*
534 * bk_ps.c
535 */
536void ps_backend(paragraph *, keywordlist *, indexdata *, void *);
537paragraph *ps_config_filename(char *filename);
538
539/*
540 * bk_pdf.c
541 */
542void pdf_backend(paragraph *, keywordlist *, indexdata *, void *);
543paragraph *pdf_config_filename(char *filename);
544
545#endif