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