099e21b5d607ee035e85d26e6ed5a3fede5eb1ae
[idzebra-moved-to-github.git] / index / index.h
1 /* $Id: index.h,v 1.88 2002-10-16 09:30:57 heikki Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
3    Index Data Aps
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23
24
25 #ifndef INDEX_H
26 #define INDEX_H
27
28 #include <time.h>
29 #include <zebraver.h>
30 #include <zebrautl.h>
31 #include <zebramap.h>
32 #include <sortidx.h>
33
34 #if HAVE_SYS_TIMES_H
35 #include <sys/times.h>
36 #endif
37 #include <sys/stat.h>
38
39 #include <dict.h>
40 #include <isams.h>
41 #include <isam.h>
42 #include <isamc.h>
43 #include <isamd.h>
44 #include <isamb.h>
45 #define ISAM_DEFAULT "c"
46 #include <yaz/data1.h>
47 #include <recctrl.h>
48 #include "recindex.h"
49 #include "zebraapi.h"
50 #include "zinfo.h"
51 #include <passwddb.h>
52 #include <rset.h>
53
54 YAZ_BEGIN_CDECL
55
56 #define SU_SCHEME 1
57
58 #define IT_MAX_WORD 256
59 #define IT_KEY_HAVE_SEQNO 1
60 #define IT_KEY_HAVE_FIELD 0
61
62 typedef int SYSNO;
63
64 struct it_key {
65     int  sysno;
66     int  seqno;
67 };
68
69 enum dirsKind { dirs_dir, dirs_file };
70
71 struct dir_entry {
72     enum dirsKind kind;
73     char *name;
74     time_t mtime;
75 };
76
77 struct dirs_entry {
78     enum dirsKind kind;
79     char path[256];
80     SYSNO sysno;
81     time_t mtime;
82 };
83
84 void getFnameTmp (Res res, char *fname, int no);
85         
86 struct dirs_info *dirs_open (Dict dict, const char *rep, int rw);
87 struct dirs_info *dirs_fopen (Dict dict, const char *path);
88 struct dirs_entry *dirs_read (struct dirs_info *p);
89 struct dirs_entry *dirs_last (struct dirs_info *p);
90 void dirs_mkdir (struct dirs_info *p, const char *src, time_t mtime);
91 void dirs_rmdir (struct dirs_info *p, const char *src);
92 void dirs_add (struct dirs_info *p, const char *src, int sysno, time_t mtime);
93 void dirs_del (struct dirs_info *p, const char *src);
94 void dirs_free (struct dirs_info **pp);
95
96 struct dir_entry *dir_open (const char *rep, const char *base,
97                             int follow_links);
98 void dir_sort (struct dir_entry *e);
99 void dir_free (struct dir_entry **e_p);
100
101 void repositoryUpdate (ZebraHandle zh);
102 void repositoryAdd (ZebraHandle zh);
103 void repositoryDelete (ZebraHandle zh);
104 void repositoryShow (ZebraHandle zh);
105
106 int key_open (ZebraHandle zh, int mem);
107 int key_close (ZebraHandle zh);
108 int key_compare (const void *p1, const void *p2);
109 char *key_print_it (const void *p, char *buf);
110 int key_get_pos (const void *p);
111 int key_compare_it (const void *p1, const void *p2);
112 int key_qsort_compare (const void *p1, const void *p2);
113 void key_logdump (int mask, const void *p);
114 void inv_prstat (ZebraHandle zh);
115 void inv_compact (BFiles bfs);
116 void key_input (ZebraHandle zh, int nkeys, int cache, Res res);
117 ISAMS_M key_isams_m (Res res, ISAMS_M me);
118 ISAMC_M key_isamc_m (Res res, ISAMC_M me);
119 ISAMD_M key_isamd_m (Res res, ISAMD_M me);
120 int merge_sort (char **buf, int from, int to);
121 int key_SU_code (int ch, char *out);
122
123 #define FNAME_DICT "dict"
124 #define FNAME_ISAM "isam"
125 #define FNAME_ISAMC "isamc"
126 #define FNAME_ISAMS "isams"
127 #define FNAME_ISAMH "isamh"
128 #define FNAME_ISAMD "isamd"
129 #define FNAME_CONFIG "zebra.cfg"
130
131 #define GMATCH_DICT "gmatch"
132 #define FMATCH_DICT "fmatch"
133
134 struct strtab *strtab_mk (void);
135 int strtab_src (struct strtab *t, const char *name, void ***infop);
136 void strtab_del (struct strtab *t,
137                  void (*func)(const char *name, void *info, void *data),
138                  void *data);
139 int index_char_cvt (int c);
140 int index_word_prefix (char *string, int attset_ordinal,
141                        int local_attribute, const char *databaseName);
142
143
144 void zebraIndexLockMsg (ZebraHandle zh, const char *str);
145 void zebraIndexUnlock (ZebraHandle zh);
146 int zebraIndexLock (BFiles bfs, ZebraHandle zh, int commitNow, const char *rval);
147 int zebraIndexWait (ZebraHandle zh, int commitPhase);
148
149 #define FNAME_MAIN_LOCK   "zebraidx.LCK"
150 #define FNAME_COMMIT_LOCK "zebracmt.LCK"
151 #define FNAME_ORG_LOCK    "zebraorg.LCK"
152 #define FNAME_TOUCH_TIME  "zebraidx.time"
153
154 typedef struct zebra_lock_info *ZebraLockHandle;
155 ZebraLockHandle zebra_lock_create(const char *dir,
156                                   const char *file, int excl_flag);
157 void zebra_lock_destroy (ZebraLockHandle h);
158 int zebra_lock (ZebraLockHandle h);
159 int zebra_lock_nb (ZebraLockHandle h);
160 int zebra_unlock (ZebraLockHandle h);
161 int zebra_lock_fd (ZebraLockHandle h);
162 void zebra_lock_prefix (Res res, char *dst);
163 char *zebra_mk_fname (const char *dir, const char *name);
164
165 int zebra_lock_w (ZebraLockHandle h);
166 int zebra_lock_r (ZebraLockHandle h);
167
168 void zebra_load_atts (data1_handle dh, Res res);
169
170 int key_SU_decode (int *ch, const unsigned char *out);
171 int key_SU_encode (int ch, char *out);
172
173 // extern Res common_resource;
174
175 #define ENCODE_BUFLEN 768
176 struct encode_info {
177     int  sysno;  /* previously written values for delta-compress */
178     int  seqno;
179     int  cmd;
180     int prevsys; /* buffer for skipping insert/delete pairs */
181     int prevseq;
182     int prevcmd;
183     int keylen; /* tells if we have an unwritten key in buf, and how long*/
184     char buf[ENCODE_BUFLEN];
185 };
186
187 void encode_key_init (struct encode_info *i);
188 char *encode_key_int (int d, char *bp);
189 void encode_key_write (char *k, struct encode_info *i, FILE *outf);
190 void encode_key_flush (struct encode_info *i, FILE *outf);
191
192 typedef struct {
193     char *term;
194     char *db;
195     int sysno;
196     int score;
197 } *ZebraPosSet;
198
199 typedef struct zebra_set *ZebraSet;
200
201 typedef struct zebra_rank_class {
202     struct rank_control *control;
203     int init_flag;
204     void *class_handle;
205     struct zebra_rank_class *next;
206 } *ZebraRankClass;
207
208 struct recKeys {
209     int buf_used;
210     int buf_max;
211     char *buf;
212     char prevAttrSet;
213     short prevAttrUse;
214     int prevSeqNo;
215 };
216
217 struct sortKey {
218     char *string;
219     int length;
220     int attrSet;
221     int attrUse;
222     struct sortKey *next;
223 };
224
225 struct zebra_register {
226     char *name;
227     
228     ISAMS isams;
229     ISAM isam;
230     ISAMC isamc;
231     ISAMD isamd;
232     ISAMB isamb;
233     Dict dict;
234     Dict matchDict;
235     SortIdx sortIdx;
236     int registerState; /* 0 (no commit pages), 1 (use commit pages) */
237     time_t registerChange;
238     BFiles bfs;
239     Records records;
240     ZebraExplainInfo zei;
241
242     char *server_path_prefix;
243     data1_handle dh;
244     ZebraMaps zebra_maps;
245     ZebraRankClass rank_classes;
246     RecTypes recTypes;
247     int seqno;
248     int last_val;
249     int stop_flag;
250     int active; /* 0=shutdown, 1=enabled and inactive, 2=activated */
251
252
253
254     struct recKeys keys;
255     struct sortKey *sortKeys;
256
257     char **key_buf;
258     size_t ptr_top;
259     size_t ptr_i;
260     size_t key_buf_used;
261     int key_file_no;
262 };
263
264 struct zebra_service {
265     int stop_flag;
266     Res global_res;
267     char *configName;
268     struct zebra_session *sessions;
269     struct zebra_register *regs;
270     Zebra_mutex_cond session_lock;
271     Passwd_db passwd_db;
272     char *path_root;
273 };
274
275
276 struct zebra_session {
277     struct zebra_session *next;
278     struct zebra_service *service;
279     struct zebra_register *reg;
280
281     char *admin_databaseName;
282
283     char **basenames;
284     int num_basenames;
285     char *reg_name;
286     char *path_reg;
287
288     ZebraLockHandle lock_normal;
289     ZebraLockHandle lock_shadow;
290
291     int trans_no;
292     int destroyed;
293     ZebraSet sets;
294     Res res;
295     int errCode;
296     int hits;
297     char *errString;
298 #if HAVE_SYS_TIMES_H
299     struct tms tms1;
300     struct tms tms2;    
301 #endif
302     struct recordGroup rGroup;
303     int  shadow_enable;
304
305     int records_inserted;
306     int records_updated;
307     int records_deleted;
308     int records_processed;
309     char *record_encoding;
310
311     yaz_iconv_t iconv_to_utf8;
312     yaz_iconv_t iconv_from_utf8;
313 };
314
315 struct rank_control {
316     char *name;
317     void *(*create)(struct zebra_register *reg);
318     void (*destroy)(struct zebra_register *reg, void *class_handle);
319     void *(*begin)(struct zebra_register *reg, void *class_handle, RSET rset);
320     void (*end)(struct zebra_register *reg, void *set_handle);
321     int (*calc)(void *set_handle, int sysno);
322     void (*add)(void *set_handle, int seqno, int term_index);
323 };
324
325 struct term_set_entry {
326     char *term;
327     struct term_set_entry *next;
328 };
329
330 struct term_set_list {
331     struct term_set_entry *first;
332     struct term_set_entry *last;
333 };
334
335 RSET rpn_search (ZebraHandle zh, NMEM mem,
336                  Z_RPNQuery *rpn, int num_bases, char **basenames, 
337                  const char *setname, ZebraSet sset);
338
339
340 void rpn_scan (ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
341                oid_value attributeset,
342                int num_bases, char **basenames,
343                int *position, int *num_entries, ZebraScanEntry **list,
344                int *is_partial);
345
346 RSET rset_trunc (ZebraHandle zh, ISAMS_P *isam_p, int no,
347                  const char *term, int length_term, const char *flags,
348                  int preserve_position, int term_type);
349
350 void resultSetAddTerm (ZebraHandle zh, ZebraSet s, int reg_type,
351                        const char *db, int set,
352                        int use, const char *term);
353 ZebraSet resultSetAdd (ZebraHandle zh, const char *name, int ov);
354 ZebraSet resultSetGet (ZebraHandle zh, const char *name);
355 ZebraSet resultSetAddRPN (ZebraHandle zh, ODR stream, ODR decode,
356                           Z_RPNQuery *rpn, int num_bases,
357                           char **basenames, const char *setname);
358 RSET resultSetRef (ZebraHandle zh, Z_ResultSetId *resultSetId);
359 void resultSetDestroy (ZebraHandle zh, int num_names, char **names,
360                        int *statuses);
361
362
363 ZebraPosSet zebraPosSetCreate (ZebraHandle zh, const char *name,
364                                int num, int *positions);
365 void zebraPosSetDestroy (ZebraHandle zh, ZebraPosSet records, int num);
366
367 void resultSetSort (ZebraHandle zh, NMEM nmem,
368                     int num_input_setnames, const char **input_setnames,
369                     const char *output_setname,
370                     Z_SortKeySpecList *sort_sequence, int *sort_status);
371 void resultSetSortSingle (ZebraHandle zh, NMEM nmem,
372                           ZebraSet sset, RSET rset,
373                           Z_SortKeySpecList *sort_sequence, int *sort_status);
374 void resultSetRank (ZebraHandle zh, ZebraSet zebraSet, RSET rset);
375 void resultSetInvalidate (ZebraHandle zh);
376
377 int zebra_server_lock_init (ZebraService zh);
378 int zebra_server_lock_destroy (ZebraService zh);
379 int zebra_server_lock (ZebraService zh, int lockCommit);
380 void zebra_server_unlock (ZebraService zh, int commitPhase);
381 int zebra_server_lock_get_state (ZebraService zh, time_t *timep);
382
383 typedef struct attent
384 {
385     int attset_ordinal;
386     data1_local_attribute *local_attributes;
387 } attent;
388
389 void zebraRankInstall (struct zebra_register *reg, struct rank_control *ctrl);
390 ZebraRankClass zebraRankLookup (ZebraHandle zh, const char *name);
391 void zebraRankDestroy (struct zebra_register *reg);
392
393 int att_getentbyatt(ZebraHandle zh, attent *res, oid_value set, int att);
394
395 extern struct rank_control *rank1_class;
396
397 int zebra_record_fetch (ZebraHandle zh, int sysno, int score, ODR stream,
398                         oid_value input_format, Z_RecordComposition *comp,
399                         oid_value *output_format, char **rec_bufp,
400                         int *rec_lenp, char **basenamep);
401
402 void extract_get_fname_tmp (ZebraHandle zh, char *fname, int no);
403 void zebra_index_merge (ZebraHandle zh);
404
405
406 int extract_rec_in_mem (ZebraHandle zh, const char *recordType,
407                         const char *buf, size_t buf_size,
408                         const char *databaseName, int delete_flag,
409                         int test_mode, int *sysno,
410                         int store_keys, int store_data,
411                         const char *match_criteria);
412
413 void extract_flushWriteKeys (ZebraHandle zh);
414
415 struct zebra_fetch_control {
416     off_t offset_end;
417     off_t record_offset;
418     off_t record_int_pos;
419     const char *record_int_buf;
420     int record_int_len;
421     int fd;
422 };
423
424 int zebra_record_ext_read (void *fh, char *buf, size_t count);
425 off_t zebra_record_ext_seek (void *fh, off_t offset);
426 off_t zebra_record_ext_tell (void *fh);
427 off_t zebra_record_int_seek (void *fh, off_t offset);
428 off_t zebra_record_int_tell (void *fh);
429 int zebra_record_int_read (void *fh, char *buf, size_t count);
430 void zebra_record_int_end (void *fh, off_t offset);
431
432 void extract_flushRecordKeys (ZebraHandle zh, SYSNO sysno,
433                               int cmd, struct recKeys *reckeys);
434 void extract_flushSortKeys (ZebraHandle zh, SYSNO sysno,
435                             int cmd, struct sortKey **skp);
436 void extract_schema_add (struct recExtractCtrl *p, Odr_oid *oid);
437 void extract_token_add (RecWord *p);
438 int explain_extract (void *handle, Record rec, data1_node *n);
439
440 int fileExtract (ZebraHandle zh, SYSNO *sysno, const char *fname,
441                  const struct recordGroup *rGroup, int deleteFlag);
442
443 int zebra_begin_read (ZebraHandle zh);
444 void zebra_end_read (ZebraHandle zh);
445
446 int zebra_file_stat (const char *file_name, struct stat *buf,
447                      int follow_links);
448
449 YAZ_END_CDECL
450
451 #endif