c5605914fc382be0a5333aa21f69494b96587210
[idzebra-moved-to-github.git] / index / kinput.c
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: kinput.c,v $
7  * Revision 1.33  1999-05-15 14:36:38  adam
8  * Updated dictionary. Implemented "compression" of dictionary.
9  *
10  * Revision 1.32  1999/05/12 13:08:06  adam
11  * First version of ISAMS.
12  *
13  * Revision 1.31  1999/02/02 14:50:56  adam
14  * Updated WIN32 code specific sections. Changed header.
15  *
16  * Revision 1.30  1998/10/28 10:53:57  adam
17  * Added type cast to prevent warning.
18  *
19  * Revision 1.29  1998/06/11 15:41:39  adam
20  * Minor changes.
21  *
22  * Revision 1.28  1998/03/05 08:45:12  adam
23  * New result set model and modular ranking system. Moved towards
24  * descent server API. System information stored as "SGML" records.
25  *
26  * Revision 1.27  1998/02/17 10:32:52  adam
27  * Fixed bug: binary files weren't opened with flag b on NT.
28  *
29  * Revision 1.26  1998/01/29 13:39:13  adam
30  * Compress ISAM is default.
31  *
32  * Revision 1.25  1997/09/17 12:19:14  adam
33  * Zebra version corresponds to YAZ version 1.4.
34  * Changed Zebra server so that it doesn't depend on global common_resource.
35  *
36  * Revision 1.24  1997/09/09 13:38:07  adam
37  * Partial port to WIN95/NT.
38  *
39  * Revision 1.23  1997/09/04 13:57:39  adam
40  * Added O_BINARY for open calls.
41  *
42  * Revision 1.22  1997/02/12 20:39:45  adam
43  * Implemented options -f <n> that limits the log to the first <n>
44  * records.
45  * Changed some log messages also.
46  *
47  * Revision 1.21  1996/11/08 11:10:23  adam
48  * Buffers used during file match got bigger.
49  * Compressed ISAM support everywhere.
50  * Bug fixes regarding masking characters in queries.
51  * Redesigned Regexp-2 queries.
52  *
53  * Revision 1.20  1996/11/01 08:58:41  adam
54  * Interface to isamc system now includes update and delete.
55  *
56  * Revision 1.19  1996/10/29 14:09:46  adam
57  * Use of cisam system - enabled if setting isamc is 1.
58  *
59  * Revision 1.18  1996/06/04 10:18:59  adam
60  * Minor changes - removed include of ctype.h.
61  *
62  * Revision 1.17  1996/05/14  15:47:07  adam
63  * Cleanup of various buffer size entities.
64  *
65  * Revision 1.16  1996/04/09  10:05:20  adam
66  * Bug fix: prev_name buffer possibly too small; allocated in key_file_init.
67  *
68  * Revision 1.15  1996/03/21  14:50:09  adam
69  * File update uses modify-time instead of change-time.
70  *
71  * Revision 1.14  1996/02/07  14:06:37  adam
72  * Better progress report during register merge.
73  * New command: clean - removes temporary shadow files.
74  *
75  * Revision 1.13  1996/02/05  12:30:00  adam
76  * Logging reduced a bit.
77  * The remaining running time is estimated during register merge.
78  *
79  * Revision 1.12  1995/12/06  17:49:19  adam
80  * Uses dict_delete now.
81  *
82  * Revision 1.11  1995/12/06  16:06:43  adam
83  * Better diagnostics. Work on 'real' dictionary deletion.
84  *
85  * Revision 1.10  1995/12/06  12:41:22  adam
86  * New command 'stat' for the index program.
87  * Filenames can be read from stdin by specifying '-'.
88  * Bug fix/enhancement of the transformation from terms to regular
89  * expressons in the search engine.
90  *
91  * Revision 1.9  1995/10/10  12:24:39  adam
92  * Temporary sort files are compressed.
93  *
94  * Revision 1.8  1995/10/04  16:57:19  adam
95  * Key input and merge sort in one pass.
96  *
97  * Revision 1.7  1995/10/02  15:18:52  adam
98  * New member in recRetrieveCtrl: diagnostic.
99  *
100  * Revision 1.6  1995/09/29  15:51:56  adam
101  * First work on multi-way read.
102  *
103  * Revision 1.5  1995/09/29  14:01:43  adam
104  * Bug fixes.
105  *
106  * Revision 1.4  1995/09/28  14:22:57  adam
107  * Sort uses smaller temporary files.
108  *
109  * Revision 1.3  1995/09/06  16:11:17  adam
110  * Option: only one word key per file.
111  *
112  * Revision 1.2  1995/09/04  12:33:42  adam
113  * Various cleanup. YAZ util used instead.
114  *
115  * Revision 1.1  1995/09/04  09:10:37  adam
116  * More work on index add/del/update.
117  * Merge sort implemented.
118  * Initial work on z39 server.
119  *
120  */
121
122 #include <fcntl.h>
123 #ifdef WIN32
124 #include <io.h>
125 #else
126 #include <unistd.h>
127 #endif
128 #include <stdlib.h>
129 #include <string.h>
130 #include <stdio.h>
131 #include <assert.h>
132
133 #include "index.h"
134
135 #define KEY_SIZE (1+sizeof(struct it_key))
136 #define INP_NAME_MAX 768
137 #define INP_BUF_START 60000
138 #define INP_BUF_ADD  400000
139
140 static int no_diffs   = 0;
141 static int no_updates = 0;
142 static int no_deletions = 0;
143 static int no_insertions = 0;
144 static int no_iterations = 0;
145
146 struct key_file {
147     int   no;            /* file no */
148     off_t offset;        /* file offset */
149     unsigned char *buf;  /* buffer block */
150     size_t buf_size;     /* number of read bytes in block */
151     size_t chunk;        /* number of bytes allocated */
152     size_t buf_ptr;      /* current position in buffer */
153     char *prev_name;     /* last word read */
154     int   sysno;         /* last sysno */
155     int   seqno;         /* last seqno */
156     off_t length;        /* length of file */
157                          /* handler invoked in each read */
158     void (*readHandler)(struct key_file *keyp, void *rinfo);
159     void *readInfo;
160 };
161
162 void getFnameTmp (char *fname, int no)
163 {
164     const char *pre;
165     
166     pre = res_get_def (common_resource, "keyTmpDir", ".");
167     sprintf (fname, "%s/key%d.tmp", pre, no);
168 }
169
170 void key_file_chunk_read (struct key_file *f)
171 {
172     int nr = 0, r = 0, fd;
173     char fname[1024];
174     getFnameTmp (fname, f->no);
175     fd = open (fname, O_BINARY|O_RDONLY);
176     if (fd == -1)
177     {
178         logf (LOG_FATAL|LOG_ERRNO, "cannot open %s", fname);
179         exit (1);
180     }
181     if (!f->length)
182     {
183         if ((f->length = lseek (fd, 0L, SEEK_END)) == (off_t) -1)
184         {
185             logf (LOG_FATAL|LOG_ERRNO, "cannot seek %s", fname);
186             exit (1);
187         }
188     }
189     if (lseek (fd, f->offset, SEEK_SET) == -1)
190     {
191         logf (LOG_FATAL|LOG_ERRNO, "cannot seek %s", fname);
192         exit (1);
193     }
194     while (f->chunk - nr > 0)
195     {
196         r = read (fd, f->buf + nr, f->chunk - nr);
197         if (r <= 0)
198             break;
199         nr += r;
200     }
201     if (r == -1)
202     {
203         logf (LOG_FATAL|LOG_ERRNO, "read of %s", fname);
204         exit (1);
205     }
206     f->buf_size = nr;
207     f->buf_ptr = 0;
208     if (f->readHandler)
209         (*f->readHandler)(f, f->readInfo);
210     close (fd);
211 }
212
213 struct key_file *key_file_init (int no, int chunk)
214 {
215     struct key_file *f;
216
217     f = xmalloc (sizeof(*f));
218     f->sysno = 0;
219     f->seqno = 0;
220     f->no = no;
221     f->chunk = chunk;
222     f->offset = 0;
223     f->length = 0;
224     f->readHandler = NULL;
225     f->buf = xmalloc (f->chunk);
226     f->prev_name = xmalloc (INP_NAME_MAX);
227     *f->prev_name = '\0';
228     key_file_chunk_read (f);
229     return f;
230 }
231
232 int key_file_getc (struct key_file *f)
233 {
234     if (f->buf_ptr < f->buf_size)
235         return f->buf[(f->buf_ptr)++];
236     if (f->buf_size < f->chunk)
237         return EOF;
238     f->offset += f->buf_size;
239     key_file_chunk_read (f);
240     if (f->buf_ptr < f->buf_size)
241         return f->buf[(f->buf_ptr)++];
242     else
243         return EOF;
244 }
245
246 int key_file_decode (struct key_file *f)
247 {
248     int c, d;
249
250     c = key_file_getc (f);
251     switch (c & 192) 
252     {
253     case 0:
254         d = c;
255         break;
256     case 64:
257         d = ((c&63) << 8) + (key_file_getc (f) & 0xff);
258         break;
259     case 128:
260         d = ((c&63) << 8) + (key_file_getc (f) & 0xff);
261         d = (d << 8) + (key_file_getc (f) & 0xff);
262         break;
263     case 192:
264         d = ((c&63) << 8) + (key_file_getc (f) & 0xff);
265         d = (d << 8) + (key_file_getc (f) & 0xff);
266         d = (d << 8) + (key_file_getc (f) & 0xff);
267         break;
268     }
269     return d;
270 }
271
272 int key_file_read (struct key_file *f, char *key)
273 {
274     int i, d, c;
275     struct it_key itkey;
276
277     c = key_file_getc (f);
278     if (c == 0)
279     {
280         strcpy (key, f->prev_name);
281         i = 1+strlen (key);
282     }
283     else if (c == EOF)
284         return 0;
285     else
286     {
287         i = 0;
288         key[i++] = c;
289         while ((key[i++] = key_file_getc (f)))
290             ;
291         strcpy (f->prev_name, key);
292         f->sysno = 0;
293     }
294     d = key_file_decode (f);
295     key[i++] = d & 1;
296     d = d >> 1;
297     itkey.sysno = d + f->sysno;
298     if (d) 
299     {
300         f->sysno = itkey.sysno;
301         f->seqno = 0;
302     }
303     d = key_file_decode (f);
304     itkey.seqno = d + f->seqno;
305     f->seqno = itkey.seqno;
306     memcpy (key + i, &itkey, sizeof(struct it_key));
307     return i + sizeof (struct it_key);
308 }
309
310 struct heap_info {
311     struct {
312         struct key_file **file;
313         char   **buf;
314     } info;
315     int    heapnum;
316     int    *ptr;
317     int    (*cmp)(const void *p1, const void *p2);
318     Dict dict;
319     ISAM isam;
320     ISAMC isamc;
321     ISAMS isams;
322 };
323
324 struct heap_info *key_heap_init (int nkeys,
325                                  int (*cmp)(const void *p1, const void *p2))
326 {
327     struct heap_info *hi;
328     int i;
329
330     hi = xmalloc (sizeof(*hi));
331     hi->info.file = xmalloc (sizeof(*hi->info.file) * (1+nkeys));
332     hi->info.buf = xmalloc (sizeof(*hi->info.buf) * (1+nkeys));
333     hi->heapnum = 0;
334     hi->ptr = xmalloc (sizeof(*hi->ptr) * (1+nkeys));
335     hi->cmp = cmp;
336     for (i = 0; i<= nkeys; i++)
337     {
338         hi->ptr[i] = i;
339         hi->info.buf[i] = xmalloc (INP_NAME_MAX);
340     }
341     return hi;
342 }
343
344 static void key_heap_swap (struct heap_info *hi, int i1, int i2)
345 {
346     int swap;
347
348     swap = hi->ptr[i1];
349     hi->ptr[i1] = hi->ptr[i2];
350     hi->ptr[i2] = swap;
351 }
352
353
354 static void key_heap_delete (struct heap_info *hi)
355 {
356     int cur = 1, child = 2;
357
358     assert (hi->heapnum > 0);
359
360     key_heap_swap (hi, 1, hi->heapnum);
361     hi->heapnum--;
362     while (child <= hi->heapnum) {
363         if (child < hi->heapnum &&
364             (*hi->cmp)(&hi->info.buf[hi->ptr[child]],
365                        &hi->info.buf[hi->ptr[child+1]]) > 0)
366             child++;
367         if ((*hi->cmp)(&hi->info.buf[hi->ptr[cur]],
368                        &hi->info.buf[hi->ptr[child]]) > 0)
369         {            
370             key_heap_swap (hi, cur, child);
371             cur = child;
372             child = 2*cur;
373         }
374         else
375             break;
376     }
377 }
378
379 static void key_heap_insert (struct heap_info *hi, const char *buf, int nbytes,
380                              struct key_file *kf)
381 {
382     int cur, parent;
383
384     cur = ++(hi->heapnum);
385     memcpy (hi->info.buf[hi->ptr[cur]], buf, nbytes);
386     hi->info.file[hi->ptr[cur]] = kf;
387
388     parent = cur/2;
389     while (parent && (*hi->cmp)(&hi->info.buf[hi->ptr[parent]],
390                                 &hi->info.buf[hi->ptr[cur]]) > 0)
391     {
392         key_heap_swap (hi, cur, parent);
393         cur = parent;
394         parent = cur/2;
395     }
396 }
397
398 static int heap_read_one (struct heap_info *hi, char *name, char *key)
399 {
400     int n, r;
401     char rbuf[INP_NAME_MAX];
402     struct key_file *kf;
403
404     if (!hi->heapnum)
405         return 0;
406     n = hi->ptr[1];
407     strcpy (name, hi->info.buf[n]);
408     kf = hi->info.file[n];
409     r = strlen(name);
410     memcpy (key, hi->info.buf[n] + r+1, KEY_SIZE);
411     key_heap_delete (hi);
412     if ((r = key_file_read (kf, rbuf)))
413         key_heap_insert (hi, rbuf, r, kf);
414     no_iterations++;
415     return 1;
416 }
417
418 struct heap_cread_info {
419     char prev_name[INP_NAME_MAX];
420     char cur_name[INP_NAME_MAX];
421     char *key;
422     struct heap_info *hi;
423     int mode;
424     int more;
425 };
426       
427 int heap_cread_item (void *vp, char **dst, int *insertMode)
428 {
429     struct heap_cread_info *p = vp;
430     struct heap_info *hi = p->hi;
431
432     if (p->mode == 1)
433     {
434         *insertMode = p->key[0];
435         memcpy (*dst, p->key+1, sizeof(struct it_key));
436         (*dst) += sizeof(struct it_key);
437         p->mode = 2;
438         return 1;
439     }
440     strcpy (p->prev_name, p->cur_name);
441     if (!(p->more = heap_read_one (hi, p->cur_name, p->key)))
442         return 0;
443     if (*p->cur_name && strcmp (p->cur_name, p->prev_name))
444     {
445         p->mode = 1;
446         return 0;
447     }
448     *insertMode = p->key[0];
449     memcpy (*dst, p->key+1, sizeof(struct it_key));
450     (*dst) += sizeof(struct it_key);
451     return 1;
452 }
453
454 int heap_inpc (struct heap_info *hi)
455 {
456     struct heap_cread_info hci;
457     ISAMC_I isamc_i = xmalloc (sizeof(*isamc_i));
458
459     hci.key = xmalloc (KEY_SIZE);
460     hci.mode = 1;
461     hci.hi = hi;
462     hci.more = heap_read_one (hi, hci.cur_name, hci.key);
463
464     isamc_i->clientData = &hci;
465     isamc_i->read_item = heap_cread_item;
466
467     while (hci.more)
468     {
469         char this_name[INP_NAME_MAX];
470         ISAMC_P isamc_p, isamc_p2;
471         char *dict_info;
472
473         strcpy (this_name, hci.cur_name);
474         assert (hci.cur_name[1]);
475         no_diffs++;
476         if ((dict_info = dict_lookup (hi->dict, hci.cur_name)))
477         {
478             memcpy (&isamc_p, dict_info+1, sizeof(ISAMC_P));
479             isamc_p2 = isc_merge (hi->isamc, isamc_p, isamc_i);
480             if (!isamc_p2)
481             {
482                 no_deletions++;
483                 if (!dict_delete (hi->dict, this_name))
484                     abort();
485             }
486             else 
487             {
488                 no_updates++;
489                 if (isamc_p2 != isamc_p)
490                     dict_insert (hi->dict, this_name,
491                                  sizeof(ISAMC_P), &isamc_p2);
492             }
493         } 
494         else
495         {
496             isamc_p = isc_merge (hi->isamc, 0, isamc_i);
497             no_insertions++;
498             dict_insert (hi->dict, this_name, sizeof(ISAMC_P), &isamc_p);
499         }
500     }
501     xfree (isamc_i);
502     return 0;
503
504
505 int heap_inps (struct heap_info *hi)
506 {
507     struct heap_cread_info hci;
508     ISAMS_I isams_i = xmalloc (sizeof(*isams_i));
509
510     hci.key = xmalloc (KEY_SIZE);
511     hci.mode = 1;
512     hci.hi = hi;
513     hci.more = heap_read_one (hi, hci.cur_name, hci.key);
514
515     isams_i->clientData = &hci;
516     isams_i->read_item = heap_cread_item;
517
518     while (hci.more)
519     {
520         char this_name[INP_NAME_MAX];
521         ISAMS_P isams_p;
522         char *dict_info;
523
524         strcpy (this_name, hci.cur_name);
525         assert (hci.cur_name[1]);
526         no_diffs++;
527         if (!(dict_info = dict_lookup (hi->dict, hci.cur_name)))
528         {
529             isams_p = isams_merge (hi->isams, isams_i);
530             no_insertions++;
531             dict_insert (hi->dict, this_name, sizeof(ISAMS_P), &isams_p);
532         }
533         else
534             abort();
535     }
536     xfree (isams_i);
537     return 0;
538
539
540
541 int heap_inp (struct heap_info *hi)
542 {
543     char *info;
544     char next_name[INP_NAME_MAX];
545     char cur_name[INP_NAME_MAX];
546     int key_buf_size = INP_BUF_START;
547     int key_buf_ptr;
548     char *next_key;
549     char *key_buf;
550     int more;
551     
552     next_key = xmalloc (KEY_SIZE);
553     key_buf = xmalloc (key_buf_size);
554     more = heap_read_one (hi, cur_name, key_buf);
555     while (more)                   /* EOF ? */
556     {
557         int nmemb;
558         key_buf_ptr = KEY_SIZE;
559         while (1)
560         {
561             if (!(more = heap_read_one (hi, next_name, next_key)))
562                 break;
563             if (*next_name && strcmp (next_name, cur_name))
564                 break;
565             memcpy (key_buf + key_buf_ptr, next_key, KEY_SIZE);
566             key_buf_ptr += KEY_SIZE;
567             if (key_buf_ptr+(int) KEY_SIZE >= key_buf_size)
568             {
569                 char *new_key_buf;
570                 new_key_buf = xmalloc (key_buf_size + INP_BUF_ADD);
571                 memcpy (new_key_buf, key_buf, key_buf_size);
572                 key_buf_size += INP_BUF_ADD;
573                 xfree (key_buf);
574                 key_buf = new_key_buf;
575             }
576         }
577         no_diffs++;
578         nmemb = key_buf_ptr / KEY_SIZE;
579         assert (nmemb * (int) KEY_SIZE == key_buf_ptr);
580         if ((info = dict_lookup (hi->dict, cur_name)))
581         {
582             ISAM_P isam_p, isam_p2;
583             memcpy (&isam_p, info+1, sizeof(ISAM_P));
584             isam_p2 = is_merge (hi->isam, isam_p, nmemb, key_buf);
585             if (!isam_p2)
586             {
587                 no_deletions++;
588                 if (!dict_delete (hi->dict, cur_name))
589                     abort ();
590             }
591             else 
592             {
593                 no_updates++;
594                 if (isam_p2 != isam_p)
595                     dict_insert (hi->dict, cur_name, sizeof(ISAM_P), &isam_p2);
596             }
597         }
598         else
599         {
600             ISAM_P isam_p;
601             no_insertions++;
602             isam_p = is_merge (hi->isam, 0, nmemb, key_buf);
603             dict_insert (hi->dict, cur_name, sizeof(ISAM_P), &isam_p);
604         }
605         memcpy (key_buf, next_key, KEY_SIZE);
606         strcpy (cur_name, next_name);
607     }
608     return 0;
609 }
610
611 struct progressInfo {
612     time_t   startTime;
613     time_t   lastTime;
614     off_t    totalBytes;
615     off_t    totalOffset;
616 };
617
618 void progressFunc (struct key_file *keyp, void *info)
619 {
620     struct progressInfo *p = info;
621     time_t now, remaining;
622
623     if (keyp->buf_size <= 0 || p->totalBytes <= 0)
624         return ;
625     time (&now);
626
627     if (now >= p->lastTime+10)
628     {
629         p->lastTime = now;
630         remaining = (time_t) ((now - p->startTime)*
631             ((double) p->totalBytes/p->totalOffset - 1.0));
632         if (remaining <= 130)
633             logf (LOG_LOG, "Merge %2.1f%% completed; %ld seconds remaining",
634                  (100.0*p->totalOffset) / p->totalBytes, (long) remaining);
635         else
636             logf (LOG_LOG, "Merge %2.1f%% completed; %ld minutes remaining",
637                  (100.0*p->totalOffset) / p->totalBytes, (long) remaining/60);
638     }
639     p->totalOffset += keyp->buf_size;
640 }
641
642 #ifndef R_OK
643 #define R_OK 4
644 #endif
645
646 void key_input (BFiles bfs, int nkeys, int cache)
647                 
648 {
649     Dict dict;
650     ISAM isam = NULL;
651     ISAMC isamc = NULL;
652     ISAMS isams = NULL;
653     struct key_file **kf;
654     char rbuf[1024];
655     int i, r;
656     struct heap_info *hi;
657     struct progressInfo progressInfo;
658
659     if (nkeys < 0)
660     {
661         char fname[1024];
662         nkeys = 0;
663         while (1)
664         {
665             getFnameTmp (fname, nkeys+1);
666             if (access (fname, R_OK) == -1)
667                 break;
668             nkeys++;
669         }
670         if (!nkeys)
671             return ;
672     }
673     dict = dict_open (bfs, FNAME_DICT, cache, 1, 0);
674     if (!dict)
675     {
676         logf (LOG_FATAL, "dict_open fail");
677         exit (1);
678     }
679     if (res_get_match (common_resource, "isam", "s", NULL))
680     {
681         isams = isams_open (bfs, FNAME_ISAMS, 1,
682                             key_isams_m (common_resource));
683         if (!isams)
684         {
685             logf (LOG_FATAL, "isams_open fail");
686             exit (1);
687         }
688     }
689     else if (res_get_match (common_resource, "isam", "i", NULL))
690     {
691         isam = is_open (bfs, FNAME_ISAM, key_compare, 1,
692                         sizeof(struct it_key), common_resource);
693         if (!isam)
694         {
695             logf (LOG_FATAL, "is_open fail");
696             exit (1);
697         }
698     }
699     else
700     {
701         isamc = isc_open (bfs, FNAME_ISAMC, 1,
702                           key_isamc_m (common_resource));
703         if (!isamc)
704         {
705             logf (LOG_FATAL, "isc_open fail");
706             exit (1);
707         }
708     }
709     kf = xmalloc ((1+nkeys) * sizeof(*kf));
710     progressInfo.totalBytes = 0;
711     progressInfo.totalOffset = 0;
712     time (&progressInfo.startTime);
713     time (&progressInfo.lastTime);
714     for (i = 1; i<=nkeys; i++)
715     {
716         kf[i] = key_file_init (i, 32768);
717         kf[i]->readHandler = progressFunc;
718         kf[i]->readInfo = &progressInfo;
719         progressInfo.totalBytes += kf[i]->length;
720         progressInfo.totalOffset += kf[i]->buf_size;
721     }
722     hi = key_heap_init (nkeys, key_qsort_compare);
723     hi->dict = dict;
724     hi->isam = isam;
725     hi->isamc = isamc;
726     hi->isams = isams;
727
728     for (i = 1; i<=nkeys; i++)
729         if ((r = key_file_read (kf[i], rbuf)))
730             key_heap_insert (hi, rbuf, r, kf[i]);
731     if (isamc)
732         heap_inpc (hi);
733     else if (isams)
734         heap_inps (hi);
735     else if (isam)
736         heap_inp (hi);
737     dict_close (dict);
738     if (isam)
739         is_close (isam);
740     if (isamc)
741         isc_close (isamc);
742     if (isams)
743         isams_close (isams);
744    
745     for (i = 1; i<=nkeys; i++)
746     {
747         getFnameTmp (rbuf, i);
748         unlink (rbuf);
749     }
750     logf (LOG_LOG, "Iterations . . .%7d", no_iterations);
751     logf (LOG_LOG, "Distinct words .%7d", no_diffs);
752     logf (LOG_LOG, "Updates. . . . .%7d", no_updates);
753     logf (LOG_LOG, "Deletions. . . .%7d", no_deletions);
754     logf (LOG_LOG, "Insertions . . .%7d", no_insertions);
755 }
756
757