1 /* $Id: kinput.c,v 1.72 2006-04-05 02:11:44 adam Exp $
2 Copyright (C) 1995-2005
5 This file is part of the Zebra server.
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
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
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
37 #define KEY_SIZE (1+sizeof(struct it_key))
38 #define INP_NAME_MAX 768
39 #define INP_BUF_START 60000
40 #define INP_BUF_ADD 400000
44 off_t offset; /* file offset */
45 unsigned char *buf; /* buffer block */
46 size_t buf_size; /* number of read bytes in block */
47 size_t chunk; /* number of bytes allocated */
48 size_t buf_ptr; /* current position in buffer */
49 char *prev_name; /* last word read */
51 off_t length; /* length of file */
52 /* handler invoked in each read */
53 void (*readHandler)(struct key_file *keyp, void *rinfo);
59 static void pkey(const char *b, int mode)
61 key_logdump_txt(YLOG_LOG, b, mode ? "i" : "d");
66 void getFnameTmp (Res res, char *fname, int no)
70 pre = res_get_def (res, "keyTmpDir", ".");
71 sprintf (fname, "%s/key%d.tmp", pre, no);
74 void extract_get_fname_tmp (ZebraHandle zh, char *fname, int no)
78 pre = res_get_def (zh->res, "keyTmpDir", ".");
79 sprintf (fname, "%s/key%d.tmp", pre, no);
82 void key_file_chunk_read (struct key_file *f)
84 int nr = 0, r = 0, fd;
86 getFnameTmp (f->res, fname, f->no);
87 fd = open (fname, O_BINARY|O_RDONLY);
93 yaz_log (YLOG_WARN|YLOG_ERRNO, "cannot open %s", fname);
98 if ((f->length = lseek (fd, 0L, SEEK_END)) == (off_t) -1)
100 yaz_log (YLOG_WARN|YLOG_ERRNO, "cannot seek %s", fname);
105 if (lseek (fd, f->offset, SEEK_SET) == -1)
107 yaz_log (YLOG_WARN|YLOG_ERRNO, "cannot seek %s", fname);
111 while (f->chunk - nr > 0)
113 r = read (fd, f->buf + nr, f->chunk - nr);
120 yaz_log (YLOG_WARN|YLOG_ERRNO, "read of %s", fname);
126 (*f->readHandler)(f, f->readInfo);
130 void key_file_destroy (struct key_file *f)
132 iscz1_stop(f->decode_handle);
134 xfree (f->prev_name);
138 struct key_file *key_file_init (int no, int chunk, Res res)
142 f = (struct key_file *) xmalloc (sizeof(*f));
144 f->decode_handle = iscz1_start();
149 f->readHandler = NULL;
150 f->buf = (unsigned char *) xmalloc (f->chunk);
151 f->prev_name = (char *) xmalloc (INP_NAME_MAX);
152 *f->prev_name = '\0';
153 key_file_chunk_read (f);
157 int key_file_getc (struct key_file *f)
159 if (f->buf_ptr < f->buf_size)
160 return f->buf[(f->buf_ptr)++];
161 if (f->buf_size < f->chunk)
163 f->offset += f->buf_size;
164 key_file_chunk_read (f);
165 if (f->buf_ptr < f->buf_size)
166 return f->buf[(f->buf_ptr)++];
171 int key_file_decode (struct key_file *f)
175 c = key_file_getc (f);
182 d = ((c&63) << 8) + (key_file_getc (f) & 0xff);
185 d = ((c&63) << 8) + (key_file_getc (f) & 0xff);
186 d = (d << 8) + (key_file_getc (f) & 0xff);
189 d = ((c&63) << 8) + (key_file_getc (f) & 0xff);
190 d = (d << 8) + (key_file_getc (f) & 0xff);
191 d = (d << 8) + (key_file_getc (f) & 0xff);
197 int key_file_read (struct key_file *f, char *key)
201 const char *src = srcbuf;
205 c = key_file_getc (f);
208 strcpy (key, f->prev_name);
217 while ((key[i++] = key_file_getc (f)))
219 strcpy (f->prev_name, key);
220 iscz1_reset(f->decode_handle);
222 c = key_file_getc(f); /* length + insert/delete combined */
225 for (j = 0; j < c; j++)
226 srcbuf[j] = key_file_getc(f);
228 iscz1_decode(f->decode_handle, &dst, &src);
235 memcpy(&k, key+i, sizeof(k));
237 yaz_log(YLOG_LOG, "00 KEY");
240 return i + sizeof(struct it_key);
245 struct key_file **file;
250 int (*cmp)(const void *p1, const void *p2);
251 struct zebra_register *reg;
253 int raw_reading; /* 1=raw /mem read. 0=file reading */
261 static struct heap_info *key_heap_malloc()
262 { /* malloc and clear it */
263 struct heap_info *hi;
264 hi = (struct heap_info *) xmalloc (sizeof(*hi));
273 hi->no_deletions = 0;
274 hi->no_insertions = 0;
275 hi->no_iterations = 0;
279 struct heap_info *key_heap_init_file(ZebraHandle zh,
281 int (*cmp)(const void *p1, const void *p2))
283 struct heap_info *hi;
286 hi = key_heap_malloc();
288 hi->info.file = (struct key_file **)
289 xmalloc (sizeof(*hi->info.file) * (1+nkeys));
290 hi->info.buf = (char **) xmalloc (sizeof(*hi->info.buf) * (1+nkeys));
291 hi->ptr = (int *) xmalloc (sizeof(*hi->ptr) * (1+nkeys));
293 for (i = 0; i<= nkeys; i++)
296 hi->info.buf[i] = (char *) xmalloc (INP_NAME_MAX);
301 struct heap_info *key_heap_init_raw(ZebraHandle zh,
302 int (*cmp)(const void *p1, const void *p2))
304 struct heap_info *hi=key_heap_malloc();
311 void key_heap_destroy (struct heap_info *hi, int nkeys)
314 yaz_log (YLOG_DEBUG, "key_heap_destroy");
315 yaz_log (YLOG_DEBUG, "key_heap_destroy nk=%d",nkeys);
316 if (!hi->raw_reading)
317 for (i = 0; i<=nkeys; i++)
318 xfree (hi->info.buf[i]);
320 xfree (hi->info.buf);
322 xfree (hi->info.file);
326 static void key_heap_swap (struct heap_info *hi, int i1, int i2)
331 hi->ptr[i1] = hi->ptr[i2];
336 static void key_heap_delete (struct heap_info *hi)
338 int cur = 1, child = 2;
340 assert (hi->heapnum > 0);
342 key_heap_swap (hi, 1, hi->heapnum);
344 while (child <= hi->heapnum) {
345 if (child < hi->heapnum &&
346 (*hi->cmp)(&hi->info.buf[hi->ptr[child]],
347 &hi->info.buf[hi->ptr[child+1]]) > 0)
349 if ((*hi->cmp)(&hi->info.buf[hi->ptr[cur]],
350 &hi->info.buf[hi->ptr[child]]) > 0)
352 key_heap_swap (hi, cur, child);
361 static void key_heap_insert (struct heap_info *hi, const char *buf, int nbytes,
366 cur = ++(hi->heapnum);
367 memcpy (hi->info.buf[hi->ptr[cur]], buf, nbytes);
368 hi->info.file[hi->ptr[cur]] = kf;
371 while (parent && (*hi->cmp)(&hi->info.buf[hi->ptr[parent]],
372 &hi->info.buf[hi->ptr[cur]]) > 0)
374 key_heap_swap (hi, cur, parent);
380 static int heap_read_one_raw(struct heap_info *hi, char *name, char *key)
382 ZebraHandle zh = hi->zh;
383 size_t ptr_i = zh->reg->ptr_i;
388 cp=(zh->reg->key_buf)[zh->reg->ptr_top - ptr_i];
389 yaz_log (YLOG_DEBUG, " raw: i=%ld top=%ld cp=%p", (long) ptr_i,
390 (long) zh->reg->ptr_top, cp);
392 memcpy(key, cp+strlen(name)+1, KEY_SIZE);
397 static int heap_read_one (struct heap_info *hi, char *name, char *key)
400 char rbuf[INP_NAME_MAX];
404 return heap_read_one_raw(hi, name, key);
409 strcpy (name, hi->info.buf[n]);
410 kf = hi->info.file[n];
412 memcpy (key, hi->info.buf[n] + r+1, KEY_SIZE);
413 key_heap_delete (hi);
414 if ((r = key_file_read (kf, rbuf)))
415 key_heap_insert (hi, rbuf, r, kf);
424 /* for debugging only */
425 static void print_dict_item(ZebraHandle zh, const char *s)
427 char dst[IT_MAX_WORD+1];
429 int len = key_SU_decode(&ord, (const unsigned char *) s);
434 yaz_log(YLOG_LOG, "ord=%d", ord);
437 zebraExplain_lookup_ord (zh->reg->zei,
438 ord, &index_type, &db, 0, 0, 0);
440 zebra_term_untrans(zh, index_type, dst, s + len);
442 yaz_log(YLOG_LOG, "ord=%d term=%s", ord, dst);
447 struct heap_cread_info {
448 char prev_name[INP_NAME_MAX];
449 char cur_name[INP_NAME_MAX];
454 struct heap_info *hi;
461 static int heap_cread_item (void *vp, char **dst, int *insertMode);
463 int heap_cread_item2(void *vp, char **dst, int *insertMode)
465 struct heap_cread_info *p = (struct heap_cread_info *) vp;
470 if (p->look_level > 0)
480 memcpy (*dst, p->key_1, p->sz_1);
482 yaz_log(YLOG_LOG, "DUP level=%d", p->look_level);
483 pkey(*dst, *insertMode);
488 if (p->ret == 0) /* lookahead was 0?. Return that in read next round */
493 else if (p->ret == -1) /* Must read new item ? */
495 char *dst_1 = p->key_1;
496 p->ret = heap_cread_item(vp, &dst_1, &p->mode_1);
497 p->sz_1 = dst_1 - p->key_1;
500 { /* lookahead in 2 . Now in 1. */
502 p->mode_1 = p->mode_2;
503 memcpy (p->key_1, p->key_2, p->sz_2);
506 level = 1; /* insert */
508 level = -1; /* delete */
511 char *dst_2 = p->key_2;
512 p->ret = heap_cread_item(vp, &dst_2, &p->mode_2);
520 p->sz_2 = dst_2 - p->key_2;
522 if (key_compare(p->key_1, p->key_2) == 0)
524 if (p->mode_2) /* adjust level according to deletes/inserts */
533 /* all the same. new round .. */
535 p->mode_1 = p->mode_2;
536 memcpy (p->key_1, p->key_2, p->sz_1);
538 level = 1; /* insert */
540 level = -1; /* delete */
543 /* outcome is insert (1) or delete (0) depending on final level */
554 p->look_level = level;
555 memcpy (*dst, p->key_1, p->sz_1);
557 pkey(*dst, *insertMode);
563 int heap_cread_item (void *vp, char **dst, int *insertMode)
565 struct heap_cread_info *p = (struct heap_cread_info *) vp;
566 struct heap_info *hi = p->hi;
568 if (p->first_in_list)
570 *insertMode = p->key[0];
571 memcpy (*dst, p->key+1, sizeof(struct it_key));
573 pkey(*dst, *insertMode);
575 (*dst) += sizeof(struct it_key);
576 p->first_in_list = 0;
579 strcpy (p->prev_name, p->cur_name);
580 if (!(p->more = heap_read_one (hi, p->cur_name, p->key)))
582 if (*p->cur_name && strcmp (p->cur_name, p->prev_name))
584 p->first_in_list = 1;
587 *insertMode = p->key[0];
588 memcpy (*dst, p->key+1, sizeof(struct it_key));
590 pkey(*dst, *insertMode);
592 (*dst) += sizeof(struct it_key);
596 int heap_inpc (struct heap_cread_info *hci, struct heap_info *hi)
598 ISAMC_I *isamc_i = (ISAMC_I *) xmalloc (sizeof(*isamc_i));
600 isamc_i->clientData = hci;
601 isamc_i->read_item = heap_cread_item2;
605 char this_name[INP_NAME_MAX];
606 ISAM_P isamc_p, isamc_p2;
609 strcpy (this_name, hci->cur_name);
610 assert (hci->cur_name[1]);
612 if ((dict_info = dict_lookup (hi->reg->dict, hci->cur_name)))
614 memcpy (&isamc_p, dict_info+1, sizeof(ISAM_P));
616 isamc_merge (hi->reg->isamc, &isamc_p2, isamc_i);
620 if (!dict_delete (hi->reg->dict, this_name))
626 if (isamc_p2 != isamc_p)
627 dict_insert (hi->reg->dict, this_name,
628 sizeof(ISAM_P), &isamc_p2);
634 isamc_merge (hi->reg->isamc, &isamc_p, isamc_i);
637 dict_insert (hi->reg->dict, this_name,
638 sizeof(ISAM_P), &isamc_p);
645 int heap_inp0(struct heap_cread_info *hci, struct heap_info *hi)
649 char this_name[INP_NAME_MAX];
654 strcpy (this_name, hci->cur_name);
655 assert (hci->cur_name[1]);
658 while (heap_cread_item2(hci, &dst, &mode))
665 int heap_inpb(struct heap_cread_info *hci, struct heap_info *hi)
667 ISAMC_I *isamc_i = (ISAMC_I *) xmalloc (sizeof(*isamc_i));
669 isamc_i->clientData = hci;
670 isamc_i->read_item = heap_cread_item2;
674 char this_name[INP_NAME_MAX];
675 ISAM_P isamc_p, isamc_p2;
678 strcpy (this_name, hci->cur_name);
679 assert (hci->cur_name[1]);
684 print_dict_item(hi->zh, hci->cur_name);
686 if ((dict_info = dict_lookup (hi->reg->dict, hci->cur_name)))
688 memcpy (&isamc_p, dict_info+1, sizeof(ISAM_P));
690 isamb_merge (hi->reg->isamb, &isamc_p2, isamc_i);
694 if (!dict_delete (hi->reg->dict, this_name))
700 if (isamc_p2 != isamc_p)
701 dict_insert (hi->reg->dict, this_name,
702 sizeof(ISAM_P), &isamc_p2);
708 isamb_merge (hi->reg->isamb, &isamc_p, isamc_i);
711 dict_insert (hi->reg->dict, this_name,
712 sizeof(ISAM_P), &isamc_p);
719 int heap_inps (struct heap_cread_info *hci, struct heap_info *hi)
721 ISAMS_I isams_i = (ISAMS_I) xmalloc (sizeof(*isams_i));
723 isams_i->clientData = hci;
724 isams_i->read_item = heap_cread_item;
728 char this_name[INP_NAME_MAX];
732 strcpy (this_name, hci->cur_name);
733 assert (hci->cur_name[1]);
735 if (!(dict_info = dict_lookup (hi->reg->dict, hci->cur_name)))
737 isams_p = isams_merge (hi->reg->isams, isams_i);
739 dict_insert (hi->reg->dict, this_name, sizeof(ISAM_P), &isams_p);
743 yaz_log (YLOG_FATAL, "isams doesn't support this kind of update");
751 struct progressInfo {
758 void progressFunc (struct key_file *keyp, void *info)
760 struct progressInfo *p = (struct progressInfo *) info;
761 time_t now, remaining;
763 if (keyp->buf_size <= 0 || p->totalBytes <= 0)
767 if (now >= p->lastTime+10)
770 remaining = (time_t) ((now - p->startTime)*
771 ((double) p->totalBytes/p->totalOffset - 1.0));
772 if (remaining <= 130)
773 yaz_log (YLOG_LOG, "Merge %2.1f%% completed; %ld seconds remaining",
774 (100.0*p->totalOffset) / p->totalBytes, (long) remaining);
776 yaz_log (YLOG_LOG, "Merge %2.1f%% completed; %ld minutes remaining",
777 (100.0*p->totalOffset) / p->totalBytes, (long) remaining/60);
779 p->totalOffset += keyp->buf_size;
786 void zebra_index_merge (ZebraHandle zh)
788 struct key_file **kf = 0;
791 struct heap_info *hi;
792 struct progressInfo progressInfo;
793 int nkeys = zh->reg->key_file_no;
795 yaz_log (YLOG_DEBUG, " index_merge called with nk=%d b=%p",
796 nkeys, zh->reg->key_buf);
797 if ( (nkeys==0) && (zh->reg->key_buf==0) )
798 return; /* nothing to merge - probably flush after end-trans */
800 usefile = (nkeys!=0);
810 extract_get_fname_tmp (zh, fname, nkeys+1);
811 if (access (fname, R_OK) == -1)
818 kf = (struct key_file **) xmalloc ((1+nkeys) * sizeof(*kf));
819 progressInfo.totalBytes = 0;
820 progressInfo.totalOffset = 0;
821 time (&progressInfo.startTime);
822 time (&progressInfo.lastTime);
823 for (i = 1; i<=nkeys; i++)
825 kf[i] = key_file_init (i, 8192, zh->res);
826 kf[i]->readHandler = progressFunc;
827 kf[i]->readInfo = &progressInfo;
828 progressInfo.totalBytes += kf[i]->length;
829 progressInfo.totalOffset += kf[i]->buf_size;
831 hi = key_heap_init_file(zh, nkeys, key_qsort_compare);
834 for (i = 1; i<=nkeys; i++)
835 if ((r = key_file_read (kf[i], rbuf)))
836 key_heap_insert (hi, rbuf, r, kf[i]);
839 { /* do not use file, read straight from buffer */
840 hi = key_heap_init_raw(zh, key_qsort_compare);
846 struct heap_cread_info hci;
848 hci.key = (char *) xmalloc (KEY_SIZE);
849 hci.key_1 = (char *) xmalloc (KEY_SIZE);
850 hci.key_2 = (char *) xmalloc (KEY_SIZE);
852 hci.first_in_list = 1;
855 hci.more = heap_read_one (hi, hci.cur_name, hci.key);
871 for (i = 1; i<=nkeys; i++)
873 extract_get_fname_tmp (zh, rbuf, i);
876 for (i = 1; i<=nkeys; i++)
877 key_file_destroy (kf[i]);
880 if (hi->no_iterations)
881 { /* do not log if nothing happened */
882 yaz_log (YLOG_LOG, "Iterations . . .%7d", hi->no_iterations);
883 yaz_log (YLOG_LOG, "Distinct words .%7d", hi->no_diffs);
884 yaz_log (YLOG_LOG, "Updates. . . . .%7d", hi->no_updates);
885 yaz_log (YLOG_LOG, "Deletions. . . .%7d", hi->no_deletions);
886 yaz_log (YLOG_LOG, "Insertions . . .%7d", hi->no_insertions);
888 zh->reg->key_file_no = 0;
890 key_heap_destroy (hi, nkeys);