]> mj.ucw.cz Git - libucw.git/blob - lib/sorter/sorter.h
Merge with git+ssh://git.ucw.cz/projects/sherlock/GIT/sherlock.git
[libucw.git] / lib / sorter / sorter.h
1 /*
2  *      UCW Library -- Universal Sorter
3  *
4  *      (c) 2001--2007 Martin Mares <mj@ucw.cz>
5  *      (c) 2004 Robert Spalek <robert@ucw.cz>
6  *
7  *      This software may be freely distributed and used according to the terms
8  *      of the GNU Lesser General Public License.
9  */
10
11 /*
12  *  This is not a normal header file, but a generator of sorting
13  *  routines.  Each time you include it with parameters set in the
14  *  corresponding preprocessor macros, it generates a file sorter
15  *  with the parameters given.
16  *
17  *  FIXME: explain the basics (keys and data, callbacks etc.)
18  *
19  *  Basic parameters and callbacks:
20  *
21  *  SORT_PREFIX(x)      add a name prefix (used on all global names
22  *                      defined by the sorter)
23  *
24  *  SORT_KEY            data type capable of storing a single key.
25  *  SORT_KEY_REGULAR    data type holding a single key both in memory and on disk;
26  *                      in this case, bread() and bwrite() is used to read/write keys
27  *                      and it's also assumed that the keys are not very long.
28  *  int PREFIX_compare(SORT_KEY *a, SORT_KEY *b)
29  *                      compares two keys, result like strcmp(). Mandatory.
30  *  int PREFIX_read_key(struct fastbuf *f, SORT_KEY *k)
31  *                      reads a key from a fastbuf, returns nonzero=ok, 0=EOF.
32  *                      Mandatory unless SORT_KEY_REGULAR is defined.
33  *  void PREFIX_write_key(struct fastbuf *f, SORT_KEY *k)
34  *                      writes a key to a fastbuf. Mandatory unless SORT_KEY_REGULAR.
35  *
36  *  SORT_KEY_SIZE(key)  returns the real size of a key (a SORT_KEY type in memory
37  *                      can be truncated to this number of bytes without any harm;
38  *                      used to save memory when the keys have variable sizes).
39  *                      Default: always store the whole SORT_KEY.
40  *  SORT_DATA_SIZE(key) gets a key and returns the amount of data following it.
41  *                      Default: records consist of keys only.
42  *
43  *  Integer sorting:
44  *
45  *  SORT_INT(key)       We are sorting by an integer value. In this mode, PREFIX_compare
46  *                      is supplied automatically and the sorting function gets an extra
47  *                      parameter specifying a range of the integers. The better the range
48  *                      fits, the faster we sort. Sets up SORT_HASH_xxx automatically.
49  *  SORT_INT64(key)     the same for 64-bit integers.
50  *
51  *  Hashing (optional, but it can speed sorting up):
52  *
53  *  SORT_HASH_BITS      signals that a monotone hashing function returning a given number of
54  *                      bits is available. Monotone hash is a function f such that f(x) < f(y)
55  *                      implies x < y and which is approximately uniformly distributed.
56  *  uns PREFIX_hash(SORT_KEY *a)
57  *
58  *  Unification:
59  *
60  *  SORT_UNIFY          merge items with identical keys, needs the following functions:
61  *  void PREFIX_write_merged(struct fastbuf *f, SORT_KEY **keys, void **data, uns n, void *buf)
62  *                      takes n records in memory with keys which compare equal and writes
63  *                      a single record to the given fastbuf. `buf' points to a buffer which
64  *                      is guaranteed to hold the sum of workspace requirements (see below)
65  *                      over all given records. The function is allowed to modify all its inputs.
66  *  void PREFIX_copy_merged(SORT_KEY **keys, struct fastbuf **data, uns n, struct fastbuf *dest)
67  *                      takes n records with keys in memory and data in fastbufs and writes
68  *                      a single record. Used only if SORT_DATA_SIZE or SORT_UNIFY_WORKSPACE is defined.
69  *  SORT_UNIFY_WORKSPACE(key)
70  *                      gets a key and returns the amount of workspace required when merging
71  *                      the given record. Defaults to 0.
72  *
73  *  Input (choose one of these):
74  *
75  *  SORT_INPUT_FILE     file of a given name
76  *  SORT_INPUT_FB       seekable fastbuf stream
77  *  SORT_INPUT_PIPE     non-seekable fastbuf stream
78  *  SORT_INPUT_PRESORT  custom presorter. Calls function
79  *  int PREFIX_presort(struct fastbuf *dest, void *buf, size_t bufsize)
80  *                      to get successive batches of pre-sorted data.
81  *                      The function is passed a page-aligned presorting buffer.
82  *                      It returns 1 on success or 0 on EOF.
83  *  SORT_DELETE_INPUT   A C expression, if true, then the input files are deleted
84  *                      as soon as possible.
85  *
86  *  Output (chose one of these):
87  *
88  *  SORT_OUTPUT_FILE    file of a given name
89  *  SORT_OUTPUT_FB      temporary fastbuf stream
90  *  SORT_OUTPUT_THIS_FB a given fastbuf stream which can already contain a header
91  *
92  *  Other switches:
93  *
94  *  SORT_UNIQUE         all items have distinct keys (checked in debug mode)
95  *
96  *  The function generated:
97  *
98  *  <outfb> PREFIX_sort(<in>, <out> [,<range>]), where:
99  *                      <in> = input file name/fastbuf or NULL
100  *                      <out> = output file name/fastbuf or NULL
101  *                      <range> = maximum integer value for the SORT_INT mode
102  *                      <outfb> = output fastbuf (in SORT_OUTPUT_FB mode)
103  *
104  *  After including this file, all parameter macros are automatically
105  *  undef'd.
106  */
107
108 #include "lib/sorter/common.h"
109 #include "lib/fastbuf.h"
110
111 #include <fcntl.h>
112
113 #define P(x) SORT_PREFIX(x)
114
115 #ifdef SORT_KEY_REGULAR
116 typedef SORT_KEY_REGULAR P(key);
117 static inline int P(read_key) (struct fastbuf *f, P(key) *k)
118 {
119   return breadb(f, k, sizeof(P(key)));
120 }
121 static inline void P(write_key) (struct fastbuf *f, P(key) *k)
122 {
123   bwrite(f, k, sizeof(P(key)));
124 }
125 #elif defined(SORT_KEY)
126 typedef SORT_KEY P(key);
127 #else
128 #error Missing definition of sorting key.
129 #endif
130
131 #ifdef SORT_INT64
132 typedef u64 P(hash_t);
133 #define SORT_INT SORT_INT64
134 #else
135 typedef uns P(hash_t);
136 #endif
137
138 #ifdef SORT_INT
139 static inline int P(compare) (P(key) *x, P(key) *y)
140 {
141   if (SORT_INT(*x) < SORT_INT(*y))
142     return -1;
143   if (SORT_INT(*x) > SORT_INT(*y))
144     return 1;
145   return 0;
146 }
147
148 #ifndef SORT_HASH_BITS
149 static inline P(hash_t) P(hash) (P(key) *x)
150 {
151   return SORT_INT((*x));
152 }
153 #endif
154 #endif
155
156 #ifdef SORT_UNIFY
157 #define LESS <
158 #else
159 #define LESS <=
160 #endif
161 #define SWAP(x,y,z) do { z=x; x=y; y=z; } while(0)
162
163 #if defined(SORT_UNIQUE) && defined(DEBUG_ASSERTS)
164 #define SORT_ASSERT_UNIQUE
165 #endif
166
167 #ifdef SORT_KEY_SIZE
168 #define SORT_VAR_KEY
169 #else
170 #define SORT_KEY_SIZE(key) sizeof(key)
171 #endif
172
173 #ifdef SORT_DATA_SIZE
174 #define SORT_VAR_DATA
175 #else
176 #define SORT_DATA_SIZE(key) 0
177 #endif
178
179 static inline void P(copy_data)(P(key) *key, struct fastbuf *in, struct fastbuf *out)
180 {
181   P(write_key)(out, key);
182 #ifdef SORT_VAR_DATA
183   bbcopy(in, out, SORT_DATA_SIZE(*key));
184 #else
185   (void) in;
186 #endif
187 }
188
189 #if defined(SORT_UNIFY) && !defined(SORT_VAR_DATA) && !defined(SORT_UNIFY_WORKSPACE)
190 static inline void P(copy_merged)(P(key) **keys, struct fastbuf **data UNUSED, uns n, struct fastbuf *dest)
191 {
192   P(write_merged)(dest, keys, NULL, n, NULL);
193 }
194 #endif
195
196 #if defined(SORT_VAR_KEY) || defined(SORT_VAR_DATA) || defined(SORT_UNIFY_WORKSPACE)
197 #include "lib/sorter/s-internal.h"
198 #else
199 #include "lib/sorter/s-fixint.h"
200 #endif
201
202 #include "lib/sorter/s-twoway.h"
203
204 #if defined(SORT_HASH_BITS) || defined(SORT_INT)
205 #include "lib/sorter/s-radix.h"
206 #endif
207
208 static struct fastbuf *P(sort)(
209 #ifdef SORT_INPUT_FILE
210                                byte *in,
211 #else
212                                struct fastbuf *in,
213 #endif
214 #ifdef SORT_OUTPUT_FILE
215                                byte *out
216 #else
217                                struct fastbuf *out
218 #endif
219 #ifdef SORT_INT
220                                , u64 int_range
221 #endif
222                                )
223 {
224   struct sort_context ctx;
225   bzero(&ctx, sizeof(ctx));
226
227 #ifdef SORT_INPUT_FILE
228   ctx.in_fb = bopen_file(in, O_RDONLY, &sorter_fb_params);
229   ctx.in_size = bfilesize(ctx.in_fb);
230 #elif defined(SORT_INPUT_FB)
231   ctx.in_fb = in;
232   ctx.in_size = bfilesize(in);
233 #elif defined(SORT_INPUT_PIPE)
234   ctx.in_fb = in;
235   ctx.in_size = ~(u64)0;
236 #elif defined(SORT_INPUT_PRESORT)
237   ASSERT(!in);
238   ctx.custom_presort = P(presort);
239   ctx.in_size = ~(u64)0;
240 #else
241 #error No input given.
242 #endif
243 #ifdef SORT_DELETE_INPUT
244   if (SORT_DELETE_INPUT)
245     bconfig(ctx.in_fb, BCONFIG_IS_TEMP_FILE, 1);
246 #endif
247
248 #ifdef SORT_OUTPUT_FB
249   ASSERT(!out);
250 #elif defined(SORT_OUTPUT_THIS_FB)
251   ctx.out_fb = out;
252 #elif defined(SORT_OUTPUT_FILE)
253   /* Just assume fastbuf output and rename the fastbuf later */
254 #else
255 #error No output given.
256 #endif
257
258 #ifdef SORT_HASH_BITS
259   ctx.hash_bits = SORT_HASH_BITS;
260   ctx.radix_split = P(radix_split);
261 #elif defined(SORT_INT)
262   ctx.hash_bits = 0;
263   while (ctx.hash_bits < 64 && (int_range >> ctx.hash_bits))
264     ctx.hash_bits++;
265   ctx.radix_split = P(radix_split);
266 #endif
267
268   ctx.internal_sort = P(internal);
269   ctx.internal_estimate = P(internal_estimate);
270   ctx.twoway_merge = P(twoway_merge);
271
272   sorter_run(&ctx);
273
274 #ifdef SORT_OUTPUT_FILE
275   if (rename(ctx.out_fb->name, out) < 0)
276     die("Cannot rename %s to %s: %m", ctx.out_fb->name, out);
277   bconfig(ctx.out_fb, BCONFIG_IS_TEMP_FILE, 0);
278   bclose(ctx.out_fb);
279   ctx.out_fb = NULL;
280 #endif
281   return ctx.out_fb;
282 }
283
284 #undef SORT_PREFIX
285 #undef SORT_KEY
286 #undef SORT_KEY_REGULAR
287 #undef SORT_KEY_SIZE
288 #undef SORT_DATA_SIZE
289 #undef SORT_VAR_KEY
290 #undef SORT_VAR_DATA
291 #undef SORT_INT
292 #undef SORT_INT64
293 #undef SORT_HASH_BITS
294 #undef SORT_UNIFY
295 #undef SORT_UNIFY_WORKSPACE
296 #undef SORT_INPUT_FILE
297 #undef SORT_INPUT_FB
298 #undef SORT_INPUT_PRESORT
299 #undef SORT_OUTPUT_FILE
300 #undef SORT_OUTPUT_FB
301 #undef SORT_OUTPUT_THIS_FB
302 #undef SORT_UNIQUE
303 #undef SORT_ASSERT_UNIQUE
304 #undef SORT_DELETE_INPUT
305 #undef SWAP
306 #undef LESS
307 #undef P
308 /* FIXME: Check that we undef everything we should. */