Get rid of SYSNO which is zint anyway. Removed various prototypes
[idzebra-moved-to-github.git] / index / key_block.c
1 /* $Id: key_block.c,v 1.4 2006-11-21 22:17:49 adam Exp $
2    Copyright (C) 1995-2006
3    Index Data ApS
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
21 */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <assert.h>
27 #include <ctype.h>
28
29 #if YAZ_POSIX_THREADS
30 #include <pthread.h>
31 #endif
32
33 #include "key_block.h"
34 #include <yaz/nmem.h>
35 #include <yaz/xmalloc.h>
36
37 struct zebra_key_block {
38     char **key_buf;
39     size_t ptr_top;
40     size_t ptr_i;
41     size_t key_buf_used;
42     int key_file_no;
43     char *key_tmp_dir;
44     int use_threads;
45     char **alt_buf;
46 #if YAZ_POSIX_THREADS
47     char **thread_key_buf;
48     size_t thread_ptr_top;
49     size_t thread_ptr_i;
50     int exit_flag;
51     pthread_t thread_id;
52     pthread_mutex_t mutex;
53
54     pthread_cond_t work_available;
55
56     pthread_cond_t cond_sorting;
57     int is_sorting;
58 #endif
59 };
60
61 #define ENCODE_BUFLEN 768
62 struct encode_info {
63     void *encode_handle;
64     void *decode_handle;
65     char buf[ENCODE_BUFLEN];
66 };
67
68 static int log_level = 0;
69
70 #define USE_SHELLSORT 0
71
72 #if USE_SHELLSORT
73 static void shellsort(void *ar, int r, size_t s,
74                       int (*cmp)(const void *a, const void *b))
75 {
76     char *a = ar;
77     char v[100];
78     int h, i, j, k;
79     static const int incs[16] = { 1391376, 463792, 198768, 86961, 33936,
80                                   13776, 4592, 1968, 861, 336, 
81                                   112, 48, 21, 7, 3, 1 };
82     for ( k = 0; k < 16; k++)
83         for (h = incs[k], i = h; i < r; i++)
84         { 
85             memcpy (v, a+s*i, s);
86             j = i;
87             while (j > h && (*cmp)(a + s*(j-h), v) > 0)
88             {
89                 memcpy (a + s*j, a + s*(j-h), s);
90                 j -= h;
91             }
92             memcpy (a+s*j, v, s);
93         } 
94 }
95 #endif
96
97
98 static void encode_key_init(struct encode_info *i)
99 {
100     i->encode_handle = iscz1_start();
101     i->decode_handle = iscz1_start();
102 }
103
104 static void encode_key_write (char *k, struct encode_info *i, FILE *outf)
105 {
106     struct it_key key;
107     char *bp = i->buf, *bp0;
108     const char *src = (char *) &key;
109
110     /* copy term to output buf */
111     while ((*bp++ = *k++))
112         ;
113     /* and copy & align key so we can mangle */
114     memcpy (&key, k+1, sizeof(struct it_key));  /* *k is insert/delete */
115
116 #if 0
117     /* debugging */
118     key_logdump_txt(YLOG_LOG, &key, *k ? "i" : "d");
119 #endif
120     assert(key.mem[0] >= 0);
121
122     bp0 = bp++;
123     iscz1_encode(i->encode_handle, &bp, &src);
124
125     *bp0 = (*k * 128) + bp - bp0 - 1; /* length and insert/delete combined */
126     if (fwrite (i->buf, bp - i->buf, 1, outf) != 1)
127     {
128         yaz_log (YLOG_FATAL|YLOG_ERRNO, "fwrite");
129         zebra_exit("encode_key_write");
130     }
131
132 #if 0
133     /* debugging */
134     if (1)
135     {
136         struct it_key key2;
137         const char *src = bp0+1;
138         char *dst = (char*) &key2;
139         iscz1_decode(i->decode_handle, &dst, &src);
140
141         key_logdump_txt(YLOG_LOG, &key2, *k ? "i" : "d");
142
143         assert(key2.mem[1]);
144     }
145 #endif
146 }
147
148 static void encode_key_flush (struct encode_info *i, FILE *outf)
149
150     iscz1_stop(i->encode_handle);
151     iscz1_stop(i->decode_handle);
152 }
153
154 void key_block_flush_int(zebra_key_block_t p,
155                          char **key_buf, size_t ptr_top, size_t ptr_i);
156
157 #if YAZ_POSIX_THREADS
158 static void *thread_func(void *vp)
159 {
160     zebra_key_block_t p = (zebra_key_block_t) vp;
161     while (1)
162     {
163         pthread_mutex_lock(&p->mutex);
164         
165         while (!p->is_sorting && !p->exit_flag)
166             pthread_cond_wait(&p->work_available, &p->mutex);
167
168         if (p->exit_flag)
169             break;
170             
171         pthread_mutex_unlock(&p->mutex);
172         
173         key_block_flush_int(p, p->thread_key_buf, 
174                             p->thread_ptr_top, p->thread_ptr_i);
175         
176         pthread_mutex_lock(&p->mutex);
177         p->is_sorting = 0;
178         pthread_cond_signal(&p->cond_sorting);
179         pthread_mutex_unlock(&p->mutex);        
180     }
181     pthread_mutex_unlock(&p->mutex);
182     return 0;
183 }
184 #endif
185
186 zebra_key_block_t key_block_create(int mem, const char *key_tmp_dir,
187                                    int use_threads)
188 {
189     zebra_key_block_t p = xmalloc(sizeof(*p));
190
191     p->key_buf = (char**) xmalloc (mem);
192     p->ptr_top = mem/sizeof(char*);
193     p->ptr_i = 0;
194     p->key_buf_used = 0;
195     p->key_tmp_dir = xstrdup(key_tmp_dir);
196     p->key_file_no = 0;
197     p->alt_buf = 0;
198     p->use_threads = 0;
199     if (use_threads)
200     {
201 #if YAZ_POSIX_THREADS
202         p->use_threads = use_threads;
203         p->is_sorting = 0;
204         p->exit_flag = 0;
205         pthread_mutex_init(&p->mutex, 0);
206         pthread_cond_init(&p->work_available, 0);
207         pthread_cond_init(&p->cond_sorting, 0);
208         pthread_create(&p->thread_id, 0, thread_func, p);
209         p->alt_buf = (char**) xmalloc (mem);
210 #endif
211     }
212     yaz_log(YLOG_LOG, "key_block_create t=%d", p->use_threads);
213     return p;
214 }
215
216 void key_block_destroy(zebra_key_block_t *pp)
217 {
218     zebra_key_block_t p = *pp;
219     if (p)
220     {
221         if (p->use_threads)
222         {
223 #if YAZ_POSIX_THREADS
224             pthread_mutex_lock(&p->mutex);
225             
226             while (p->is_sorting)
227                 pthread_cond_wait(&p->cond_sorting, &p->mutex);
228             
229             p->exit_flag = 1;
230             
231             pthread_cond_broadcast(&p->work_available);
232             
233             pthread_mutex_unlock(&p->mutex);
234             pthread_join(p->thread_id, 0);
235             pthread_cond_destroy(&p->work_available);
236             pthread_cond_destroy(&p->cond_sorting);
237             pthread_mutex_destroy(&p->mutex);
238             
239 #endif
240             xfree(p->alt_buf);
241         }
242         xfree(p->key_buf);
243         xfree(p->key_tmp_dir);
244         xfree(p);
245         *pp = 0;
246     }
247 }
248
249 void key_block_write(zebra_key_block_t p, zint sysno, struct it_key *key_in,
250                      int cmd, const char *str_buf, size_t str_len,
251                      zint staticrank, int static_rank_enable)
252 {
253     int ch;
254     int i, j = 0;
255     struct it_key key_out;
256
257     if (p->key_buf_used + 1024 > (p->ptr_top -p->ptr_i)*sizeof(char*))
258         key_block_flush(p, 0);
259     ++(p->ptr_i);
260     assert(p->ptr_i > 0);
261     (p->key_buf)[p->ptr_top - p->ptr_i] =
262         (char*)p->key_buf + p->key_buf_used;
263     
264     /* key_in->mem[0] ord/ch */
265     /* key_in->mem[1] filter specified record ID */
266     
267     /* encode the ordinal value (field/use/attribute) .. */
268     ch = CAST_ZINT_TO_INT(key_in->mem[0]);
269     p->key_buf_used +=
270         key_SU_encode(ch, (char*)p->key_buf +
271                       p->key_buf_used);
272     
273     /* copy the 0-terminated stuff from str to output */
274     memcpy((char*)p->key_buf + p->key_buf_used, str_buf, str_len);
275     p->key_buf_used += str_len;
276     ((char*)p->key_buf)[(p->key_buf_used)++] = '\0';
277     
278     /* the delete/insert indicator */
279     ((char*)p->key_buf)[(p->key_buf_used)++] = cmd;
280     
281     if (static_rank_enable)
282         key_out.mem[j++] = staticrank;
283     
284     if (key_in->mem[1]) /* filter specified record ID */
285         key_out.mem[j++] = key_in->mem[1];
286     else
287         key_out.mem[j++] = sysno;
288     for (i = 2; i < key_in->len; i++)
289         key_out.mem[j++] = key_in->mem[i];
290     key_out.len = j;
291     
292     memcpy((char*)p->key_buf + p->key_buf_used,
293            &key_out, sizeof(key_out));
294     (p->key_buf_used) += sizeof(key_out);
295 }
296
297
298 void key_block_flush_int(zebra_key_block_t p,
299                          char **key_buf, size_t ptr_top,  size_t ptr_i)
300 {
301     FILE *outf;
302     char out_fname[200];
303     char *prevcp, *cp;
304     struct encode_info encode_info;
305
306     (p->key_file_no)++;
307     yaz_log(YLOG_LOG, "sorting section %d", (p->key_file_no));
308     yaz_log(log_level, "  sort_buff at %p n=%d",
309                     key_buf + ptr_top - ptr_i,ptr_i);
310
311
312 #if USE_SHELLSORT
313     shellsort(key_buf + ptr_top - ptr_i, ptr_i,
314               sizeof(char*), key_qsort_compare);
315 #else
316     qsort(key_buf + ptr_top - ptr_i, ptr_i,
317           sizeof(char*), key_qsort_compare);
318 #endif
319     sprintf(out_fname, "%s/key%d.tmp", p->key_tmp_dir, p->key_file_no);
320
321     if (!(outf = fopen (out_fname, "wb")))
322     {
323         yaz_log (YLOG_FATAL|YLOG_ERRNO, "fopen %s", out_fname);
324         zebra_exit("key_block_flush");
325     }
326     yaz_log(YLOG_LOG, "writing section %d", p->key_file_no);
327     prevcp = cp = (key_buf)[ptr_top - ptr_i];
328     
329     encode_key_init (&encode_info);
330     encode_key_write (cp, &encode_info, outf);
331     
332     while (--ptr_i > 0)
333     {
334         cp = (key_buf)[ptr_top - ptr_i];
335         if (strcmp (cp, prevcp))
336         {
337             encode_key_flush ( &encode_info, outf);
338             encode_key_init (&encode_info);
339             encode_key_write (cp, &encode_info, outf);
340             prevcp = cp;
341         }
342         else
343             encode_key_write (cp + strlen(cp), &encode_info, outf);
344     }
345     encode_key_flush ( &encode_info, outf);
346     if (fclose (outf))
347     {
348         yaz_log (YLOG_FATAL|YLOG_ERRNO, "fclose %s", out_fname);
349         zebra_exit("key_block_flush");
350     }
351     yaz_log(YLOG_LOG, "finished section %d", p->key_file_no);
352 }
353
354 void key_block_flush(zebra_key_block_t p, int is_final)
355 {
356     if (!p)
357         return;
358
359     if (p->use_threads)
360     {
361 #if YAZ_POSIX_THREADS
362         char **tmp;
363     
364         pthread_mutex_lock(&p->mutex);
365         
366         while (p->is_sorting)
367             pthread_cond_wait(&p->cond_sorting, &p->mutex);
368         
369         p->is_sorting = 1;
370         
371         p->thread_ptr_top = p->ptr_top;
372         p->thread_ptr_i = p->ptr_i;
373         p->thread_key_buf = p->key_buf;
374         
375         tmp = p->key_buf;
376         p->key_buf = p->alt_buf;
377         p->alt_buf = tmp;
378         
379         pthread_cond_signal(&p->work_available);
380         
381         if (is_final)
382         {
383             while (p->is_sorting)
384                 pthread_cond_wait(&p->cond_sorting, &p->mutex);
385         }
386         pthread_mutex_unlock(&p->mutex);
387 #endif
388     }
389     else
390         key_block_flush_int(p, p->key_buf, p->ptr_top, p->ptr_i);
391     p->ptr_i = 0;
392     p->key_buf_used = 0;
393 }
394
395 int key_block_get_no_files(zebra_key_block_t p)
396 {
397     if (p)
398         return p->key_file_no;
399     return 0;
400 }
401
402 /*
403  * Local variables:
404  * c-basic-offset: 4
405  * indent-tabs-mode: nil
406  * End:
407  * vim: shiftwidth=4 tabstop=8 expandtab
408  */
409