Indexing tweaks for recent changes.
[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
e34ba5c3 9#include "charset.h"
10
d7482997 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 userstyle_Tag userstyle;
39typedef struct numberstate_Tag numberstate;
40typedef struct indexdata_Tag indexdata;
41typedef struct indextag_Tag indextag;
42typedef struct indexentry_Tag indexentry;
43typedef struct macrostack_Tag macrostack;
44
45/*
46 * Data structure to hold a file name and index, a line and a
47 * column number, for reporting errors
48 */
49struct filepos_Tag {
50 char *filename;
51 int line, col;
52};
53
54/*
55 * Data structure to hold all the file names etc for input
56 */
57typedef struct pushback_Tag {
58 int chr;
59 filepos pos;
60} pushback;
61struct input_Tag {
62 char **filenames; /* complete list of input files */
63 int nfiles; /* how many in the list */
64 FILE *currfp; /* the currently open one */
65 int currindex; /* which one is that in the list */
66 pushback *pushback; /* pushed-back input characters */
67 int npushback, pushbacksize;
68 filepos pos;
69 int reportcols; /* report column numbers in errors */
70 macrostack *stack; /* macro expansions in force */
e34ba5c3 71 int defcharset, charset; /* character sets for input files */
72 charset_state csstate;
73 wchar_t wc[16]; /* wide chars from input conversion */
74 int nwc, wcpos; /* size of, and position in, wc[] */
e4ea58f8 75 char *pushback_chars; /* used to save input-encoding data */
d7482997 76};
77
78/*
79 * Data structure to hold the input form of the source, ie a linked
80 * list of paragraphs
81 */
82struct paragraph_Tag {
83 paragraph *next;
84 int type;
85 wchar_t *keyword; /* for most special paragraphs */
e4ea58f8 86 char *origkeyword; /* same again in original charset */
d7482997 87 word *words; /* list of words in paragraph */
88 int aux; /* number, in a numbered paragraph
89 * or subsection level
90 */
91 word *kwtext; /* chapter/section indication */
92 word *kwtext2; /* numeric-only form of kwtext */
93 filepos fpos;
94
95 paragraph *parent, *child, *sibling; /* for hierarchy navigation */
96
97 void *private_data; /* for temp use in backends */
98};
99enum {
100 para_IM, /* index merge */
101 para_BR, /* bibliography rewrite */
102 para_Rule, /* random horizontal rule */
103 para_Chapter,
104 para_Appendix,
105 para_UnnumberedChapter,
106 para_Heading,
107 para_Subsect,
108 para_Normal,
109 para_Biblio, /* causes no output unless turned ... */
110 para_BiblioCited, /* ... into this paragraph type */
111 para_Bullet,
112 para_NumberedList,
7136a6c7 113 para_DescribedThing,
114 para_Description,
d7482997 115 para_Code,
116 para_Copyright,
d7482997 117 para_NoCite,
118 para_Title,
119 para_VersionID,
120 para_Config, /* configuration directive */
7136a6c7 121 para_LcontPush, /* begin continuation of list item */
122 para_LcontPop, /* end continuation of list item */
2614b01d 123 para_QuotePush, /* begin block quote */
124 para_QuotePop, /* end block quote */
3f3d1acc 125 /*
126 * Back ends may define their own paragraph types beyond here,
127 * in case they need to use them internally.
128 */
d7482997 129 para_NotParaType /* placeholder value */
130};
131
132/*
133 * Data structure to hold an individual word
134 */
135struct word_Tag {
136 word *next, *alt;
137 int type;
138 int aux;
139 int breaks; /* can a line break after it? */
140 wchar_t *text;
141 filepos fpos;
5dd44dce 142
143 void *private_data; /* for temp use in backends */
d7482997 144};
145enum {
146 /* ORDERING CONSTRAINT: these normal-word types ... */
147 word_Normal,
148 word_Emph,
149 word_Code, /* monospaced; `quoted' in text */
150 word_WeakCode, /* monospaced, normal in text */
151 /* ... must be in the same order as these space types ... */
152 word_WhiteSpace, /* text is NULL or ignorable */
153 word_EmphSpace, /* WhiteSpace when emphasised */
154 word_CodeSpace, /* WhiteSpace when code */
155 word_WkCodeSpace, /* WhiteSpace when weak code */
156 /* ... and must be in the same order as these quote types ... */
157 word_Quote, /* text is NULL or ignorable */
158 word_EmphQuote, /* Quote when emphasised */
159 word_CodeQuote, /* (can't happen) */
160 word_WkCodeQuote, /* (can't happen) */
161 /* END ORDERING CONSTRAINT */
162 word_internal_endattrs,
163 word_UpperXref, /* \K */
164 word_LowerXref, /* \k */
165 word_XrefEnd, /* (invisible; no text) */
166 word_IndexRef, /* (always an invisible one) */
167 word_HyperLink, /* (invisible) */
3f3d1acc 168 word_HyperEnd, /* (also invisible; no text) */
169 /*
170 * Back ends may define their own word types beyond here, in
171 * case they need to use them internally.
172 */
173 word_NotWordType /* placeholder value */
d7482997 174};
175/* aux values for attributed words */
176enum {
177 attr_Only = 0x0000, /* a lone word with the attribute */
178 attr_First = 0x0001, /* the first of a series */
179 attr_Last = 0x0002, /* the last of a series */
180 attr_Always = 0x0003, /* any other part of a series */
181 attr_mask = 0x0003,
182};
183/* aux values for quote-type words */
184enum {
185 quote_Open = 0x0010,
186 quote_Close = 0x0020,
187 quote_mask = 0x0030,
188};
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' */
675958c3 209 err_cmdcharset, /* unrecognised charset %s (cmdline) */
210 err_futileopt, /* futile option `-%s'%s */
d7482997 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 */
6ff15f2b 226 err_codequote, /* \q within \c is not supported */
d7482997 227 err_missingrbrace, /* unclosed braces at end of para */
7136a6c7 228 err_missingrbrace2, /* unclosed braces at end of file */
d7482997 229 err_nestedstyles, /* unable to nest text styles */
230 err_nestedindex, /* unable to nest `\i' thingys */
da090173 231 err_indexcase, /* two \i differing only in case */
d7482997 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 */
7136a6c7 240 err_misplacedlcont, /* \lcont not after a list item */
2614b01d 241 err_sectmarkerinblock, /* section marker appeared in block */
d4c7e130 242 err_infodirentry, /* \cfg{info-dir-entry} missing param */
f4551933 243 err_infonodechar, /* colon/comma in node name in info */
db662ca1 244 err_text_codeline, /* \c line too long in text backend */
27bdc5ab 245 err_htmlver, /* unrecognised HTML version keyword */
0960a3d8 246 err_charset, /* unrecognised character set name */
d7482997 247 err_whatever /* random error of another type */
248};
249
250/*
251 * malloc.c
252 */
253#ifdef LOGALLOC
254void *smalloc(char *file, int line, int size);
255void *srealloc(char *file, int line, void *p, int size);
256void sfree(char *file, int line, void *p);
257#define smalloc(x) smalloc(__FILE__, __LINE__, x)
258#define srealloc(x, y) srealloc(__FILE__, __LINE__, x, y)
259#define sfree(x) sfree(__FILE__, __LINE__, x)
260#else
261void *smalloc(int size);
262void *srealloc(void *p, int size);
263void sfree(void *p);
264#endif
265void free_word_list(word *w);
266void free_para_list(paragraph *p);
267word *dup_word_list(word *w);
268char *dupstr(char *s);
269
f1530049 270#define snew(type) ( (type *) smalloc (sizeof (type)) )
271#define snewn(number, type) ( (type *) smalloc ((number) * sizeof (type)) )
272#define sresize(array, number, type) \
273 ( (type *) srealloc ((array), (number) * sizeof (type)) )
d7482997 274#define lenof(array) ( sizeof(array) / sizeof(*(array)) )
275
276/*
277 * ustring.c
278 */
e4ea58f8 279wchar_t *ustrdup(wchar_t const *s);
280char *ustrtoa(wchar_t const *s, char *outbuf, int size, int charset);
281char *ustrtoa_careful(wchar_t const *s, char *outbuf, int size, int charset);
282wchar_t *ustrfroma(char const *s, wchar_t *outbuf, int size, int charset);
283char *utoa_dup(wchar_t const *s, int charset);
284char *utoa_dup_len(wchar_t const *s, int charset, int *len);
285char *utoa_careful_dup(wchar_t const *s, int charset);
286wchar_t *ufroma_dup(char const *s, int charset);
7e976207 287char *utoa_locale_dup(wchar_t const *s);
288wchar_t *ufroma_locale_dup(char const *s);
5dd44dce 289int ustrlen(wchar_t const *s);
d7482997 290wchar_t *uadv(wchar_t *s);
5dd44dce 291wchar_t *ustrcpy(wchar_t *dest, wchar_t const *source);
08e78486 292wchar_t *ustrncpy(wchar_t *dest, wchar_t const *source, int n);
d7482997 293wchar_t utolower(wchar_t);
831da32e 294int uisalpha(wchar_t);
d7482997 295int ustrcmp(wchar_t *lhs, wchar_t *rhs);
78c73085 296int ustricmp(wchar_t const *lhs, wchar_t const *rhs);
297int ustrnicmp(wchar_t const *lhs, wchar_t const *rhs, int maxlen);
dd567011 298int utoi(wchar_t const *);
299double utof(wchar_t const *);
300int utob(wchar_t const *);
d7482997 301int uisdigit(wchar_t);
302wchar_t *ustrlow(wchar_t *s);
c8422236 303wchar_t *ustrftime(const wchar_t *wfmt, const struct tm *timespec);
91f93b94 304int cvt_ok(int charset, const wchar_t *s);
0960a3d8 305int charset_from_ustr(filepos *fpos, const wchar_t *name);
d7482997 306
307/*
e5cd393f 308 * wcwidth.c
309 */
310int strwid(char const *s, int charset);
311int ustrwid(wchar_t const *s, int charset);
312
313/*
d7482997 314 * help.c
315 */
316void help(void);
317void usage(void);
318void showversion(void);
319
320/*
321 * licence.c
322 */
323void licence(void);
324
325/*
326 * version.c
327 */
328const char *const version;
329
330/*
331 * misc.c
332 */
e4ea58f8 333char *adv(char *s);
334
d7482997 335typedef struct stackTag *stack;
336stack stk_new(void);
337void stk_free(stack);
338void stk_push(stack, void *);
339void *stk_pop(stack);
7136a6c7 340void *stk_top(stack);
d7482997 341
342typedef struct tagRdstring rdstring;
343struct tagRdstring {
344 int pos, size;
345 wchar_t *text;
346};
347typedef struct tagRdstringc rdstringc;
348struct tagRdstringc {
349 int pos, size;
350 char *text;
351};
352extern const rdstring empty_rdstring;
353extern const rdstringc empty_rdstringc;
354void rdadd(rdstring *rs, wchar_t c);
5dd44dce 355void rdadds(rdstring *rs, wchar_t const *p);
d7482997 356wchar_t *rdtrim(rdstring *rs);
357void rdaddc(rdstringc *rs, char c);
5dd44dce 358void rdaddsc(rdstringc *rs, char const *p);
d7482997 359char *rdtrimc(rdstringc *rs);
360
361int compare_wordlists(word *a, word *b);
362
bb9e7835 363void mark_attr_ends(word *words);
d7482997 364
365typedef struct tagWrappedLine wrappedline;
366struct tagWrappedLine {
367 wrappedline *next;
368 word *begin, *end; /* first & last words of line */
369 int nspaces; /* number of whitespaces in line */
370 int shortfall; /* how much shorter than max width */
371};
43341922 372wrappedline *wrap_para(word *, int, int, int (*)(void *, word *), void *, int);
d7482997 373void wrap_free(wrappedline *);
e4ea58f8 374void cmdline_cfg_add(paragraph *cfg, char *string);
375paragraph *cmdline_cfg_new(void);
376paragraph *cmdline_cfg_simple(char *string, ...);
d7482997 377
378/*
379 * input.c
380 */
381paragraph *read_input(input *in, indexdata *idx);
382
383/*
384 * keywords.c
385 */
386struct keywordlist_Tag {
387 int nkeywords;
388 int size;
389 tree234 *keys; /* sorted by `key' field */
390 word **looseends; /* non-keyword list element numbers */
391 int nlooseends;
392 int looseendssize;
393};
394struct keyword_Tag {
395 wchar_t *key; /* the keyword itself */
396 word *text; /* "Chapter 2", "Appendix Q"... */
397 /* (NB: filepos are not set) */
398 paragraph *para; /* the paragraph referenced */
399};
400keyword *kw_lookup(keywordlist *, wchar_t *);
401keywordlist *get_keywords(paragraph *);
402void free_keywords(keywordlist *);
403void subst_keywords(paragraph *, keywordlist *);
404
405/*
406 * index.c
407 */
408
409/*
410 * Data structure to hold both sides of the index.
411 */
412struct indexdata_Tag {
413 tree234 *tags; /* holds type `indextag' */
414 tree234 *entries; /* holds type `indexentry' */
415};
416
417/*
418 * Data structure to hold an index tag (LHS of index).
419 */
420struct indextag_Tag {
421 wchar_t *name;
422 word *implicit_text;
f4551933 423 filepos implicit_fpos;
d7482997 424 word **explicit_texts;
f4551933 425 filepos *explicit_fpos;
d7482997 426 int nexplicit, explicit_size;
427 int nrefs;
428 indexentry **refs; /* array of entries referenced by tag */
429};
430
431/*
432 * Data structure to hold an index entry (RHS of index).
433 */
434struct indexentry_Tag {
435 word *text;
436 void *backend_data; /* private to back end */
f4551933 437 filepos fpos;
d7482997 438};
439
440indexdata *make_index(void);
441void cleanup_index(indexdata *);
442/* index_merge takes responsibility for freeing arg 3 iff implicit; never
443 * takes responsibility for arg 2 */
f4551933 444void index_merge(indexdata *, int is_explicit, wchar_t *, word *, filepos *);
d7482997 445void build_index(indexdata *);
446void index_debug(indexdata *);
447indextag *index_findtag(indexdata *idx, wchar_t *name);
448
449/*
450 * contents.c
451 */
452numberstate *number_init(void);
453void number_cfg(numberstate *, paragraph *);
96f3af16 454word *number_mktext(numberstate *, paragraph *, wchar_t *, int *, int *);
d7482997 455void number_free(numberstate *);
456
457/*
458 * biblio.c
459 */
460void gen_citations(paragraph *, keywordlist *);
461
462/*
463 * style.c
464 */
465struct userstyle_Tag {
466};
467
468/*
469 * bk_text.c
470 */
43341922 471void text_backend(paragraph *, keywordlist *, indexdata *, void *);
ba9c1487 472paragraph *text_config_filename(char *filename);
d7482997 473
474/*
78c73085 475 * bk_html.c
d7482997 476 */
78c73085 477void html_backend(paragraph *, keywordlist *, indexdata *, void *);
478paragraph *html_config_filename(char *filename);
d7482997 479
480/*
481 * bk_whlp.c
482 */
43341922 483void whlp_backend(paragraph *, keywordlist *, indexdata *, void *);
ba9c1487 484paragraph *whlp_config_filename(char *filename);
d7482997 485
7136a6c7 486/*
487 * bk_man.c
488 */
43341922 489void man_backend(paragraph *, keywordlist *, indexdata *, void *);
ba9c1487 490paragraph *man_config_filename(char *filename);
7136a6c7 491
5dd44dce 492/*
493 * bk_info.c
494 */
43341922 495void info_backend(paragraph *, keywordlist *, indexdata *, void *);
5dd44dce 496paragraph *info_config_filename(char *filename);
497
43341922 498/*
499 * bk_paper.c
500 */
501void *paper_pre_backend(paragraph *, keywordlist *, indexdata *);
502
503/*
504 * bk_ps.c
505 */
506void ps_backend(paragraph *, keywordlist *, indexdata *, void *);
507paragraph *ps_config_filename(char *filename);
508
509/*
510 * bk_pdf.c
511 */
512void pdf_backend(paragraph *, keywordlist *, indexdata *, void *);
513paragraph *pdf_config_filename(char *filename);
514
d7482997 515#endif