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