Get rid of SYSNO which is zint anyway. Removed various prototypes
[idzebra-moved-to-github.git] / index / index.h
1 /* $Id: index.h,v 1.183 2006-11-21 22:17:49 adam Exp $
2    Copyright (C) 1995-2006
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 this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
21 */
22
23 #ifndef ZEBRA_INDEX_H
24 #define ZEBRA_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 #include <zebramap.h>
50
51 #include <it_key.h>
52 #include <su_codec.h>
53
54 YAZ_BEGIN_CDECL
55
56 #define ISAM_DEFAULT "b"
57
58 enum dirsKind { dirs_dir, dirs_file };
59
60 struct dir_entry {
61     enum dirsKind kind;
62     char *name;
63     time_t mtime;
64 };
65
66 struct dirs_entry {
67     enum dirsKind kind;
68     char path[256];
69     zint sysno;
70     time_t mtime;
71 };
72
73 void getFnameTmp(Res res, char *fname, int no);
74         
75 struct dirs_info *dirs_open(Dict dict, const char *rep, int rw);
76 struct dirs_info *dirs_fopen(Dict dict, const char *path, int rw);
77 struct dirs_entry *dirs_read(struct dirs_info *p);
78 struct dirs_entry *dirs_last(struct dirs_info *p);
79 void dirs_mkdir(struct dirs_info *p, const char *src, time_t mtime);
80 void dirs_rmdir(struct dirs_info *p, const char *src);
81 void dirs_add(struct dirs_info *p, const char *src, zint sysno, time_t mtime);
82 void dirs_del(struct dirs_info *p, const char *src);
83 void dirs_free(struct dirs_info **pp);
84
85 struct dir_entry *dir_open(const char *rep, const char *base,
86                            int follow_links);
87 void dir_sort(struct dir_entry *e);
88 void dir_free(struct dir_entry **e_p);
89
90 void repositoryUpdate(ZebraHandle zh, const char *path);
91 void repositoryAdd(ZebraHandle zh, const char *path);
92 void repositoryDelete(ZebraHandle zh, const char *path);
93 void repositoryShow(ZebraHandle zh, const char *path);
94
95 void inv_prstat(ZebraHandle zh);
96 void inv_compact(BFiles bfs);
97 void key_input(ZebraHandle zh, int nkeys, int cache, Res res);
98 ISAMS_M *key_isams_m(Res res, ISAMS_M *me);
99 ISAMC_M *key_isamc_m(Res res, ISAMC_M *me);
100
101 #define FNAME_DICT "dict"
102 #define FNAME_ISAM "isam"
103 #define FNAME_ISAMC "isamc"
104 #define FNAME_ISAMS "isams"
105 #define FNAME_CONFIG "zebra.cfg"
106
107 #define GMATCH_DICT "gmatch"
108 #define FMATCH_DICT "fmatch%d"
109
110 void zebra_lock_prefix(Res res, char *dst);
111
112 #define FNAME_MAIN_LOCK   "zebraidx.LCK"
113 #define FNAME_COMMIT_LOCK "zebracmt.LCK"
114 #define FNAME_ORG_LOCK    "zebraorg.LCK"
115 #define FNAME_TOUCH_TIME  "zebraidx.time"
116
117 typedef struct zebra_set *ZebraSet;
118
119 typedef struct zebra_rank_class {
120     struct rank_control *control;
121     int init_flag;
122     void *class_handle;
123     struct zebra_rank_class *next;
124 } *ZebraRankClass;
125
126 #include "reckeys.h"
127 #include "key_block.h"
128
129 struct zebra_register {
130     char *name;
131     
132     ISAMS isams;
133     ISAMC isamc;
134     ISAMB isamb;
135     Dict dict;
136     Dict matchDict;
137     SortIdx sortIdx;
138     int registerState; /* 0 (no commit pages), 1 (use commit pages) */
139     time_t registerChange;
140     BFiles bfs;
141     Records records;
142     ZebraExplainInfo zei;
143
144     char *server_path_prefix;
145     data1_handle dh;
146     ZebraMaps zebra_maps;
147     ZebraRankClass rank_classes;
148     RecTypes recTypes;
149     int seqno;
150     int last_val;
151     int stop_flag;
152
153     zebra_rec_keys_t keys;
154     zebra_rec_keys_t sortKeys;
155
156     zebra_key_block_t key_block;
157 };
158
159 struct zebra_service {
160     int stop_flag;
161     Res global_res;
162     struct zebra_session *sessions;
163     struct zebra_register *regs;
164     Zebra_mutex_cond session_lock;
165     Passwd_db passwd_db;
166     Res dbaccess;
167     const char *path_root;
168     RecTypeClass record_classes;
169     NMEM nmem;
170 };
171
172
173 struct zebra_session {
174     struct zebra_session *next;
175     struct zebra_service *service;
176     struct zebra_register *reg;
177
178     char *xadmin_databaseName;
179
180     char **basenames;
181     int num_basenames;
182     zint approx_limit;
183     char *reg_name;
184     char *path_reg;
185
186     ZebraLockHandle lock_normal;
187     ZebraLockHandle lock_shadow;
188
189     int trans_no;
190     int trans_w_no;
191
192     int destroyed;
193     ZebraSet sets;
194     Res res;
195     Res session_res;
196     char *user_perm;
197     char *dbaccesslist;
198     int errCode;
199     zint hits;
200     char *errString;
201 #if HAVE_SYS_TIMES_H
202     struct tms tms1;
203     struct tms tms2;    
204 #endif
205     int  shadow_enable;
206
207     int m_staticrank;
208     int m_segment_indexing;
209
210     zint records_inserted;
211     zint records_updated;
212     zint records_deleted;
213     zint records_processed;
214     char *record_encoding;
215
216     yaz_iconv_t iconv_to_utf8;
217     yaz_iconv_t iconv_from_utf8;
218
219     int m_follow_links;
220     const char *m_group;
221     const char *m_record_id;
222     const char *m_record_type;
223     int m_store_data;
224     int m_store_keys;
225     int m_explain_database;
226     int m_flag_rw;
227     int m_file_verbose_limit;
228
229     void *store_data_buf;
230     size_t store_data_size;
231     NMEM nmem_error;
232
233     struct zebra_limit *m_limit;
234 };
235
236
237 struct term_set_entry {
238     char *term;
239     struct term_set_entry *next;
240 };
241
242 struct term_set_list {
243     struct term_set_entry *first;
244     struct term_set_entry *last;
245 };
246
247
248 void zebra_limit_destroy(struct zebra_limit *zl);
249 struct zebra_limit *zebra_limit_create(int exclude_flag, zint *ids);
250 void zebra_limit_for_rset(struct zebra_limit *zl,
251                           int (**filter_func)(const void *buf, void *data),
252                           void (**filter_destroy)(void *data),
253                           void **filter_data);
254
255 struct rset_key_control *zebra_key_control_create(ZebraHandle zh);
256
257 ZEBRA_RES rpn_search_top(ZebraHandle zh, Z_RPNStructure *zs,
258                          oid_value attributeSet, 
259                          NMEM stream, NMEM rset_nmem,
260                          Z_SortKeySpecList *sort_sequence,
261                          int num_bases, char **basenames,
262                          RSET *result_set);
263
264 ZEBRA_RES rpn_scan(ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
265                    oid_value attributeset,
266                    int num_bases, char **basenames,
267                    int *position, int *num_entries, ZebraScanEntry **list,
268                    int *is_partial, RSET limit_set);
269
270 RSET rset_trunc(ZebraHandle zh, ISAM_P *isam_p, int no,
271                 const char *term, int length_term, const char *flags,
272                 int preserve_position, int term_type, NMEM rset_nmem,
273                 struct rset_key_control *kctrl, int scope,
274                 struct ord_list *ol, int reg_type,
275                 zint hits_limit, const char *term_ref_id);
276
277 void resultSetAddTerm(ZebraHandle zh, ZebraSet s, int reg_type,
278                       const char *db, const char *index_name,
279                       const char *term);
280 ZebraSet resultSetAdd(ZebraHandle zh, const char *name, int ov);
281 ZebraSet resultSetGet(ZebraHandle zh, const char *name);
282 ZEBRA_RES resultSetAddRPN(ZebraHandle zh, NMEM m, Z_RPNQuery *rpn,
283                      int num_bases, char **basenames,
284                      const char *setname);
285 RSET resultSetRef(ZebraHandle zh, const char *resultSetId);
286 void resultSetDestroy(ZebraHandle zh, int num_names, char **names,
287                        int *statuses);
288 ZEBRA_RES resultSetSort(ZebraHandle zh, NMEM nmem,
289                          int num_input_setnames, const char **input_setnames,
290                          const char *output_setname,
291                          Z_SortKeySpecList *sort_sequence, int *sort_status);
292 ZEBRA_RES resultSetSortSingle(ZebraHandle zh, NMEM nmem,
293                                ZebraSet sset, RSET rset,
294                                Z_SortKeySpecList *sort_sequence,
295                                int *sort_status);
296 ZEBRA_RES resultSetRank(ZebraHandle zh, ZebraSet zebraSet, RSET rset,
297                          NMEM nmem);
298 void resultSetInvalidate(ZebraHandle zh);
299
300 int zebra_record_fetch(ZebraHandle zh, zint sysno, int score, 
301                         zebra_snippets *hit_snippet, ODR stream,
302                         oid_value input_format, Z_RecordComposition *comp,
303                         oid_value *output_format, char **rec_bufp,
304                         int *rec_lenp, char **basenamep,
305                         char **addinfo);
306
307 void extract_get_fname_tmp(ZebraHandle zh, char *fname, int no);
308
309 void zebra_index_merge(ZebraHandle zh);
310
311 ZEBRA_RES zebra_buffer_extract_record(ZebraHandle zh, 
312                                       const char *buf, size_t buf_size,
313                                       int delete_flag,
314                                       int test_mode, 
315                                       const char *recordType,
316                                       zint *sysno,
317                                       const char *match_criteria,
318                                       const char *fname,
319                                       int force_update,
320                                       int allow_update);
321
322 ZEBRA_RES zebra_extract_record_stream(ZebraHandle zh, 
323                                       struct ZebraRecStream *stream,
324                                       int delete_flag,
325                                       int test_mode, 
326                                       const char *recordType,
327                                       zint *sysno,
328                                       const char *match_criteria,
329                                       const char *fname,
330                                       int force_update,
331                                       int allow_update,
332                                       RecType recType,
333                                       void *recTypeClientData);
334
335 YAZ_EXPORT void zebra_create_stream_mem(struct ZebraRecStream *stream,
336                                         const char *buf, size_t sz);
337 YAZ_EXPORT void zebra_create_stream_fd(struct ZebraRecStream *stream,
338                                        int fd, off_t start_offset);
339 void print_rec_keys(ZebraHandle zh, zebra_rec_keys_t reckeys);
340
341 ZEBRA_RES zebra_rec_keys_to_snippets(ZebraHandle zh, zebra_rec_keys_t reckeys,
342                                      zebra_snippets *snippets);
343 ZEBRA_RES zebra_snippets_hit_vector(ZebraHandle zh, const char *setname,
344                                     zint sysno, zebra_snippets *snippets);
345
346 ZEBRA_RES zebra_extract_explain(void *handle, Record rec, data1_node *n);
347
348 ZEBRA_RES zebra_extract_file(ZebraHandle zh, zint *sysno, const char *fname,
349                              int deleteFlag);
350
351 ZEBRA_RES zebra_begin_read(ZebraHandle zh);
352 ZEBRA_RES zebra_end_read(ZebraHandle zh);
353
354 int zebra_file_stat(const char *file_name, struct stat *buf,
355                      int follow_links);
356
357 Dict dict_open_res(BFiles bfs, const char *name, int cache, int rw,
358                    int compact_flag, Res res);
359
360 void zebra_setError(ZebraHandle zh, int code, const char *addinfo);
361 void zebra_setError_zint(ZebraHandle zh, int code, zint i);
362
363 void zebra_term_untrans_iconv(ZebraHandle zh, NMEM stream, int reg_type,
364                               char **dst, const char *src);
365
366 ZEBRA_RES zebra_get_hit_vector(ZebraHandle zh, const char *setname, zint sysno);
367
368 void zebra_term_untrans(ZebraHandle zh, int reg_type,
369                         char *dst, const char *src);
370
371 ZEBRA_RES zebra_apt_get_ord(ZebraHandle zh,
372                             Z_AttributesPlusTerm *zapt,
373                             int index_type,
374                             const char *xpath_use,
375                             oid_value curAttributeSet,
376                             int *ord);
377
378 ZEBRA_RES zebra_attr_list_get_ord(ZebraHandle zh,
379                                   Z_AttributeList *attr_list,
380                                   zinfo_index_category_t cat,
381                                   int index_type,
382                                   oid_value curAttributeSet,
383                                   int *ord);
384
385 ZEBRA_RES zebra_sort_get_ord(ZebraHandle zh,
386                              Z_SortAttributes *sortAttributes,
387                              int *ord,
388                              int *numerical);
389
390 ZEBRA_RES zebra_update_file_match(ZebraHandle zh, const char *path);
391 ZEBRA_RES zebra_update_from_path(ZebraHandle zh, const char *path);
392 ZEBRA_RES zebra_delete_from_path(ZebraHandle zh, const char *path);
393 ZEBRA_RES zebra_remove_file_match(ZebraHandle zh);
394
395 struct rpn_char_map_info
396 {
397     ZebraMaps zm;
398     int reg_type;
399 };
400
401 void rpn_char_map_prepare(struct zebra_register *reg, int reg_type,
402                           struct rpn_char_map_info *map_info);
403
404 ZEBRA_RES zapt_term_to_utf8(ZebraHandle zh, Z_AttributesPlusTerm *zapt,
405                             char *termz);
406
407
408 #define FIRST_IN_FIELD_STR "\001^"
409 #define FIRST_IN_FIELD_CHAR 1
410 #define FIRST_IN_FIELD_LEN 2
411
412 YAZ_END_CDECL
413
414 #endif
415 /*
416  * Local variables:
417  * c-basic-offset: 4
418  * indent-tabs-mode: nil
419  * End:
420  * vim: shiftwidth=4 tabstop=8 expandtab
421  */
422