New input filter that works!
[idzebra-moved-to-github.git] / index / main.c
1 /*
2  * Copyright (C) 1994-1995, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: main.c,v $
7  * Revision 1.31  1996-01-08 19:15:46  adam
8  * New input filter that works!
9  *
10  * Revision 1.30  1995/12/12  16:00:59  adam
11  * System call sync(2) used after update/commit.
12  * Locking (based on fcntl) uses F_EXLCK and F_SHLCK instead of F_WRLCK
13  * and F_RDLCK.
14  *
15  * Revision 1.29  1995/12/11  11:43:30  adam
16  * Locking based on fcntl instead of flock.
17  * Setting commitEnable removed. Command line option -n can be used to
18  * prevent commit if commit setting is defined in the configuration file.
19  *
20  * Revision 1.28  1995/12/08  16:22:56  adam
21  * Work on update while servers are running. Three lock files introduced.
22  * The servers reload their registers when necessary, but they don't
23  * reestablish result sets yet.
24  *
25  * Revision 1.27  1995/12/07  17:38:47  adam
26  * Work locking mechanisms for concurrent updates/commit.
27  *
28  * Revision 1.26  1995/12/06  12:41:23  adam
29  * New command 'stat' for the index program.
30  * Filenames can be read from stdin by specifying '-'.
31  * Bug fix/enhancement of the transformation from terms to regular
32  * expressons in the search engine.
33  *
34  * Revision 1.25  1995/12/01  16:24:39  adam
35  * Commit files use separate meta file area.
36  *
37  * Revision 1.24  1995/11/30  17:01:38  adam
38  * New setting commitCache: points to commit directories/files.
39  * New command commit: commits at the end of a zebraidx run.
40  *
41  * Revision 1.23  1995/11/30  08:34:31  adam
42  * Started work on commit facility.
43  * Changed a few malloc/free to xmalloc/xfree.
44  *
45  * Revision 1.22  1995/11/28  09:09:42  adam
46  * Zebra config renamed.
47  * Use setting 'recordId' to identify record now.
48  * Bug fix in recindex.c: rec_release_blocks was invokeded even
49  * though the blocks were already released.
50  * File traversal properly deletes records when needed.
51  *
52  * Revision 1.21  1995/11/27  14:27:39  adam
53  * Renamed 'update' command to 'dir'.
54  *
55  * Revision 1.20  1995/11/27  13:58:53  adam
56  * New option -t. storeStore data implemented in server.
57  *
58  * Revision 1.19  1995/11/25  10:24:06  adam
59  * More record fields - they are enumerated now.
60  * New options: flagStoreData flagStoreKey.
61  *
62  * Revision 1.18  1995/11/22  17:19:17  adam
63  * Record management uses the bfile system.
64  *
65  * Revision 1.17  1995/11/21  15:01:16  adam
66  * New general match criteria implemented.
67  * New feature: document groups.
68  *
69  * Revision 1.16  1995/11/20  11:56:27  adam
70  * Work on new traversal.
71  *
72  * Revision 1.15  1995/11/01  16:25:51  quinn
73  * *** empty log message ***
74  *
75  * Revision 1.14  1995/10/17  18:02:09  adam
76  * New feature: databases. Implemented as prefix to words in dictionary.
77  *
78  * Revision 1.13  1995/10/10  12:24:39  adam
79  * Temporary sort files are compressed.
80  *
81  * Revision 1.12  1995/10/04  16:57:20  adam
82  * Key input and merge sort in one pass.
83  *
84  * Revision 1.11  1995/09/29  14:01:45  adam
85  * Bug fixes.
86  *
87  * Revision 1.10  1995/09/28  14:22:57  adam
88  * Sort uses smaller temporary files.
89  *
90  * Revision 1.9  1995/09/14  07:48:24  adam
91  * Record control management.
92  *
93  * Revision 1.8  1995/09/06  16:11:18  adam
94  * Option: only one word key per file.
95  *
96  * Revision 1.7  1995/09/05  15:28:39  adam
97  * More work on search engine.
98  *
99  * Revision 1.6  1995/09/04  12:33:43  adam
100  * Various cleanup. YAZ util used instead.
101  *
102  * Revision 1.5  1995/09/04  09:10:39  adam
103  * More work on index add/del/update.
104  * Merge sort implemented.
105  * Initial work on z39 server.
106  *
107  * Revision 1.4  1995/09/01  14:06:36  adam
108  * Split of work into more files.
109  *
110  * Revision 1.3  1995/09/01  10:57:07  adam
111  * Minor changes.
112  *
113  * Revision 1.2  1995/09/01  10:30:24  adam
114  * More work on indexing. Not working yet.
115  *
116  * Revision 1.1  1995/08/31  14:50:24  adam
117  * New simple file index tool.
118  *
119  */
120 #include <stdio.h>
121 #include <assert.h>
122 #include <unistd.h>
123
124 #include <alexutil.h>
125 #include <data1.h>
126 #include "index.h"
127
128 char *prog;
129 size_t mem_max = 4*1024*1024;
130 extern char *data1_tabpath;
131
132 int main (int argc, char **argv)
133 {
134     int ret;
135     int cmd = 0;
136     char *arg;
137     char *configName = NULL;
138     int nsections;
139     int disableCommit = 0;
140
141     struct recordGroup rGroupDef;
142     
143     rGroupDef.groupName = NULL;
144     rGroupDef.databaseName = NULL;
145     rGroupDef.path = NULL;
146     rGroupDef.recordId = NULL;
147     rGroupDef.recordType = NULL;
148     rGroupDef.flagStoreData = -1;
149     rGroupDef.flagStoreKeys = -1;
150
151     prog = *argv;
152     if (argc < 2)
153     {
154         fprintf (stderr, "zebraidx [options] command <dir> ...\n"
155         "Commands:\n"
156         " update <dir>  Update index with files below <dir>.\n"
157         "               If <dir> is empty filenames are read from stdin.\n"
158         " delete <dir>  Delete index with files below <dir>.\n"
159         " commit        Commit changes\n"
160         "Options:\n"
161         " -t <type>     Index files as <type> (grs or text).\n"
162         " -c <config>   Read configuration file <config>.\n"
163         " -g <group>    Index files according to group settings.\n"
164         " -d <database> Records belong to Z39.50 database <database>.\n"
165         " -m <mbytes>   Use <mbytes> before flushing keys to disk.\n"
166         " -n            Don't use shadow system\n"
167         " -v <level>    Set logging to <level>.\n");
168         exit (1);
169     }
170     while ((ret = options ("t:c:g:d:m:v:n", argv, argc, &arg)) != -2)
171     {
172         if (ret == 0)
173         {
174             const char *rval;
175             if(cmd == 0) /* command */
176             {
177                 if (!common_resource)
178                 {
179                     common_resource = res_open (configName ?
180                                                 configName : FNAME_CONFIG);
181                     if (!common_resource)
182                     {
183                         logf (LOG_FATAL, "Cannot open resource `%s'",
184                               configName);
185                         exit (1);
186                     }
187                     data1_tabpath = res_get (common_resource, "profilePath");
188                 }
189                 if (!strcmp (arg, "update"))
190                     cmd = 'u';
191                 else if (!strcmp (arg, "del") || !strcmp(arg, "delete"))
192                     cmd = 'd';
193                 else if (!strcmp (arg, "commit"))
194                 {
195                     zebraIndexLock (1);
196                     rval = res_get (common_resource, "shadow");
197                     if (rval && *rval)
198                         bf_cache (1);
199                     else
200                     {
201                         logf (LOG_FATAL, "Cannot perform commit");
202                         logf (LOG_FATAL, "No shadow area defined");
203                         exit (1);
204                     }
205                     if (bf_commitExists ())
206                     {
207                         logf (LOG_LOG, "Commit start");
208                         zebraIndexLockMsg ("c");
209                         zebraIndexWait (1);
210                         logf (LOG_LOG, "Commit execute");
211                         bf_commitExec ();
212                         sync ();
213                         zebraIndexLockMsg ("d");
214                         zebraIndexWait (0);
215                         logf (LOG_LOG, "Commit clean");
216                         bf_commitClean ();
217                     }
218                     else
219                         logf (LOG_LOG, "Nothing to commit");
220                 }
221                 else if (!strcmp (arg, "stat") || !strcmp (arg, "status"))
222                 {
223                     zebraIndexLock (0);
224                     rval = res_get (common_resource, "shadow");
225                     if (rval && *rval)
226                     {
227                         bf_cache (1);
228                         zebraIndexLockMsg ("r");
229                     }
230                     rec_prstat ();
231                 }
232                 else
233                 {
234                     logf (LOG_FATAL, "Unknown command: %s", arg);
235                     exit (1);
236                 }
237             }
238             else
239             {
240                 struct recordGroup rGroup;
241
242                 zebraIndexLock (0);
243                 rval = res_get (common_resource, "shadow");
244                 if (rval && *rval && !disableCommit)
245                 {
246                     bf_cache (1);
247                     zebraIndexLockMsg ("r");
248                 }
249                 else
250                 {
251                     bf_cache (0);
252                     zebraIndexLockMsg ("w");
253                 }
254                 zebraIndexWait (0);
255
256                 memcpy (&rGroup, &rGroupDef, sizeof(rGroup));
257                 key_open (mem_max);
258                 rGroup.path = arg;
259                 if (cmd == 'u')
260                 {
261                     logf (LOG_LOG, "Updating %s", rGroup.path);
262                     repositoryUpdate (&rGroup);
263                 }
264                 else if (cmd == 'd')
265                 {
266                     logf (LOG_LOG, "Deleting %s", rGroup.path);
267                     repositoryDelete (&rGroup);
268                 }
269                 cmd = 0;
270                 nsections = key_close ();
271                 if (nsections)
272                 {
273                     logf (LOG_LOG, "Merging with index");
274                     key_input (FNAME_WORD_DICT, FNAME_WORD_ISAM, nsections,
275                                60);
276                     sync ();
277                 }
278             }
279         }
280         else if (ret == 'v')
281         {
282             log_init (log_mask_str(arg), prog, NULL);
283         }
284         else if (ret == 'm')
285         {
286             mem_max = 1024*1024*atoi(arg);
287         }
288         else if (ret == 'd')
289         {
290             rGroupDef.databaseName = arg;
291         }
292         else if (ret == 'g')
293         {
294             rGroupDef.groupName = arg;
295         }
296         else if (ret == 'c')
297             configName = arg;
298         else if (ret == 't')
299             rGroupDef.recordType = arg;
300         else if (ret == 'n')
301             disableCommit = 1;
302         else
303         {
304             logf (LOG_FATAL, "Unknown option '-%s'", arg);
305             exit (1);
306         }
307     }
308     zebraIndexUnlock ();
309     exit (0);
310 }
311