Define log_item
[idzebra-moved-to-github.git] / isamb / tstisamb.c
1 /* $Id: tstisamb.c,v 1.2 2004-06-01 13:04:29 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 static void log_item(int level, void *b, const char *txt)
124 {
125 }
126
127 int main(int argc, char **argv)
128 {
129     BFiles bfs;
130     ISAMB isb;
131     ISAMC_M method;
132
133     if (argc == 2)
134         yaz_log_init_level(LOG_ALL);
135         
136     /* setup method (attributes) */
137     method.compare_item = compare_item;
138     method.log_item = log_item;
139     method.code_start = code_start;
140     method.code_item = code_item;
141     method.code_reset = code_reset;
142     method.code_stop = code_stop;
143
144     /* create block system */
145     bfs = bfs_create(0, 0);
146     if (!bfs)
147     {
148         yaz_log(LOG_DEBUG, "bfs_create failed");
149         exit(1);
150     }
151
152     /* create isam handle */
153     isb = isamb_open (bfs, "isamb", 1, &method, 0);
154     if (!isb)
155     {
156         yaz_log(LOG_DEBUG, "isamb_open failed");
157         exit(2);
158     }
159     tst_insert(isb, 1);
160     tst_insert(isb, 2);
161     tst_insert(isb, 20);
162     tst_insert(isb, 100);
163     tst_insert(isb, 500);
164     tst_insert(isb, 10000);
165     
166     /* close isam handle */
167     isamb_close(isb);
168
169     /* exit block system */
170     bfs_destroy(bfs);
171     exit(0);
172     return 0;
173 }