Not creating a temporary file when indexing, if there would only
[idzebra-moved-to-github.git] / index / kinput.c
1 /* $Id: kinput.c,v 1.57 2004-01-22 15:40:25 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     cp=(zh->reg->key_buf)[zh->reg->ptr_top - ptr_i];
371     logf (LOG_DEBUG, " raw: i=%d top=%d cp=%p", ptr_i, zh->reg->ptr_top,cp);
372     strcpy(name, cp);
373     memcpy(key, cp+strlen(name)+1, KEY_SIZE);
374     hi->no_iterations++;
375     return 1;
376 }
377
378 static int heap_read_one (struct heap_info *hi, char *name, char *key)
379 {
380     int n, r;
381     char rbuf[INP_NAME_MAX];
382     struct key_file *kf;
383
384     if (hi->zh) /* bypass the heap stuff, we have a readymade buffer */
385         return heap_read_one_raw(hi, name, key);
386
387     if (!hi->heapnum)
388         return 0;
389     n = hi->ptr[1];
390     strcpy (name, hi->info.buf[n]);
391     kf = hi->info.file[n];
392     r = strlen(name);
393     memcpy (key, hi->info.buf[n] + r+1, KEY_SIZE);
394     key_heap_delete (hi);
395     if ((r = key_file_read (kf, rbuf)))
396         key_heap_insert (hi, rbuf, r, kf);
397     hi->no_iterations++;
398     return 1;
399 }
400
401 #define PR_KEY 0
402
403 #if PR_KEY
404 static void pkey(const char *b, int mode)
405 {
406     struct it_key *key = (struct it_key *) b;
407     printf ("%c %d:%d\n", mode + 48, key->sysno, key->seqno);
408 }
409 #endif
410
411 struct heap_cread_info {
412     char prev_name[INP_NAME_MAX];
413     char cur_name[INP_NAME_MAX];
414     char *key;
415     char *key_1, *key_2;
416     int mode_1, mode_2;
417     int sz_1, sz_2;
418     struct heap_info *hi;
419     int first_in_list;
420     int more;
421     int ret;
422 };
423
424 static int heap_cread_item (void *vp, char **dst, int *insertMode);
425
426 int heap_cread_item2 (void *vp, char **dst, int *insertMode)
427 {
428     struct heap_cread_info *p = (struct heap_cread_info *) vp;
429     int level = 0;
430
431     if (p->ret == 0)    /* lookahead was 0?. Return that in read next round */
432     {
433         p->ret = -1;
434         return 0;
435     }
436     else if (p->ret == -1) /* Must read new item ? */
437     {
438         char *dst_1 = p->key_1;
439         p->ret = heap_cread_item(vp, &dst_1, &p->mode_1);
440         p->sz_1 = dst_1 - p->key_1;
441     }
442     else
443     {        /* lookahead in 2 . Now in 1. */
444         p->sz_1 = p->sz_2;
445         p->mode_1 = p->mode_2;
446         memcpy (p->key_1, p->key_2, p->sz_2);
447     }
448     if (p->mode_1)
449         level = 1;     /* insert */
450     else
451         level = -1;    /* delete */
452     while(1)
453     {
454         char *dst_2 = p->key_2;
455         p->ret = heap_cread_item(vp, &dst_2, &p->mode_2);
456         if (!p->ret)
457         {
458             if (level)
459                 break;
460             p->ret = -1;
461             return 0;
462         }
463         p->sz_2 = dst_2 - p->key_2;
464         if (p->sz_1 == p->sz_2 && memcmp(p->key_1, p->key_2, p->sz_1) == 0)
465         {
466             if (p->mode_2) /* adjust level according to deletes/inserts */
467                 level++;
468             else
469                 level--;
470         }
471         else
472         {
473             if (level)
474                 break;
475             /* all the same. new round .. */
476             p->sz_1 = p->sz_2;
477             p->mode_1 = p->mode_2;
478             memcpy (p->key_1, p->key_2, p->sz_1);
479             if (p->mode_1)
480                 level = 1;     /* insert */
481             else
482                 level = -1;    /* delete */
483         }
484     }
485     /* outcome is insert (1) or delete (0) depending on final level */
486     if (level > 0)
487         *insertMode = 1;
488     else
489         *insertMode = 0;
490     memcpy (*dst, p->key_1, p->sz_1);
491 #if PR_KEY
492     printf ("top: ");
493     pkey(*dst, *insertMode); fflush(stdout);
494 #endif
495     (*dst) += p->sz_1;
496     return 1;
497 }
498       
499 int heap_cread_item (void *vp, char **dst, int *insertMode)
500 {
501     struct heap_cread_info *p = (struct heap_cread_info *) vp;
502     struct heap_info *hi = p->hi;
503
504     if (p->first_in_list)
505     {
506         *insertMode = p->key[0];
507         memcpy (*dst, p->key+1, sizeof(struct it_key));
508 #if PR_KEY
509         printf ("sub1: ");
510         pkey(*dst, *insertMode);
511 #endif
512         (*dst) += sizeof(struct it_key);
513         p->first_in_list = 0;
514         return 1;
515     }
516     strcpy (p->prev_name, p->cur_name);
517     if (!(p->more = heap_read_one (hi, p->cur_name, p->key)))
518         return 0;
519     if (*p->cur_name && strcmp (p->cur_name, p->prev_name))
520     {
521         p->first_in_list = 1;
522         return 0;
523     }
524     *insertMode = p->key[0];
525     memcpy (*dst, p->key+1, sizeof(struct it_key));
526 #if PR_KEY
527     printf ("sub2: ");
528     pkey(*dst, *insertMode);
529 #endif
530     (*dst) += sizeof(struct it_key);
531     return 1;
532 }
533
534 int heap_inpc (struct heap_info *hi)
535 {
536     struct heap_cread_info hci;
537     ISAMC_I *isamc_i = (ISAMC_I *) xmalloc (sizeof(*isamc_i));
538
539     hci.key = (char *) xmalloc (KEY_SIZE);
540     hci.key_1 = (char *) xmalloc (KEY_SIZE);
541     hci.key_2 = (char *) xmalloc (KEY_SIZE);
542     hci.ret = -1;
543     hci.first_in_list = 1;
544     hci.hi = hi;
545     hci.more = heap_read_one (hi, hci.cur_name, hci.key);
546
547     isamc_i->clientData = &hci;
548     isamc_i->read_item = heap_cread_item2;
549
550     while (hci.more)
551     {
552         char this_name[INP_NAME_MAX];
553         ISAMC_P isamc_p, isamc_p2;
554         char *dict_info;
555
556         strcpy (this_name, hci.cur_name);
557         assert (hci.cur_name[1]);
558         hi->no_diffs++;
559         if ((dict_info = dict_lookup (hi->reg->dict, hci.cur_name)))
560         {
561             memcpy (&isamc_p, dict_info+1, sizeof(ISAMC_P));
562             isamc_p2 = isc_merge (hi->reg->isamc, isamc_p, isamc_i);
563             if (!isamc_p2)
564             {
565                 hi->no_deletions++;
566                 if (!dict_delete (hi->reg->dict, this_name))
567                     abort();
568             }
569             else 
570             {
571                 hi->no_updates++;
572                 if (isamc_p2 != isamc_p)
573                     dict_insert (hi->reg->dict, this_name,
574                                  sizeof(ISAMC_P), &isamc_p2);
575             }
576         } 
577         else
578         {
579             isamc_p = isc_merge (hi->reg->isamc, 0, isamc_i);
580             hi->no_insertions++;
581             dict_insert (hi->reg->dict, this_name, sizeof(ISAMC_P), &isamc_p);
582         }
583     }
584     xfree (isamc_i);
585     xfree (hci.key);
586     xfree (hci.key_1);
587     xfree (hci.key_2);
588     return 0;
589
590
591 #if 0
592 /* for debugging only */
593 static void print_dict_item (ZebraMaps zm, const char *s)
594 {
595     int reg_type = s[1];
596     char keybuf[IT_MAX_WORD+1];
597     char *to = keybuf;
598     const char *from = s + 2;
599
600     while (*from)
601     {
602         const char *res = zebra_maps_output (zm, reg_type, &from);
603         if (!res)
604             *to++ = *from++;
605         else
606             while (*res)
607                 *to++ = *res++;
608     }
609     *to = '\0';
610     yaz_log (LOG_LOG, "%s", keybuf);
611 }
612 #endif
613
614 int heap_inpb (struct heap_info *hi)
615 {
616     struct heap_cread_info hci;
617     ISAMC_I *isamc_i = (ISAMC_I *) xmalloc (sizeof(*isamc_i));
618
619     hci.key = (char *) xmalloc (KEY_SIZE);
620     hci.key_1 = (char *) xmalloc (KEY_SIZE);
621     hci.key_2 = (char *) xmalloc (KEY_SIZE);
622     hci.ret = -1;
623     hci.first_in_list = 1;
624     hci.hi = hi;
625     hci.more = heap_read_one (hi, hci.cur_name, hci.key);
626
627     isamc_i->clientData = &hci;
628     isamc_i->read_item = heap_cread_item2;
629
630     while (hci.more)
631     {
632         char this_name[INP_NAME_MAX];
633         ISAMC_P isamc_p, isamc_p2;
634         char *dict_info;
635
636         strcpy (this_name, hci.cur_name);
637         assert (hci.cur_name[1]);
638         hi->no_diffs++;
639
640 #if 0
641         print_dict_item (hi->reg->zebra_maps, hci.cur_name);
642 #endif
643         if ((dict_info = dict_lookup (hi->reg->dict, hci.cur_name)))
644         {
645             memcpy (&isamc_p, dict_info+1, sizeof(ISAMC_P));
646             isamc_p2 = isamb_merge (hi->reg->isamb, isamc_p, isamc_i);
647             if (!isamc_p2)
648             {
649                 hi->no_deletions++;
650                 if (!dict_delete (hi->reg->dict, this_name))
651                     abort();
652             }
653             else 
654             {
655                 hi->no_updates++;
656                 if (isamc_p2 != isamc_p)
657                     dict_insert (hi->reg->dict, this_name,
658                                  sizeof(ISAMC_P), &isamc_p2);
659             }
660         } 
661         else
662         {
663             isamc_p = isamb_merge (hi->reg->isamb, 0, isamc_i);
664             hi->no_insertions++;
665             dict_insert (hi->reg->dict, this_name, sizeof(ISAMC_P), &isamc_p);
666         }
667     }
668     xfree (isamc_i);
669     xfree (hci.key);
670     xfree (hci.key_1);
671     xfree (hci.key_2);
672     return 0;
673
674
675 int heap_inpd (struct heap_info *hi)
676 {
677     struct heap_cread_info hci;
678     ISAMD_I isamd_i = (ISAMD_I) xmalloc (sizeof(*isamd_i));
679
680     hci.key = (char *) xmalloc (KEY_SIZE);
681     hci.key_1 = (char *) xmalloc (KEY_SIZE);
682     hci.key_2 = (char *) xmalloc (KEY_SIZE);
683     hci.ret = -1;
684     hci.first_in_list = 1;
685     hci.hi = hi;
686     hci.more = heap_read_one (hi, hci.cur_name, hci.key);
687
688     isamd_i->clientData = &hci;
689     isamd_i->read_item = heap_cread_item;
690
691     while (hci.more)
692     {
693         char this_name[INP_NAME_MAX];
694         char *dict_info;
695         char dictentry[ISAMD_MAX_DICT_LEN+1];
696         char dictlen;
697
698         strcpy (this_name, hci.cur_name);
699         
700         /* print_dict_item (hi->reg->zebra_maps, hci.cur_name); */
701         /*!*/ /* FIXME: depend on isamd-debug */
702
703         assert (hci.cur_name[1]);
704         hi->no_diffs++;
705         if ((dict_info = dict_lookup (hi->reg->dict, hci.cur_name)))
706         {
707             dictlen=dict_info[0];
708             memcpy (dictentry, dict_info+1, dictlen );
709 #ifdef SKIPTHIS
710             logf(LOG_LOG,"dictentry before. len=%d: %d %d %d %d %d %d %d %d %d",
711                dictlen,dictentry[0], dictentry[1], dictentry[2],
712                        dictentry[3], dictentry[4], dictentry[5],
713                        dictentry[6], dictentry[7], dictentry[8]); /*!*/
714 #endif
715             dictlen= isamd_append(hi->reg->isamd, dictentry, dictlen, isamd_i);
716              /* logf dictentry after */
717             if (dictlen)
718             {
719                 hi->no_updates++;
720                 if ( (dictlen!=dict_info[0]) ||
721                      (0!=memcmp(dictentry, dict_info+1, dictlen)) )
722                 {
723                     dict_insert(hi->reg->dict, this_name,
724                                 dictlen,dictentry);
725                 }
726             }
727             else
728             {
729                 hi->no_deletions++;
730                 if (!dict_delete (hi->reg->dict, this_name)) 
731                 {
732                     logf (LOG_FATAL, "dict_delete failed");
733                     abort();
734                 }
735             }
736         } 
737         else
738         {
739             dictlen=0;
740             memset (dictentry, '\0', ISAMD_MAX_DICT_LEN);
741             dictlen= isamd_append(hi->reg->isamd, dictentry, dictlen, isamd_i);
742              /* logf dictentry first */
743             hi->no_insertions++;
744             if (dictlen)
745                 dict_insert(hi->reg->dict, this_name,
746                                 dictlen,dictentry);
747         }
748     }
749     xfree (isamd_i);
750     xfree (hci.key);
751     xfree (hci.key_1);
752     xfree (hci.key_2);
753     return 0;
754
755
756 int heap_inp (struct heap_info *hi)
757 {
758     char *info;
759     char next_name[INP_NAME_MAX];
760     char cur_name[INP_NAME_MAX];
761     int key_buf_size = INP_BUF_START;
762     int key_buf_ptr;
763     char *next_key;
764     char *key_buf;
765     int more;
766     
767     next_key = (char *) xmalloc (KEY_SIZE);
768     key_buf = (char *) xmalloc (key_buf_size);
769     more = heap_read_one (hi, cur_name, key_buf);
770     while (more)                   /* EOF ? */
771     {
772         int nmemb;
773         key_buf_ptr = KEY_SIZE;
774         while (1)
775         {
776             if (!(more = heap_read_one (hi, next_name, next_key)))
777                 break;
778             if (*next_name && strcmp (next_name, cur_name))
779                 break;
780             memcpy (key_buf + key_buf_ptr, next_key, KEY_SIZE);
781             key_buf_ptr += KEY_SIZE;
782             if (key_buf_ptr+(int) KEY_SIZE >= key_buf_size)
783             {
784                 char *new_key_buf;
785                 new_key_buf = (char *) xmalloc (key_buf_size + INP_BUF_ADD);
786                 memcpy (new_key_buf, key_buf, key_buf_size);
787                 key_buf_size += INP_BUF_ADD;
788                 xfree (key_buf);
789                 key_buf = new_key_buf;
790             }
791         }
792         hi->no_diffs++;
793         nmemb = key_buf_ptr / KEY_SIZE;
794         assert (nmemb * (int) KEY_SIZE == key_buf_ptr);
795         if ((info = dict_lookup (hi->reg->dict, cur_name)))
796         {
797             ISAM_P isam_p, isam_p2;
798             memcpy (&isam_p, info+1, sizeof(ISAM_P));
799             isam_p2 = is_merge (hi->reg->isam, isam_p, nmemb, key_buf);
800             if (!isam_p2)
801             {
802                 hi->no_deletions++;
803                 if (!dict_delete (hi->reg->dict, cur_name))
804                     abort ();
805             }
806             else 
807             {
808                 hi->no_updates++;
809                 if (isam_p2 != isam_p)
810                     dict_insert (hi->reg->dict, cur_name,
811                                  sizeof(ISAM_P), &isam_p2);
812             }
813         }
814         else
815         {
816             ISAM_P isam_p;
817             hi->no_insertions++;
818             isam_p = is_merge (hi->reg->isam, 0, nmemb, key_buf);
819             dict_insert (hi->reg->dict, cur_name, sizeof(ISAM_P), &isam_p);
820         }
821         memcpy (key_buf, next_key, KEY_SIZE);
822         strcpy (cur_name, next_name);
823     }
824     return 0;
825 }
826
827 int heap_inps (struct heap_info *hi)
828 {
829     struct heap_cread_info hci;
830     ISAMS_I isams_i = (ISAMS_I) xmalloc (sizeof(*isams_i));
831
832     hci.key = (char *) xmalloc (KEY_SIZE);
833     hci.key_1 = (char *) xmalloc (KEY_SIZE);
834     hci.key_2 = (char *) xmalloc (KEY_SIZE);
835     hci.first_in_list = 1;
836     hci.ret = -1;
837     hci.hi = hi;
838     hci.more = heap_read_one (hi, hci.cur_name, hci.key);
839
840     isams_i->clientData = &hci;
841     isams_i->read_item = heap_cread_item;
842
843     while (hci.more)
844     {
845         char this_name[INP_NAME_MAX];
846         ISAMS_P isams_p;
847         char *dict_info;
848
849         strcpy (this_name, hci.cur_name);
850         assert (hci.cur_name[1]);
851         hi->no_diffs++;
852         if (!(dict_info = dict_lookup (hi->reg->dict, hci.cur_name)))
853         {
854             isams_p = isams_merge (hi->reg->isams, isams_i);
855             hi->no_insertions++;
856             dict_insert (hi->reg->dict, this_name, sizeof(ISAMS_P), &isams_p);
857         }
858         else
859         {
860             logf (LOG_FATAL, "isams doesn't support this kind of update");
861             break;
862         }
863     }
864     xfree (isams_i);
865     return 0;
866
867
868 struct progressInfo {
869     time_t   startTime;
870     time_t   lastTime;
871     off_t    totalBytes;
872     off_t    totalOffset;
873 };
874
875 void progressFunc (struct key_file *keyp, void *info)
876 {
877     struct progressInfo *p = (struct progressInfo *) info;
878     time_t now, remaining;
879
880     if (keyp->buf_size <= 0 || p->totalBytes <= 0)
881         return ;
882     time (&now);
883
884     if (now >= p->lastTime+10)
885     {
886         p->lastTime = now;
887         remaining = (time_t) ((now - p->startTime)*
888             ((double) p->totalBytes/p->totalOffset - 1.0));
889         if (remaining <= 130)
890             logf (LOG_LOG, "Merge %2.1f%% completed; %ld seconds remaining",
891                  (100.0*p->totalOffset) / p->totalBytes, (long) remaining);
892         else
893             logf (LOG_LOG, "Merge %2.1f%% completed; %ld minutes remaining",
894                  (100.0*p->totalOffset) / p->totalBytes, (long) remaining/60);
895     }
896     p->totalOffset += keyp->buf_size;
897 }
898
899 #ifndef R_OK
900 #define R_OK 4
901 #endif
902
903 void zebra_index_merge (ZebraHandle zh)
904 {
905     struct key_file **kf;
906     char rbuf[1024];
907     int i, r;
908     struct heap_info *hi;
909     struct progressInfo progressInfo;
910     int nkeys = zh->reg->key_file_no;
911     int usefile; 
912     
913     logf (LOG_DEBUG, " index_merge called with nk=%d b=%p", 
914                     nkeys, zh->reg->key_buf);
915     if ( (nkeys==0) && (zh->reg->key_buf==0) )
916         return; /* nothing to merge - probably flush after end-trans */
917     
918     usefile = (nkeys!=0); 
919
920     if (usefile)
921     {
922         if (nkeys < 0)
923         {
924             char fname[1024];
925             nkeys = 0;
926             while (1)
927             {
928                 extract_get_fname_tmp  (zh, fname, nkeys+1);
929                 if (access (fname, R_OK) == -1)
930                         break;
931                 nkeys++;
932             }
933             if (!nkeys)
934                 return ;
935         }
936         kf = (struct key_file **) xmalloc ((1+nkeys) * sizeof(*kf));
937         progressInfo.totalBytes = 0;
938         progressInfo.totalOffset = 0;
939         time (&progressInfo.startTime);
940         time (&progressInfo.lastTime);
941         for (i = 1; i<=nkeys; i++)
942         {
943             kf[i] = key_file_init (i, 8192, zh->res);
944             kf[i]->readHandler = progressFunc;
945             kf[i]->readInfo = &progressInfo;
946             progressInfo.totalBytes += kf[i]->length;
947             progressInfo.totalOffset += kf[i]->buf_size;
948         }
949         hi = key_heap_init (nkeys, key_qsort_compare);
950         hi->reg = zh->reg;
951         
952         for (i = 1; i<=nkeys; i++)
953             if ((r = key_file_read (kf[i], rbuf)))
954                 key_heap_insert (hi, rbuf, r, kf[i]);
955     }  /* use file */
956     else 
957     { /* do not use file, read straight from buffer */
958         hi = key_heap_init_buff (zh,key_qsort_compare);
959         hi->reg = zh->reg;
960     }
961     if (zh->reg->isams)
962         heap_inps (hi);
963     if (zh->reg->isamc)
964         heap_inpc (hi);
965     if (zh->reg->isam)
966         heap_inp (hi);
967     if (zh->reg->isamd)
968         heap_inpd (hi);
969     if (zh->reg->isamb)
970         heap_inpb (hi);
971         
972     if (usefile)
973     {
974         for (i = 1; i<=nkeys; i++)
975         {
976             extract_get_fname_tmp  (zh, rbuf, i);
977             unlink (rbuf);
978         }
979         for (i = 1; i<=nkeys; i++)
980             key_file_destroy (kf[i]);
981         xfree (kf);
982     }
983     if (hi->no_iterations)
984     { /* do not log if nothing happened */
985         logf (LOG_LOG, "Iterations . . .%7d", hi->no_iterations);
986         logf (LOG_LOG, "Distinct words .%7d", hi->no_diffs);
987         logf (LOG_LOG, "Updates. . . . .%7d", hi->no_updates);
988         logf (LOG_LOG, "Deletions. . . .%7d", hi->no_deletions);
989         logf (LOG_LOG, "Insertions . . .%7d", hi->no_insertions);
990     }
991     zh->reg->key_file_no = 0;
992
993     key_heap_destroy (hi, nkeys);
994 }
995
996