Fix problem with leaf split
[idzebra-moved-to-github.git] / isamb / isamb.c
1 /* $Id: isamb.c,v 1.47.2.1 2004-08-18 19:58:12 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
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 #include <string.h>
24 #include <yaz/xmalloc.h>
25 #include <yaz/log.h>
26 #include <isamb.h>
27 #include <assert.h>
28
29 #ifndef ISAMB_DEBUG
30 #define ISAMB_DEBUG 0
31 #endif
32
33 struct ISAMB_head {
34     int first_block;
35     int last_block;
36     int block_size;
37     int block_max;
38     int free_list;
39 };
40
41 #define ISAMB_DATA_OFFSET 3
42
43 /* maximum size of encoded buffer */
44 #define DST_ITEM_MAX 256
45
46 #define ISAMB_MAX_LEVEL 10
47 /* approx 2*max page + max size of item */
48 #define DST_BUF_SIZE 16840
49
50 #define ISAMB_CACHE_ENTRY_SIZE 4096
51
52 /* CAT_MAX: _must_ be power of 2 */
53 #define CAT_MAX 4
54 #define CAT_MASK (CAT_MAX-1)
55 /* CAT_NO: <= CAT_MAX */
56 #define CAT_NO 4
57
58 /* ISAMB_PTR_CODEC=1 var, =0 fixed */
59 #define ISAMB_PTR_CODEC  0
60
61 struct ISAMB_cache_entry {
62     ISAMB_P pos;
63     unsigned char *buf;
64     int dirty;
65     int hits;
66     struct ISAMB_cache_entry *next;
67 };
68
69 struct ISAMB_file {
70     BFile bf;
71     int head_dirty;
72     struct ISAMB_head head;
73     struct ISAMB_cache_entry *cache_entries;
74 };
75
76 struct ISAMB_s {
77     BFiles bfs;
78     ISAMC_M *method;
79
80     struct ISAMB_file *file;
81     int no_cat;
82     int cache; /* 0=no cache, 1=use cache, -1=dummy isam (for testing only) */
83     int log_io;        /* log level for bf_read/bf_write calls */
84     int log_freelist;  /* log level for freelist handling */
85     int skipped_numbers; /* on a leaf node */
86     int returned_numbers; 
87     int skipped_nodes[ISAMB_MAX_LEVEL]; /* [0]=skipped leaves, 1=higher etc */
88     int accessed_nodes[ISAMB_MAX_LEVEL]; /* nodes we did not skip */
89 };
90
91 struct ISAMB_block {
92     ISAMB_P pos;
93     int cat;
94     int size;
95     int leaf;
96     int dirty;
97     int deleted;
98     int offset;
99     char *bytes;
100     char *cbuf;
101     unsigned char *buf;
102     void *decodeClientData;
103     int log_rw;
104 };
105
106 struct ISAMB_PP_s {
107     ISAMB isamb;
108     ISAMB_P pos;
109     int level;
110     int maxlevel; /* total depth */
111     int total_size;
112     int no_blocks;
113     int skipped_numbers; /* on a leaf node */
114     int returned_numbers; 
115     int skipped_nodes[ISAMB_MAX_LEVEL]; /* [0]=skipped leaves, 1=higher etc */
116     int accessed_nodes[ISAMB_MAX_LEVEL]; /* nodes we did not skip */
117     struct ISAMB_block **block;
118 };
119
120
121 #if ISAMB_PTR_CODEC
122 static void encode_ptr (char **dst, unsigned pos)
123 {
124     unsigned char *bp = (unsigned char*) *dst;
125
126     while (pos > 127)
127     {
128          *bp++ = 128 | (pos & 127);
129          pos = pos >> 7;
130     }
131     *bp++ = pos;
132     *dst = (char *) bp;
133 }
134 #else
135 static void encode_ptr (char **dst, unsigned pos)
136 {
137     memcpy(*dst, &pos, sizeof(pos));
138     (*dst) += sizeof(pos);
139 }
140 #endif
141
142 #if ISAMB_PTR_CODEC
143 static void decode_ptr (char **src1, int *pos)
144 {
145     unsigned char **src = (unsigned char **) src1;
146     unsigned d = 0;
147     unsigned char c;
148     unsigned r = 0;
149
150     while (((c = *(*src)++) & 128))
151     {
152         d += ((c & 127) << r);
153         r += 7;
154     }
155     d += (c << r);
156     *pos = d;
157 }
158 #else
159 static void decode_ptr (char **src, int *pos)
160 {
161      memcpy (pos, *src, sizeof(*pos));
162      (*src) += sizeof(*pos);
163 }
164 #endif
165
166 ISAMB isamb_open (BFiles bfs, const char *name, int writeflag, ISAMC_M *method,
167                   int cache)
168 {
169     ISAMB isamb = xmalloc (sizeof(*isamb));
170     int i, b_size = 32;
171
172     isamb->bfs = bfs;
173     isamb->method = (ISAMC_M *) xmalloc (sizeof(*method));
174     memcpy (isamb->method, method, sizeof(*method));
175     isamb->no_cat = CAT_NO;
176     isamb->log_io = 0;
177     isamb->log_freelist = 0;
178     isamb->cache = cache;
179     isamb->skipped_numbers=0;
180     isamb->returned_numbers=0;
181     for (i=0;i<ISAMB_MAX_LEVEL;i++)
182       isamb->skipped_nodes[i]= isamb->accessed_nodes[i]=0;
183
184     assert (cache == 0);
185     isamb->file = xmalloc (sizeof(*isamb->file) * isamb->no_cat);
186     for (i = 0; i<isamb->no_cat; i++)
187     {
188         char fname[DST_BUF_SIZE];
189         isamb->file[i].cache_entries = 0;
190         isamb->file[i].head_dirty = 0;
191         sprintf (fname, "%s%c", name, i+'A');
192         if (cache)
193             isamb->file[i].bf = bf_open (bfs, fname, ISAMB_CACHE_ENTRY_SIZE,
194                                          writeflag);
195         else
196             isamb->file[i].bf = bf_open (bfs, fname, b_size, writeflag);
197
198         
199         if (!bf_read (isamb->file[i].bf, 0, 0, sizeof(struct ISAMB_head),
200                       &isamb->file[i].head))
201         {
202             isamb->file[i].head.first_block = ISAMB_CACHE_ENTRY_SIZE/b_size+1;
203             isamb->file[i].head.last_block = isamb->file[i].head.first_block;
204             isamb->file[i].head.block_size = b_size;
205             isamb->file[i].head.block_max = b_size - ISAMB_DATA_OFFSET;
206             isamb->file[i].head.free_list = 0;
207         }
208         assert (isamb->file[i].head.block_size >= ISAMB_DATA_OFFSET);
209         isamb->file[i].head_dirty = 0;
210         assert(isamb->file[i].head.block_size == b_size);
211         b_size = b_size * 4;
212     }
213 #if ISAMB_DEBUG
214     logf(LOG_WARN, "isamb debug enabled. Things will be slower than usual");
215 #endif
216     return isamb;
217 }
218
219 static void flush_blocks (ISAMB b, int cat)
220 {
221     while (b->file[cat].cache_entries)
222     {
223         struct ISAMB_cache_entry *ce_this = b->file[cat].cache_entries;
224         b->file[cat].cache_entries = ce_this->next;
225
226         if (ce_this->dirty)
227         {
228             yaz_log (b->log_io, "bf_write: flush_blocks");
229             bf_write (b->file[cat].bf, ce_this->pos, 0, 0, ce_this->buf);
230         }
231         xfree (ce_this->buf);
232         xfree (ce_this);
233     }
234 }
235
236 static int get_block (ISAMB b, ISAMC_P pos, char *userbuf, int wr)
237 {
238     int cat = pos&CAT_MASK;
239     int off = ((pos/CAT_MAX) & 
240                (ISAMB_CACHE_ENTRY_SIZE / b->file[cat].head.block_size - 1))
241         * b->file[cat].head.block_size;
242     int norm = pos / (CAT_MASK*ISAMB_CACHE_ENTRY_SIZE / b->file[cat].head.block_size);
243     int no = 0;
244     struct ISAMB_cache_entry **ce, *ce_this = 0, **ce_last = 0;
245
246     if (!b->cache)
247         return 0;
248
249     assert (ISAMB_CACHE_ENTRY_SIZE >= b->file[cat].head.block_size);
250     for (ce = &b->file[cat].cache_entries; *ce; ce = &(*ce)->next, no++)
251     {
252         ce_last = ce;
253         if ((*ce)->pos == norm)
254         {
255             ce_this = *ce;
256             *ce = (*ce)->next;   /* remove from list */
257             
258             ce_this->next = b->file[cat].cache_entries;  /* move to front */
259             b->file[cat].cache_entries = ce_this;
260             
261             if (wr)
262             {
263                 memcpy (ce_this->buf + off, userbuf, 
264                         b->file[cat].head.block_size);
265                 ce_this->dirty = 1;
266             }
267             else
268                 memcpy (userbuf, ce_this->buf + off,
269                         b->file[cat].head.block_size);
270             return 1;
271         }
272     }
273     if (no >= 40)
274     {
275         assert (no == 40);
276         assert (ce_last && *ce_last);
277         ce_this = *ce_last;
278         *ce_last = 0;  /* remove the last entry from list */
279         if (ce_this->dirty)
280         {
281             yaz_log (b->log_io, "bf_write: get_block");
282             bf_write (b->file[cat].bf, ce_this->pos, 0, 0, ce_this->buf);
283         }
284         xfree (ce_this->buf);
285         xfree (ce_this);
286     }
287     ce_this = xmalloc (sizeof(*ce_this));
288     ce_this->next = b->file[cat].cache_entries;
289     b->file[cat].cache_entries = ce_this;
290     ce_this->buf = xmalloc (ISAMB_CACHE_ENTRY_SIZE);
291     ce_this->pos = norm;
292     yaz_log (b->log_io, "bf_read: get_block");
293     if (!bf_read (b->file[cat].bf, norm, 0, 0, ce_this->buf))
294         memset (ce_this->buf, 0, ISAMB_CACHE_ENTRY_SIZE);
295     if (wr)
296     {
297         memcpy (ce_this->buf + off, userbuf, b->file[cat].head.block_size);
298         ce_this->dirty = 1;
299     }
300     else
301     {
302         ce_this->dirty = 0;
303         memcpy (userbuf, ce_this->buf + off, b->file[cat].head.block_size);
304     }
305     return 1;
306 }
307
308
309 void isamb_close (ISAMB isamb)
310 {
311     int i;
312     for (i=0;isamb->accessed_nodes[i];i++)
313         logf(LOG_DEBUG,"isamb_close  level leaf-%d: %d read, %d skipped",
314              i, isamb->accessed_nodes[i], isamb->skipped_nodes[i]);
315     logf(LOG_DEBUG,"isamb_close returned %d values, skipped %d",
316          isamb->skipped_numbers, isamb->returned_numbers);
317     for (i = 0; i<isamb->no_cat; i++)
318     {
319         flush_blocks (isamb, i);
320         if (isamb->file[i].head_dirty)
321             bf_write (isamb->file[i].bf, 0, 0,
322                       sizeof(struct ISAMB_head), &isamb->file[i].head);
323         
324         bf_close (isamb->file[i].bf);
325     }
326     xfree (isamb->file);
327     xfree (isamb->method);
328     xfree (isamb);
329 }
330
331 static struct ISAMB_block *open_block (ISAMB b, ISAMC_P pos)
332 {
333     int cat = pos&CAT_MASK;
334     struct ISAMB_block *p;
335     if (!pos)
336         return 0;
337     p = xmalloc (sizeof(*p));
338     p->pos = pos;
339     p->cat = pos & CAT_MASK;
340     p->buf = xmalloc (b->file[cat].head.block_size);
341     p->cbuf = 0;
342
343     if (!get_block (b, pos, p->buf, 0))
344     {
345         yaz_log (b->log_io, "bf_read: open_block");
346         if (!bf_read (b->file[cat].bf, pos/CAT_MAX, 0, 0, p->buf))
347         {
348             yaz_log (LOG_FATAL, "isamb: read fail for pos=%ld block=%ld",
349                      (long) pos, (long) pos/CAT_MAX);
350             abort();
351         }
352     }
353     p->bytes = p->buf + ISAMB_DATA_OFFSET;
354     p->leaf = p->buf[0];
355     p->size = (p->buf[1] + 256 * p->buf[2]) - ISAMB_DATA_OFFSET;
356     if (p->size < 0)
357     {
358         yaz_log (LOG_FATAL, "Bad block size %d in pos=%d\n", p->size, pos);
359     }
360     assert (p->size >= 0);
361     p->offset = 0;
362     p->dirty = 0;
363     p->deleted = 0;
364     p->decodeClientData = (*b->method->code_start)(ISAMC_DECODE);
365     yaz_log (LOG_DEBUG, "isamb_open_block: Opened block %d ofs=%d",pos, p->offset);
366     return p;
367 }
368
369 struct ISAMB_block *new_block (ISAMB b, int leaf, int cat)
370 {
371     struct ISAMB_block *p;
372
373     p = xmalloc (sizeof(*p));
374     p->buf = xmalloc (b->file[cat].head.block_size);
375
376     if (!b->file[cat].head.free_list)
377     {
378         int block_no;
379         block_no = b->file[cat].head.last_block++;
380         p->pos = block_no * CAT_MAX + cat;
381     }
382     else
383     {
384         p->pos = b->file[cat].head.free_list;
385         assert((p->pos & CAT_MASK) == cat);
386         if (!get_block (b, p->pos, p->buf, 0))
387         {
388             yaz_log (b->log_io, "bf_read: new_block");
389             if (!bf_read (b->file[cat].bf, p->pos/CAT_MAX, 0, 0, p->buf))
390             {
391                 yaz_log (LOG_FATAL, "isamb: read fail for pos=%ld block=%ld",
392                          (long) p->pos/CAT_MAX, (long) p->pos/CAT_MAX);
393                 abort ();
394             }
395         }
396         yaz_log (b->log_freelist, "got block %d from freelist %d:%d", p->pos,
397                  cat, p->pos/CAT_MAX);
398         memcpy (&b->file[cat].head.free_list, p->buf, sizeof(int));
399     }
400     p->cat = cat;
401     b->file[cat].head_dirty = 1;
402     memset (p->buf, 0, b->file[cat].head.block_size);
403     p->bytes = p->buf + ISAMB_DATA_OFFSET;
404     p->leaf = leaf;
405     p->size = 0;
406     p->dirty = 1;
407     p->deleted = 0;
408     p->offset = 0;
409     p->decodeClientData = (*b->method->code_start)(ISAMC_DECODE);
410     return p;
411 }
412
413 struct ISAMB_block *new_leaf (ISAMB b, int cat)
414 {
415     return new_block (b, 1, cat);
416 }
417
418
419 struct ISAMB_block *new_int (ISAMB b, int cat)
420 {
421     return new_block (b, 0, cat);
422 }
423
424 static void check_block (ISAMB b, struct ISAMB_block *p)
425 {
426     if (p->leaf)
427     {
428         ;
429     }
430     else
431     {
432         /* sanity check */
433         char *startp = p->bytes;
434         char *src = startp;
435         char *endp = p->bytes + p->size;
436         int pos;
437             
438         decode_ptr (&src, &pos);
439         assert ((pos&CAT_MASK) == p->cat);
440         while (src != endp)
441         {
442             int item_len;
443             decode_ptr (&src, &item_len);
444             assert (item_len > 0 && item_len < 30);
445             src += item_len;
446             decode_ptr (&src, &pos);
447             assert ((pos&CAT_MASK) == p->cat);
448         }
449     }
450 }
451
452 void close_block (ISAMB b, struct ISAMB_block *p)
453 {
454     if (!p)
455         return;
456     if (p->deleted)
457     {
458         yaz_log (b->log_freelist, "release block %d from freelist %d:%d",
459                  p->pos, p->cat, p->pos/CAT_MAX);
460         memcpy (p->buf, &b->file[p->cat].head.free_list, sizeof(int));
461         b->file[p->cat].head.free_list = p->pos;
462         if (!get_block (b, p->pos, p->buf, 1))
463         {
464             yaz_log (b->log_io, "bf_write: close_block (deleted)");
465             bf_write (b->file[p->cat].bf, p->pos/CAT_MAX, 0, 0, p->buf);
466         }
467     }
468     else if (p->dirty)
469     {
470         int size = p->size + ISAMB_DATA_OFFSET;
471         assert (p->size >= 0);
472         p->buf[0] = p->leaf;
473         p->buf[1] = size & 255;
474         p->buf[2] = size >> 8;
475         check_block(b, p);
476         if (!get_block (b, p->pos, p->buf, 1))
477         {
478             yaz_log (b->log_io, "bf_write: close_block");
479             bf_write (b->file[p->cat].bf, p->pos/CAT_MAX, 0, 0, p->buf);
480         }
481     }
482     (*b->method->code_stop)(ISAMC_DECODE, p->decodeClientData);
483     xfree (p->buf);
484     xfree (p);
485 }
486
487 int insert_sub (ISAMB b, struct ISAMB_block **p,
488                 void *new_item, int *mode,
489                 ISAMC_I *stream,
490                 struct ISAMB_block **sp,
491                 void *sub_item, int *sub_size,
492                 void *max_item);
493
494 int insert_int (ISAMB b, struct ISAMB_block *p, void *lookahead_item,
495                 int *mode,
496                 ISAMC_I *stream, struct ISAMB_block **sp,
497                 void *split_item, int *split_size, void *last_max_item)
498 {
499     char *startp = p->bytes;
500     char *src = startp;
501     char *endp = p->bytes + p->size;
502     int pos;
503     struct ISAMB_block *sub_p1 = 0, *sub_p2 = 0;
504     char sub_item[DST_ITEM_MAX];
505     int sub_size;
506     int more = 0;
507
508     *sp = 0;
509
510     assert(p->size >= 0);
511     decode_ptr (&src, &pos);
512     while (src != endp)
513     {
514         int item_len;
515         int d;
516         char *src0 = src;
517         decode_ptr (&src, &item_len);
518         d = (*b->method->compare_item)(src, lookahead_item);
519         if (d > 0)
520         {
521             sub_p1 = open_block (b, pos);
522             assert (sub_p1);
523             more = insert_sub (b, &sub_p1, lookahead_item, mode,
524                                stream, &sub_p2, 
525                                sub_item, &sub_size, src);
526             src = src0;
527             break;
528         }
529         src += item_len;
530         decode_ptr (&src, &pos);
531     }
532     if (!sub_p1)
533     {
534         sub_p1 = open_block (b, pos);
535         assert (sub_p1);
536         more = insert_sub (b, &sub_p1, lookahead_item, mode, stream, &sub_p2, 
537                            sub_item, &sub_size, last_max_item);
538     }
539     if (sub_p2)
540     {
541         /* there was a split - must insert pointer in this one */
542         char dst_buf[DST_BUF_SIZE];
543         char *dst = dst_buf;
544
545         assert (sub_size < 30 && sub_size > 1);
546
547         memcpy (dst, startp, src - startp);
548                 
549         dst += src - startp;
550
551         encode_ptr (&dst, sub_size);      /* sub length and item */
552         memcpy (dst, sub_item, sub_size);
553         dst += sub_size;
554
555         encode_ptr (&dst, sub_p2->pos);   /* pos */
556
557         if (endp - src)                   /* remaining data */
558         {
559             memcpy (dst, src, endp - src);
560             dst += endp - src;
561         }
562         p->size = dst - dst_buf;
563         assert (p->size >= 0);
564         if (p->size <= b->file[p->cat].head.block_max)
565         {
566             memcpy (startp, dst_buf, dst - dst_buf);
567         }
568         else
569         {
570             int p_new_size;
571             char *half;
572             src = dst_buf;
573             endp = dst;
574
575             half = src + b->file[p->cat].head.block_size/2;
576             decode_ptr (&src, &pos);
577             while (src <= half)
578             {
579                 decode_ptr (&src, split_size);
580                 src += *split_size;
581                 decode_ptr (&src, &pos);
582             }
583             p_new_size = src - dst_buf;
584             memcpy (p->bytes, dst_buf, p_new_size);
585
586             decode_ptr (&src, split_size);
587             memcpy (split_item, src, *split_size);
588             src += *split_size;
589
590             *sp = new_int (b, p->cat);
591             (*sp)->size = endp - src;
592             memcpy ((*sp)->bytes, src, (*sp)->size);
593
594             p->size = p_new_size;
595         }
596         p->dirty = 1;
597         close_block (b, sub_p2);
598     }
599     close_block (b, sub_p1);
600     return more;
601 }
602
603
604 int insert_leaf (ISAMB b, struct ISAMB_block **sp1, void *lookahead_item,
605                  int *lookahead_mode, ISAMC_I *stream,
606                  struct ISAMB_block **sp2,
607                  void *sub_item, int *sub_size,
608                  void *max_item)
609 {
610     struct ISAMB_block *p = *sp1;
611     char *src = 0, *endp = 0;
612     char dst_buf[DST_BUF_SIZE], *dst = dst_buf;
613     int new_size;
614     void *c1 = (*b->method->code_start)(ISAMC_DECODE);
615     void *c2 = (*b->method->code_start)(ISAMC_ENCODE);
616     int more = 1;
617     int quater = b->file[b->no_cat-1].head.block_max / CAT_MAX;
618     char *cut = dst_buf + quater * 2;
619     char *maxp = dst_buf + b->file[b->no_cat-1].head.block_max;
620     char *half1 = 0;
621     char *half2 = 0;
622     char cut_item_buf[DST_ITEM_MAX];
623     int cut_item_size = 0;
624
625     if (p && p->size)
626     {
627         char file_item_buf[DST_ITEM_MAX];
628         char *file_item = file_item_buf;
629             
630         src = p->bytes;
631         endp = p->bytes + p->size;
632         (*b->method->code_item)(ISAMC_DECODE, c1, &file_item, &src);
633         while (1)
634         {
635             char *dst_item = 0;
636             char *lookahead_next;
637             int d = -1;
638             
639             if (lookahead_item)
640                 d = (*b->method->compare_item)(file_item_buf, lookahead_item);
641             
642             if (d > 0)
643             {
644                 dst_item = lookahead_item;
645                 if (!*lookahead_mode)
646                 {
647                     yaz_log (LOG_WARN, "isamb: Inconsistent register (1)");
648                     assert (*lookahead_mode);
649                 }
650             }
651             else
652                 dst_item = file_item_buf;
653             if (!*lookahead_mode && d == 0)
654             {
655                 p->dirty = 1;
656             }
657             else if (!half1 && dst > cut)
658             {
659                 char *dst_item_0 = dst_item;
660                 half1 = dst; /* candidate for splitting */
661                 
662                 (*b->method->code_item)(ISAMC_ENCODE, c2, &dst, &dst_item);
663                 
664                 cut_item_size = dst_item - dst_item_0;
665                 memcpy (cut_item_buf, dst_item_0, cut_item_size);
666                 
667                 half2 = dst;
668             }
669             else
670                 (*b->method->code_item)(ISAMC_ENCODE, c2, &dst, &dst_item);
671             if (d > 0)  
672             {
673                 if (dst > maxp)
674                     lookahead_item = 0;
675                 else
676                 {
677                     lookahead_next = lookahead_item;
678                     if (!(*stream->read_item)(stream->clientData,
679                                               &lookahead_next,
680                                               lookahead_mode))
681                     {
682                         lookahead_item = 0;
683                         more = 0;
684                     }
685                     if (lookahead_item && max_item &&
686                         (*b->method->compare_item)(max_item, lookahead_item) <= 0)
687                     {
688                         /* max_item 1 */
689                         lookahead_item = 0;
690                     }
691                     
692                     p->dirty = 1;
693                 }
694             }
695             else if (d == 0)
696             {
697                 lookahead_next = lookahead_item;
698                 if (!(*stream->read_item)(stream->clientData,
699                                           &lookahead_next, lookahead_mode))
700                 {
701                     lookahead_item = 0;
702                     more = 0;
703                 }
704                 if (src == endp)
705                     break;
706                 file_item = file_item_buf;
707                 (*b->method->code_item)(ISAMC_DECODE, c1, &file_item, &src);
708             }
709             else
710             {
711                 if (src == endp)
712                     break;
713                 file_item = file_item_buf;
714                 (*b->method->code_item)(ISAMC_DECODE, c1, &file_item, &src);
715             }
716         }
717     }
718     maxp = dst_buf + b->file[b->no_cat-1].head.block_max + quater;
719     while (lookahead_item)
720     {
721         char *dst_item = lookahead_item;
722         char *dst_0 = dst;
723         
724         if (max_item &&
725             (*b->method->compare_item)(max_item, lookahead_item) <= 0)
726         {
727             /* max_item 2 */
728             break;
729         }
730         if (!*lookahead_mode)
731         {
732             yaz_log (LOG_WARN, "isamb: Inconsistent register (2)");
733             abort();
734         }
735         else if (!half1 && dst > cut)   
736         {
737             char *dst_item_0 = dst_item;
738             half1 = dst; /* candidate for splitting */
739             
740             (*b->method->code_item)(ISAMC_ENCODE, c2, &dst, &dst_item);
741             
742             cut_item_size = dst_item - dst_item_0;
743             memcpy (cut_item_buf, dst_item_0, cut_item_size);
744             
745             half2 = dst;
746         }
747         else
748             (*b->method->code_item)(ISAMC_ENCODE, c2, &dst, &dst_item);
749
750         if (dst > maxp)
751         {
752             dst = dst_0;
753             break;
754         }
755         if (p)
756             p->dirty = 1;
757         dst_item = lookahead_item;
758         if (!(*stream->read_item)(stream->clientData, &dst_item,
759                                   lookahead_mode))
760         {
761             lookahead_item = 0;
762             more = 0;
763         }
764     }
765     new_size = dst - dst_buf;
766     if (p && p->cat != b->no_cat-1 && 
767         new_size > b->file[p->cat].head.block_max)
768     {
769         /* non-btree block will be removed */
770         p->deleted = 1;
771         close_block (b, p);
772         /* delete it too!! */
773         p = 0; /* make a new one anyway */
774     }
775     if (!p)
776     {   /* must create a new one */
777         int i;
778         for (i = 0; i < b->no_cat; i++)
779             if (new_size <= b->file[i].head.block_max)
780                 break;
781         if (i == b->no_cat)
782             i = b->no_cat - 1;
783         p = new_leaf (b, i);
784     }
785     if (new_size > b->file[p->cat].head.block_max)
786     {
787         char *first_dst;
788         char *cut_item = cut_item_buf;
789
790         assert (half1);
791         assert (half2);
792
793        /* first half */
794         p->size = half1 - dst_buf;
795         memcpy (p->bytes, dst_buf, half1 - dst_buf);
796
797         /* second half */
798         *sp2 = new_leaf (b, p->cat);
799
800         (*b->method->code_reset)(c2);
801
802         first_dst = (*sp2)->bytes;
803
804         (*b->method->code_item)(ISAMC_ENCODE, c2, &first_dst, &cut_item);
805
806         memcpy (first_dst, half2, dst - half2);
807
808         (*sp2)->size = (first_dst - (*sp2)->bytes) + (dst - half2);
809         (*sp2)->dirty = 1;
810         p->dirty = 1;
811         memcpy (sub_item, cut_item_buf, cut_item_size);
812         *sub_size = cut_item_size;
813     }
814     else
815     {
816         memcpy (p->bytes, dst_buf, dst - dst_buf);
817         p->size = new_size;
818     }
819     (*b->method->code_stop)(ISAMC_DECODE, c1);
820     (*b->method->code_stop)(ISAMC_ENCODE, c2);
821     *sp1 = p;
822     return more;
823 }
824
825 int insert_sub (ISAMB b, struct ISAMB_block **p, void *new_item,
826                 int *mode,
827                 ISAMC_I *stream,
828                 struct ISAMB_block **sp,
829                 void *sub_item, int *sub_size,
830                 void *max_item)
831 {
832     if (!*p || (*p)->leaf)
833         return insert_leaf (b, p, new_item, mode, stream, sp, sub_item, 
834                             sub_size, max_item);
835     else
836         return insert_int (b, *p, new_item, mode, stream, sp, sub_item,
837                            sub_size, max_item);
838 }
839
840 int isamb_unlink (ISAMB b, ISAMC_P pos)
841 {
842     struct ISAMB_block *p1;
843
844     if (!pos)
845         return 0;
846     p1 = open_block(b, pos);
847     p1->deleted = 1;
848     if (!p1->leaf)
849     {
850         int sub_p;
851         int item_len;
852         char *src = p1->bytes + p1->offset;
853
854         decode_ptr(&src, &sub_p);
855         isamb_unlink(b, sub_p);
856         
857         while (src != p1->bytes + p1->size)
858         {
859             decode_ptr(&src, &item_len);
860             src += item_len;
861             decode_ptr(&src, &sub_p);
862             isamb_unlink(b, sub_p);
863         }
864     }
865     close_block(b, p1);
866     return 0;
867 }
868
869 int isamb_merge (ISAMB b, ISAMC_P pos, ISAMC_I *stream)
870 {
871     char item_buf[DST_ITEM_MAX];
872     char *item_ptr;
873     int i_mode;
874     int more;
875
876     if (b->cache < 0)
877     {
878         int more = 1;
879         while (more)
880         {
881             item_ptr = item_buf;
882             more =
883                 (*stream->read_item)(stream->clientData, &item_ptr, &i_mode);
884         }
885         return 1;
886     }
887     item_ptr = item_buf;
888     more = (*stream->read_item)(stream->clientData, &item_ptr, &i_mode);
889     while (more)
890     {
891         struct ISAMB_block *p = 0, *sp = 0;
892         char sub_item[DST_ITEM_MAX];
893         int sub_size;
894         
895         if (pos)
896             p = open_block (b, pos);
897         more = insert_sub (b, &p, item_buf, &i_mode, stream, &sp,
898                             sub_item, &sub_size, 0);
899         if (sp)
900         {    /* increase level of tree by one */
901             struct ISAMB_block *p2 = new_int (b, p->cat);
902             char *dst = p2->bytes + p2->size;
903             
904             encode_ptr (&dst, p->pos);
905             assert (sub_size < 20);
906             encode_ptr (&dst, sub_size);
907             memcpy (dst, sub_item, sub_size);
908             dst += sub_size;
909             encode_ptr (&dst, sp->pos);
910             
911             p2->size = dst - p2->bytes;
912             pos = p2->pos;  /* return new super page */
913             close_block (b, sp);
914             close_block (b, p2);
915         }
916         else
917             pos = p->pos;   /* return current one (again) */
918         close_block (b, p);
919     }
920     return pos;
921 }
922
923 ISAMB_PP isamb_pp_open_x (ISAMB isamb, ISAMB_P pos, int *level)
924 {
925     ISAMB_PP pp = xmalloc (sizeof(*pp));
926     int i;
927
928     pp->isamb = isamb;
929     pp->block = xmalloc (ISAMB_MAX_LEVEL * sizeof(*pp->block));
930
931     pp->pos = pos;
932     pp->level = 0;
933     pp->maxlevel=0;
934     pp->total_size = 0;
935     pp->no_blocks = 0;
936     pp->skipped_numbers=0;
937     pp->returned_numbers=0;
938     for (i=0;i<ISAMB_MAX_LEVEL;i++)
939         pp->skipped_nodes[i] = pp->accessed_nodes[i]=0;
940     while (1)
941     {
942         struct ISAMB_block *p = open_block (isamb, pos);
943         char *src = p->bytes + p->offset;
944         pp->block[pp->level] = p;
945
946         pp->total_size += p->size;
947         pp->no_blocks++;
948         if (p->leaf)
949             break;
950
951                                         
952         decode_ptr (&src, &pos);
953         p->offset = src - p->bytes;
954         pp->level++;
955         pp->accessed_nodes[pp->level]++; 
956     }
957     pp->block[pp->level+1] = 0;
958     pp->maxlevel=pp->level;
959     if (level)
960         *level = pp->level;
961     return pp;
962 }
963
964 ISAMB_PP isamb_pp_open (ISAMB isamb, ISAMB_P pos)
965 {
966     return isamb_pp_open_x (isamb, pos, 0);
967 }
968
969 void isamb_pp_close_x (ISAMB_PP pp, int *size, int *blocks)
970 {
971     int i;
972     if (!pp)
973         return;
974     logf(LOG_DEBUG,"isamb_pp_close lev=%d returned %d values, skipped %d",
975         pp->maxlevel, pp->skipped_numbers, pp->returned_numbers);
976     for (i=pp->maxlevel;i>=0;i--)
977         if ( pp->skipped_nodes[i] || pp->accessed_nodes[i])
978             logf(LOG_DEBUG,"isamb_pp_close  level leaf-%d: %d read, %d skipped", i,
979                  pp->accessed_nodes[i], pp->skipped_nodes[i]);
980     pp->isamb->skipped_numbers += pp->skipped_numbers;
981     pp->isamb->returned_numbers += pp->returned_numbers;
982     for (i=pp->maxlevel;i>=0;i--)
983     {
984         pp->isamb->accessed_nodes[i] += pp->accessed_nodes[i];
985         pp->isamb->skipped_nodes[i] += pp->skipped_nodes[i];
986     }
987     if (size)
988         *size = pp->total_size;
989     if (blocks)
990         *blocks = pp->no_blocks;
991     for (i = 0; i <= pp->level; i++)
992         close_block (pp->isamb, pp->block[i]);
993     xfree (pp->block);
994     xfree (pp);
995 }
996
997 int isamb_block_info (ISAMB isamb, int cat)
998 {
999     if (cat >= 0 && cat < isamb->no_cat)
1000         return isamb->file[cat].head.block_size;
1001     return -1;
1002 }
1003
1004 void isamb_pp_close (ISAMB_PP pp)
1005 {
1006     isamb_pp_close_x (pp, 0, 0);
1007 }
1008
1009 /* simple recursive dumper .. */
1010 static void isamb_dump_r (ISAMB b, ISAMB_P pos, void (*pr)(const char *str),
1011                           int level)
1012 {
1013     char buf[1024];
1014     char prefix_str[1024];
1015     if (pos)
1016     {
1017         struct ISAMB_block *p = open_block (b, pos);
1018         sprintf(prefix_str, "%*s %d cat=%d size=%d max=%d", level*2, "",
1019                 pos, p->cat, p->size, b->file[p->cat].head.block_max);
1020         (*pr)(prefix_str);
1021         sprintf(prefix_str, "%*s %d", level*2, "", pos);
1022         if (p->leaf)
1023         {
1024             while (p->offset < p->size)
1025             {
1026                 char *src = p->bytes + p->offset;
1027                 char *dst = buf;
1028                 (*b->method->code_item)(ISAMC_DECODE, p->decodeClientData,
1029                                         &dst, &src);
1030                 (*b->method->log_item)(LOG_DEBUG, buf, prefix_str);
1031                 p->offset = src - (char*) p->bytes;
1032             }
1033             assert(p->offset == p->size);
1034         }
1035         else
1036         {
1037             char *src = p->bytes + p->offset;
1038             int sub;
1039             int item_len;
1040
1041             decode_ptr (&src, &sub);
1042             p->offset = src - (char*) p->bytes;
1043
1044             isamb_dump_r(b, sub, pr, level+1);
1045             
1046             while (p->offset < p->size)
1047             {
1048                 decode_ptr (&src, &item_len);
1049                 (*b->method->log_item)(LOG_DEBUG, src, prefix_str);
1050                 src += item_len;
1051                 decode_ptr (&src, &sub);
1052                 
1053                 p->offset = src - (char*) p->bytes;
1054                 
1055                 isamb_dump_r(b, sub, pr, level+1);
1056             }           
1057         }
1058         close_block(b,p);
1059     }
1060 }
1061
1062 void isamb_dump (ISAMB b, ISAMB_P pos, void (*pr)(const char *str))
1063 {
1064     return isamb_dump_r(b, pos, pr, 0);
1065 }
1066
1067 #if 0
1068 /* Old isamb_pp_read that Adam wrote, kept as a reference in case we need to
1069    debug the more complex pp_read that also forwards. May be deleted near end
1070    of 2004, if it has not shown to be useful */
1071
1072
1073 int isamb_pp_read (ISAMB_PP pp, void *buf)
1074 {
1075     char *dst = buf;
1076     char *src;
1077     struct ISAMB_block *p = pp->block[pp->level];
1078     if (!p)
1079         return 0;
1080
1081     while (p->offset == p->size)
1082     {
1083         int pos, item_len;
1084         while (p->offset == p->size)
1085         {
1086             if (pp->level == 0)
1087                 return 0;
1088             close_block (pp->isamb, pp->block[pp->level]);
1089             pp->block[pp->level] = 0;
1090             (pp->level)--;
1091             p = pp->block[pp->level];
1092             assert (!p->leaf);  
1093         }
1094         src = p->bytes + p->offset;
1095         
1096         decode_ptr (&src, &item_len);
1097         src += item_len;
1098         decode_ptr (&src, &pos);
1099         
1100         p->offset = src - (char*) p->bytes;
1101
1102         ++(pp->level);
1103         
1104         while (1)
1105         {
1106             pp->block[pp->level] = p = open_block (pp->isamb, pos);
1107
1108             pp->total_size += p->size;
1109             pp->no_blocks++;
1110             
1111             if (p->leaf) 
1112             {
1113                 break;
1114             }
1115             src = p->bytes + p->offset;
1116             decode_ptr (&src, &pos);
1117             p->offset = src - (char*) p->bytes;
1118             pp->level++;
1119         }
1120     }
1121     assert (p->offset < p->size);
1122     assert (p->leaf);
1123     src = p->bytes + p->offset;
1124     (*pp->isamb->method->code_item)(ISAMC_DECODE, p->decodeClientData,
1125                                     &dst, &src);
1126     p->offset = src - (char*) p->bytes;
1127     /* key_logdump_txt(LOG_DEBUG,buf, "isamb_pp_read returning 1"); */
1128     return 1;
1129 }
1130
1131 #else
1132 int isamb_pp_read (ISAMB_PP pp, void *buf)
1133 {
1134     return isamb_pp_forward(pp,buf,0);
1135 }
1136 #endif
1137
1138 #define NEW_FORWARD 1
1139
1140 #if NEW_FORWARD == 1
1141
1142 /*
1143 #undef ISAMB_DEBUB
1144 #define ISAMB_DEBUG 1
1145 */
1146 static int isamb_pp_on_right_node(ISAMB_PP pp, int level, const void *untilbuf)
1147 { /* looks one node higher to see if we should be on this node at all */
1148   /* useful in backing off quickly, and in avoiding tail descends */
1149   /* call with pp->level to begin with */
1150     struct ISAMB_block *p;
1151     int cmp;
1152     char *src;
1153     int item_len;
1154     assert(level>=0);
1155     if ( level == 0) {
1156 #if ISAMB_DEBUG
1157             logf(LOG_DEBUG,"isamb_pp_on_right returning true for root");
1158 #endif
1159         return 1; /* we can never skip the root node */
1160     }
1161     level--;
1162     p=pp->block[level];
1163     assert(p->offset <= p->size);
1164     if (p->offset < p->size )
1165     {
1166         assert(p->offset>0); 
1167         src=p->bytes + p->offset;
1168         decode_ptr(&src,&item_len);
1169 #if ISAMB_DEBUG
1170         (*pp->isamb->method->log_item)(LOG_DEBUG,untilbuf,"on_leaf: until");
1171         (*pp->isamb->method->log_item)(LOG_DEBUG,src,"on_leaf: value");
1172 #endif
1173         cmp=(*pp->isamb->method->compare_item)(untilbuf,src);
1174         if (cmp<2) {
1175 #if ISAMB_DEBUG
1176             logf(LOG_DEBUG,"isamb_pp_on_right returning true "
1177                             "cmp=%d lev=%d ofs=%d",cmp,level,p->offset);
1178 #endif
1179             return 1; 
1180         }
1181         else {
1182 #if ISAMB_DEBUG
1183             logf(LOG_DEBUG,"isamb_pp_on_right returning false "
1184                             "cmp=%d lev=%d ofs=%d",cmp,level,p->offset);
1185 #endif
1186             return 0; 
1187         }
1188     }
1189     else {
1190 #if ISAMB_DEBUG
1191         logf(LOG_DEBUG,"isamb_pp_on_right at tail, looking higher "
1192                         "lev=%d",level);
1193 #endif
1194         return isamb_pp_on_right_node(pp, level, untilbuf);
1195     }
1196 } /* isamb_pp_on_right_node */
1197
1198 static int isamb_pp_read_on_leaf(ISAMB_PP pp, void *buf)
1199 { /* reads the next item on the current leaf, returns 0 if end of leaf*/
1200     struct ISAMB_block *p = pp->block[pp->level];
1201     char *dst;
1202     char *src;
1203     assert(pp);
1204     assert(buf);
1205     if (p->offset == p->size) {
1206 #if ISAMB_DEBUG
1207         logf(LOG_DEBUG,"isamb_pp_read_on_leaf returning 0 on node %d",p->pos);
1208 #endif
1209         return 0; /* at end of leaf */
1210     }
1211     src=p->bytes + p->offset;
1212     dst=buf;
1213     (*pp->isamb->method->code_item)
1214            (ISAMC_DECODE, p->decodeClientData,&dst, &src);
1215     p->offset = src - (char*) p->bytes;
1216     /*
1217 #if ISAMB_DEBUG
1218     (*pp->isamb->method->log_item)(LOG_DEBUG, buf, "read_on_leaf returning 1");
1219 #endif
1220 */
1221     return 1;
1222 } /* read_on_leaf */
1223
1224 static int isamb_pp_forward_on_leaf(ISAMB_PP pp, void *buf, const void *untilbuf)
1225 { /* forwards on the current leaf, returns 0 if not found */
1226     int cmp;
1227     int skips=0;
1228     while (1){
1229         if (!isamb_pp_read_on_leaf(pp,buf))
1230             return 0;
1231         /* FIXME - this is an extra function call, inline the read? */
1232         cmp=(*pp->isamb->method->compare_item)(untilbuf,buf);
1233         if (cmp <2){  /* found a good one */
1234 #if ISAMB_DEBUG
1235             if (skips)
1236                 logf(LOG_DEBUG, "isam_pp_fwd_on_leaf skipped %d items",skips);
1237 #endif
1238             pp->returned_numbers++;
1239             return 1;
1240         }
1241         if (!skips)
1242             if (!isamb_pp_on_right_node(pp, pp->level, untilbuf))
1243                 return 0; /* never mind the rest of this leaf */
1244         pp->skipped_numbers++;
1245         skips++;
1246     }
1247 } /* forward_on_leaf */
1248
1249 static int isamb_pp_climb_level(ISAMB_PP pp, int *pos)
1250 { /* climbs higher in the tree, until finds a level with data left */
1251   /* returns the node to (consider to) descend to in *pos) */
1252     struct ISAMB_block *p = pp->block[pp->level];
1253     char *src;
1254     int item_len;
1255 #if ISAMB_DEBUG
1256     logf(LOG_DEBUG,"isamb_pp_climb_level starting "
1257                    "at level %d node %d ofs=%d sz=%d",
1258                     pp->level, p->pos, p->offset, p->size);
1259 #endif
1260     assert(pp->level >= 0);
1261     assert(p->offset <= p->size);
1262     if (pp->level==0)
1263     {
1264 #if ISAMB_DEBUG
1265         logf(LOG_DEBUG,"isamb_pp_climb_level returning 0 at root");
1266 #endif
1267         return 0;
1268     }
1269     assert(pp->level>0); 
1270     close_block(pp->isamb, pp->block[pp->level]);
1271     pp->block[pp->level]=0;
1272     (pp->level)--;
1273     p=pp->block[pp->level];
1274 #if ISAMB_DEBUG
1275     logf(LOG_DEBUG,"isamb_pp_climb_level climbed to level %d node %d ofs=%d",
1276                     pp->level, p->pos, p->offset);
1277 #endif
1278     assert(!p->leaf);
1279     assert(p->offset <= p->size);
1280     if (p->offset == p->size ) {
1281         /* we came from the last pointer, climb on */
1282         if (!isamb_pp_climb_level(pp,pos))
1283             return 0;
1284         p=pp->block[pp->level];
1285     }
1286     else
1287     {
1288         /* skip the child we just came from */
1289 #if ISAMB_DEBUG
1290         logf(LOG_DEBUG,"isam_pp_climb_level: skipping lev=%d ofs=%d sz=%d", 
1291                         pp->level, p->offset, p->size);
1292 #endif
1293         assert (p->offset < p->size );
1294         src=p->bytes + p->offset;
1295         decode_ptr(&src, &item_len);
1296         src += item_len;
1297         decode_ptr(&src, pos);
1298         p->offset=src - (char *)p->bytes;
1299             
1300     }
1301     return 1;
1302 } /* climb_level */
1303
1304
1305 static int isamb_pp_forward_unode(ISAMB_PP pp, int pos, const void *untilbuf)
1306 { /* scans a upper node until it finds a child <= untilbuf */
1307   /* pp points to the key value, as always. pos is the child read from */
1308   /* the buffer */
1309   /* if all values are too small, returns the last child in the node */
1310   /* FIXME - this can be detected, and avoided by looking at the */
1311   /* parent node, but that gets messy. Presumably the cost is */
1312   /* pretty low anyway */
1313     struct ISAMB_block *p = pp->block[pp->level];
1314     char *src=p->bytes + p->offset;
1315     int item_len;
1316     int cmp;
1317     int nxtpos;
1318 #if ISAMB_DEBUG
1319     int skips=0;
1320     logf(LOG_DEBUG,"isamb_pp_forward_unode starting "
1321                    "at level %d node %d ofs=%di sz=%d",
1322                     pp->level, p->pos, p->offset, p->size);
1323 #endif
1324     assert(!p->leaf);
1325     assert(p->offset <= p->size);
1326     if (p->offset == p->size) {
1327 #if ISAMB_DEBUG
1328             logf(LOG_DEBUG,"isamb_pp_forward_unode returning at end "
1329                    "at level %d node %d ofs=%di sz=%d",
1330                     pp->level, p->pos, p->offset, p->size);
1331 #endif
1332         return pos; /* already at the end of it */
1333     }
1334     while(p->offset < p->size) {
1335         decode_ptr(&src,&item_len);
1336         cmp=(*pp->isamb->method->compare_item)(untilbuf,src);
1337         src+=item_len;
1338         decode_ptr(&src,&nxtpos);
1339         if (cmp<2)
1340         {
1341 #if ISAMB_DEBUG
1342             logf(LOG_DEBUG,"isamb_pp_forward_unode returning a hit "
1343                    "at level %d node %d ofs=%d sz=%d",
1344                     pp->level, p->pos, p->offset, p->size);
1345 #endif
1346             return pos;
1347         } /* found one */
1348         pos=nxtpos;
1349         p->offset=src-(char*)p->bytes;
1350         (pp->skipped_nodes[pp->maxlevel - pp->level -1])++;
1351 #if ISAMB_DEBUG
1352         skips++;
1353 #endif
1354     }
1355 #if ISAMB_DEBUG
1356             logf(LOG_DEBUG,"isamb_pp_forward_unode returning at tail "
1357                    "at level %d node %d ofs=%d sz=%d skips=%d",
1358                     pp->level, p->pos, p->offset, p->size, skips);
1359 #endif
1360     return pos; /* that's the last one in the line */
1361     
1362 } /* forward_unode */
1363
1364 static void isamb_pp_descend_to_leaf(ISAMB_PP pp, int pos, const void *untilbuf)
1365 { /* climbs down the tree, from pos, to the leftmost leaf */
1366     struct ISAMB_block *p = pp->block[pp->level];
1367     char *src;
1368     assert(!p->leaf);
1369 #if ISAMB_DEBUG
1370     logf(LOG_DEBUG,"isamb_pp_descend_to_leaf "
1371                    "starting at lev %d node %d ofs=%d lf=%d u=%p", 
1372                    pp->level, p->pos, p->offset, p->leaf, untilbuf);
1373 #endif
1374     if (untilbuf)
1375         pos=isamb_pp_forward_unode(pp,pos,untilbuf);
1376     ++(pp->level);
1377     assert(pos);
1378     p=open_block(pp->isamb, pos);
1379     pp->block[pp->level]=p;
1380     ++(pp->accessed_nodes[pp->maxlevel-pp->level]);
1381     ++(pp->no_blocks);
1382 #if ISAMB_DEBUG
1383     logf(LOG_DEBUG,"isamb_pp_descend_to_leaf "
1384                    "got lev %d node %d lf=%d", 
1385                    pp->level, p->pos, p->leaf);
1386 #endif
1387     if (p->leaf)
1388         return;
1389     assert (p->offset==0 );
1390     src=p->bytes + p->offset;
1391     decode_ptr(&src, &pos);
1392     p->offset=src-(char*)p->bytes;
1393     isamb_pp_descend_to_leaf(pp,pos,untilbuf);
1394 #if ISAMB_DEBUG
1395     logf(LOG_DEBUG,"isamb_pp_descend_to_leaf "
1396                    "returning at lev %d node %d ofs=%d lf=%d", 
1397                    pp->level, p->pos, p->offset, p->leaf);
1398 #endif
1399 } /* descend_to_leaf */
1400
1401 static int isamb_pp_find_next_leaf(ISAMB_PP pp)
1402 { /* finds the next leaf by climbing up and down */
1403     int pos;
1404     if (!isamb_pp_climb_level(pp,&pos))
1405         return 0;
1406     isamb_pp_descend_to_leaf(pp, pos,0);
1407     return 1;
1408 }
1409
1410 static int isamb_pp_climb_desc(ISAMB_PP pp, void *buf, const void *untilbuf)
1411 { /* climbs up and descends to a leaf where values >= *untilbuf are found */
1412     int pos;
1413 #if ISAMB_DEBUG
1414     struct ISAMB_block *p = pp->block[pp->level];
1415     logf(LOG_DEBUG,"isamb_pp_climb_desc starting "
1416                    "at level %d node %d ofs=%d sz=%d",
1417                     pp->level, p->pos, p->offset, p->size);
1418 #endif
1419     if (!isamb_pp_climb_level(pp,&pos))
1420         return 0;
1421     /* see if it would pay to climb one higher */
1422     if (!isamb_pp_on_right_node(pp, pp->level, untilbuf))
1423         if (!isamb_pp_climb_level(pp,&pos))
1424             return 0;
1425     isamb_pp_descend_to_leaf(pp, pos,untilbuf);
1426 #if ISAMB_DEBUG
1427     p = pp->block[pp->level];
1428     logf(LOG_DEBUG,"isamb_pp_climb_desc done "
1429                    "at level %d node %d ofs=%d sz=%d",
1430                     pp->level, p->pos, p->offset, p->size);
1431 #endif
1432     return 1;
1433 } /* climb_desc */
1434
1435 int isamb_pp_forward (ISAMB_PP pp, void *buf, const void *untilbuf)
1436 {
1437 #if ISAMB_DEBUG
1438     struct ISAMB_block *p = pp->block[pp->level];
1439     assert(p->leaf);
1440     logf(LOG_DEBUG,"isamb_pp_forward starting "
1441                    "at level %d node %d ofs=%d sz=%d u=%p",
1442                     pp->level, p->pos, p->offset, p->size,untilbuf);
1443 #endif
1444     if (untilbuf) {
1445         if (isamb_pp_forward_on_leaf( pp, buf, untilbuf)) {
1446 #if ISAMB_DEBUG
1447             logf(LOG_DEBUG,"isamb_pp_forward (f) returning (A) "
1448                    "at level %d node %d ofs=%d sz=%d",
1449                     pp->level, p->pos, p->offset, p->size);
1450 #endif
1451             return 1;
1452         }
1453         if (! isamb_pp_climb_desc( pp, buf, untilbuf)) {
1454 #if ISAMB_DEBUG
1455             logf(LOG_DEBUG,"isamb_pp_forward (f) returning notfound (B) "
1456                    "at level %d node %d ofs=%d sz=%d",
1457                     pp->level, p->pos, p->offset, p->size);
1458 #endif
1459             return 0; /* could not find a leaf */
1460         }
1461         do{
1462             if (isamb_pp_forward_on_leaf( pp, buf, untilbuf)) {
1463 #if ISAMB_DEBUG
1464             logf(LOG_DEBUG,"isamb_pp_forward (f) returning (C) "
1465                    "at level %d node %d ofs=%d sz=%d",
1466                     pp->level, p->pos, p->offset, p->size);
1467 #endif
1468                 return 1;
1469             }
1470         }while ( isamb_pp_find_next_leaf(pp));
1471         return 0; /* could not find at all */
1472     }
1473     else { /* no untilbuf, a straight read */
1474         /* FIXME - this should be moved
1475          * directly into the pp_read */
1476         /* keeping here now, to keep same
1477          * interface as the old fwd */
1478         if (isamb_pp_read_on_leaf( pp, buf)) {
1479 #if ISAMB_DEBUG
1480             logf(LOG_DEBUG,"isamb_pp_forward (read) returning (D) "
1481                    "at level %d node %d ofs=%d sz=%d",
1482                     pp->level, p->pos, p->offset, p->size);
1483 #endif
1484             return 1;
1485         }
1486         if (isamb_pp_find_next_leaf(pp)) {
1487 #if ISAMB_DEBUG
1488             logf(LOG_DEBUG,"isamb_pp_forward (read) returning (E) "
1489                    "at level %d node %d ofs=%d sz=%d",
1490                     pp->level, p->pos, p->offset, p->size);
1491 #endif
1492             return isamb_pp_read_on_leaf(pp, buf);
1493         }
1494         else
1495             return 0;
1496     }
1497 } /* isam_pp_forward (new version) */
1498
1499 #elif NEW_FORWARD == 0
1500
1501 int isamb_pp_forward (ISAMB_PP pp, void *buf, const void *untilbuf)
1502 {
1503     /* pseudocode:
1504      *   while 1
1505      *     while at end of node
1506      *       climb higher. If out, return 0
1507      *     while not on a leaf (and not at its end)
1508      *       decode next
1509      *       if cmp
1510      *         descend to node
1511      *     decode next
1512      *     if cmp
1513      *       return 1
1514      */
1515      /* 
1516       * The upper nodes consist of a sequence of nodenumbers and keys
1517       * When opening a block,  the first node number is read in, and
1518       * offset points to the first key, which is the upper limit of keys
1519       * in the node just read.
1520       */
1521     char *dst = buf;
1522     char *src;
1523     struct ISAMB_block *p = pp->block[pp->level];
1524     int cmp;
1525     int item_len;
1526     int pos;
1527     int nxtpos;
1528     int descending=0; /* used to prevent a border condition error */
1529     if (!p)
1530         return 0;
1531 #if ISAMB_DEBUG
1532     logf(LOG_DEBUG,"isamb_pp_forward starting [%p] p=%d",pp,p->pos);
1533     
1534     (*pp->isamb->method->log_item)(LOG_DEBUG, untilbuf, "until");
1535     (*pp->isamb->method->log_item)(LOG_DEBUG, buf, "buf");
1536 #endif
1537
1538     while (1)
1539     {
1540         while ( (p->offset == p->size) && !descending )
1541         {  /* end of this block - climb higher */
1542             assert (p->offset <= p->size);
1543 #if ISAMB_DEBUG
1544             logf(LOG_DEBUG,"isamb_pp_forward climbing from l=%d",
1545                             pp->level);
1546 #endif
1547             if (pp->level == 0)
1548             {
1549 #if ISAMB_DEBUG
1550                 logf(LOG_DEBUG,"isamb_pp_forward returning 0 at root");
1551 #endif
1552                 return 0; /* at end of the root, nothing left */
1553             }
1554             close_block(pp->isamb, pp->block[pp->level]);
1555             pp->block[pp->level]=0;
1556             (pp->level)--;
1557             p=pp->block[pp->level];
1558 #if ISAMB_DEBUG
1559             logf(LOG_DEBUG,"isamb_pp_forward climbed to node %d off=%d",
1560                             p->pos, p->offset);
1561 #endif
1562             assert(!p->leaf);
1563             assert(p->offset <= p->size);
1564             /* skip the child we have handled */
1565             if (p->offset != p->size)
1566             { 
1567                 src = p->bytes + p->offset;
1568                 decode_ptr(&src, &item_len);
1569 #if ISAMB_DEBUG         
1570                 (*pp->isamb->method->log_item)(LOG_DEBUG, src,
1571                                                " isamb_pp_forward "
1572                                                "climb skipping old key");
1573 #endif
1574                 src += item_len;
1575                 decode_ptr(&src,&pos);
1576                 p->offset = src - (char*) p->bytes;
1577                 break; /* even if this puts us at the end of the block, we
1578                           need to descend to the last pos. UGLY coding,
1579                           clean up some day */
1580             }
1581         }
1582         if (!p->leaf)
1583         { 
1584             src = p->bytes + p->offset;
1585             if (p->offset == p->size)
1586                 cmp=-2 ; /* descend to the last node, as we have
1587                             no value to cmp */
1588             else
1589             {
1590                 decode_ptr(&src, &item_len);
1591 #if ISAMB_DEBUG
1592                 logf(LOG_DEBUG,"isamb_pp_forward (B) on a high node. "
1593                      "ofs=%d sz=%d nxtpos=%d ",
1594                         p->offset,p->size,pos);
1595                 (*pp->isamb->method->log_item)(LOG_DEBUG, src, "");
1596 #endif
1597                 if (untilbuf)
1598                     cmp=(*pp->isamb->method->compare_item)(untilbuf,src);
1599                 else
1600                     cmp=-2;
1601                 src += item_len;
1602                 decode_ptr(&src,&nxtpos);
1603             }
1604             if (cmp<2)
1605             { 
1606 #if ISAMB_DEBUG
1607                 logf(LOG_DEBUG,"isambb_pp_forward descending l=%d p=%d ",
1608                             pp->level, pos);
1609 #endif
1610                 descending=1; /* prevent climbing for a while */
1611                 ++(pp->level);
1612                 p = open_block(pp->isamb,pos);
1613                 pp->block[pp->level] = p ;
1614                 pp->total_size += p->size;
1615                 (pp->accessed_nodes[pp->maxlevel - pp->level])++;
1616                 pp->no_blocks++;
1617                 if ( !p->leaf)
1618                 { /* block starts with a pos */
1619                     src = p->bytes + p->offset;
1620                     decode_ptr(&src,&pos);
1621                     p->offset=src-(char*) p->bytes;
1622 #if ISAMB_DEBUG
1623                     logf(LOG_DEBUG,"isamb_pp_forward: block %d starts with %d",
1624                                     p->pos, pos);
1625 #endif
1626                 } 
1627             } /* descend to the node */
1628             else
1629             { /* skip the node */
1630                 p->offset = src - (char*) p->bytes;
1631                 pos=nxtpos;
1632                 (pp->skipped_nodes[pp->maxlevel - pp->level -1])++;
1633 #if ISAMB_DEBUG
1634                 logf(LOG_DEBUG,
1635                     "isamb_pp_forward: skipping block on level %d, noting "
1636                      "on %d (%d)",
1637                     pp->level, pp->maxlevel - pp->level-1 , 
1638                     pp->skipped_nodes[pp->maxlevel - pp->level-1 ]);
1639 #endif
1640                 /* 0 is always leafs, 1 is one level above leafs etc, no
1641                  * matter how high tree */
1642             }
1643         } /* not on a leaf */
1644         else
1645         { /* on a leaf */
1646             if (p->offset == p->size) { 
1647                 descending = 0;
1648             }
1649             else
1650             {
1651                 assert (p->offset < p->size);
1652                 src = p->bytes + p->offset;
1653                 dst=buf;
1654                 (*pp->isamb->method->code_item)(ISAMC_DECODE, p->decodeClientData,
1655                                                 &dst, &src);
1656                 p->offset = src - (char*) p->bytes;
1657                 if (untilbuf)
1658                     cmp=(*pp->isamb->method->compare_item)(untilbuf,buf);
1659                 else
1660                     cmp=-2;
1661 #if ISAMB_DEBUG
1662                 logf(LOG_DEBUG,"isamb_pp_forward on a leaf. cmp=%d", 
1663                      cmp);
1664                 (*pp->isamb->method->log_item)(LOG_DEBUG, buf, "");
1665 #endif
1666                 if (cmp <2)
1667                 {
1668 #if ISAMB_DEBUG
1669                     if (untilbuf)
1670                     {
1671                         (*pp->isamb->method->log_item)(
1672                             LOG_DEBUG, buf,  "isamb_pp_forward returning 1");
1673                     }
1674                     else
1675                     {
1676                         (*pp->isamb->method->log_item)(
1677                             LOG_DEBUG, buf, "isamb_pp_read returning 1 (fwd)");
1678                     }
1679 #endif
1680                     pp->returned_numbers++;
1681                     return 1;
1682                 }
1683                 else
1684                     pp->skipped_numbers++;
1685             }
1686         } /* leaf */
1687     } /* main loop */
1688 }
1689
1690 #elif NEW_FORWARD == 2
1691
1692 int isamb_pp_forward (ISAMB_PP pp, void *buf, const void *untilb)
1693 {
1694     char *dst = buf;
1695     char *src;
1696     struct ISAMB_block *p = pp->block[pp->level];
1697     if (!p)
1698         return 0;
1699
1700 again:
1701     while (p->offset == p->size)
1702     {
1703         int pos, item_len;
1704         while (p->offset == p->size)
1705         {
1706             if (pp->level == 0)
1707                 return 0;
1708             close_block (pp->isamb, pp->block[pp->level]);
1709             pp->block[pp->level] = 0;
1710             (pp->level)--;
1711             p = pp->block[pp->level];
1712             assert (!p->leaf);  
1713         }
1714
1715         assert(!p->leaf);
1716         src = p->bytes + p->offset;
1717         
1718         decode_ptr (&src, &item_len);
1719         src += item_len;
1720         decode_ptr (&src, &pos);
1721         
1722         p->offset = src - (char*) p->bytes;
1723
1724         src = p->bytes + p->offset;
1725
1726         while(1)
1727         {
1728             if (!untilb || p->offset == p->size)
1729                 break;
1730             assert(p->offset < p->size);
1731             decode_ptr (&src, &item_len);
1732             if ((*pp->isamb->method->compare_item)(untilb, src) <= 1)
1733                 break;
1734             src += item_len;
1735             decode_ptr (&src, &pos);
1736             p->offset = src - (char*) p->bytes;
1737         }
1738
1739         pp->level++;
1740
1741         while (1)
1742         {
1743             pp->block[pp->level] = p = open_block (pp->isamb, pos);
1744
1745             pp->total_size += p->size;
1746             pp->no_blocks++;
1747             
1748             if (p->leaf) 
1749             {
1750                 break;
1751             }
1752             
1753             src = p->bytes + p->offset;
1754             while(1)
1755             {
1756                 decode_ptr (&src, &pos);
1757                 p->offset = src - (char*) p->bytes;
1758                 
1759                 if (!untilb || p->offset == p->size)
1760                     break;
1761                 assert(p->offset < p->size);
1762                 decode_ptr (&src, &item_len);
1763                 if ((*pp->isamb->method->compare_item)(untilb, src) <= 1)
1764                     break;
1765                 src += item_len;
1766             }
1767             pp->level++;
1768         }
1769     }
1770     assert (p->offset < p->size);
1771     assert (p->leaf);
1772     while(1)
1773     {
1774         char *dst0 = dst;
1775         src = p->bytes + p->offset;
1776         (*pp->isamb->method->code_item)(ISAMC_DECODE, p->decodeClientData,
1777                                     &dst, &src);
1778         p->offset = src - (char*) p->bytes;
1779         if (!untilb || (*pp->isamb->method->compare_item)(untilb, dst0) <= 1)
1780             break;
1781         dst = dst0;
1782         if (p->offset == p->size) goto again;
1783     }
1784     /* key_logdump_txt(LOG_DEBUG,buf, "isamb_pp_read returning 1"); */
1785     return 1;
1786 }
1787
1788 #endif
1789
1790 int isamb_pp_num (ISAMB_PP pp)
1791 {
1792     return 1;
1793 }
1794
1795 static void isamb_pp_leaf_pos( ISAMB_PP pp, 
1796                                int *current, int *total, void *dummybuf )
1797 {
1798     struct ISAMB_block *p = pp->block[pp->level];
1799     char *src=p->bytes;
1800     char *end=p->bytes+p->size;
1801     char *cur=p->bytes+p->offset;
1802     char *dst;
1803     assert(p->offset <= p->size);
1804     assert(cur <= end);
1805     assert(p->leaf);
1806     *current=0;
1807     *total=0;
1808
1809     while(src < end) {
1810         dst=dummybuf;
1811         (*pp->isamb->method->code_item)
1812            (ISAMC_DECODE, p->decodeClientData,&dst, &src);
1813         assert(dst<(char*) dummybuf+100); /*FIXME */
1814         (*total)++;
1815         if (src<=cur)
1816              (*current)++;
1817     }
1818     logf(LOG_DEBUG, "isamb_pp_leaf_pos: cur=%d tot=%d ofs=%d sz=%d lev=%d",
1819                     *current, *total, p->offset, p->size, pp->level);
1820     assert(src==end);
1821 }
1822
1823 static void isamb_pp_upper_pos( ISAMB_PP pp, int *current, int *total, 
1824                                 int size, int level )
1825 { /* estimates total/current occurrences from here up, excl leaf */
1826     struct ISAMB_block *p = pp->block[level];
1827     char *src=p->bytes;
1828     char *end=p->bytes+p->size;
1829     char *cur=p->bytes+p->offset;
1830     int item_size;
1831     int child;
1832     assert(level>=0);
1833     assert(!p->leaf);
1834     logf(LOG_DEBUG,"isamb_pp_upper_pos at beginning     l=%d "
1835                    "cur=%d tot=%d ofs=%d sz=%d pos=%d", 
1836                    level, *current, *total, p->offset, p->size, p->pos);
1837     assert (p->offset <= p->size);
1838         decode_ptr (&src, &child ); /* first child */
1839     while(src < end) {
1840         if (src!=cur) {
1841             *total += size;
1842             if (src < cur)
1843                 *current +=size;
1844         }
1845             decode_ptr (&src, &item_size ); 
1846         assert(src+item_size<=end);
1847         src += item_size;
1848             decode_ptr (&src, &child );
1849     }
1850     if (level>0)
1851         isamb_pp_upper_pos(pp, current, total, *total, level-1);
1852 } /* upper_pos */
1853
1854 void isamb_pp_pos( ISAMB_PP pp, int *current, int *total )
1855 { /* return an estimate of the current position and of the total number of */
1856   /* occureences in the isam tree, based on the current leaf */
1857     struct ISAMB_block *p = pp->block[pp->level];
1858     char dummy[100]; /* 100 bytes/entry must be enough */
1859     assert(total);
1860     assert(current);
1861     assert(p->leaf);
1862     isamb_pp_leaf_pos(pp,current, total, dummy);
1863     if (pp->level>0)
1864         isamb_pp_upper_pos(pp, current, total, *total, pp->level-1);
1865     /*
1866     logf(LOG_DEBUG,"isamb_pp_pos: C=%d T=%d =%6.2f%%",
1867                     *current, *total, 100.0*(*current)/(*total));
1868     */
1869 }