afa3f8327a6e4b67a952908c045586bcead9ed04
[idzebra-moved-to-github.git] / index / recindxp.h
1 /* $Id: recindxp.h,v 1.16 2004-12-08 12:23:09 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
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 "recindex.h"
24
25 #include <idzebra/bfile.h>
26
27 YAZ_BEGIN_CDECL
28
29 #define REC_BLOCK_TYPES 2
30 #define REC_HEAD_MAGIC "recindex"
31 #define REC_VERSION 5
32
33 struct records_info {
34     int rw;
35     int compression_method;
36
37     char *index_fname;
38     BFile index_BFile;
39
40     char *data_fname[REC_BLOCK_TYPES];
41     BFile data_BFile[REC_BLOCK_TYPES];
42
43     char *tmp_buf;
44     int tmp_size;
45
46     struct record_cache_entry *record_cache;
47     int cache_size;
48     int cache_cur;
49     int cache_max;
50
51     Zebra_mutex mutex;
52
53     struct records_head {
54         char magic[8];
55         char version[4];
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];
61
62         zint total_bytes;
63         zint index_last;
64         zint index_free;
65         zint no_records;
66
67     } head;
68 };
69
70 enum recordCacheFlag { recordFlagNop, recordFlagWrite, recordFlagNew,
71                        recordFlagDelete };
72
73 struct record_cache_entry {
74     Record rec;
75     enum recordCacheFlag flag;
76 };
77
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 */
81 };
82
83 YAZ_END_CDECL