xref: /illumos-gate/usr/src/cmd/mandoc/mansearch.h (revision f012ee0c3db17469b492c2cf757226f3d7b1ebbc)
1 /*	$Id: mansearch.h,v 1.24 2015/11/07 14:01:16 schwarze Exp $ */
2 /*
3  * Copyright (c) 2012 Kristaps Dzonsons <kristaps@bsd.lv>
4  * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 #define	MANDOC_DB	 "mandoc.db"
20 
21 #define	TYPE_arch	 0x0000000000000001ULL
22 #define	TYPE_sec	 0x0000000000000002ULL
23 #define	TYPE_Xr		 0x0000000000000004ULL
24 #define	TYPE_Ar		 0x0000000000000008ULL
25 #define	TYPE_Fa		 0x0000000000000010ULL
26 #define	TYPE_Fl		 0x0000000000000020ULL
27 #define	TYPE_Dv		 0x0000000000000040ULL
28 #define	TYPE_Fn		 0x0000000000000080ULL
29 #define	TYPE_Ic		 0x0000000000000100ULL
30 #define	TYPE_Pa		 0x0000000000000200ULL
31 #define	TYPE_Cm		 0x0000000000000400ULL
32 #define	TYPE_Li		 0x0000000000000800ULL
33 #define	TYPE_Em		 0x0000000000001000ULL
34 #define	TYPE_Cd		 0x0000000000002000ULL
35 #define	TYPE_Va		 0x0000000000004000ULL
36 #define	TYPE_Ft		 0x0000000000008000ULL
37 #define	TYPE_Tn		 0x0000000000010000ULL
38 #define	TYPE_Er		 0x0000000000020000ULL
39 #define	TYPE_Ev		 0x0000000000040000ULL
40 #define	TYPE_Sy		 0x0000000000080000ULL
41 #define	TYPE_Sh		 0x0000000000100000ULL
42 #define	TYPE_In		 0x0000000000200000ULL
43 #define	TYPE_Ss		 0x0000000000400000ULL
44 #define	TYPE_Ox		 0x0000000000800000ULL
45 #define	TYPE_An		 0x0000000001000000ULL
46 #define	TYPE_Mt		 0x0000000002000000ULL
47 #define	TYPE_St		 0x0000000004000000ULL
48 #define	TYPE_Bx		 0x0000000008000000ULL
49 #define	TYPE_At		 0x0000000010000000ULL
50 #define	TYPE_Nx		 0x0000000020000000ULL
51 #define	TYPE_Fx		 0x0000000040000000ULL
52 #define	TYPE_Lk		 0x0000000080000000ULL
53 #define	TYPE_Ms		 0x0000000100000000ULL
54 #define	TYPE_Bsx	 0x0000000200000000ULL
55 #define	TYPE_Dx		 0x0000000400000000ULL
56 #define	TYPE_Rs		 0x0000000800000000ULL
57 #define	TYPE_Vt		 0x0000001000000000ULL
58 #define	TYPE_Lb		 0x0000002000000000ULL
59 #define	TYPE_Nm		 0x0000004000000000ULL
60 #define	TYPE_Nd		 0x0000008000000000ULL
61 
62 #define	NAME_SYN	 0x0000004000000001ULL
63 #define	NAME_FIRST	 0x0000004000000004ULL
64 #define	NAME_TITLE	 0x0000004000000006ULL
65 #define	NAME_HEAD	 0x0000004000000008ULL
66 #define	NAME_FILE	 0x0000004000000010ULL
67 #define	NAME_MASK	 0x000000000000001fULL
68 
69 #define	FORM_CAT	 0  /* manual page is preformatted */
70 #define	FORM_SRC	 1  /* format is mdoc(7) or man(7) */
71 #define	FORM_NONE	 4  /* format is unknown */
72 
73 enum	argmode {
74 	ARG_FILE = 0,
75 	ARG_NAME,
76 	ARG_WORD,
77 	ARG_EXPR
78 };
79 
80 struct	manpage {
81 	char		*file; /* to be prefixed by manpath */
82 	char		*names; /* a list of names with sections */
83 	char		*output; /* user-defined additional output */
84 	size_t		 ipath; /* number of the manpath */
85 	uint64_t	 bits; /* name type mask */
86 	int		 sec; /* section number, 10 means invalid */
87 	int		 form; /* 0 == catpage */
88 };
89 
90 struct	mansearch {
91 	const char	*arch; /* architecture/NULL */
92 	const char	*sec; /* mansection/NULL */
93 	const char	*outkey; /* show content of this macro */
94 	enum argmode	 argmode; /* interpretation of arguments */
95 	int		 firstmatch; /* first matching database only */
96 };
97 
98 
99 struct	manpaths;
100 
101 int	mansearch_setup(int);
102 int	mansearch(const struct mansearch *cfg, /* options */
103 		const struct manpaths *paths, /* manpaths */
104 		int argc, /* size of argv */
105 		char *argv[],  /* search terms */
106 		struct manpage **res, /* results */
107 		size_t *ressz); /* results returned */
108 void	mansearch_free(struct manpage *, size_t);
109