5a5cc3cd08870ee4a651c15f3bbd881e2f0647cb
[idzebra-moved-to-github.git] / include / idzebra / isams.h
1 /* $Id: isams.h,v 1.6 2007-01-15 20:08:24 adam Exp $
2    Copyright (C) 1995-2007
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 this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
21 */
22
23
24 #ifndef ISAMS_H
25 #define ISAMS_H
26
27 #include <idzebra/isam-codec.h>
28 #include <idzebra/bfile.h>
29 #include <idzebra/isamc.h>
30
31 YAZ_BEGIN_CDECL
32
33 typedef struct ISAMS_s *ISAMS;
34 typedef struct ISAMS_PP_s *ISAMS_PP;
35
36 typedef struct ISAMS_M_s {
37     int (*compare_item)(const void *a, const void *b);
38     void (*log_item)(int logmask, const void *p, const char *txt);
39
40     ISAM_CODEC codec;
41
42     int debug;
43     int block_size;
44 } ISAMS_M;
45
46 typedef struct ISAMS_I_s {
47     int (*read_item)(void *clientData, char **dst, int *insertMode);
48     void *clientData;
49 } *ISAMS_I;
50
51 void isams_getmethod (ISAMS_M *me);
52
53 ISAMS isams_open (BFiles bfs, const char *name, int writeflag,
54                   ISAMS_M *method);
55 int isams_close (ISAMS is);
56 ISAM_P isams_merge (ISAMS is, ISAMS_I data);
57 ISAMS_PP isams_pp_open (ISAMS is, ISAM_P pos);
58 void isams_pp_close (ISAMS_PP pp);
59 int isams_read_item (ISAMS_PP pp, char **dst);
60 int isams_pp_read (ISAMS_PP pp, void *buf);
61 int isams_pp_num (ISAMS_PP pp);
62
63 YAZ_END_CDECL
64
65 #endif
66 /*
67  * Local variables:
68  * c-basic-offset: 4
69  * indent-tabs-mode: nil
70  * End:
71  * vim: shiftwidth=4 tabstop=8 expandtab
72  */
73