chiark / gitweb /
New manpages.
[mLib] / man / mLib.3
1 .\" -*-nroff-*-
2 .TH mLib 3 "7 July 1999" mLib
3 .SH NAME
4 mLib \- library of miscellaneous utilities
5 .\" @mLib
6 .SH DESCRIPTION
7 The
8 .B mLib
9 library is a mixed bag of things which the author finds useful in large
10 numbers of programs.  As a result, its structure is somewhat arbitrary,
11 and it's accreted extra bits over time rather than actually being
12 designed as a whole.  In the author's opinion this isn't too much of a
13 hardship.
14 .PP
15 At the most granular level,
16 .B mLib
17 is split into `modules', each of which has its own header file and
18 manual page.  Sometimes there are identifiable `chunks' of several
19 modules which fit together as a whole.  Modules and chunks fit into
20 `layers', each depending on the ones below it.  The header file for
21 module
22 .I foo
23 would be put in
24 .BR <mLib/ \c
25 .IR foo \c
26 .BR .h> .
27 .PP
28 This description is a bit abstract, and
29 .BR mLib ,
30 as a result of its history, doesn't fit it as well as I might like.
31 Even so, it's not too bad a model really.
32 .PP
33 The rest of this section describes the various chunks and layers.
34 .SS "Exception handling"
35 Right at the bottom, there's a fairly primitive exception handling
36 system.  It's provided by the
37 .BR exc (3)
38 module, and stands alone.  It's used mainly by the memory allocation
39 modules to raise exceptions when there's no more memory to be had.
40 .SS "Memory allocation"
41 The
42 .BR arena (3)
43 module provides an abstraction of memory allocation.  By writing
44 appropriate arena implementations, a client program can control where
45 and how memory is allocated for various structures.
46 .PP
47 The
48 .BR alloc (3)
49 module provides simple veneers onto traditional memory allocation
50 functions like
51 .BR malloc (3)
52 and
53 .BR strdup (3)
54 (although
55 .B mLib
56 doesn't actually depend on
57 .B strdup
58 being defined in the library) which raise exceptions when there's not
59 enough memory left.  These work through the
60 .B arena
61 layer, so that the caller can control memory allocation.
62 .PP
63 The
64 .BR sub (3)
65 module handles efficient allocation of small blocks.  It allocates
66 memory in relatively big chunks and divides the chunks up into small
67 blocks before returning them.  It keeps lists of differently-sized
68 blocks so allocation and freeing is fast.  The downside is that your
69 code must know how big a block is when it's being freed.
70 .PP
71 The
72 .B track
73 module (not yet documented) is a simple memory allocation tracker.  It
74 can be handy when trying to fix memory leaks.
75 .PP
76 The
77 .BR pool (3)
78 module maintains resource pools which can manage memory and other
79 resources, all of the resources held in a pool being destroyed along
80 with the pool itself.
81 .SS "String handling"
82 The
83 .BR str (3)
84 module provides some trivial string-manipulation functions which tend to
85 be useful quite often.
86 .PP
87 The
88 .BR dstr (3)
89 module implements a dynamic string data type.  It works quite quickly
90 and well, and is handy in security-sensitive programs, to prevent
91 buffer-overflows.  Dynamic strings are used occasionally through the
92 rest of the library, mainly as output arguments.
93 .PP
94 The
95 .BR dspool (3)
96 module implements a `pool' of dynamic strings which saves lots of
97 allocation and deallocation when a piece of code has high string
98 turnover.
99 .SS "Program identification and error reporting"
100 The
101 .BR quis (3)
102 module remembers the name of the program and supplies it when asked.
103 It's used in error messages and similar things.
104 .PP
105 The
106 .BR report (3)
107 module emits standard Unixy error messages.  It provides functions
108 .B moan
109 and
110 .B die
111 which the author uses rather a lot.
112 .PP
113 The
114 .BR trace (3)
115 module provides an interface for emitting tracing information with
116 configurable verbosity levels.  It needs improving to be able to cope
117 with outputting to the system log.
118 .SS "Other data types"
119 The
120 .BR hash (3)
121 module provides the basics for an extending hashtable implementation.
122 Many different hashtable-based data structures can be constructed with
123 little effort.
124 .PP
125 The
126 .BR sym (3)
127 module implements a rather good general-purpose extending hash table.
128 Keys and values can be arbitrary data.  It is implemented using
129 .BR hash (3).
130 .PP
131 The
132 .BR atom (3)
133 module implements
134 .IR atoms ,
135 which are essentially strings with the property that two atoms have the
136 same address if and only if they have the same text, so they can be used
137 for rapid string comparisons.  The
138 .BR assoc (3)
139 module implements a hash table which uses atoms as keys, thus saving
140 time spent hashing and comparing hash keys, and the space used for the
141 keys.
142 .PP
143 The
144 .BR darray (3)
145 module implements dynamically resizing arrays which support Perl-like
146 stack operations efficiently.
147 .SS "Miscellaneous utilities"
148 The
149 .BR crc32 (3)
150 module calculates CRC values for strings.  It's used by the symbol table
151 manager as a hash function.
152 .PP
153 The
154 .BR lock (3)
155 module does POSIX
156 .BR fcntl (2)-style
157 locking with a timeout.
158 .PP
159 The
160 .BR env (3)
161 module manipulates environment variables stored in a hashtable, and
162 converts between the hashtable and the standard array representation of
163 a process environment.
164 .PP
165 The
166 .BR fdflags (3)
167 module manipulates file descriptor flags in a fairly painless way.
168 .PP
169 The
170 .BR lbuf (3)
171 module implements a `line buffer', which is an object that emits
172 completed lines of text from an incoming asynchronous data stream.  It's
173 remarkably handy in programs that want to read lines from pipes and
174 sockets can't block while waiting for a line-end to arrive.  Similarly,
175 the
176 .BR pkbuf (3)
177 module implements a `packet buffer', which waits for packets of given
178 lengths to arrive before dispatching them to a handler.
179 .PP
180 The
181 .BR tv (3)
182 module provides some macros and functions for playing with
183 .BR "struct timeval" .
184 .PP
185 The
186 .BR bits (3)
187 module defines some types and macros for playing with words as chunks of
188 bits.  There are portable rotate and shift macros (harder than you'd
189 think), and macros to do loading and storing in known-endian formats.
190 values.
191 .PP
192 The
193 .BR mdwopt (3)
194 module implements a fairly serious options parser compatible with the
195 GNU options parser.
196 .PP
197 The
198 .BR testrig (3)
199 module provides a generic structure for reading test vectors from files
200 and running them through functions.  I mainly use it for testing
201 cryptographic transformations of various kinds.
202 .SS "Encoding and decoding"
203 The
204 .BR base64 (3)
205 module does base64 encoding and decoding, as defined in RFC2045.  Base64
206 encodes arbitrary binary data in a reliable way which is resistant to
207 character-set transformations and other mail transport bogosity.
208 .PP
209 The
210 .BR url (3)
211 module does urlencoding and decoding, as defined in RFC1866.
212 Urlencoding encodes arbitrary (but mostly text-like) name/value pairs as
213 a text string containing no whitespace.
214 .SS "Multiplexed I/O"
215 The
216 .BR sel (3)
217 module provides a basis for doing nonblocking I/O in Unix systems.  It
218 provides types and functions for receiving events when files are ready
219 for reading or writing, and when timers expire.
220 .PP
221 The
222 .BR conn (3)
223 module implements nonblocking network connections in a way which fits in
224 with the
225 .B sel
226 system.  It makes nonblocking connects pretty much trivial.
227 .PP
228 The
229 .BR selbuf (3)
230 module attaches to the
231 .B sel
232 system and sends an event when lines of text arrive from a file.  It's
233 useful when reading text from a network connection.  Similarly,
234 .BR selpk (3)
235 sents events when packets of given sizes arrive from a file.
236 .PP
237 The
238 .BR sig (3)
239 module introduces signal handling into the multiplexed I/O world.
240 Signals are queued until dispatched through the normal
241 .B sel
242 mechanism.
243 .PP
244 The
245 .BR ident (3)
246 module provides a nonblocking ident (RFC931) client.  The
247 .BR bres (3)
248 module does background hostname and address resolution.
249 .SH "SEE ALSO"
250 .BR alloc (3),
251 .BR assoc (3),
252 .BR atom (3),
253 .BR base64 (3),
254 .BR bits (3),
255 .BR bres (3),
256 .BR conn (3),
257 .BR crc32 (3),
258 .BR darray (3),
259 .BR dspool (3),
260 .BR dstr (3),
261 .BR env (3),
262 .BR exc (3),
263 .BR fdflags (3),
264 .BR hash (3),
265 .BR ident (3),
266 .BR lbuf (3),
267 .BR lock (3),
268 .BR mdwopt (3),
269 .BR pkbuf (3),
270 .BR quis (3),
271 .BR report (3),
272 .BR sel (3),
273 .BR selbuf (3),
274 .BR selpk (3),
275 .BR sig (3),
276 .BR str (3),
277 .BR sub (3),
278 .BR sym (3),
279 .BR trace (3),
280 .BR tv (3),
281 .BR url (3).
282 .SH AUTHOR
283 Mark Wooding, <mdw@nsict.org>