Beginnings of zebra_register_check
[idzebra-moved-to-github.git] / index / zebraidx.c
1 /* This file is part of the Zebra server.
2    Copyright (C) 1994-2010 Index Data
3
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <assert.h>
24 #ifdef WIN32
25 #include <io.h>
26 #endif
27 #if HAVE_UNISTD_H
28 #include <unistd.h>
29 #endif
30
31 #if YAZ_HAVE_ICU
32 #include <yaz/icu.h>
33 #endif
34 #include <yaz/log.h>
35 #include <yaz/options.h>
36 #include <idzebra/version.h>
37 #include <idzebra/api.h>
38
39 char *prog;
40
41 static void filter_cb(void *cd, const char *name)
42 {
43     puts(name);
44 }
45
46 static void show_filters(ZebraService zs)
47 {
48     zebra_filter_info(zs, 0, filter_cb);
49 }
50
51 int main(int argc, char **argv)
52 {
53     int ret;
54     int cmd = 0;
55     char *arg;
56     char *configName = 0;
57     int nsections = 0;
58     int enable_commit = 1;
59     char *database = 0;
60     Res res = res_open(0, 0);
61     Res default_res = res_open(0, 0);
62     
63     int trans_started = 0;
64 #ifndef WIN32
65     char nbuf[100];
66 #endif
67     ZebraService zs = 0;
68     ZebraHandle zh = 0;
69
70 #ifdef WIN32
71 #else
72     sprintf(nbuf, "%.40s(%ld)", *argv, (long) getpid());
73     yaz_log_init_prefix(nbuf);
74 #endif
75     prog = *argv;
76     if (argc < 2)
77     {
78         fprintf(stderr, "%s [options] command <dir> ...\n"
79         "Commands:\n"
80         " update <dir>  Update index with files below <dir>.\n"
81         "               If <dir> is empty filenames are read from stdin.\n"
82         " delete <dir>  Delete index with files below <dir>.\n"
83         " create <db>   Create database <db>\n"
84         " drop <db>     Drop database <db>\n"
85         " commit        Commit changes\n"
86         " clean         Clean shadow files\n"
87         "Options:\n"
88         " -t <type>     Index files as <type> (grs or text).\n"
89         " -c <config>   Read configuration file <config>.\n"
90         " -g <group>    Index files according to group settings.\n"
91         " -d <database> Records belong to Z39.50 database <database>.\n"
92         " -m <mbytes>   Use <mbytes> before flushing keys to disk.\n"
93         " -n            Don't use shadow system.\n"
94         " -s            Show analysis on stdout, but do no work.\n"
95         " -v <level>    Set logging to <level>.\n"
96         " -l <file>     Write log to <file>.\n"
97         " -L            Don't follow symbolic links.\n"
98         " -f <n>        Display information for the first <n> records.\n"
99         " -V            Show version.\n", *argv
100                  );
101         exit(1);
102     }
103     res_set(default_res, "profilePath", DEFAULT_PROFILE_PATH);
104     res_set(default_res, "modulePath", DEFAULT_MODULE_PATH);
105     while ((ret = options("sVt:c:g:d:m:v:nf:l:L", argv, argc, &arg)) != -2)
106     {
107         if (ret == 0)
108         {
109             if(cmd == 0) /* command */
110             {
111                 if (!zs)
112                 {
113                     const char *config = configName ? configName : "zebra.cfg";
114                     zs = zebra_start_res(config, default_res, res);
115                     if (!zs)
116                     {
117                         yaz_log(YLOG_FATAL, "Cannot read config %s", config);
118                         exit(1);
119                     }   
120                     zh = zebra_open(zs, 0);
121                     zebra_shadow_enable(zh, enable_commit);
122                 }
123
124                 if (database &&
125                     zebra_select_database(zh, database) == ZEBRA_FAIL)
126                 {
127                     yaz_log(YLOG_FATAL, "Could not select database %s "
128                             "errCode=%d",
129                             database, zebra_errCode(zh) );
130                     exit(1);
131                 }
132                 if (!strcmp(arg, "update"))
133                     cmd = 'u';
134                 else if (!strcmp(arg, "update1"))
135                     cmd = 'U';
136                 else if (!strcmp(arg, "update2"))
137                     cmd = 'm';
138                 else if (!strcmp(arg, "dump"))
139                     cmd = 's';
140                 else if (!strcmp(arg, "del") || !strcmp(arg, "delete"))
141                     cmd = 'd';
142                 else if (!strcmp(arg, "adelete"))
143                     cmd = 'a';
144                 else if (!strcmp(arg, "init"))
145                 {
146                     zebra_init(zh);
147                 }
148                 else if (!strcmp(arg, "drop"))
149                 {
150                     cmd = 'D';
151                 }
152                 else if (!strcmp(arg, "create"))
153                 {
154                     cmd = 'C';
155                 }
156                 else if (!strcmp(arg, "commit"))
157                 {
158                     zebra_commit(zh);
159                 }
160                 else if (!strcmp(arg, "clean"))
161                 {
162                     zebra_clean(zh);
163                 }
164                 else if (!strcmp(arg, "stat") || !strcmp(arg, "status"))
165                 {
166                     zebra_register_statistics(zh, 0);
167                 }
168                 else if (!strcmp(arg, "dumpdict"))
169                 {
170                     zebra_register_statistics(zh, 1);
171                 }
172                 else if (!strcmp(arg, "compact"))
173                 {
174                     zebra_compact(zh);
175                 }
176                 else if (!strcmp(arg, "filters"))
177                 {
178                     show_filters(zs);
179                 }
180                 else if (!strcmp(arg, "check"))
181                 {
182                     if (zebra_register_check(zh) != ZEBRA_OK)
183                         yaz_log(YLOG_WARN, "register check failed");
184                 }
185                 else
186                 {
187                     yaz_log(YLOG_FATAL, "unknown command: %s", arg);
188                     exit(1);
189                 }
190             }
191             else
192             {
193                 ZEBRA_RES res = ZEBRA_OK;
194                 if (!trans_started)
195                 {
196                     trans_started=1;
197                     if (zebra_begin_trans(zh, 1) != ZEBRA_OK)
198                         exit(1);
199                 }
200                 switch (cmd)
201                 {
202                 case 'u':
203                     res = zebra_repository_index(zh, arg, action_update);
204                     break;
205                 case 'd':
206                     res = zebra_repository_index(zh, arg, action_delete);
207                     break;
208                 case 'a':
209                     res = zebra_repository_index(zh, arg, action_a_delete);
210                     break;
211                 case 's':
212                     res = zebra_repository_show(zh, arg);
213                     nsections = 0;
214                     break;
215                 case 'C':
216                     res = zebra_create_database(zh, arg);
217                     break;
218                 case 'D':
219                     res = zebra_drop_database(zh, arg);
220                     break;
221                 default:
222                     nsections = 0;
223                 }
224                 if (res != ZEBRA_OK)
225                 {
226                     const char *add = zebra_errAdd(zh);
227                     yaz_log(YLOG_FATAL, "Operation failed: %s %s",
228                             zebra_errString(zh), add ? add : "");
229                     
230                     if (trans_started)
231                         if (zebra_end_trans(zh) != ZEBRA_OK)
232                             yaz_log(YLOG_WARN, "zebra_end_trans failed");
233
234
235                     zebra_close(zh);
236                     zebra_stop(zs);
237                     exit(1);
238                 }
239                 log_event_end(NULL, NULL);
240             }
241         }
242         else if (ret == 'V')
243         {
244             char version_str[20];
245             char sys_str[80];
246             zebra_get_version(version_str, sys_str);
247
248             printf("Zebra %s\n", version_str);
249             printf("(C) 1994-2010, Index Data ApS\n");
250             printf("Zebra is free software, covered by the GNU General Public License, and you are\n");
251             printf("welcome to change it and/or distribute copies of it under certain conditions.\n");
252             printf("SHA1 ID: %s\n", sys_str);
253             if (strcmp(version_str, ZEBRAVER))
254                 printf("zebraidx compiled version %s\n", ZEBRAVER);
255 #if YAZ_HAVE_ICU
256             printf("Using ICU\n");
257 #endif
258         }
259         else if (ret == 'v')
260             yaz_log_init_level(yaz_log_mask_str(arg));
261         else if (ret == 'l')
262             yaz_log_init_file(arg);
263         else if (ret == 'm')
264             res_set(res, "memMax", arg);
265         else if (ret == 'd')
266             database = arg;
267         else if (ret == 's')
268             res_set(res, "openRW", "0");
269         else if (ret == 'g')
270             res_set(res, "group", arg);
271         else if (ret == 'f')
272             res_set(res, "fileVerboseLimit", arg);
273         else if (ret == 'c')
274             configName = arg;
275         else if (ret == 't')
276             res_set(res, "recordType", arg);
277         else if (ret == 'n')
278             enable_commit = 0;
279         else if (ret == 'L')
280             res_set(res, "followLinks", "0");
281         else
282             yaz_log(YLOG_WARN, "unknown option '-%s'", arg);
283     } /* while arg */
284
285     if (trans_started)
286         if (zebra_end_trans(zh) != ZEBRA_OK)
287             yaz_log(YLOG_WARN, "zebra_end_trans failed");
288
289     zebra_close(zh);
290     zebra_stop(zs);
291
292     res_close(res);
293     res_close(default_res);
294     exit(0);
295     return 0;
296 }
297
298 /*
299  * Local variables:
300  * c-basic-offset: 4
301  * c-file-style: "Stroustrup"
302  * indent-tabs-mode: nil
303  * End:
304  * vim: shiftwidth=4 tabstop=8 expandtab
305  */
306