1 /* This file is part of the Zebra server.
2 Copyright (C) Index Data
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
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
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
23 #include <idzebra/bfile.h>
24 #include <idzebra/isamc.h>
28 typedef struct ISAMB_s *ISAMB;
29 typedef struct ISAMB_PP_s *ISAMB_PP;
32 ISAMB isamb_open(BFiles bfs, const char *name, int writeflag, ISAMC_M *method,
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);
40 void isamb_close(ISAMB isamb);
43 void isamb_merge(ISAMB b, ISAM_P *pos, ISAMC_I *data);
46 ISAMB_PP isamb_pp_open(ISAMB isamb, ISAM_P pos, int scope);
49 int isamb_pp_read(ISAMB_PP pp, void *buf);
52 int isamb_pp_forward(ISAMB_PP pp, void *buf, const void *untilbuf);
55 void isamb_pp_pos(ISAMB_PP pp, double *current, double *total);
58 void isamb_pp_close(ISAMB_PP pp);
61 int isamb_unlink(ISAMB b, ISAM_P pos);
64 ISAMB_PP isamb_pp_open_x(ISAMB isamb, ISAM_P pos, int *level, int scope);
66 void isamb_pp_close_x(ISAMB_PP pp, zint *size, zint *blocks);
69 int isamb_block_info(ISAMB isamb, int cat);
72 void isamb_dump(ISAMB b, ISAM_P pos, void (*pr)(const char *str));
75 zint isamb_get_int_splits(ISAMB b);
78 zint isamb_get_leaf_splits(ISAMB b);
81 void isamb_set_int_count(ISAMB b, int v);
84 void isamb_set_cache_size(ISAMB b, int sz);
87 zint isamb_get_root_ptr(ISAMB b);
90 void isamb_set_root_ptr(ISAMB b, zint root_ptr);
99 * c-file-style: "Stroustrup"
100 * indent-tabs-mode: nil
102 * vim: shiftwidth=4 tabstop=8 expandtab