1 /* $Id: recindxp.h,v 1.18 2006-05-10 08:13:22 adam Exp $
2 Copyright (C) 1995-2005
5 This file is part of the Zebra server.
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
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
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
25 #include <idzebra/bfile.h>
29 #define REC_BLOCK_TYPES 2
30 #define REC_HEAD_MAGIC "recindex"
35 int compression_method;
40 char *data_fname[REC_BLOCK_TYPES];
41 BFile data_BFile[REC_BLOCK_TYPES];
46 struct record_cache_entry *record_cache;
56 zint block_size[REC_BLOCK_TYPES];
57 zint block_free[REC_BLOCK_TYPES];
58 zint block_last[REC_BLOCK_TYPES];
59 zint block_used[REC_BLOCK_TYPES];
60 zint block_move[REC_BLOCK_TYPES];
70 enum recordCacheFlag { recordFlagNop, recordFlagWrite, recordFlagNew,
73 struct record_cache_entry {
75 enum recordCacheFlag flag;
78 struct record_index_entry {
79 zint next; /* first block of record info / next free entry */
80 int size; /* size of record or 0 if free entry */
87 * indent-tabs-mode: nil
89 * vim: shiftwidth=4 tabstop=8 expandtab