chiark / gitweb /
Describe new `hash' module.
[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 alloc (3)
43 module provides simple veneers onto traditional memory allocation
44 functions like
45 .BR malloc (3)
46 and
47 .BR strdup (3)
48 (although
49 .B mLib
50 doesn't actually depend on
51 .B strdup
52 being defined in the library) which raise exceptions when there's not
53 enough memory left.
54 .PP
55 The
56 .BR sub (3)
57 module handles efficient allocation of small blocks.  It allocates
58 memory in relatively big chunks and divides the chunks up into small
59 blocks before returning them.  It keeps lists of differently-sized
60 blocks so allocation and freeing is fast.  The downside is that your
61 code must know how big a block is when it's being freed.
62 .PP
63 The
64 .B track
65 module (not yet documented) is a simple memory allocation tracker.  It
66 can be handy when trying to fix memory leaks.
67 .SS "String handling"
68 The
69 .BR str (3)
70 module provides some trivial string-manipulation functions which tend to
71 be useful quite often.
72 .PP
73 The
74 .BR dstr (3)
75 module implements a dynamic string data type.  It works quite quickly
76 and well, and is handy in security-sensitive programs, to prevent
77 buffer-overflows.  Dynamic strings are used occasionally through the
78 rest of the library, mainly as output arguments.
79 .PP
80 The
81 .BR dspool (3)
82 module implements a `pool' of dynamic strings which saves lots of
83 allocation and deallocation when a piece of code has high string
84 turnover.
85 .SS "Program identification and error reporting"
86 The
87 .BR quis (3)
88 module remembers the name of the program and supplies it when asked.
89 It's used in error messages and similar things.
90 .PP
91 The
92 .BR report (3)
93 module emits standard Unixy error messages.  It provides functions
94 .B moan
95 and
96 .B die
97 which the author uses rather a lot.
98 .PP
99 The
100 .B trace
101 module (not yet documented)
102 provides an interface for emitting tracing information with configurable
103 verbosity levels.  It needs improving to be able to cope with outputting
104 to the system log.
105 .SS "Other data types"
106 The
107 .BR hash (3)
108 module provides the basics for an extending hashtable implementation.
109 Many different hashtable-based data structures can be constructed with
110 little effort.
111 .PP
112 The
113 .BR sym (3)
114 module implements a rather good general-purpose extending hash table.
115 Keys and values can be arbitrary data.  It is implemented using
116 .BR hash (3).
117 .PP
118 The
119 .B dynarray
120 module (not yet documented) implements unbounded sparse arrays.  It
121 needs rewriting.
122 .SS "Miscellaneous utilities"
123 The
124 .BR crc32 (3)
125 module calculates CRC values for strings.  It's used by the symbol table
126 manager as a hash function.
127 .PP
128 The
129 .BR lock (3)
130 module does POSIX
131 .BR fcntl (2)-style
132 locking with a timeout.
133 .PP
134 The
135 .BR env (3)
136 module manipulates environment variables stored in a hashtable, and
137 converts between the hashtable and the standard array representation of
138 a process environment.
139 .PP
140 The
141 .BR fdflags (3)
142 module manipulates file descriptor flags in a fairly painless way.
143 .PP
144 The
145 .BR lbuf (3)
146 module implements a `line buffer', which is an object that emits
147 completed lines of text from an incoming asynchronous data stream.  It's
148 remarkably handy in programs that want to read lines from pipes and
149 sockets can't block while waiting for a line-end to arrive.
150 .PP
151 The
152 .BR tv (3)
153 module provides some macros and functions for playing with
154 .BR "struct timeval" .
155 .PP
156 The
157 .BR bits (3)
158 module defines some types and macros for playing with words as chunks of
159 bits.  There are portable rotate and shift macros (harder than you'd
160 think), and macros to do loading and storing in known-endian formats.
161 values.
162 .PP
163 The
164 .BR mdwopt (3)
165 module implements a fairly serious options parser compatible with the
166 GNU options parser.
167 .PP
168 The
169 .BR testrig (3)
170 module provides a generic structure for reading test vectors from files
171 and running them through functions.  I mainly use it for testing
172 cryptographic transformations of various kinds.
173 .SS "Encoding and decoding"
174 The
175 .BR base64 (3)
176 module does base64 encoding and decoding, as defined in RFC2045.  Base64
177 encodes arbitrary binary data in a reliable way which is resistant to
178 character-set transformations and other mail transport bogosity.
179 .PP
180 The
181 .BR url (3)
182 module does urlencoding and decoding, as defined in RFC1866.
183 Urlencoding encodes arbitrary (but mostly text-like) name/value pairs as
184 a text string containing no whitespace.
185 .SS "Multiplexed I/O"
186 The
187 .BR sel (3)
188 module provides a basis for doing nonblocking I/O in Unix systems.  It
189 provides types and functions for receiving events when files are ready
190 for reading or writing, and when timers expire.
191 .PP
192 The
193 .BR conn (3)
194 module implements nonblocking network connections in a way which fits in
195 with the
196 .B sel
197 system.  It makes nonblocking connects pretty much trivial.
198 .PP
199 The
200 .BR selbuf (3)
201 module attaches to the
202 .B sel
203 system and sends an event when lines of text arrive on a file.  It's
204 useful when reading text from a network connection.
205 .PP
206 The
207 .BR sig (3)
208 module introduces signal handling into the multiplexed I/O world.
209 Signals are queued until dispatched through the normal
210 .B sel
211 mechanism.
212 .SH "SEE ALSO"
213 .BR alloc (3),
214 .BR base64 (3),
215 .BR bits (3),
216 .BR conn (3),
217 .BR crc32 (3),
218 .BR dspool (3),
219 .BR dstr (3),
220 .BR env (3),
221 .BR exc (3),
222 .BR fdflags (3),
223 .BR hash (3),
224 .BR lbuf (3),
225 .BR lock (3),
226 .BR mdwopt (3),
227 .BR quis (3),
228 .BR report (3),
229 .BR sel (3),
230 .BR selbuf (3),
231 .BR sig (3),
232 .BR str (3),
233 .BR sub (3),
234 .BR sym (3),
235 .BR tv (3),
236 .BR url (3).
237 .SH AUTHOR
238 Mark Wooding, <mdw@nsict.org>