Moved truncation code to trunc.c.
[idzebra-moved-to-github.git] / index / zserver.h
1 /*
2  * Copyright (C) 1994-1996, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: zserver.h,v $
7  * Revision 1.22  1996-11-04 14:07:49  adam
8  * Moved truncation code to trunc.c.
9  *
10  * Revision 1.21  1996/10/29 14:09:58  adam
11  * Use of cisam system - enabled if setting isamc is 1.
12  *
13  * Revision 1.20  1996/06/04 10:19:02  adam
14  * Minor changes - removed include of ctype.h.
15  *
16  * Revision 1.19  1996/05/14  11:34:01  adam
17  * Scan support in multiple registers/databases.
18  *
19  * Revision 1.18  1996/05/14  06:16:50  adam
20  * Compact use/set bytes used in search service.
21  *
22  * Revision 1.17  1995/12/08 16:22:57  adam
23  * Work on update while servers are running. Three lock files introduced.
24  * The servers reload their registers when necessary, but they don't
25  * reestablish result sets yet.
26  *
27  * Revision 1.16  1995/12/07  17:38:48  adam
28  * Work locking mechanisms for concurrent updates/commit.
29  *
30  * Revision 1.15  1995/11/21  15:29:13  adam
31  * Config file 'base' read by default by both indexer and server.
32  *
33  * Revision 1.14  1995/11/16  17:00:57  adam
34  * Better logging of rpn query.
35  *
36  * Revision 1.13  1995/11/16  15:34:56  adam
37  * Uses new record management system in both indexer and server.
38  *
39  * Revision 1.12  1995/10/27  14:00:12  adam
40  * Implemented detection of database availability.
41  *
42  * Revision 1.11  1995/10/17  18:02:12  adam
43  * New feature: databases. Implemented as prefix to words in dictionary.
44  *
45  * Revision 1.10  1995/10/09  16:18:38  adam
46  * Function dict_lookup_grep got extra client data parameter.
47  *
48  * Revision 1.9  1995/10/06  14:38:01  adam
49  * New result set method: r_score.
50  * Local no (sysno) and score is transferred to retrieveCtrl.
51  *
52  * Revision 1.8  1995/10/06  13:52:06  adam
53  * Bug fixes. Handler may abort further scanning.
54  *
55  * Revision 1.7  1995/10/06  10:43:57  adam
56  * Scan added. 'occurrences' in scan entries not set yet.
57  *
58  * Revision 1.6  1995/09/28  09:19:48  adam
59  * xfree/xmalloc used everywhere.
60  * Extract/retrieve method seems to work for text records.
61  *
62  * Revision 1.5  1995/09/27  16:17:32  adam
63  * More work on retrieve.
64  *
65  * Revision 1.4  1995/09/14  11:53:28  adam
66  * First work on regular expressions/truncations.
67  *
68  * Revision 1.3  1995/09/08  08:53:23  adam
69  * Record buffer maintained in server_info.
70  *
71  * Revision 1.2  1995/09/06  16:11:19  adam
72  * Option: only one word key per file.
73  *
74  * Revision 1.1  1995/09/05  15:28:40  adam
75  * More work on search engine.
76  *
77  */
78
79 #include <backend.h>
80 #include <rset.h>
81
82 #include "index.h"
83 #include "zinfo.h"
84
85 typedef struct {
86     int sysno;
87     int score;
88 } ZServerSetSysno;
89
90 typedef struct ZServerSet_ {
91     char *name;
92     RSET rset;
93     int size;
94     struct ZServerSet_ *next;
95 } ZServerSet;
96    
97 typedef struct {
98     int registerState; /* 0 (no commit pages), 1 (use commit pages) */
99     time_t registerChange;
100     ZServerSet *sets;
101     Dict dict;
102     ISAM isam;
103     ISAMC isamc;
104     Records records;
105     int errCode;
106     char *errString;
107     ODR odr;
108     ZebTargetInfo *zti;
109 } ZServerInfo;
110
111 int rpn_search (ZServerInfo *zi, 
112                 Z_RPNQuery *rpn, int num_bases, char **basenames, 
113                 const char *setname, int *hits);
114
115 int rpn_scan (ZServerInfo *zi, Z_AttributesPlusTerm *zapt,
116               oid_value attributeset,
117               int num_bases, char **basenames,
118               int *position, int *num_entries, struct scan_entry **list,
119               int *status);
120
121 RSET rset_trunc (ZServerInfo *zi, ISAM_P *isam_p, int no);
122
123 ZServerSet *resultSetAdd (ZServerInfo *zi, const char *name,
124                           int ov, RSET rset);
125 ZServerSet *resultSetGet (ZServerInfo *zi, const char *name);
126 ZServerSetSysno *resultSetSysnoGet (ZServerInfo *zi, const char *name,
127                                     int num, int *positions);
128 void resultSetSysnoDel (ZServerInfo *zi, ZServerSetSysno *records, int num);
129 void zlog_rpn (Z_RPNQuery *rpn);
130
131 int zebraServerLock (int lockCommit);
132 void zebraServerUnlock (int commitPhase);
133 int zebraServerLockGetState (time_t *timep);