2006-07-14 Simon Josefsson <jas@extundo.com>
[gnulib.git] / doc / gnulib.texi
1 \input texinfo   @c -*-texinfo-*-
2 @comment $Id: gnulib.texi,v 1.25 2006-07-14 09:32:13 jas Exp $
3 @comment %**start of header
4 @setfilename gnulib.info
5 @settitle GNU Gnulib
6 @syncodeindex fn cp
7 @syncodeindex pg cp
8 @comment %**end of header
9
10 @set UPDATED $Date: 2006-07-14 09:32:13 $
11
12 @copying
13 This manual is for GNU Gnulib (updated @value{UPDATED}),
14 which is a library of common routines intended to be shared at the
15 source level.
16
17 Copyright @copyright{} 2004, 2005, 2006 Free Software Foundation, Inc.
18
19 @quotation
20 Permission is granted to copy, distribute and/or modify this document
21 under the terms of the GNU Free Documentation License, Version 1.1 or
22 any later version published by the Free Software Foundation; with no
23 Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,''
24 and with the Back-Cover Texts as in (a) below.  A copy of the
25 license is included in the section entitled ``GNU Free Documentation
26 License.''
27
28 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
29 this GNU Manual, like GNU software.  Copies published by the Free
30 Software Foundation raise funds for GNU development.''
31 @end quotation
32 @end copying
33
34 @dircategory Software development
35 @direntry
36 * Gnulib: (gnulib).             Source files to share among distributions.
37 @end direntry
38
39 @titlepage
40 @title GNU Gnulib
41 @subtitle updated @value{UPDATED}
42 @author @email{bug-gnulib@@gnu.org}
43 @page
44 @vskip 0pt plus 1filll
45 @insertcopying
46 @end titlepage
47
48 @contents
49
50 @ifnottex
51 @node Top
52 @top GNU Gnulib
53
54 @insertcopying
55 @end ifnottex
56
57 @menu
58 * Gnulib::
59 * Invoking gnulib-tool::
60 * Copying This Manual::
61 * Index::
62 @end menu
63
64
65 @node Gnulib
66 @chapter Gnulib
67
68 This manual contains some bare-bones documentation, but not much more.
69 It's mostly been a place to store notes until someone (you?)@ gets
70 around to writing a coherent manual.
71
72 Getting started:
73
74 @itemize
75 @item Gnulib is hosted at Savannah:
76       @url{http://savannah.gnu.org/projects/gnulib}.  Get the sources
77       through CVS from there.
78 @item The Gnulib home page:
79       @url{http://www.gnu.org/software/gnulib/}.
80 @end itemize
81
82 @menu
83 * Comments::
84 * Header files::
85 * Quoting::
86 * ctime::
87 * inet_ntoa::
88 * gcd::
89 * Out of memory handling::
90 * Library version handling::
91 * Regular expressions::
92 * Windows sockets::
93 * Libtool and Windows::
94 @end menu
95
96
97 @node Comments
98 @section Comments
99
100 @cindex comments describing functions
101 @cindex describing functions, locating
102 Where to put comments describing functions: Because of risk of
103 divergence, we prefer to keep most function describing comments in
104 only one place: just above the actual function definition.  Some
105 people prefer to put that documentation in the .h file.  In any case,
106 it should appear in just one place unless you can ensure that the
107 multiple copies will always remain identical.
108
109
110 @node Header files
111 @section Header files
112
113 @cindex double inclusion of header files
114 @cindex header file include protection
115 It is a tradition to use CPP tricks to avoid parsing the same header
116 file more than once, which might cause warnings.  The trick is to wrap
117 the content of the header file (say, @file{foo.h}) in a block, as in:
118
119 @example
120 #ifndef FOO_H
121 # define FOO_H
122 ...
123 body of header file goes here
124 ...
125 #endif /* FOO_H */
126 @end example
127
128 Whether to use @code{FOO_H} or @code{_FOO_H} is a matter of taste and
129 style.  The C89 and C99 standards reserve all identifiers that begin with an
130 underscore and either an uppercase letter or another underscore, for
131 any use.  Thus, in theory, an application might not safely assume that
132 @code{_FOO_H} has not already been defined by a library.  On the other
133 hand, using @code{FOO_H} will likely lead the higher risk of
134 collisions with other symbols (e.g., @code{KEY_H}, @code{XK_H}, @code{BPF_H},
135 which are CPP macro constants, or @code{COFF_LONG_H}, which is a CPP
136 macro function).  Your preference may depend on whether you consider
137 the header file under discussion as part of the application (which has
138 its own namespace for CPP symbols) or a supporting library (that
139 shouldn't interfere with the application's CPP symbol namespace).
140
141 @cindex C++ header files
142 @cindex Header files and C++
143 Adapting C header files for use in C++ applications can use another
144 CPP trick, as in:
145
146 @example
147 # ifdef __cplusplus
148 extern "C"
149 @{
150 # endif
151 ...
152 body of header file goes here
153 ...
154 # ifdef __cplusplus
155 @}
156 # endif
157 @end example
158
159 The idea here is that @code{__cplusplus} is defined only by C++
160 implementations, which will wrap the header file in an @samp{extern "C"}
161 block.  Again, whether to use this trick is a matter of taste and
162 style.  While the above can be seen as harmless, it could be argued
163 that the header file is written in C, and any C++ application using it
164 should explicitly use the @samp{extern "C"} block itself.  Your
165 preference might depend on whether you consider the API exported by
166 your header file as something available for C programs only, or for C
167 and C++ programs alike.
168
169 @subheading Include ordering
170
171 When writing a gnulib module, or even in general, a good way to order
172 the @samp{#include} directives is the following.
173
174 @itemize
175 @item First comes the #include "..." specifying the module being implemented.
176 @item Then come all the #include <...> of system or system-replacement headers,
177 in arbitrary order.
178 @item Then come all the #include "..." of gnulib and private headers, in
179 arbitrary order.
180 @end itemize
181
182
183 @include quote.texi
184
185 @include ctime.texi
186
187 @include gcd.texi
188
189 @include inet_ntoa.texi
190
191
192 @node Out of memory handling
193 @section Out of memory handling
194
195 @cindex Out of Memory handling
196 @cindex Memory allocation failure
197 The GSS API does not have a standard error code for the out of memory
198 error condition.  Instead of adding a non-standard error code, this
199 library has chosen to adopt a different strategy.  Out of memory
200 handling happens in rare situations, but performing the out of memory
201 error handling after almost all API function invocations pollute your
202 source code and might make it harder to spot more serious problems.
203 The strategy chosen improve code readability and robustness.
204
205 @cindex Aborting execution
206 For most applications, aborting the application with an error message
207 when the out of memory situation occur is the best that can be wished
208 for.  This is how the library behaves by default.
209
210 @vindex xalloc_fail_func
211 However, we realize that some applications may not want to have the
212 GSS library abort execution in any situation.  The GSS library support
213 a hook to let the application regain control and perform its own
214 cleanups when an out of memory situation has occurred.  The application
215 can define a function (having a @code{void} prototype, i.e., no return
216 value and no parameters) and set the library variable
217 @code{xalloc_fail_func} to that function.  The variable should be
218 declared as follows.
219
220 @example
221 extern void (*xalloc_fail_func) (void);
222 @end example
223
224 The GSS library will invoke this function if an out of memory error
225 occurs.  Note that after this the GSS library is in an undefined
226 state, so you must unload or restart the application to continue call
227 GSS library functions.  The hook is only intended to allow the
228 application to log the situation in a special way.  Of course, care
229 must be taken to not allocate more memory, as that will likely also
230 fail.
231
232
233 @node Library version handling
234 @section Library version handling
235
236 The module @samp{check-version} can be useful when your gnulib
237 application is a system library.  You will typically wrap the call to
238 the @code{check_version} function through a library API, your library
239 header file may contain:
240
241 @example
242 #define STRINGPREP_VERSION "0.5.18"
243 ...
244   extern const char *stringprep_check_version (const char *req_version);
245 @end example
246
247 To avoid ELF symbol collisions with other libraries that use the
248 @samp{check-version} module, add to @file{config.h} through a
249 AC_DEFINE something like:
250
251 @example
252 AC_DEFINE(check_version, stringprep_check_version,
253           [Rename check_version.])
254 @end example
255
256 The @code{stringprep_check_version} function will thus be implemented
257 by the @code{check_version} module.
258
259 There are two uses of the interface.  The first is a way to provide
260 for applications to find out the version number of the library it
261 uses.  The application may contain diagnostic code such as:
262
263 @example
264   printf ("Stringprep version: header %s library %s",
265           STRINGPREP_VERSION,
266           stringprep_check_version (NULL));
267 @end example
268
269 Separating the library and header file version can be useful when
270 searching for version mismatch related problems.
271
272 The second uses is as a rudimentary test of proper library version, by
273 making sure the application get a library version that is the same, or
274 newer, than the header file used when building the application.  This
275 doesn't catch all problems, libraries may change backwards incompatibly
276 in later versions, but enable applications to require a certain
277 minimum version before it may proceed.
278
279 Typical uses look like:
280
281 @example
282        /* Check version of libgcrypt. */
283        if (!gcry_check_version (GCRYPT_VERSION))
284          die ("version mismatch\n");
285 @end example
286
287
288 @node Regular expressions
289 @section Regular expressions
290
291 Gnulib supports many different types of regular expressions; although
292 the underlying features are the same or identical, the syntax used
293 varies.  The descriptions given here for the different types are
294 generated automatically.
295
296 @include regexprops-generic.texi
297
298
299 @node Windows sockets
300 @section Windows sockets
301
302 There are several issues when building applications that should work
303 under Windows.  The most problematic part is for applications that use
304 sockets.
305
306 Hopefully, we can add helpful notes to this section that will help you
307 port your application to Windows using gnulib.
308
309 @subsection Getaddrinfo and WINVER
310
311 This was written for the getaddrinfo module, but may be applicable to
312 other functions too.
313
314 The getaddrinfo function exists in ws2tcpip.h and -lws2_32 on Windows
315 XP.  The function declaration is present if @code{WINVER >= 0x0501}.
316 Windows 2000 does not have getaddrinfo in its @file{WS2_32.dll}.
317
318 Thus, if you want to assume Windows XP or later, you can add
319 AC_DEFINE(WINVER, 0x0501) to avoid compiling to (partial) getaddrinfo
320 implementation.
321
322 If you want to support Windows 2000, don't do anything, but be aware
323 that gnulib will use its own (partial) getaddrinfo implementation even
324 on Windows XP.  Currently the code does not attempt to determine if
325 the getaddrinfo function is available during runtime.
326
327 Todo: Make getaddrinfo.c open the WS2_32.DLL and check for the
328 getaddrinfo symbol and use it if present, otherwise fall back to our
329 own implementation.
330
331 @node Libtool and Windows
332 @section Libtool and Windows
333
334 If you want it to be possible to cross-compile your program to MinGW
335 and you use Libtool, you need to put:
336
337 @example
338 AC_LIBTOOL_WIN32_DLL
339 @end example
340
341 in your @file{configure.ac}.
342
343 The effect of this is that the names of the @code{OBJDUMP},
344 @code{DLLTOOL}, and @code{AS} tools are set up correct.
345
346 If you are building a library, you will also need to pass
347 @code{-no-undefined} to make sure Libtool produce a DLL for your
348 library.  From a @file{Makefile.am}:
349
350 @example
351 libgsasl_la_LDFLAGS += -no-undefined
352 @end example
353
354 @include gnulib-tool.texi
355
356
357 @node Copying This Manual
358 @appendix Copying This Manual
359
360 @menu
361 * GNU Free Documentation License::  License for copying this manual.
362 @end menu
363
364 @include fdl.texi
365
366
367 @node Index
368 @unnumbered Index
369
370 @printindex cp
371
372 @bye