2bc17e682e54a6e78362af779c21164348b5a608
[idzebra-moved-to-github.git] / index / recindex.h
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: recindex.h,v $
7  * Revision 1.15  1999-05-26 07:49:13  adam
8  * C++ compilation.
9  *
10  * Revision 1.14  1999/02/02 14:51:04  adam
11  * Updated WIN32 code specific sections. Changed header.
12  *
13  * Revision 1.13  1998/03/05 08:45:12  adam
14  * New result set model and modular ranking system. Moved towards
15  * descent server API. System information stored as "SGML" records.
16  *
17  * Revision 1.12  1998/01/12 15:04:08  adam
18  * The test option (-s) only uses read-lock (and not write lock).
19  *
20  * Revision 1.11  1997/09/17 12:19:16  adam
21  * Zebra version corresponds to YAZ version 1.4.
22  * Changed Zebra server so that it doesn't depend on global common_resource.
23  *
24  * Revision 1.10  1996/10/29 14:06:53  adam
25  * Include zebrautl.h instead of alexutil.h.
26  *
27  * Revision 1.9  1996/05/01 13:46:36  adam
28  * First work on multiple records in one file.
29  * New option, -offset, to the "unread" command in the filter module.
30  *
31  * Revision 1.8  1995/12/06  12:41:25  adam
32  * New command 'stat' for the index program.
33  * Filenames can be read from stdin by specifying '-'.
34  * Bug fix/enhancement of the transformation from terms to regular
35  * expressons in the search engine.
36  *
37  * Revision 1.7  1995/11/28  09:09:45  adam
38  * Zebra config renamed.
39  * Use setting 'recordId' to identify record now.
40  * Bug fix in recindex.c: rec_release_blocks was invokeded even
41  * though the blocks were already released.
42  * File traversal properly deletes records when needed.
43  *
44  * Revision 1.6  1995/11/27  09:56:21  adam
45  * Record info elements better enumerated. Internal store of records.
46  *
47  * Revision 1.5  1995/11/25  10:24:07  adam
48  * More record fields - they are enumerated now.
49  * New options: flagStoreData flagStoreKey.
50  *
51  * Revision 1.4  1995/11/22  17:19:19  adam
52  * Record management uses the bfile system.
53  *
54  * Revision 1.3  1995/11/20  16:59:46  adam
55  * New update method: the 'old' keys are saved for each records.
56  *
57  * Revision 1.2  1995/11/15  19:13:08  adam
58  * Work on record management.
59  *
60  * Revision 1.1  1995/11/15  14:46:21  adam
61  * Started work on better record management system.
62  *
63  */
64
65 #include <zebrautl.h>
66 #include <bfile.h>
67
68 #ifdef __cplusplus
69 extern "C" {
70 #endif
71
72 #define REC_NO_INFO 8
73
74 typedef struct record_info {
75     int sysno;
76     int newFlag;
77     char *info[REC_NO_INFO];
78     size_t size[REC_NO_INFO];
79 } *Record;
80
81 typedef struct records_info *Records;
82
83 Record rec_cp (Record rec);
84 void rec_del (Records p, Record *recpp);
85 void rec_rm (Record *recpp);
86 void rec_put (Records p, Record *recpp);
87 Record rec_new (Records p);
88 Record rec_get (Records p, int sysno);
89 void rec_close (Records *p);
90 Records rec_open (BFiles bfs, int rw);
91 char *rec_strdup (const char *s, size_t *len);
92 void rec_prstat (Records p);
93
94 enum { 
95     recInfo_fileType, 
96     recInfo_filename, 
97     recInfo_delKeys, 
98     recInfo_databaseName,
99     recInfo_storeData,
100     recInfo_attr
101 };
102
103 #ifdef __cplusplus
104 }
105 #endif