Fixed a borderline case isamb_forward
[idzebra-moved-to-github.git] / index / kinput.c
1 /* $Id: kinput.c,v 1.58 2004-06-01 14:50:59 heikki Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
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 Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23
24  
25 #include <fcntl.h>
26 #ifdef WIN32
27 #include <io.h>
28 #else
29 #include <unistd.h>
30 #endif
31 #include <stdlib.h>
32 #include <string.h>
33 #include <stdio.h>
34 #include <assert.h>
35
36 #include "index.h"
37
38 #define KEY_SIZE (1+sizeof(struct it_key))
39 #define INP_NAME_MAX 768
40 #define INP_BUF_START 60000
41 #define INP_BUF_ADD  400000
42
43
44 struct key_file {
45     int   no;            /* file no */
46     off_t offset;        /* file offset */
47     unsigned char *buf;  /* buffer block */
48     size_t buf_size;     /* number of read bytes in block */
49     size_t chunk;        /* number of bytes allocated */
50     size_t buf_ptr;      /* current position in buffer */
51     char *prev_name;     /* last word read */
52     int   sysno;         /* last sysno */
53     int   seqno;         /* last seqno */
54     off_t length;        /* length of file */
55                          /* handler invoked in each read */
56     void (*readHandler)(struct key_file *keyp, void *rinfo);
57     void *readInfo;
58     Res res;
59 };
60
61 void getFnameTmp (Res res, char *fname, int no)
62 {
63     const char *pre;
64     
65     pre = res_get_def (res, "keyTmpDir", ".");
66     sprintf (fname, "%s/key%d.tmp", pre, no);
67 }
68
69 void extract_get_fname_tmp (ZebraHandle zh, char *fname, int no)
70 {
71     const char *pre;
72     
73     pre = res_get_def (zh->res, "keyTmpDir", ".");
74     sprintf (fname, "%s/key%d.tmp", pre, no);
75 }
76
77 void key_file_chunk_read (struct key_file *f)
78 {
79     int nr = 0, r = 0, fd;
80     char fname[1024];
81     getFnameTmp (f->res, fname, f->no);
82     fd = open (fname, O_BINARY|O_RDONLY);
83
84     f->buf_ptr = 0;
85     f->buf_size = 0;
86     if (fd == -1)
87     {
88         logf (LOG_WARN|LOG_ERRNO, "cannot open %s", fname);
89         return ;
90     }
91     if (!f->length)
92     {
93         if ((f->length = lseek (fd, 0L, SEEK_END)) == (off_t) -1)
94         {
95             logf (LOG_WARN|LOG_ERRNO, "cannot seek %s", fname);
96             close (fd);
97             return ;
98         }
99     }
100     if (lseek (fd, f->offset, SEEK_SET) == -1)
101     {
102         logf (LOG_WARN|LOG_ERRNO, "cannot seek %s", fname);
103         close(fd);
104         return ;
105     }
106     while (f->chunk - nr > 0)
107     {
108         r = read (fd, f->buf + nr, f->chunk - nr);
109         if (r <= 0)
110             break;
111         nr += r;
112     }
113     if (r == -1)
114     {
115         logf (LOG_WARN|LOG_ERRNO, "read of %s", fname);
116         close (fd);
117         return;
118     }
119     f->buf_size = nr;
120     if (f->readHandler)
121         (*f->readHandler)(f, f->readInfo);
122     close (fd);
123 }
124
125 void key_file_destroy (struct key_file *f)
126 {
127     xfree (f->buf);
128     xfree (f->prev_name);
129     xfree (f);
130 }
131
132 struct key_file *key_file_init (int no, int chunk, Res res)
133 {
134     struct key_file *f;
135
136     f = (struct key_file *) xmalloc (sizeof(*f));
137     f->res = res;
138     f->sysno = 0;
139     f->seqno = 0;
140     f->no = no;
141     f->chunk = chunk;
142     f->offset = 0;
143     f->length = 0;
144     f->readHandler = NULL;
145     f->buf = (unsigned char *) xmalloc (f->chunk);
146     f->prev_name = (char *) xmalloc (INP_NAME_MAX);
147     *f->prev_name = '\0';
148     key_file_chunk_read (f);
149     return f;
150 }
151
152 int key_file_getc (struct key_file *f)
153 {
154     if (f->buf_ptr < f->buf_size)
155         return f->buf[(f->buf_ptr)++];
156     if (f->buf_size < f->chunk)
157         return EOF;
158     f->offset += f->buf_size;
159     key_file_chunk_read (f);
160     if (f->buf_ptr < f->buf_size)
161         return f->buf[(f->buf_ptr)++];
162     else
163         return EOF;
164 }
165
166 int key_file_decode (struct key_file *f)
167 {
168     int c, d;
169
170     c = key_file_getc (f);
171     switch (c & 192) 
172     {
173     case 0:
174         d = c;
175         break;
176     case 64:
177         d = ((c&63) << 8) + (key_file_getc (f) & 0xff);
178         break;
179     case 128:
180         d = ((c&63) << 8) + (key_file_getc (f) & 0xff);
181         d = (d << 8) + (key_file_getc (f) & 0xff);
182         break;
183     case 192:
184         d = ((c&63) << 8) + (key_file_getc (f) & 0xff);
185         d = (d << 8) + (key_file_getc (f) & 0xff);
186         d = (d << 8) + (key_file_getc (f) & 0xff);
187         break;
188     }
189     return d;
190 }
191
192 int key_file_read (struct key_file *f, char *key)
193 {
194     int i, d, c;
195     struct it_key itkey;
196
197     c = key_file_getc (f);
198     if (c == 0)
199     {
200         strcpy (key, f->prev_name);
201         i = 1+strlen (key);
202     }
203     else if (c == EOF)
204         return 0;
205     else
206     {
207         i = 0;
208         key[i++] = c;
209         while ((key[i++] = key_file_getc (f)))
210             ;
211         strcpy (f->prev_name, key);
212         f->sysno = 0;
213     }
214     d = key_file_decode (f);
215     key[i++] = d & 1;
216     d = d >> 1;
217     itkey.sysno = d + f->sysno;
218     if (d) 
219     {
220         f->sysno = itkey.sysno;
221         f->seqno = 0;
222     }
223     d = key_file_decode (f);
224     itkey.seqno = d + f->seqno;
225     f->seqno = itkey.seqno;
226     memcpy (key + i, &itkey, sizeof(struct it_key));
227     return i + sizeof (struct it_key);
228 }
229
230 struct heap_info {
231     struct {
232         struct key_file **file;
233         char   **buf;
234     } info;
235     int    heapnum;
236     int    *ptr;
237     int    (*cmp)(const void *p1, const void *p2);
238     struct zebra_register *reg;
239     ZebraHandle zh; /* only used for raw reading that bypasses the heaps */
240     int no_diffs;
241     int no_updates;
242     int no_deletions;
243     int no_insertions;
244     int no_iterations;
245 };
246
247 static struct heap_info *key_heap_malloc()
248 {  /* malloc and clear it */
249     struct heap_info *hi;
250     hi = (struct heap_info *) xmalloc (sizeof(*hi));
251     hi->info.file = 0;
252     hi->info.buf = 0;
253     hi->heapnum = 0;
254     hi->ptr = 0;
255     hi->zh=0;
256     hi->no_diffs = 0;
257     hi->no_diffs = 0;
258     hi->no_updates = 0;
259     hi->no_deletions = 0;
260     hi->no_insertions = 0;
261     hi->no_iterations = 0;
262     return hi;
263 }
264
265 struct heap_info *key_heap_init (int nkeys,
266                                  int (*cmp)(const void *p1, const void *p2))
267 {
268     struct heap_info *hi;
269     int i;
270
271     hi = key_heap_malloc();
272     hi->info.file = (struct key_file **)
273         xmalloc (sizeof(*hi->info.file) * (1+nkeys));
274     hi->info.buf = (char **) xmalloc (sizeof(*hi->info.buf) * (1+nkeys));
275     hi->ptr = (int *) xmalloc (sizeof(*hi->ptr) * (1+nkeys));
276     hi->cmp = cmp;
277     for (i = 0; i<= nkeys; i++)
278     {
279         hi->ptr[i] = i;
280         hi->info.buf[i] = (char *) xmalloc (INP_NAME_MAX);
281     }
282     return hi;
283 }
284
285 struct heap_info *key_heap_init_buff ( ZebraHandle zh,
286                                  int (*cmp)(const void *p1, const void *p2))
287 {
288     struct heap_info *hi=key_heap_malloc();
289     hi->cmp=cmp;
290     hi->zh=zh;
291     return hi;
292 }
293
294 void key_heap_destroy (struct heap_info *hi, int nkeys)
295 {
296     int i;
297     yaz_log (LOG_DEBUG, "key_heap_destroy");
298     yaz_log (LOG_DEBUG, "key_heap_destroy nk=%d",nkeys);
299     if (!hi->zh)
300         for (i = 0; i<=nkeys; i++)
301             xfree (hi->info.buf[i]);
302     
303     xfree (hi->info.buf);
304     xfree (hi->ptr);
305     xfree (hi->info.file);
306     xfree (hi);
307 }
308
309 static void key_heap_swap (struct heap_info *hi, int i1, int i2)
310 {
311     int swap;
312
313     swap = hi->ptr[i1];
314     hi->ptr[i1] = hi->ptr[i2];
315     hi->ptr[i2] = swap;
316 }
317
318
319 static void key_heap_delete (struct heap_info *hi)
320 {
321     int cur = 1, child = 2;
322
323     assert (hi->heapnum > 0);
324
325     key_heap_swap (hi, 1, hi->heapnum);
326     hi->heapnum--;
327     while (child <= hi->heapnum) {
328         if (child < hi->heapnum &&
329             (*hi->cmp)(&hi->info.buf[hi->ptr[child]],
330                        &hi->info.buf[hi->ptr[child+1]]) > 0)
331             child++;
332         if ((*hi->cmp)(&hi->info.buf[hi->ptr[cur]],
333                        &hi->info.buf[hi->ptr[child]]) > 0)
334         {            
335             key_heap_swap (hi, cur, child);
336             cur = child;
337             child = 2*cur;
338         }
339         else
340             break;
341     }
342 }
343
344 static void key_heap_insert (struct heap_info *hi, const char *buf, int nbytes,
345                              struct key_file *kf)
346 {
347     int cur, parent;
348
349     cur = ++(hi->heapnum);
350     memcpy (hi->info.buf[hi->ptr[cur]], buf, nbytes);
351     hi->info.file[hi->ptr[cur]] = kf;
352
353     parent = cur/2;
354     while (parent && (*hi->cmp)(&hi->info.buf[hi->ptr[parent]],
355                                 &hi->info.buf[hi->ptr[cur]]) > 0)
356     {
357         key_heap_swap (hi, cur, parent);
358         cur = parent;
359         parent = cur/2;
360     }
361 }
362
363 static int heap_read_one_raw (struct heap_info *hi, char *name, char *key)
364 {
365     ZebraHandle zh=hi->zh;
366     int ptr_i = zh->reg->ptr_i;
367     char *cp;
368     if (!ptr_i)
369         return 0;
370     --(zh->reg->ptr_i);
371     cp=(zh->reg->key_buf)[zh->reg->ptr_top - ptr_i];
372     logf (LOG_DEBUG, " raw: i=%d top=%d cp=%p", ptr_i, zh->reg->ptr_top,cp);
373     strcpy(name, cp);
374     memcpy(key, cp+strlen(name)+1, KEY_SIZE);
375     hi->no_iterations++;
376     return 1;
377 }
378
379 static int heap_read_one (struct heap_info *hi, char *name, char *key)
380 {
381     int n, r;
382     char rbuf[INP_NAME_MAX];
383     struct key_file *kf;
384
385     if (hi->zh) /* bypass the heap stuff, we have a readymade buffer */
386         return heap_read_one_raw(hi, name, key);
387
388     if (!hi->heapnum)
389         return 0;
390     n = hi->ptr[1];
391     strcpy (name, hi->info.buf[n]);
392     kf = hi->info.file[n];
393     r = strlen(name);
394     memcpy (key, hi->info.buf[n] + r+1, KEY_SIZE);
395     key_heap_delete (hi);
396     if ((r = key_file_read (kf, rbuf)))
397         key_heap_insert (hi, rbuf, r, kf);
398     hi->no_iterations++;
399     return 1;
400 }
401
402 #define PR_KEY 0
403
404 #if PR_KEY
405 static void pkey(const char *b, int mode)
406 {
407     struct it_key *key = (struct it_key *) b;
408     printf ("%c %d:%d\n", mode + 48, key->sysno, key->seqno);
409 }
410 #endif
411
412 struct heap_cread_info {
413     char prev_name[INP_NAME_MAX];
414     char cur_name[INP_NAME_MAX];
415     char *key;
416     char *key_1, *key_2;
417     int mode_1, mode_2;
418     int sz_1, sz_2;
419     struct heap_info *hi;
420     int first_in_list;
421     int more;
422     int ret;
423 };
424
425 static int heap_cread_item (void *vp, char **dst, int *insertMode);
426
427 int heap_cread_item2 (void *vp, char **dst, int *insertMode)
428 {
429     struct heap_cread_info *p = (struct heap_cread_info *) vp;
430     int level = 0;
431
432     if (p->ret == 0)    /* lookahead was 0?. Return that in read next round */
433     {
434         p->ret = -1;
435         return 0;
436     }
437     else if (p->ret == -1) /* Must read new item ? */
438     {
439         char *dst_1 = p->key_1;
440         p->ret = heap_cread_item(vp, &dst_1, &p->mode_1);
441         p->sz_1 = dst_1 - p->key_1;
442     }
443     else
444     {        /* lookahead in 2 . Now in 1. */
445         p->sz_1 = p->sz_2;
446         p->mode_1 = p->mode_2;
447         memcpy (p->key_1, p->key_2, p->sz_2);
448     }
449     if (p->mode_1)
450         level = 1;     /* insert */
451     else
452         level = -1;    /* delete */
453     while(1)
454     {
455         char *dst_2 = p->key_2;
456         p->ret = heap_cread_item(vp, &dst_2, &p->mode_2);
457         if (!p->ret)
458         {
459             if (level)
460                 break;
461             p->ret = -1;
462             return 0;
463         }
464         p->sz_2 = dst_2 - p->key_2;
465         if (p->sz_1 == p->sz_2 && memcmp(p->key_1, p->key_2, p->sz_1) == 0)
466         {
467             if (p->mode_2) /* adjust level according to deletes/inserts */
468                 level++;
469             else
470                 level--;
471         }
472         else
473         {
474             if (level)
475                 break;
476             /* all the same. new round .. */
477             p->sz_1 = p->sz_2;
478             p->mode_1 = p->mode_2;
479             memcpy (p->key_1, p->key_2, p->sz_1);
480             if (p->mode_1)
481                 level = 1;     /* insert */
482             else
483                 level = -1;    /* delete */
484         }
485     }
486     /* outcome is insert (1) or delete (0) depending on final level */
487     if (level > 0)
488         *insertMode = 1;
489     else
490         *insertMode = 0;
491     memcpy (*dst, p->key_1, p->sz_1);
492 #if PR_KEY
493     printf ("top: ");
494     pkey(*dst, *insertMode); fflush(stdout);
495 #endif
496     (*dst) += p->sz_1;
497     return 1;
498 }
499       
500 int heap_cread_item (void *vp, char **dst, int *insertMode)
501 {
502     struct heap_cread_info *p = (struct heap_cread_info *) vp;
503     struct heap_info *hi = p->hi;
504
505     if (p->first_in_list)
506     {
507         *insertMode = p->key[0];
508         memcpy (*dst, p->key+1, sizeof(struct it_key));
509 #if PR_KEY
510         printf ("sub1: ");
511         pkey(*dst, *insertMode);
512 #endif
513         (*dst) += sizeof(struct it_key);
514         p->first_in_list = 0;
515         return 1;
516     }
517     strcpy (p->prev_name, p->cur_name);
518     if (!(p->more = heap_read_one (hi, p->cur_name, p->key)))
519         return 0;
520     if (*p->cur_name && strcmp (p->cur_name, p->prev_name))
521     {
522         p->first_in_list = 1;
523         return 0;
524     }
525     *insertMode = p->key[0];
526     memcpy (*dst, p->key+1, sizeof(struct it_key));
527 #if PR_KEY
528     printf ("sub2: ");
529     pkey(*dst, *insertMode);
530 #endif
531     (*dst) += sizeof(struct it_key);
532     return 1;
533 }
534
535 int heap_inpc (struct heap_info *hi)
536 {
537     struct heap_cread_info hci;
538     ISAMC_I *isamc_i = (ISAMC_I *) xmalloc (sizeof(*isamc_i));
539
540     hci.key = (char *) xmalloc (KEY_SIZE);
541     hci.key_1 = (char *) xmalloc (KEY_SIZE);
542     hci.key_2 = (char *) xmalloc (KEY_SIZE);
543     hci.ret = -1;
544     hci.first_in_list = 1;
545     hci.hi = hi;
546     hci.more = heap_read_one (hi, hci.cur_name, hci.key);
547
548     isamc_i->clientData = &hci;
549     isamc_i->read_item = heap_cread_item2;
550
551     while (hci.more)
552     {
553         char this_name[INP_NAME_MAX];
554         ISAMC_P isamc_p, isamc_p2;
555         char *dict_info;
556
557         strcpy (this_name, hci.cur_name);
558         assert (hci.cur_name[1]);
559         hi->no_diffs++;
560         if ((dict_info = dict_lookup (hi->reg->dict, hci.cur_name)))
561         {
562             memcpy (&isamc_p, dict_info+1, sizeof(ISAMC_P));
563             isamc_p2 = isc_merge (hi->reg->isamc, isamc_p, isamc_i);
564             if (!isamc_p2)
565             {
566                 hi->no_deletions++;
567                 if (!dict_delete (hi->reg->dict, this_name))
568                     abort();
569             }
570             else 
571             {
572                 hi->no_updates++;
573                 if (isamc_p2 != isamc_p)
574                     dict_insert (hi->reg->dict, this_name,
575                                  sizeof(ISAMC_P), &isamc_p2);
576             }
577         } 
578         else
579         {
580             isamc_p = isc_merge (hi->reg->isamc, 0, isamc_i);
581             hi->no_insertions++;
582             dict_insert (hi->reg->dict, this_name, sizeof(ISAMC_P), &isamc_p);
583         }
584     }
585     xfree (isamc_i);
586     xfree (hci.key);
587     xfree (hci.key_1);
588     xfree (hci.key_2);
589     return 0;
590
591
592 #if 0
593 /* for debugging only */
594 static void print_dict_item (ZebraMaps zm, const char *s)
595 {
596     int reg_type = s[1];
597     char keybuf[IT_MAX_WORD+1];
598     char *to = keybuf;
599     const char *from = s + 2;
600
601     while (*from)
602     {
603         const char *res = zebra_maps_output (zm, reg_type, &from);
604         if (!res)
605             *to++ = *from++;
606         else
607             while (*res)
608                 *to++ = *res++;
609     }
610     *to = '\0';
611     yaz_log (LOG_LOG, "%s", keybuf);
612 }
613 #endif
614
615 int heap_inpb (struct heap_info *hi)
616 {
617     struct heap_cread_info hci;
618     ISAMC_I *isamc_i = (ISAMC_I *) xmalloc (sizeof(*isamc_i));
619
620     hci.key = (char *) xmalloc (KEY_SIZE);
621     hci.key_1 = (char *) xmalloc (KEY_SIZE);
622     hci.key_2 = (char *) xmalloc (KEY_SIZE);
623     hci.ret = -1;
624     hci.first_in_list = 1;
625     hci.hi = hi;
626     hci.more = heap_read_one (hi, hci.cur_name, hci.key);
627
628     isamc_i->clientData = &hci;
629     isamc_i->read_item = heap_cread_item2;
630
631     while (hci.more)
632     {
633         char this_name[INP_NAME_MAX];
634         ISAMC_P isamc_p, isamc_p2;
635         char *dict_info;
636
637         strcpy (this_name, hci.cur_name);
638         assert (hci.cur_name[1]);
639         hi->no_diffs++;
640
641 #if 0
642         print_dict_item (hi->reg->zebra_maps, hci.cur_name);
643 #endif
644         if ((dict_info = dict_lookup (hi->reg->dict, hci.cur_name)))
645         {
646             memcpy (&isamc_p, dict_info+1, sizeof(ISAMC_P));
647             isamc_p2 = isamb_merge (hi->reg->isamb, isamc_p, isamc_i);
648             if (!isamc_p2)
649             {
650                 hi->no_deletions++;
651                 if (!dict_delete (hi->reg->dict, this_name))
652                     abort();
653             }
654             else 
655             {
656                 hi->no_updates++;
657                 if (isamc_p2 != isamc_p)
658                     dict_insert (hi->reg->dict, this_name,
659                                  sizeof(ISAMC_P), &isamc_p2);
660             }
661         } 
662         else
663         {
664             isamc_p = isamb_merge (hi->reg->isamb, 0, isamc_i);
665             hi->no_insertions++;
666             dict_insert (hi->reg->dict, this_name, sizeof(ISAMC_P), &isamc_p);
667         }
668     }
669     xfree (isamc_i);
670     xfree (hci.key);
671     xfree (hci.key_1);
672     xfree (hci.key_2);
673     return 0;
674
675
676 int heap_inpd (struct heap_info *hi)
677 {
678     struct heap_cread_info hci;
679     ISAMD_I isamd_i = (ISAMD_I) xmalloc (sizeof(*isamd_i));
680
681     hci.key = (char *) xmalloc (KEY_SIZE);
682     hci.key_1 = (char *) xmalloc (KEY_SIZE);
683     hci.key_2 = (char *) xmalloc (KEY_SIZE);
684     hci.ret = -1;
685     hci.first_in_list = 1;
686     hci.hi = hi;
687     hci.more = heap_read_one (hi, hci.cur_name, hci.key);
688
689     isamd_i->clientData = &hci;
690     isamd_i->read_item = heap_cread_item;
691
692     while (hci.more)
693     {
694         char this_name[INP_NAME_MAX];
695         char *dict_info;
696         char dictentry[ISAMD_MAX_DICT_LEN+1];
697         char dictlen;
698
699         strcpy (this_name, hci.cur_name);
700         
701         /* print_dict_item (hi->reg->zebra_maps, hci.cur_name); */
702         /*!*/ /* FIXME: depend on isamd-debug */
703
704         assert (hci.cur_name[1]);
705         hi->no_diffs++;
706         if ((dict_info = dict_lookup (hi->reg->dict, hci.cur_name)))
707         {
708             dictlen=dict_info[0];
709             memcpy (dictentry, dict_info+1, dictlen );
710 #ifdef SKIPTHIS
711             logf(LOG_LOG,"dictentry before. len=%d: %d %d %d %d %d %d %d %d %d",
712                dictlen,dictentry[0], dictentry[1], dictentry[2],
713                        dictentry[3], dictentry[4], dictentry[5],
714                        dictentry[6], dictentry[7], dictentry[8]); /*!*/
715 #endif
716             dictlen= isamd_append(hi->reg->isamd, dictentry, dictlen, isamd_i);
717              /* logf dictentry after */
718             if (dictlen)
719             {
720                 hi->no_updates++;
721                 if ( (dictlen!=dict_info[0]) ||
722                      (0!=memcmp(dictentry, dict_info+1, dictlen)) )
723                 {
724                     dict_insert(hi->reg->dict, this_name,
725                                 dictlen,dictentry);
726                 }
727             }
728             else
729             {
730                 hi->no_deletions++;
731                 if (!dict_delete (hi->reg->dict, this_name)) 
732                 {
733                     logf (LOG_FATAL, "dict_delete failed");
734                     abort();
735                 }
736             }
737         } 
738         else
739         {
740             dictlen=0;
741             memset (dictentry, '\0', ISAMD_MAX_DICT_LEN);
742             dictlen= isamd_append(hi->reg->isamd, dictentry, dictlen, isamd_i);
743              /* logf dictentry first */
744             hi->no_insertions++;
745             if (dictlen)
746                 dict_insert(hi->reg->dict, this_name,
747                                 dictlen,dictentry);
748         }
749     }
750     xfree (isamd_i);
751     xfree (hci.key);
752     xfree (hci.key_1);
753     xfree (hci.key_2);
754     return 0;
755
756
757 int heap_inp (struct heap_info *hi)
758 {
759     char *info;
760     char next_name[INP_NAME_MAX];
761     char cur_name[INP_NAME_MAX];
762     int key_buf_size = INP_BUF_START;
763     int key_buf_ptr;
764     char *next_key;
765     char *key_buf;
766     int more;
767     
768     next_key = (char *) xmalloc (KEY_SIZE);
769     key_buf = (char *) xmalloc (key_buf_size);
770     more = heap_read_one (hi, cur_name, key_buf);
771     while (more)                   /* EOF ? */
772     {
773         int nmemb;
774         key_buf_ptr = KEY_SIZE;
775         while (1)
776         {
777             if (!(more = heap_read_one (hi, next_name, next_key)))
778                 break;
779             if (*next_name && strcmp (next_name, cur_name))
780                 break;
781             memcpy (key_buf + key_buf_ptr, next_key, KEY_SIZE);
782             key_buf_ptr += KEY_SIZE;
783             if (key_buf_ptr+(int) KEY_SIZE >= key_buf_size)
784             {
785                 char *new_key_buf;
786                 new_key_buf = (char *) xmalloc (key_buf_size + INP_BUF_ADD);
787                 memcpy (new_key_buf, key_buf, key_buf_size);
788                 key_buf_size += INP_BUF_ADD;
789                 xfree (key_buf);
790                 key_buf = new_key_buf;
791             }
792         }
793         hi->no_diffs++;
794         nmemb = key_buf_ptr / KEY_SIZE;
795         assert (nmemb * (int) KEY_SIZE == key_buf_ptr);
796         if ((info = dict_lookup (hi->reg->dict, cur_name)))
797         {
798             ISAM_P isam_p, isam_p2;
799             memcpy (&isam_p, info+1, sizeof(ISAM_P));
800             isam_p2 = is_merge (hi->reg->isam, isam_p, nmemb, key_buf);
801             if (!isam_p2)
802             {
803                 hi->no_deletions++;
804                 if (!dict_delete (hi->reg->dict, cur_name))
805                     abort ();
806             }
807             else 
808             {
809                 hi->no_updates++;
810                 if (isam_p2 != isam_p)
811                     dict_insert (hi->reg->dict, cur_name,
812                                  sizeof(ISAM_P), &isam_p2);
813             }
814         }
815         else
816         {
817             ISAM_P isam_p;
818             hi->no_insertions++;
819             isam_p = is_merge (hi->reg->isam, 0, nmemb, key_buf);
820             dict_insert (hi->reg->dict, cur_name, sizeof(ISAM_P), &isam_p);
821         }
822         memcpy (key_buf, next_key, KEY_SIZE);
823         strcpy (cur_name, next_name);
824     }
825     return 0;
826 }
827
828 int heap_inps (struct heap_info *hi)
829 {
830     struct heap_cread_info hci;
831     ISAMS_I isams_i = (ISAMS_I) xmalloc (sizeof(*isams_i));
832
833     hci.key = (char *) xmalloc (KEY_SIZE);
834     hci.key_1 = (char *) xmalloc (KEY_SIZE);
835     hci.key_2 = (char *) xmalloc (KEY_SIZE);
836     hci.first_in_list = 1;
837     hci.ret = -1;
838     hci.hi = hi;
839     hci.more = heap_read_one (hi, hci.cur_name, hci.key);
840
841     isams_i->clientData = &hci;
842     isams_i->read_item = heap_cread_item;
843
844     while (hci.more)
845     {
846         char this_name[INP_NAME_MAX];
847         ISAMS_P isams_p;
848         char *dict_info;
849
850         strcpy (this_name, hci.cur_name);
851         assert (hci.cur_name[1]);
852         hi->no_diffs++;
853         if (!(dict_info = dict_lookup (hi->reg->dict, hci.cur_name)))
854         {
855             isams_p = isams_merge (hi->reg->isams, isams_i);
856             hi->no_insertions++;
857             dict_insert (hi->reg->dict, this_name, sizeof(ISAMS_P), &isams_p);
858         }
859         else
860         {
861             logf (LOG_FATAL, "isams doesn't support this kind of update");
862             break;
863         }
864     }
865     xfree (isams_i);
866     return 0;
867
868
869 struct progressInfo {
870     time_t   startTime;
871     time_t   lastTime;
872     off_t    totalBytes;
873     off_t    totalOffset;
874 };
875
876 void progressFunc (struct key_file *keyp, void *info)
877 {
878     struct progressInfo *p = (struct progressInfo *) info;
879     time_t now, remaining;
880
881     if (keyp->buf_size <= 0 || p->totalBytes <= 0)
882         return ;
883     time (&now);
884
885     if (now >= p->lastTime+10)
886     {
887         p->lastTime = now;
888         remaining = (time_t) ((now - p->startTime)*
889             ((double) p->totalBytes/p->totalOffset - 1.0));
890         if (remaining <= 130)
891             logf (LOG_LOG, "Merge %2.1f%% completed; %ld seconds remaining",
892                  (100.0*p->totalOffset) / p->totalBytes, (long) remaining);
893         else
894             logf (LOG_LOG, "Merge %2.1f%% completed; %ld minutes remaining",
895                  (100.0*p->totalOffset) / p->totalBytes, (long) remaining/60);
896     }
897     p->totalOffset += keyp->buf_size;
898 }
899
900 #ifndef R_OK
901 #define R_OK 4
902 #endif
903
904 void zebra_index_merge (ZebraHandle zh)
905 {
906     struct key_file **kf;
907     char rbuf[1024];
908     int i, r;
909     struct heap_info *hi;
910     struct progressInfo progressInfo;
911     int nkeys = zh->reg->key_file_no;
912     int usefile; 
913     
914     logf (LOG_DEBUG, " index_merge called with nk=%d b=%p", 
915                     nkeys, zh->reg->key_buf);
916     if ( (nkeys==0) && (zh->reg->key_buf==0) )
917         return; /* nothing to merge - probably flush after end-trans */
918     
919     usefile = (nkeys!=0); 
920
921     if (usefile)
922     {
923         if (nkeys < 0)
924         {
925             char fname[1024];
926             nkeys = 0;
927             while (1)
928             {
929                 extract_get_fname_tmp  (zh, fname, nkeys+1);
930                 if (access (fname, R_OK) == -1)
931                         break;
932                 nkeys++;
933             }
934             if (!nkeys)
935                 return ;
936         }
937         kf = (struct key_file **) xmalloc ((1+nkeys) * sizeof(*kf));
938         progressInfo.totalBytes = 0;
939         progressInfo.totalOffset = 0;
940         time (&progressInfo.startTime);
941         time (&progressInfo.lastTime);
942         for (i = 1; i<=nkeys; i++)
943         {
944             kf[i] = key_file_init (i, 8192, zh->res);
945             kf[i]->readHandler = progressFunc;
946             kf[i]->readInfo = &progressInfo;
947             progressInfo.totalBytes += kf[i]->length;
948             progressInfo.totalOffset += kf[i]->buf_size;
949         }
950         hi = key_heap_init (nkeys, key_qsort_compare);
951         hi->reg = zh->reg;
952         
953         for (i = 1; i<=nkeys; i++)
954             if ((r = key_file_read (kf[i], rbuf)))
955                 key_heap_insert (hi, rbuf, r, kf[i]);
956     }  /* use file */
957     else 
958     { /* do not use file, read straight from buffer */
959         hi = key_heap_init_buff (zh,key_qsort_compare);
960         hi->reg = zh->reg;
961     }
962     if (zh->reg->isams)
963         heap_inps (hi);
964     if (zh->reg->isamc)
965         heap_inpc (hi);
966     if (zh->reg->isam)
967         heap_inp (hi);
968     if (zh->reg->isamd)
969         heap_inpd (hi);
970     if (zh->reg->isamb)
971         heap_inpb (hi);
972         
973     if (usefile)
974     {
975         for (i = 1; i<=nkeys; i++)
976         {
977             extract_get_fname_tmp  (zh, rbuf, i);
978             unlink (rbuf);
979         }
980         for (i = 1; i<=nkeys; i++)
981             key_file_destroy (kf[i]);
982         xfree (kf);
983     }
984     if (hi->no_iterations)
985     { /* do not log if nothing happened */
986         logf (LOG_LOG, "Iterations . . .%7d", hi->no_iterations);
987         logf (LOG_LOG, "Distinct words .%7d", hi->no_diffs);
988         logf (LOG_LOG, "Updates. . . . .%7d", hi->no_updates);
989         logf (LOG_LOG, "Deletions. . . .%7d", hi->no_deletions);
990         logf (LOG_LOG, "Insertions . . .%7d", hi->no_insertions);
991     }
992     zh->reg->key_file_no = 0;
993
994     key_heap_destroy (hi, nkeys);
995 }
996
997