]> mj.ucw.cz Git - libucw.git/blob - ucw/doc/index.txt
d62828c07111962e9ffd2897e30db47d816bed2f
[libucw.git] / ucw / doc / index.txt
1 The UCW library
2 ===============
3
4 The UCW library aims to provide a set general purpose tools for programming
5 in the C language. It contains generic data structures (lists, trees, hash
6 tables etc.), fast memory allocators optimized for various usage patterns,
7 abstract I/O streams and optimized implementations of some common algorithms
8 (e.g., sorting of arrays and files).
9
10 Please note that this documentation is not yet complete. Many modules are
11 not described, so you might need to look into the source code.
12
13 You can see the index of <<def_index:,documented definitions>>.
14
15 For news and incompatible changes in this version, see the <<relnotes:,Release notes>>.
16
17 Modules
18 -------
19 - <<basics:,Basics>>
20 - <<log:,Logging>>
21 - <<fastbuf:,Fastbufs>>
22 - <<basecode:,Base64 and Base224 encoding>>
23 - <<hash:,Hashing routines>>
24 - <<conf:,Configuration and command line parser>>
25 - <<mempool:,Memory pools>>
26 - <<eltpool:,Fixed-sized allocators>>
27 - <<alloc:,Generic allocators>>
28 - <<mainloop:,Mainloop>>
29 - <<unaligned:,Unaligned data>>
30 - <<lists:,Linked lists>>
31 - <<gary:,Growing arrays>>
32 - <<heap:,Binary heaps>>
33 - <<binheap:,Binomial heaps>>
34 - <<hashtable:,Hash tables>>
35 - <<growbuf:,Growing buffers>> (obsolete)
36 - <<chartype:,Single-byte characters>>
37 - <<unicode:,Multi-byte characters>>
38 - <<varint:,Encoding of integers>>
39 - <<prime:,Prime numbers>>
40 - <<sort:,Sorting>>
41 - <<binsearch:,Binary search>>
42 - <<compress:,Compression>>
43 - <<trans:,Transactions and resource tracking>>
44 - <<string:,String operations>>
45 - <<time:,Time and timers>>
46 - <<daemon:,Daemon helpers>>
47 - <<signal:,Signal helpers>>
48 - <<opt:,Command line parser>>
49
50 Other features
51 --------------
52 - <<configure:,Compile time configuration>>
53 - <<config:,Configuration file syntax>>
54 - <<docsys:,Documentation system>>
55 - <<generic:,Macro-generated generics>>
56
57 Yet undocumented modules
58 ------------------------
59 - Trie
60   * `trie.h`
61 - Red-black trees
62   * `redblack.h`
63 - Bit manipulation
64   * `bitarray.h`
65   * `bitops.h`
66   * `bitsig.h`
67 - String manipulation
68   * `kmp.h`
69   * `kmp-search.h`
70   * `regex.h`
71   * `stkstring.h`
72   * `strtonum.h`
73   * `wildmatch.h`
74 - File manipulation
75   * `asio.h`
76   * `io.h`
77   * `partmap.h`
78 - Address manipulation
79   * `url.h`
80   * `ipaccess.h`
81 - Threads
82   * `semaphore.h`
83   * `threads.h`
84   * `workqueue.h`
85 - Miscellaneous
86   * `sighandler.h`
87   * `process.h`
88
89 License
90 -------
91 The UCW library is copyrighted by its authors.
92
93 It can be freely distributed and used according to the terms of
94 the GNU Lesser General Public License, either version 2 or any later
95 version.
96
97 Authors
98 -------
99 Primary authors and maintainers are:
100
101 - Pavel Charvát <mailto:pchar\@ucw.cz[]>
102 - Martin Mareš <mailto:mj\@ucw.cz[]>
103 - Robert Špalek <mailto:robert\@ucw.cz[]>
104
105 Several modules have been contributed by:
106
107 - Daniel Fiala <mailto:danfiala\@ucw.cz[]> (strtonum)
108 - Tomáš Gavenčiak <mailto:gavento\@ucw.cz[]> (logging system)
109 - Jan Moskyto Matějka <mailto:mq\@ucw.cz[]> (option parser, fb-multi)
110 - Tomáš Valla <mailto:tom\@ucw.cz[]> (varint)
111 - Michal Vaner <mailto:vorner\@ucw.cz[]> (documentation system)