It would probably help to add a test of the INFO-DIR-ENTRY mechanism
[sgt/halibut] / halibut.h
CommitLineData
d7482997 1#ifndef HALIBUT_HALIBUT_H
2#define HALIBUT_HALIBUT_H
3
4#include <stdio.h>
5#include <wchar.h>
6#include <time.h>
9c1cf191 7#include <string.h>
d7482997 8
9#ifdef __GNUC__
10#define NORETURN __attribute__((__noreturn__))
11#else
12#define NORETURN /* nothing */
13#endif
14
15#ifndef TRUE
16#define TRUE 1
17#endif
18#ifndef FALSE
19#define FALSE 0
20#endif
21
22/* For suppressing unused-parameter warnings */
23#define IGNORE(x) ( (x) = (x) )
24
25#include "tree234.h"
26
27/*
28 * Structure tags
29 */
30typedef struct input_Tag input;
31typedef struct filepos_Tag filepos;
32typedef struct paragraph_Tag paragraph;
33typedef struct word_Tag word;
34typedef struct keywordlist_Tag keywordlist;
35typedef struct keyword_Tag keyword;
36typedef struct userstyle_Tag userstyle;
37typedef struct numberstate_Tag numberstate;
38typedef struct indexdata_Tag indexdata;
39typedef struct indextag_Tag indextag;
40typedef struct indexentry_Tag indexentry;
41typedef struct macrostack_Tag macrostack;
42
43/*
44 * Data structure to hold a file name and index, a line and a
45 * column number, for reporting errors
46 */
47struct filepos_Tag {
48 char *filename;
49 int line, col;
50};
51
52/*
53 * Data structure to hold all the file names etc for input
54 */
55typedef struct pushback_Tag {
56 int chr;
57 filepos pos;
58} pushback;
59struct input_Tag {
60 char **filenames; /* complete list of input files */
61 int nfiles; /* how many in the list */
62 FILE *currfp; /* the currently open one */
63 int currindex; /* which one is that in the list */
64 pushback *pushback; /* pushed-back input characters */
65 int npushback, pushbacksize;
66 filepos pos;
67 int reportcols; /* report column numbers in errors */
68 macrostack *stack; /* macro expansions in force */
69};
70
71/*
72 * Data structure to hold the input form of the source, ie a linked
73 * list of paragraphs
74 */
75struct paragraph_Tag {
76 paragraph *next;
77 int type;
78 wchar_t *keyword; /* for most special paragraphs */
79 word *words; /* list of words in paragraph */
80 int aux; /* number, in a numbered paragraph
81 * or subsection level
82 */
83 word *kwtext; /* chapter/section indication */
84 word *kwtext2; /* numeric-only form of kwtext */
85 filepos fpos;
86
87 paragraph *parent, *child, *sibling; /* for hierarchy navigation */
88
89 void *private_data; /* for temp use in backends */
90};
91enum {
92 para_IM, /* index merge */
93 para_BR, /* bibliography rewrite */
94 para_Rule, /* random horizontal rule */
95 para_Chapter,
96 para_Appendix,
97 para_UnnumberedChapter,
98 para_Heading,
99 para_Subsect,
100 para_Normal,
101 para_Biblio, /* causes no output unless turned ... */
102 para_BiblioCited, /* ... into this paragraph type */
103 para_Bullet,
104 para_NumberedList,
7136a6c7 105 para_DescribedThing,
106 para_Description,
d7482997 107 para_Code,
108 para_Copyright,
d7482997 109 para_NoCite,
110 para_Title,
111 para_VersionID,
112 para_Config, /* configuration directive */
7136a6c7 113 para_LcontPush, /* begin continuation of list item */
114 para_LcontPop, /* end continuation of list item */
2614b01d 115 para_QuotePush, /* begin block quote */
116 para_QuotePop, /* end block quote */
d7482997 117 para_NotParaType /* placeholder value */
118};
119
120/*
121 * Data structure to hold an individual word
122 */
123struct word_Tag {
124 word *next, *alt;
125 int type;
126 int aux;
127 int breaks; /* can a line break after it? */
128 wchar_t *text;
129 filepos fpos;
5dd44dce 130
131 void *private_data; /* for temp use in backends */
d7482997 132};
133enum {
134 /* ORDERING CONSTRAINT: these normal-word types ... */
135 word_Normal,
136 word_Emph,
137 word_Code, /* monospaced; `quoted' in text */
138 word_WeakCode, /* monospaced, normal in text */
139 /* ... must be in the same order as these space types ... */
140 word_WhiteSpace, /* text is NULL or ignorable */
141 word_EmphSpace, /* WhiteSpace when emphasised */
142 word_CodeSpace, /* WhiteSpace when code */
143 word_WkCodeSpace, /* WhiteSpace when weak code */
144 /* ... and must be in the same order as these quote types ... */
145 word_Quote, /* text is NULL or ignorable */
146 word_EmphQuote, /* Quote when emphasised */
147 word_CodeQuote, /* (can't happen) */
148 word_WkCodeQuote, /* (can't happen) */
149 /* END ORDERING CONSTRAINT */
150 word_internal_endattrs,
151 word_UpperXref, /* \K */
152 word_LowerXref, /* \k */
153 word_XrefEnd, /* (invisible; no text) */
154 word_IndexRef, /* (always an invisible one) */
155 word_HyperLink, /* (invisible) */
156 word_HyperEnd /* (also invisible; no text) */
157};
158/* aux values for attributed words */
159enum {
160 attr_Only = 0x0000, /* a lone word with the attribute */
161 attr_First = 0x0001, /* the first of a series */
162 attr_Last = 0x0002, /* the last of a series */
163 attr_Always = 0x0003, /* any other part of a series */
164 attr_mask = 0x0003,
165};
166/* aux values for quote-type words */
167enum {
168 quote_Open = 0x0010,
169 quote_Close = 0x0020,
170 quote_mask = 0x0030,
171};
172#define isattr(x) ( ( (x) > word_Normal && (x) < word_WhiteSpace ) || \
173 ( (x) > word_WhiteSpace && (x) < word_internal_endattrs ) )
174#define sameattr(x,y) ( (((x)-(y)) & 3) == 0 )
175#define towordstyle(x) ( word_Normal + ((x) & 3) )
176#define tospacestyle(x) ( word_WhiteSpace + ((x) & 3) )
177#define toquotestyle(x) ( word_Quote + ((x) & 3) )
178#define removeattr(x) ( word_Normal + ((x) &~ 3) )
179
180#define attraux(x) ( (x) & attr_mask )
181#define quoteaux(x) ( (x) & quote_mask )
182
183/*
184 * error.c
185 */
186void fatal(int code, ...) NORETURN;
187void error(int code, ...);
188enum {
189 err_nomemory, /* out of memory */
190 err_optnoarg, /* option `-%s' requires an argument */
191 err_nosuchopt, /* unrecognised option `-%s' */
192 err_noinput, /* no input files */
193 err_cantopen, /* unable to open input file `%s' */
194 err_nodata, /* no data in input files */
195 err_brokencodepara, /* line in codepara didn't begin `\c' */
196 err_kwunclosed, /* expected `}' after keyword */
197 err_kwillegal, /* paragraph type expects no keyword */
198 err_kwexpected, /* paragraph type expects a keyword */
199 err_kwtoomany, /* paragraph type expects only 1 */
200 err_bodyillegal, /* paragraph type expects only kws! */
201 err_badparatype, /* invalid command at start of para */
202 err_badmidcmd, /* invalid command in mid-para */
203 err_unexbrace, /* unexpected brace */
204 err_explbr, /* expected `{' after command */
205 err_commenteof, /* EOF inside braced comment */
206 err_kwexprbr, /* expected `}' after cross-ref */
207 err_missingrbrace, /* unclosed braces at end of para */
7136a6c7 208 err_missingrbrace2, /* unclosed braces at end of file */
d7482997 209 err_nestedstyles, /* unable to nest text styles */
210 err_nestedindex, /* unable to nest `\i' thingys */
211 err_nosuchkw, /* unresolved cross-reference */
212 err_multiBR, /* multiple \BRs on same keyword */
213 err_nosuchidxtag, /* \IM on unknown index tag (warning) */
214 err_cantopenw, /* can't open output file for write */
215 err_macroexists, /* this macro already exists */
216 err_sectjump, /* jump a heading level, eg \C -> \S */
217 err_winhelp_ctxclash, /* WinHelp context ID hash clash */
218 err_multikw, /* keyword clash in sections */
7136a6c7 219 err_misplacedlcont, /* \lcont not after a list item */
2614b01d 220 err_sectmarkerinblock, /* section marker appeared in block */
d4c7e130 221 err_infodirentry, /* \cfg{info-dir-entry} missing param */
d7482997 222 err_whatever /* random error of another type */
223};
224
225/*
226 * malloc.c
227 */
228#ifdef LOGALLOC
229void *smalloc(char *file, int line, int size);
230void *srealloc(char *file, int line, void *p, int size);
231void sfree(char *file, int line, void *p);
232#define smalloc(x) smalloc(__FILE__, __LINE__, x)
233#define srealloc(x, y) srealloc(__FILE__, __LINE__, x, y)
234#define sfree(x) sfree(__FILE__, __LINE__, x)
235#else
236void *smalloc(int size);
237void *srealloc(void *p, int size);
238void sfree(void *p);
239#endif
240void free_word_list(word *w);
241void free_para_list(paragraph *p);
242word *dup_word_list(word *w);
243char *dupstr(char *s);
244
245#define mknew(type) ( (type *) smalloc (sizeof (type)) )
246#define mknewa(type, number) ( (type *) smalloc ((number) * sizeof (type)) )
247#define resize(array, len) ( srealloc ((array), (len) * sizeof (*(array))) )
248#define lenof(array) ( sizeof(array) / sizeof(*(array)) )
249
250/*
251 * ustring.c
252 */
253wchar_t *ustrdup(wchar_t *s);
254char *ustrtoa(wchar_t *s, char *outbuf, int size);
ba9c1487 255wchar_t *ustrfroma(char *s, wchar_t *outbuf, int size);
50d6b4bd 256char *utoa_dup(wchar_t *s);
ba9c1487 257wchar_t *ufroma_dup(char *s);
5dd44dce 258int ustrlen(wchar_t const *s);
d7482997 259wchar_t *uadv(wchar_t *s);
5dd44dce 260wchar_t *ustrcpy(wchar_t *dest, wchar_t const *source);
d7482997 261wchar_t utolower(wchar_t);
831da32e 262int uisalpha(wchar_t);
d7482997 263int ustrcmp(wchar_t *lhs, wchar_t *rhs);
264int ustricmp(wchar_t *lhs, wchar_t *rhs);
265int utoi(wchar_t *);
266int utob(wchar_t *);
267int uisdigit(wchar_t);
268wchar_t *ustrlow(wchar_t *s);
269wchar_t *ustrftime(wchar_t *fmt, struct tm *timespec);
270
271/*
272 * help.c
273 */
274void help(void);
275void usage(void);
276void showversion(void);
277
278/*
279 * licence.c
280 */
281void licence(void);
282
283/*
284 * version.c
285 */
286const char *const version;
287
288/*
289 * misc.c
290 */
291typedef struct stackTag *stack;
292stack stk_new(void);
293void stk_free(stack);
294void stk_push(stack, void *);
295void *stk_pop(stack);
7136a6c7 296void *stk_top(stack);
d7482997 297
298typedef struct tagRdstring rdstring;
299struct tagRdstring {
300 int pos, size;
301 wchar_t *text;
302};
303typedef struct tagRdstringc rdstringc;
304struct tagRdstringc {
305 int pos, size;
306 char *text;
307};
308extern const rdstring empty_rdstring;
309extern const rdstringc empty_rdstringc;
310void rdadd(rdstring *rs, wchar_t c);
5dd44dce 311void rdadds(rdstring *rs, wchar_t const *p);
d7482997 312wchar_t *rdtrim(rdstring *rs);
313void rdaddc(rdstringc *rs, char c);
5dd44dce 314void rdaddsc(rdstringc *rs, char const *p);
d7482997 315char *rdtrimc(rdstringc *rs);
316
317int compare_wordlists(word *a, word *b);
318
319void mark_attr_ends(paragraph *sourceform);
320
321typedef struct tagWrappedLine wrappedline;
322struct tagWrappedLine {
323 wrappedline *next;
324 word *begin, *end; /* first & last words of line */
325 int nspaces; /* number of whitespaces in line */
326 int shortfall; /* how much shorter than max width */
327};
328wrappedline *wrap_para(word *, int, int, int (*)(word *));
329void wrap_free(wrappedline *);
330
331/*
332 * input.c
333 */
334paragraph *read_input(input *in, indexdata *idx);
335
336/*
337 * keywords.c
338 */
339struct keywordlist_Tag {
340 int nkeywords;
341 int size;
342 tree234 *keys; /* sorted by `key' field */
343 word **looseends; /* non-keyword list element numbers */
344 int nlooseends;
345 int looseendssize;
346};
347struct keyword_Tag {
348 wchar_t *key; /* the keyword itself */
349 word *text; /* "Chapter 2", "Appendix Q"... */
350 /* (NB: filepos are not set) */
351 paragraph *para; /* the paragraph referenced */
352};
353keyword *kw_lookup(keywordlist *, wchar_t *);
354keywordlist *get_keywords(paragraph *);
355void free_keywords(keywordlist *);
356void subst_keywords(paragraph *, keywordlist *);
357
358/*
359 * index.c
360 */
361
362/*
363 * Data structure to hold both sides of the index.
364 */
365struct indexdata_Tag {
366 tree234 *tags; /* holds type `indextag' */
367 tree234 *entries; /* holds type `indexentry' */
368};
369
370/*
371 * Data structure to hold an index tag (LHS of index).
372 */
373struct indextag_Tag {
374 wchar_t *name;
375 word *implicit_text;
376 word **explicit_texts;
377 int nexplicit, explicit_size;
378 int nrefs;
379 indexentry **refs; /* array of entries referenced by tag */
380};
381
382/*
383 * Data structure to hold an index entry (RHS of index).
384 */
385struct indexentry_Tag {
386 word *text;
387 void *backend_data; /* private to back end */
388};
389
390indexdata *make_index(void);
391void cleanup_index(indexdata *);
392/* index_merge takes responsibility for freeing arg 3 iff implicit; never
393 * takes responsibility for arg 2 */
394void index_merge(indexdata *, int is_explicit, wchar_t *, word *);
395void build_index(indexdata *);
396void index_debug(indexdata *);
397indextag *index_findtag(indexdata *idx, wchar_t *name);
398
399/*
400 * contents.c
401 */
402numberstate *number_init(void);
403void number_cfg(numberstate *, paragraph *);
96f3af16 404word *number_mktext(numberstate *, paragraph *, wchar_t *, int *, int *);
d7482997 405void number_free(numberstate *);
406
407/*
408 * biblio.c
409 */
410void gen_citations(paragraph *, keywordlist *);
411
412/*
413 * style.c
414 */
415struct userstyle_Tag {
416};
417
418/*
419 * bk_text.c
420 */
421void text_backend(paragraph *, keywordlist *, indexdata *);
ba9c1487 422paragraph *text_config_filename(char *filename);
d7482997 423
424/*
425 * bk_xhtml.c
426 */
427void xhtml_backend(paragraph *, keywordlist *, indexdata *);
ba9c1487 428paragraph *xhtml_config_filename(char *filename);
d7482997 429
430/*
431 * bk_whlp.c
432 */
433void whlp_backend(paragraph *, keywordlist *, indexdata *);
ba9c1487 434paragraph *whlp_config_filename(char *filename);
d7482997 435
7136a6c7 436/*
437 * bk_man.c
438 */
439void man_backend(paragraph *, keywordlist *, indexdata *);
ba9c1487 440paragraph *man_config_filename(char *filename);
7136a6c7 441
5dd44dce 442/*
443 * bk_info.c
444 */
445void info_backend(paragraph *, keywordlist *, indexdata *);
446paragraph *info_config_filename(char *filename);
447
d7482997 448#endif