7825f9b54c1d283a9bfa18fcd1544d301bc491cd
[idzebra-moved-to-github.git] / include / idzebra / isamb.h
1 /* This file is part of the Zebra server.
2    Copyright (C) 1994-2011 Index Data
3
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #ifndef ISAMB_H
21 #define ISAMB_H
22
23 #include <idzebra/bfile.h>
24 #include <idzebra/isamc.h>
25
26 YAZ_BEGIN_CDECL
27
28 typedef struct ISAMB_s *ISAMB;
29 typedef struct ISAMB_PP_s *ISAMB_PP;
30
31 YAZ_EXPORT
32 ISAMB isamb_open(BFiles bfs, const char *name, int writeflag, ISAMC_M *method,
33                   int cache);
34
35 YAZ_EXPORT
36 ISAMB isamb_open2(BFiles bfs, const char *name, int writeflag, ISAMC_M *method,
37                   int cache, int no_cat, int *sizes, int use_root_ptr);
38
39 YAZ_EXPORT
40 void isamb_close(ISAMB isamb);
41
42 YAZ_EXPORT 
43 void isamb_merge(ISAMB b, ISAM_P *pos, ISAMC_I *data);
44
45 YAZ_EXPORT
46 ISAMB_PP isamb_pp_open(ISAMB isamb, ISAM_P pos, int scope);
47
48 YAZ_EXPORT
49 int isamb_pp_read(ISAMB_PP pp, void *buf);
50
51 YAZ_EXPORT
52 int isamb_pp_forward(ISAMB_PP pp, void *buf, const void *untilbuf);
53
54 YAZ_EXPORT
55 void isamb_pp_pos(ISAMB_PP pp, double *current, double *total);
56
57 YAZ_EXPORT
58 void isamb_pp_close(ISAMB_PP pp);
59
60 YAZ_EXPORT
61 int isamb_unlink(ISAMB b, ISAM_P pos);
62
63 YAZ_EXPORT
64 ISAMB_PP isamb_pp_open_x(ISAMB isamb, ISAM_P pos, int *level, int scope);
65 YAZ_EXPORT
66 void isamb_pp_close_x(ISAMB_PP pp, zint *size, zint *blocks);
67
68 YAZ_EXPORT
69 int isamb_block_info(ISAMB isamb, int cat);
70
71 YAZ_EXPORT
72 void isamb_dump(ISAMB b, ISAM_P pos, void (*pr)(const char *str));
73
74 YAZ_EXPORT
75 zint isamb_get_int_splits(ISAMB b);
76
77 YAZ_EXPORT
78 zint isamb_get_leaf_splits(ISAMB b);
79
80 YAZ_EXPORT
81 void isamb_set_int_count(ISAMB b, int v);
82
83 YAZ_EXPORT
84 void isamb_set_cache_size(ISAMB b, int sz);
85
86 YAZ_EXPORT
87 zint isamb_get_root_ptr(ISAMB b);
88
89 YAZ_EXPORT
90 void isamb_set_root_ptr(ISAMB b, zint root_ptr);
91
92
93 YAZ_END_CDECL
94
95 #endif
96 /*
97  * Local variables:
98  * c-basic-offset: 4
99  * c-file-style: "Stroustrup"
100  * indent-tabs-mode: nil
101  * End:
102  * vim: shiftwidth=4 tabstop=8 expandtab
103  */
104