9b2046e728241d158899d41efb1846d1b083ed21
[idzebra-moved-to-github.git] / index / zebraidx.c
1 /* $Id: zebraidx.c,v 1.6 2007-08-27 17:22:22 adam Exp $
2    Copyright (C) 1995-2007
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 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <assert.h>
27 #ifdef WIN32
28 #include <io.h>
29 #endif
30 #if HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif
33
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, "init"))
143                 {
144                     zebra_init (zh);
145                 }
146                 else if (!strcmp(arg, "drop"))
147                 {
148                     cmd = 'D';
149                 }
150                 else if (!strcmp(arg, "create"))
151                 {
152                     cmd = 'C';
153                 }
154                 else if (!strcmp (arg, "commit"))
155                 {
156                     zebra_commit (zh);
157                 }
158                 else if (!strcmp (arg, "clean"))
159                 {
160                     zebra_clean (zh);
161                 }
162                 else if (!strcmp (arg, "stat") || !strcmp (arg, "status"))
163                 {
164                     zebra_register_statistics (zh,0);
165                 }
166                 else if (!strcmp (arg, "dumpdict"))
167                 {
168                     zebra_register_statistics (zh,1);
169                 }
170                 else if (!strcmp (arg, "compact"))
171                 {
172                     zebra_compact (zh);
173                 }
174                 else if (!strcmp (arg, "filters"))
175                 {
176                     show_filters(zs);
177                 }
178                 else
179                 {
180                     yaz_log (YLOG_FATAL, "unknown command: %s", arg);
181                     exit (1);
182                 }
183             }
184             else
185             {
186                 ZEBRA_RES res = ZEBRA_OK;
187                 if (!trans_started)
188                 {
189                     trans_started=1;
190                     if (zebra_begin_trans (zh, 1) != ZEBRA_OK)
191                         exit(1);
192                 }
193                 switch (cmd)
194                 {
195                 case 'u':
196                     res = zebra_repository_update (zh, arg);
197                     break;
198                 case 'd':
199                     res = zebra_repository_delete (zh, arg);
200                     break;
201                 case 's':
202                     res = zebra_repository_show (zh, arg);
203                     nsections = 0;
204                     break;
205                 case 'C':
206                     res = zebra_create_database(zh, arg);
207                     break;
208                 case 'D':
209                     res = zebra_drop_database(zh, arg);
210                     break;
211                 default:
212                     nsections = 0;
213                 }
214                 if (res != ZEBRA_OK)
215                 {
216                     const char *add = zebra_errAdd(zh);
217                     yaz_log(YLOG_FATAL, "Operation failed: %s %s",
218                             zebra_errString(zh), add ? add : "");
219                     
220                     if (trans_started)
221                         if (zebra_end_trans (zh) != ZEBRA_OK)
222                             yaz_log (YLOG_WARN, "zebra_end_trans failed");
223
224
225                     zebra_close (zh);
226                     zebra_stop (zs);
227                     exit(1);
228                 }
229                 log_event_end (NULL, NULL);
230             }
231         }
232         else if (ret == 'V')
233         {
234             char version_str[20];
235             char sys_str[80];
236             zebra_get_version(version_str, sys_str);
237
238             printf("Zebra %s\n", version_str);
239             printf("(C) 1994-2007, Index Data ApS\n");
240             printf("Zebra is free software, covered by the GNU General Public License, and you are\n");
241             printf("welcome to change it and/or distribute copies of it under certain conditions.\n");
242             printf("Configured as: %s\n", sys_str);
243             if (strcmp(version_str, ZEBRAVER))
244                 printf("zebraidx compiled version %s\n", ZEBRAVER);
245         }
246         else if (ret == 'v')
247             yaz_log_init_level (yaz_log_mask_str(arg));
248         else if (ret == 'l')
249             yaz_log_init_file (arg);
250         else if (ret == 'm')
251             res_set(res, "memMax", arg);
252         else if (ret == 'd')
253             database = arg;
254         else if (ret == 's')
255             res_set(res, "openRW", "0");
256         else if (ret == 'g')
257             res_set(res, "group", arg);
258         else if (ret == 'f')
259             res_set(res, "fileVerboseLimit", arg);
260         else if (ret == 'c')
261             configName = arg;
262         else if (ret == 't')
263             res_set(res, "recordType", arg);
264         else if (ret == 'n')
265             enable_commit = 0;
266         else if (ret == 'L')
267             res_set(res, "followLinks", "0");
268         else
269             yaz_log (YLOG_WARN, "unknown option '-%s'", arg);
270     } /* while arg */
271
272     if (trans_started)
273         if (zebra_end_trans (zh) != ZEBRA_OK)
274             yaz_log (YLOG_WARN, "zebra_end_trans failed");
275
276     zebra_close (zh);
277     zebra_stop (zs);
278
279     res_close(res);
280     res_close(default_res);
281     exit (0);
282     return 0;
283 }
284
285 /*
286  * Local variables:
287  * c-basic-offset: 4
288  * indent-tabs-mode: nil
289  * End:
290  * vim: shiftwidth=4 tabstop=8 expandtab
291  */
292