Implemented isamb_unlink.
[idzebra-moved-to-github.git] / isamb / tstisamb.c
1 /* $Id: tstisamb.c,v 1.1 2003-06-23 15:36:11 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003
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 int compare_item(const void *a, const void *b)
30 {
31     int ia, ib;
32
33     memcpy(&ia, a, sizeof(int));
34     memcpy(&ib, b, sizeof(int));
35     return ia - ib;
36 }
37
38 void *code_start(int mode)
39 {
40     return 0;
41 }
42
43 void code_item(int mode, void *p, char **dst, char **src)
44 {
45     memcpy (*dst, *src, sizeof(int));
46     (*dst) += sizeof(int);
47     (*src) += sizeof(int);
48 }
49
50 void code_reset(void *p)
51 {
52 }
53 void code_stop(int mode, void *p)
54 {
55 }
56
57 struct read_info {
58     int no;
59     int max;
60 };
61
62 int code_read(void *vp, char **dst, int *insertMode)
63 {
64     struct read_info *ri = (struct read_info *)vp;
65     int x;
66
67     if (ri->no > ri->max)
68         exit(3);
69     if (ri->no == ri->max)
70         return 0;
71     x = ri->no;
72     memcpy (*dst, &x, sizeof(int));
73     (*dst)+=sizeof(int);
74
75     (ri->no)++;
76     *insertMode = 1;
77     return 1;
78 }
79
80 void tst_insert(ISAMB isb, int n)
81 {
82     ISAMC_I isamc_i;
83     ISAMC_P isamc_p;
84     struct read_info ri;
85     ISAMB_PP pp;
86     char key_buf[10];
87
88     /* insert a number of entries */
89     ri.no = 0;
90     ri.max = n;
91
92     isamc_i.clientData = &ri;
93     isamc_i.read_item = code_read;
94     
95     isamc_p = isamb_merge (isb, 0 /* new list */ , &isamc_i);
96
97     /* read the entries */
98     pp = isamb_pp_open (isb, isamc_p);
99     
100     ri.no = 0;
101     while(isamb_pp_read (pp, key_buf))
102     {
103         int x;
104         memcpy (&x, key_buf, sizeof(int));
105         if (x != ri.no)
106         {
107             yaz_log(LOG_DEBUG, "isamb_pp_read. Got %d (expected %d)",
108                     x, ri.no);
109             exit(3);
110         }
111         ri.no++;
112     }
113     if (ri.no != ri.max)
114     {
115         yaz_log(LOG_DEBUG, "ri.max != ri.max (%d != %d)", ri.no, ri.max);
116         exit(3);
117     }
118     isamb_pp_close(pp);
119
120     isamb_unlink(isb, isamc_p);
121 }
122
123 int main(int argc, char **argv)
124 {
125     BFiles bfs;
126     ISAMB isb;
127     ISAMC_M method;
128
129     if (argc == 2)
130         yaz_log_init_level(LOG_ALL);
131         
132     /* setup method (attributes) */
133     method.compare_item = compare_item;
134     method.code_start = code_start;
135     method.code_item = code_item;
136     method.code_reset = code_reset;
137     method.code_stop = code_stop;
138
139     /* create block system */
140     bfs = bfs_create(0, 0);
141     if (!bfs)
142     {
143         yaz_log(LOG_DEBUG, "bfs_create failed");
144         exit(1);
145     }
146
147     /* create isam handle */
148     isb = isamb_open (bfs, "isamb", 1, &method, 0);
149     if (!isb)
150     {
151         yaz_log(LOG_DEBUG, "isamb_open failed");
152         exit(2);
153     }
154     tst_insert(isb, 1);
155     tst_insert(isb, 2);
156     tst_insert(isb, 20);
157     tst_insert(isb, 100);
158     tst_insert(isb, 500);
159     tst_insert(isb, 10000);
160     
161     /* close isam handle */
162     isamb_close(isb);
163
164     /* exit block system */
165     bfs_destroy(bfs);
166     exit(0);
167     return 0;
168 }