File update of single files.
[idzebra-moved-to-github.git] / index / index.h
1 /*
2  * Copyright (C) 1994-1995, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: index.h,v $
7  * Revision 1.38  1996-04-12 07:02:23  adam
8  * File update of single files.
9  *
10  * Revision 1.37  1996/03/26 16:01:13  adam
11  * New setting lockPath: directory of various lock files.
12  *
13  * Revision 1.36  1996/03/21  14:50:09  adam
14  * File update uses modify-time instead of change-time.
15  *
16  * Revision 1.35  1996/02/12  18:45:36  adam
17  * New fileVerboseFlag in record group control.
18  *
19  * Revision 1.34  1995/12/11  11:43:29  adam
20  * Locking based on fcntl instead of flock.
21  * Setting commitEnable removed. Command line option -n can be used to
22  * prevent commit if commit setting is defined in the configuration file.
23  *
24  * Revision 1.33  1995/12/08  16:22:53  adam
25  * Work on update while servers are running. Three lock files introduced.
26  * The servers reload their registers when necessary, but they don't
27  * reestablish result sets yet.
28  *
29  * Revision 1.32  1995/12/07  17:38:46  adam
30  * Work locking mechanisms for concurrent updates/commit.
31  *
32  * Revision 1.31  1995/12/06  12:41:22  adam
33  * New command 'stat' for the index program.
34  * Filenames can be read from stdin by specifying '-'.
35  * Bug fix/enhancement of the transformation from terms to regular
36  * expressons in the search engine.
37  *
38  * Revision 1.30  1995/12/05  11:25:02  adam
39  * Include of zebraver.h.
40  *
41  * Revision 1.29  1995/11/28  09:09:40  adam
42  * Zebra config renamed.
43  * Use setting 'recordId' to identify record now.
44  * Bug fix in recindex.c: rec_release_blocks was invokeded even
45  * though the blocks were already released.
46  * File traversal properly deletes records when needed.
47  *
48  * Revision 1.28  1995/11/27  13:58:53  adam
49  * New option -t. storeStore data implemented in server.
50  *
51  * Revision 1.27  1995/11/25  10:24:06  adam
52  * More record fields - they are enumerated now.
53  * New options: flagStoreData flagStoreKey.
54  *
55  * Revision 1.26  1995/11/22  17:19:17  adam
56  * Record management uses the bfile system.
57  *
58  * Revision 1.25  1995/11/21  15:29:12  adam
59  * Config file 'base' read by default by both indexer and server.
60  *
61  * Revision 1.24  1995/11/21  15:01:15  adam
62  * New general match criteria implemented.
63  * New feature: document groups.
64  *
65  * Revision 1.23  1995/11/20  16:59:45  adam
66  * New update method: the 'old' keys are saved for each records.
67  *
68  * Revision 1.22  1995/11/20  11:56:26  adam
69  * Work on new traversal.
70  *
71  * Revision 1.21  1995/11/16  15:34:55  adam
72  * Uses new record management system in both indexer and server.
73  *
74  * Revision 1.20  1995/11/15  14:46:18  adam
75  * Started work on better record management system.
76  *
77  * Revision 1.19  1995/10/27  14:00:11  adam
78  * Implemented detection of database availability.
79  *
80  * Revision 1.18  1995/10/17  18:02:08  adam
81  * New feature: databases. Implemented as prefix to words in dictionary.
82  *
83  * Revision 1.17  1995/10/13  16:01:49  adam
84  * Work on relations.
85  *
86  * Revision 1.16  1995/10/10  12:24:38  adam
87  * Temporary sort files are compressed.
88  *
89  * Revision 1.15  1995/10/04  16:57:19  adam
90  * Key input and merge sort in one pass.
91  *
92  * Revision 1.14  1995/09/29  14:01:40  adam
93  * Bug fixes.
94  *
95  * Revision 1.13  1995/09/28  14:22:56  adam
96  * Sort uses smaller temporary files.
97  *
98  * Revision 1.12  1995/09/28  12:10:32  adam
99  * Bug fixes. Field prefix used in queries.
100  *
101  * Revision 1.11  1995/09/27  12:22:28  adam
102  * More work on extract in record control.
103  * Field name is not in isam keys but in prefix in dictionary words.
104  *
105  * Revision 1.10  1995/09/14  07:48:23  adam
106  * Record control management.
107  *
108  * Revision 1.9  1995/09/11  13:09:33  adam
109  * More work on relevance feedback.
110  *
111  * Revision 1.8  1995/09/08  14:52:27  adam
112  * Minor changes. Dictionary is lower case now.
113  *
114  * Revision 1.7  1995/09/06  16:11:16  adam
115  * Option: only one word key per file.
116  *
117  * Revision 1.6  1995/09/05  15:28:39  adam
118  * More work on search engine.
119  *
120  * Revision 1.5  1995/09/04  12:33:42  adam
121  * Various cleanup. YAZ util used instead.
122  *
123  * Revision 1.4  1995/09/04  09:10:35  adam
124  * More work on index add/del/update.
125  * Merge sort implemented.
126  * Initial work on z39 server.
127  *
128  * Revision 1.3  1995/09/01  14:06:35  adam
129  * Split of work into more files.
130  *
131  * Revision 1.2  1995/09/01  10:30:24  adam
132  * More work on indexing. Not working yet.
133  *
134  * Revision 1.1  1995/08/31  14:50:24  adam
135  * New simple file index tool.
136  *
137  */
138
139 #include <time.h>
140 #include <zebraver.h>
141 #include <alexutil.h>
142 #include <dict.h>
143 #include <isam.h>
144
145 #define IT_MAX_WORD 256
146 #define IT_KEY_HAVE_SEQNO 1
147 #define IT_KEY_HAVE_FIELD 0
148
149 struct it_key {
150     int  sysno;
151     int   seqno;
152 };
153
154 enum dirsKind { dirs_dir, dirs_file };
155
156 struct dir_entry {
157     enum dirsKind kind;
158     char *name;
159     time_t mtime;
160 };
161
162 struct dirs_entry {
163     enum dirsKind kind;
164     char path[256];
165     SYSNO sysno;
166     time_t mtime;
167 };
168
169 struct recordGroup {
170     char *groupName;
171     char *databaseName;
172     char *path;
173     char *recordId;
174     char *recordType;
175     int  flagStoreData;
176     int  flagStoreKeys;
177     int  fileVerboseFlag;
178 };
179
180         
181 struct dirs_info *dirs_open (Dict dict, const char *rep);
182 struct dirs_info *dirs_fopen (Dict dict, const char *path);
183 struct dirs_entry *dirs_read (struct dirs_info *p);
184 struct dirs_entry *dirs_last (struct dirs_info *p);
185 void dirs_mkdir (struct dirs_info *p, const char *src, time_t mtime);
186 void dirs_rmdir (struct dirs_info *p, const char *src);
187 void dirs_add (struct dirs_info *p, const char *src, int sysno, time_t mtime);
188 void dirs_del (struct dirs_info *p, const char *src);
189 void dirs_free (struct dirs_info **pp);
190
191 struct dir_entry *dir_open (const char *rep);
192 void dir_sort (struct dir_entry *e);
193 void dir_free (struct dir_entry **e_p);
194
195 void repositoryUpdate (struct recordGroup *rGroup);
196 void repositoryAdd (struct recordGroup *rGroup);
197 void repositoryDelete (struct recordGroup *rGroup);
198 void repositoryShow (struct recordGroup *rGroup);
199
200 void key_open (int mem);
201 int key_close (void);
202 void key_write (int cmd, struct it_key *k, const char *str);
203 int key_compare (const void *p1, const void *p2);
204 int key_qsort_compare (const void *p1, const void *p2);
205 void key_logdump (int mask, const void *p);
206 void key_input (const char *dict_fname, const char *isam_fname,
207                  int nkeys, int cache);
208 int merge_sort (char **buf, int from, int to);
209
210 #define TEMP_FNAME  "keys%d.tmp"
211 #define FNAME_WORD_DICT "worddict"
212 #define FNAME_WORD_ISAM "wordisam"
213 #define FNAME_CONFIG "zebra.cfg"
214
215 #define GMATCH_DICT "gmatch"
216 #define FMATCH_DICT "fmatch"
217
218 struct strtab *strtab_mk (void);
219 int strtab_src (struct strtab *t, const char *name, void ***infop);
220 void strtab_del (struct strtab *t,
221                  void (*func)(const char *name, void *info, void *data),
222                  void *data);
223 int index_char_cvt (int c);
224 int index_word_prefix (char *string, int attset_ordinal,
225                        int local_attribute, const char *databaseName);
226
227 int fileExtract (SYSNO *sysno, const char *fname,
228                  const struct recordGroup *rGroup, int deleteFlag);
229
230 void rec_prstat (void);
231
232 void zebraLockPrefix (char *pathPrefix);
233
234 void zebraIndexLockMsg (const char *str);
235 void zebraIndexUnlock (void);
236 void zebraIndexLock (int commitNow);
237 int zebraIndexWait (int commitPhase);
238
239 #define FNAME_MAIN_LOCK   "zebraidx.LCK"
240 #define FNAME_COMMIT_LOCK "zebracmt.LCK"
241 #define FNAME_ORG_LOCK    "zebraorg.LCK"
242 #define FNAME_TOUCH_TIME  "zebraidx.time"
243
244 int zebraLock (int fd, int wr);
245 int zebraLockNB (int fd, int wr);
246 int zebraUnlock (int fd);