Zebra uses string attributes for indexing internally. Using set+numeric
[idzebra-moved-to-github.git] / index / index.h
1 /* $Id: index.h,v 1.162 2006-05-19 13:49:34 adam Exp $
2    Copyright (C) 1995-2005
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 #ifndef INDEX_H
24 #define INDEX_H
25
26 #include <time.h>
27 #include <stdlib.h>
28 #include <idzebra/version.h>
29 #include <idzebra/util.h>
30 #include <idzebra/flock.h>
31 #include <sortidx.h>
32
33 #if HAVE_SYS_TIMES_H
34 #include <sys/times.h>
35 #endif
36 #include <sys/stat.h>
37
38 #include <idzebra/dict.h>
39 #include <idzebra/isams.h>
40 #include <idzebra/isamc.h>
41 #include <idzebra/isamb.h>
42 #include <d1_absyn.h>
43 #include <idzebra/recgrs.h>
44 #include "recindex.h"
45 #include <idzebra/api.h>
46 #include "zinfo.h"
47 #include <passwddb.h>
48 #include <rset.h>
49
50 YAZ_BEGIN_CDECL
51
52 #define ISAM_DEFAULT "b"
53
54 #define SU_SCHEME 1
55
56 #define IT_MAX_WORD 256
57
58 #define IT_KEY_LEVEL_MAX 5
59 struct it_key {
60     int  len;
61     zint mem[IT_KEY_LEVEL_MAX];
62 };
63
64 enum dirsKind { dirs_dir, dirs_file };
65
66 struct dir_entry {
67     enum dirsKind kind;
68     char *name;
69     time_t mtime;
70 };
71
72 struct dirs_entry {
73     enum dirsKind kind;
74     char path[256];
75     SYSNO sysno;
76     time_t mtime;
77 };
78
79 void getFnameTmp (Res res, char *fname, int no);
80         
81 struct dirs_info *dirs_open (Dict dict, const char *rep, int rw);
82 struct dirs_info *dirs_fopen (Dict dict, const char *path, int rw);
83 struct dirs_entry *dirs_read (struct dirs_info *p);
84 struct dirs_entry *dirs_last (struct dirs_info *p);
85 void dirs_mkdir (struct dirs_info *p, const char *src, time_t mtime);
86 void dirs_rmdir (struct dirs_info *p, const char *src);
87 void dirs_add (struct dirs_info *p, const char *src, SYSNO sysno, time_t mtime);
88 void dirs_del (struct dirs_info *p, const char *src);
89 void dirs_free (struct dirs_info **pp);
90
91 struct dir_entry *dir_open (const char *rep, const char *base,
92                             int follow_links);
93 void dir_sort (struct dir_entry *e);
94 void dir_free (struct dir_entry **e_p);
95
96 void repositoryUpdate (ZebraHandle zh, const char *path);
97 void repositoryAdd (ZebraHandle zh, const char *path);
98 void repositoryDelete (ZebraHandle zh, const char *path);
99 void repositoryShow (ZebraHandle zh, const char *path);
100
101 int key_open (ZebraHandle zh, int mem);
102 int key_close (ZebraHandle zh);
103 int key_compare (const void *p1, const void *p2);
104 void key_init(struct it_key *k);
105 char *key_print_it (const void *p, char *buf);
106 zint key_get_seq (const void *p);
107 int key_compare_it (const void *p1, const void *p2);
108 int key_qsort_compare (const void *p1, const void *p2);
109 void key_logdump (int mask, const void *p);
110 void key_logdump_txt (int logmask, const void *p, const char *txt);
111 void inv_prstat (ZebraHandle zh);
112 void inv_compact (BFiles bfs);
113 void key_input (ZebraHandle zh, int nkeys, int cache, Res res);
114 ISAMS_M *key_isams_m (Res res, ISAMS_M *me);
115 ISAMC_M *key_isamc_m (Res res, ISAMC_M *me);
116 int merge_sort (char **buf, int from, int to);
117 int key_SU_code (int ch, char *out);
118
119 #define FNAME_DICT "dict"
120 #define FNAME_ISAM "isam"
121 #define FNAME_ISAMC "isamc"
122 #define FNAME_ISAMS "isams"
123 #define FNAME_ISAMH "isamh"
124 #define FNAME_ISAMD "isamd"
125 #define FNAME_CONFIG "zebra.cfg"
126
127 #define GMATCH_DICT "gmatch"
128 #define FMATCH_DICT "fmatch"
129
130 struct strtab *strtab_mk (void);
131 int strtab_src (struct strtab *t, const char *name, void ***infop);
132 void strtab_del (struct strtab *t,
133                  void (*func)(const char *name, void *info, void *data),
134                  void *data);
135 int index_char_cvt (int c);
136 int index_word_prefix (char *string, int attset_ordinal,
137                        int local_attribute, const char *databaseName);
138
139
140 void zebraIndexLockMsg (ZebraHandle zh, const char *str);
141 void zebraIndexUnlock (ZebraHandle zh);
142 int zebraIndexLock (BFiles bfs, ZebraHandle zh, int commitNow, const char *rval);
143 int zebraIndexWait (ZebraHandle zh, int commitPhase);
144
145 void zebra_lock_prefix (Res res, char *dst);
146
147 #define FNAME_MAIN_LOCK   "zebraidx.LCK"
148 #define FNAME_COMMIT_LOCK "zebracmt.LCK"
149 #define FNAME_ORG_LOCK    "zebraorg.LCK"
150 #define FNAME_TOUCH_TIME  "zebraidx.time"
151
152 void zebra_load_atts (data1_handle dh, Res res);
153
154 int key_SU_decode (int *ch, const unsigned char *out);
155 int key_SU_encode (int ch, char *out);
156
157 #define ENCODE_BUFLEN 768
158 struct encode_info {
159     int  sysno;  /* previously written values for delta-compress */
160     int  seqno;
161     int  cmd;
162     int prevsys; /* buffer for skipping insert/delete pairs */
163     int prevseq;
164     int prevcmd;
165     int keylen; /* tells if we have an unwritten key in buf, and how long*/
166     void *encode_handle;
167     void *decode_handle;
168     char buf[ENCODE_BUFLEN];
169 };
170
171 void encode_key_init (struct encode_info *i);
172 char *encode_key_int (int d, char *bp);
173 void encode_key_write (char *k, struct encode_info *i, FILE *outf);
174 void encode_key_flush (struct encode_info *i, FILE *outf);
175
176 typedef struct zebra_set *ZebraSet;
177
178 typedef struct zebra_rank_class {
179     struct rank_control *control;
180     int init_flag;
181     void *class_handle;
182     struct zebra_rank_class *next;
183 } *ZebraRankClass;
184
185 #include "reckeys.h"
186
187 struct zebra_register {
188     char *name;
189     
190     ISAMS isams;
191     ISAMC isamc;
192     ISAMB isamb;
193     Dict dict;
194     Dict matchDict;
195     SortIdx sortIdx;
196     int registerState; /* 0 (no commit pages), 1 (use commit pages) */
197     time_t registerChange;
198     BFiles bfs;
199     Records records;
200     ZebraExplainInfo zei;
201
202     char *server_path_prefix;
203     data1_handle dh;
204     ZebraMaps zebra_maps;
205     ZebraRankClass rank_classes;
206     RecTypes recTypes;
207     int seqno;
208     int last_val;
209     int stop_flag;
210
211     zebra_rec_keys_t keys;
212     zebra_rec_keys_t sortKeys;
213     char **key_buf;
214     size_t ptr_top;
215     size_t ptr_i;
216     size_t key_buf_used;
217     int key_file_no;
218 };
219
220 struct zebra_service {
221     int stop_flag;
222     Res global_res;
223     struct zebra_session *sessions;
224     struct zebra_register *regs;
225     Zebra_mutex_cond session_lock;
226     Passwd_db passwd_db;
227     Res dbaccess;
228     const char *path_root;
229     RecTypeClass record_classes;
230     NMEM nmem;
231 };
232
233
234 struct zebra_session {
235     struct zebra_session *next;
236     struct zebra_service *service;
237     struct zebra_register *reg;
238
239     char *xadmin_databaseName;
240
241     char **basenames;
242     int num_basenames;
243     zint approx_limit;
244     char *reg_name;
245     char *path_reg;
246
247     ZebraLockHandle lock_normal;
248     ZebraLockHandle lock_shadow;
249
250     int trans_no;
251     int trans_w_no;
252
253     int destroyed;
254     ZebraSet sets;
255     Res res;
256     Res session_res;
257     char *user_perm;
258     char *dbaccesslist;
259     int errCode;
260     zint hits;
261     char *errString;
262 #if HAVE_SYS_TIMES_H
263     struct tms tms1;
264     struct tms tms2;    
265 #endif
266     int  shadow_enable;
267
268     int m_staticrank;
269
270     zint records_inserted;
271     zint records_updated;
272     zint records_deleted;
273     zint records_processed;
274     char *record_encoding;
275
276     yaz_iconv_t iconv_to_utf8;
277     yaz_iconv_t iconv_from_utf8;
278
279     int m_follow_links;
280     const char *m_group;
281     const char *m_record_id;
282     const char *m_record_type;
283     int m_store_data;
284     int m_store_keys;
285     int m_explain_database;
286     int m_flag_rw;
287     int m_file_verbose_limit;
288
289     void *store_data_buf;
290     size_t store_data_size;
291     NMEM nmem_error;
292
293     struct zebra_limit *m_limit;
294 };
295
296
297 struct term_set_entry {
298     char *term;
299     struct term_set_entry *next;
300 };
301
302 struct term_set_list {
303     struct term_set_entry *first;
304     struct term_set_entry *last;
305 };
306
307
308 void zebra_limit_destroy(struct zebra_limit *zl);
309 struct zebra_limit *zebra_limit_create(int exclude_flag, zint *ids);
310 void zebra_limit_for_rset(struct zebra_limit *zl,
311                           int (**filter_func)(const void *buf, void *data),
312                           void (**filter_destroy)(void *data),
313                           void **filter_data);
314
315 struct rset_key_control *zebra_key_control_create(ZebraHandle zh);
316
317 ZEBRA_RES rpn_search_top(ZebraHandle zh, Z_RPNStructure *zs,
318                          oid_value attributeSet, 
319                          NMEM stream, NMEM rset_nmem,
320                          Z_SortKeySpecList *sort_sequence,
321                          int num_bases, char **basenames,
322                          RSET *result_set);
323
324 ZEBRA_RES rpn_scan (ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
325                     oid_value attributeset,
326                     int num_bases, char **basenames,
327                     int *position, int *num_entries, ZebraScanEntry **list,
328                     int *is_partial, RSET limit_set, int return_zero);
329
330 RSET rset_trunc(ZebraHandle zh, ISAM_P *isam_p, int no,
331                 const char *term, int length_term, const char *flags,
332                 int preserve_position, int term_type, NMEM rset_nmem,
333                 struct rset_key_control *kctrl, int scope,
334                 struct ord_list *ol, int reg_type,
335                 zint hits_limit, const char *term_ref_id);
336
337 void resultSetAddTerm (ZebraHandle zh, ZebraSet s, int reg_type,
338                        const char *db, int set,
339                        int use, const char *term);
340 ZebraSet resultSetAdd (ZebraHandle zh, const char *name, int ov);
341 ZebraSet resultSetGet (ZebraHandle zh, const char *name);
342 ZEBRA_RES resultSetAddRPN (ZebraHandle zh, NMEM m, Z_RPNQuery *rpn,
343                      int num_bases, char **basenames,
344                      const char *setname);
345 RSET resultSetRef (ZebraHandle zh, const char *resultSetId);
346 void resultSetDestroy (ZebraHandle zh, int num_names, char **names,
347                        int *statuses);
348 ZEBRA_RES resultSetSort (ZebraHandle zh, NMEM nmem,
349                          int num_input_setnames, const char **input_setnames,
350                          const char *output_setname,
351                          Z_SortKeySpecList *sort_sequence, int *sort_status);
352 ZEBRA_RES resultSetSortSingle (ZebraHandle zh, NMEM nmem,
353                                ZebraSet sset, RSET rset,
354                                Z_SortKeySpecList *sort_sequence,
355                                int *sort_status);
356 ZEBRA_RES resultSetRank (ZebraHandle zh, ZebraSet zebraSet, RSET rset,
357                          NMEM nmem);
358 void resultSetInvalidate (ZebraHandle zh);
359
360 int zebra_server_lock_init (ZebraService zh);
361 int zebra_server_lock_destroy (ZebraService zh);
362 int zebra_server_lock (ZebraService zh, int lockCommit);
363 void zebra_server_unlock (ZebraService zh, int commitPhase);
364 int zebra_server_lock_get_state (ZebraService zh, time_t *timep);
365
366 #if 1
367 typedef struct attent
368 {
369     int attset_ordinal;
370     data1_local_attribute *local_attributes;
371 } attent;
372 #endif
373
374 int zebra_record_fetch (ZebraHandle zh, SYSNO sysno, int score, 
375                         zebra_snippets *hit_snippet, ODR stream,
376                         oid_value input_format, Z_RecordComposition *comp,
377                         oid_value *output_format, char **rec_bufp,
378                         int *rec_lenp, char **basenamep,
379                         char **addinfo);
380
381 void extract_get_fname_tmp (ZebraHandle zh, char *fname, int no);
382
383 void zebra_index_merge (ZebraHandle zh);
384
385 ZEBRA_RES buffer_extract_record (ZebraHandle zh, 
386                                  const char *buf, size_t buf_size,
387                                  int delete_flag,
388                                  int test_mode, 
389                                  const char *recordType,
390                                  SYSNO *sysno,
391                                  const char *match_criteria,
392                                  const char *fname,
393                                  int force_update,
394                                  int allow_update);
395
396 #if 0
397 int extract_rec_in_mem (ZebraHandle zh, const char *recordType,
398                         const char *buf, size_t buf_size,
399                         const char *databaseName, int delete_flag,
400                         int test_mode, int *sysno,
401                         int store_keys, int store_data,
402                         const char *match_criteria);
403 #endif
404 void extract_flushWriteKeys (ZebraHandle zh, int final);
405
406 struct zebra_fetch_control {
407     off_t offset_end;
408     off_t record_offset;
409     off_t record_int_pos;
410     const char *record_int_buf;
411     int record_int_len;
412     int fd;
413 };
414
415 int zebra_record_ext_read (void *fh, char *buf, size_t count);
416 off_t zebra_record_ext_seek (void *fh, off_t offset);
417 off_t zebra_record_ext_tell (void *fh);
418 off_t zebra_record_int_seek (void *fh, off_t offset);
419 off_t zebra_record_int_tell (void *fh);
420 int zebra_record_int_read (void *fh, char *buf, size_t count);
421 void zebra_record_int_end (void *fh, off_t offset);
422
423 void print_rec_keys(ZebraHandle zh, zebra_rec_keys_t reckeys);
424
425 ZEBRA_RES zebra_snippets_rec_keys(ZebraHandle zh, zebra_rec_keys_t reckeys,
426                                   zebra_snippets *snippets);
427 ZEBRA_RES zebra_snippets_hit_vector(ZebraHandle zh, const char *setname,
428                                     zint sysno, zebra_snippets *snippets);
429
430 void extract_flushRecordKeys (ZebraHandle zh, SYSNO sysno,
431                               int cmd, zebra_rec_keys_t reckeys,
432                               zint staticrank);
433 void extract_flushSortKeys (ZebraHandle zh, SYSNO sysno,
434                             int cmd, zebra_rec_keys_t skp);
435 void extract_schema_add (struct recExtractCtrl *p, Odr_oid *oid);
436 void extract_token_add (RecWord *p);
437 int explain_extract (void *handle, Record rec, data1_node *n);
438
439 ZEBRA_RES zebra_extract_file(ZebraHandle zh, SYSNO *sysno, const char *fname,
440                              int deleteFlag);
441
442 ZEBRA_RES zebra_begin_read (ZebraHandle zh);
443 ZEBRA_RES zebra_end_read (ZebraHandle zh);
444
445 int zebra_file_stat (const char *file_name, struct stat *buf,
446                      int follow_links);
447
448 void zebra_livcode_transform(ZebraHandle zh, Z_RPNQuery *query);
449
450 void *iscz1_start ();
451 void iscz1_reset (void *vp);
452 void iscz1_stop (void *p);
453 void iscz1_decode (void *vp, char **dst, const char **src);
454 void iscz1_encode (void *vp, char **dst, const char **src);
455
456 Dict dict_open_res (BFiles bfs, const char *name, int cache, int rw,
457                     int compact_flag, Res res);
458
459 void zebra_setError(ZebraHandle zh, int code, const char *addinfo);
460 void zebra_setError_zint(ZebraHandle zh, int code, zint i);
461
462 void zebra_term_untrans_iconv(ZebraHandle zh, NMEM stream, int reg_type,
463                               char **dst, const char *src);
464
465 ZEBRA_RES zebra_get_hit_vector(ZebraHandle zh, const char *setname, zint sysno);
466
467 void zebra_term_untrans(ZebraHandle zh, int reg_type,
468                         char *dst, const char *src);
469
470 ZEBRA_RES zebra_apt_get_ord(ZebraHandle zh,
471                             Z_AttributesPlusTerm *zapt,
472                             int index_type,
473                             const char *xpath_use,
474                             oid_value curAttributeSet,
475                             int *ord);
476
477 ZEBRA_RES zebra_attr_list_get_ord(ZebraHandle zh,
478                                   Z_AttributeList *attr_list,
479                                   int index_type,
480                                   oid_value curAttributeSet,
481                                   int *ord);
482
483 ZEBRA_RES zebra_sort_get_ord(ZebraHandle zh,
484                              Z_SortAttributes *sortAttributes,
485                              int *ord,
486                              int *numerical);
487
488 YAZ_END_CDECL
489
490 #endif
491 /*
492  * Local variables:
493  * c-basic-offset: 4
494  * indent-tabs-mode: nil
495  * End:
496  * vim: shiftwidth=4 tabstop=8 expandtab
497  */
498