Record offset of size off_t.
[idzebra-moved-to-github.git] / index / zinfo.h
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: zinfo.h,v $
7  * Revision 1.10  2000-05-15 12:56:37  adam
8  * Record offset of size off_t.
9  *
10  * Revision 1.9  2000/03/20 19:08:36  adam
11  * Added remote record import using Z39.50 extended services and Segment
12  * Requests.
13  *
14  * Revision 1.8  1999/11/30 13:48:03  adam
15  * Improved installation. Updated for inclusion of YAZ header files.
16  *
17  * Revision 1.7  1999/05/26 07:49:13  adam
18  * C++ compilation.
19  *
20  * Revision 1.6  1999/02/02 14:51:12  adam
21  * Updated WIN32 code specific sections. Changed header.
22  *
23  * Revision 1.5  1998/06/08 14:43:16  adam
24  * Added suport for EXPLAIN Proxy servers - added settings databasePath
25  * and explainDatabase to facilitate this. Increased maximum number
26  * of databases and attributes in one register.
27  *
28  * Revision 1.4  1998/05/20 10:12:21  adam
29  * Implemented automatic EXPLAIN database maintenance.
30  * Modified Zebra to work with ASN.1 compiled version of YAZ.
31  *
32  * Revision 1.3  1998/03/05 08:45:13  adam
33  * New result set model and modular ranking system. Moved towards
34  * descent server API. System information stored as "SGML" records.
35  *
36  * Revision 1.2  1996/05/22 08:22:00  adam
37  * Added public ZebDatabaseInfo structure.
38  *
39  * Revision 1.1  1996/05/13 14:23:07  adam
40  * Work on compaction of set/use bytes in dictionary.
41  *
42  */
43 #ifndef ZINFO_H
44 #define ZINFO_H
45
46 #include <yaz/data1.h>
47 #include "recindex.h"
48
49 YAZ_BEGIN_CDECL
50
51 typedef struct zebraExplainInfo *ZebraExplainInfo;
52 typedef struct zebDatabaseInfo ZebDatabaseInfo;
53 ZebraExplainInfo zebraExplain_open (Records records, data1_handle dh,
54                                     Res res,
55                                     int writeFlag,
56                                     void *updateHandle,
57                                     int (*updateFunc)(void *handle,
58                                                       Record drec,
59                                                       data1_node *n));
60 void zebraExplain_close (ZebraExplainInfo zei, int writeFlag /*,
61                                                                int (*updateH)(Record drec, data1_node *n)*/);
62 int zebraExplain_curDatabase (ZebraExplainInfo zei, const char *database);
63 int zebraExplain_newDatabase (ZebraExplainInfo zei, const char *database,
64                               int explain_database);
65 int zebraExplain_lookupSU (ZebraExplainInfo zei, int set, int use);
66 int zebraExplain_addSU (ZebraExplainInfo zei, int set, int use);
67 void zebraExplain_addSchema (ZebraExplainInfo zei, Odr_oid *oid);
68 void zebraExplain_recordCountIncrement (ZebraExplainInfo zei, int adjust_num);
69 void zebraExplain_recordBytesIncrement (ZebraExplainInfo zei, int adjust_num);
70 int zebraExplain_runNumberIncrement (ZebraExplainInfo zei, int adjust_num);
71 void zebraExplain_loadAttsets (data1_handle dh, Res res);
72 void zebraExplain_flush (ZebraExplainInfo zei, int writeFlag,
73                          void *updateHandle);
74
75 typedef struct {
76     int recordSize;
77     off_t recordOffset;
78     int runNumber;
79 } RecordAttr;
80 RecordAttr *rec_init_attr (ZebraExplainInfo zei, Record rec);
81
82 YAZ_END_CDECL
83
84 #endif