Refactor recindex out of Records struct
[idzebra-moved-to-github.git] / index / recindxp.h
1 /* $Id: recindxp.h,v 1.22 2007-11-23 13:11:08 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 #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 recindex {
34     char *index_fname;
35     BFile index_BFile;
36 };
37
38 typedef struct recindex *recindex_t;
39
40 struct records_info {
41     int rw;
42     int compression_method;
43
44     recindex_t recindex;
45
46     char *data_fname[REC_BLOCK_TYPES];
47     BFile data_BFile[REC_BLOCK_TYPES];
48
49     char *tmp_buf;
50     int tmp_size;
51
52     struct record_cache_entry *record_cache;
53     int cache_size;
54     int cache_cur;
55     int cache_max;
56
57     Zebra_mutex mutex;
58
59     struct records_head {
60         char magic[8];
61         char version[4];
62         zint block_size[REC_BLOCK_TYPES];
63         zint block_free[REC_BLOCK_TYPES];
64         zint block_last[REC_BLOCK_TYPES];
65         zint block_used[REC_BLOCK_TYPES];
66         zint block_move[REC_BLOCK_TYPES];
67
68         zint total_bytes;
69         zint index_last;
70         zint index_free;
71         zint no_records;
72
73     } head;
74 };
75
76 enum recordCacheFlag { recordFlagNop, recordFlagWrite, recordFlagNew,
77                        recordFlagDelete };
78
79 struct record_cache_entry {
80     Record rec;
81     enum recordCacheFlag flag;
82 };
83
84 struct record_index_entry {
85     zint next;         /* first block of record info / next free entry */
86     int size;          /* size of record or 0 if free entry */
87 };
88
89 Record rec_cp(Record rec);
90
91 YAZ_END_CDECL
92 /*
93  * Local variables:
94  * c-basic-offset: 4
95  * indent-tabs-mode: nil
96  * End:
97  * vim: shiftwidth=4 tabstop=8 expandtab
98  */
99