fea03491e7dd02cf26e581b79a2d38a2b7fe2eb5
[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.7  1999-05-26 07:49:13  adam
8  * C++ compilation.
9  *
10  * Revision 1.6  1999/02/02 14:51:12  adam
11  * Updated WIN32 code specific sections. Changed header.
12  *
13  * Revision 1.5  1998/06/08 14:43:16  adam
14  * Added suport for EXPLAIN Proxy servers - added settings databasePath
15  * and explainDatabase to facilitate this. Increased maximum number
16  * of databases and attributes in one register.
17  *
18  * Revision 1.4  1998/05/20 10:12:21  adam
19  * Implemented automatic EXPLAIN database maintenance.
20  * Modified Zebra to work with ASN.1 compiled version of YAZ.
21  *
22  * Revision 1.3  1998/03/05 08:45:13  adam
23  * New result set model and modular ranking system. Moved towards
24  * descent server API. System information stored as "SGML" records.
25  *
26  * Revision 1.2  1996/05/22 08:22:00  adam
27  * Added public ZebDatabaseInfo structure.
28  *
29  * Revision 1.1  1996/05/13 14:23:07  adam
30  * Work on compaction of set/use bytes in dictionary.
31  *
32  */
33 #ifndef ZINFO_H
34 #define ZINFO_H
35
36 #include <data1.h>
37 #include "recindex.h"
38
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42
43 typedef struct zebraExplainInfo *ZebraExplainInfo;
44 typedef struct zebDatabaseInfo ZebDatabaseInfo;
45 ZebraExplainInfo zebraExplain_open (Records records, data1_handle dh,
46                                     Res res,
47                                     int writeFlag,
48                                     void *updateHandle,
49                                     int (*updateFunc)(void *handle,
50                                                       Record drec,
51                                                       data1_node *n));
52 void zebraExplain_close (ZebraExplainInfo zei, int writeFlag,
53                          int (*updateH)(Record drec, data1_node *n));
54 int zebraExplain_curDatabase (ZebraExplainInfo zei, const char *database);
55 int zebraExplain_newDatabase (ZebraExplainInfo zei, const char *database,
56                               int explain_database);
57 int zebraExplain_lookupSU (ZebraExplainInfo zei, int set, int use);
58 int zebraExplain_addSU (ZebraExplainInfo zei, int set, int use);
59 void zebraExplain_addSchema (ZebraExplainInfo zei, Odr_oid *oid);
60 void zebraExplain_recordCountIncrement (ZebraExplainInfo zei, int adjust_num);
61 void zebraExplain_recordBytesIncrement (ZebraExplainInfo zei, int adjust_num);
62 int zebraExplain_runNumberIncrement (ZebraExplainInfo zei, int adjust_num);
63 void zebraExplain_loadAttsets (data1_handle dh, Res res);
64
65 typedef struct {
66     int recordSize;
67     int recordOffset;
68     int runNumber;
69 } RecordAttr;
70 RecordAttr *rec_init_attr (ZebraExplainInfo zei, Record rec);
71
72 #ifdef __cplusplus
73 }
74 #endif
75
76 #endif