Towards GPL
[idzebra-moved-to-github.git] / index / main.c
1 /* $Id: main.c,v 1.93 2002-08-02 19:26:55 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
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 Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23
24 #include <stdio.h>
25 #include <string.h>
26 #include <assert.h>
27 #ifdef WIN32
28 #include <io.h>
29 #else
30 #include <unistd.h>
31 #include <sys/time.h>
32 #endif
33 #include <time.h>
34 #if HAVE_SYS_TIMES_H
35 #include <sys/times.h>
36 #endif
37
38 #include <yaz/data1.h>
39 #include "zebraapi.h"
40
41 char *prog;
42
43 int main (int argc, char **argv)
44 {
45     int ret;
46     int cmd = 0;
47     char *arg;
48     char *configName = 0;
49     int nsections = 0;
50     int disableCommit = 0;
51     size_t mem_max = 0;
52 #if HAVE_SYS_TIMES_H
53     struct tms tms1, tms2;
54     struct timeval start_time, end_time;
55     long usec;
56 #endif
57 #ifndef WIN32
58     char nbuf[100];
59 #endif
60     struct recordGroup rGroupDef;
61     ZebraService zs = 0;
62     ZebraHandle zh = 0;
63
64     nmem_init ();
65
66 #ifdef WIN32
67 #else
68     sprintf(nbuf, "%.40s(%d)", *argv, getpid());
69     yaz_log_init_prefix (nbuf);
70 #endif
71 #if HAVE_SYS_TIMES_H
72     times(&tms1);
73     gettimeofday(&start_time, 0);
74 #endif
75
76     rGroupDef.groupName = NULL;
77     rGroupDef.databaseName = NULL;
78     rGroupDef.path = NULL;
79     rGroupDef.recordId = NULL;
80     rGroupDef.recordType = NULL;
81     rGroupDef.flagStoreData = -1;
82     rGroupDef.flagStoreKeys = -1;
83     rGroupDef.flagRw = 1;
84     rGroupDef.databaseNamePath = 0;
85     rGroupDef.explainDatabase = 0;
86     rGroupDef.fileVerboseLimit = 100000;
87
88     prog = *argv;
89     if (argc < 2)
90     {
91         fprintf (stderr, "%s [options] command <dir> ...\n"
92         "Commands:\n"
93         " update <dir>  Update index with files below <dir>.\n"
94         "               If <dir> is empty filenames are read from stdin.\n"
95         " delete <dir>  Delete index with files below <dir>.\n"
96         " commit        Commit changes\n"
97         " clean         Clean shadow files\n"
98         "Options:\n"
99         " -t <type>     Index files as <type> (grs or text).\n"
100         " -c <config>   Read configuration file <config>.\n"
101         " -g <group>    Index files according to group settings.\n"
102         " -d <database> Records belong to Z39.50 database <database>.\n"
103         " -m <mbytes>   Use <mbytes> before flushing keys to disk.\n"
104         " -n            Don't use shadow system.\n"
105         " -s            Show analysis on stdout, but do no work.\n"
106         " -v <level>    Set logging to <level>.\n"
107         " -l <file>     Write log to <file>.\n"
108         " -f <n>        Display information for the first <n> records.\n"
109         " -V            Show version.\n", *argv
110                  );
111         exit (1);
112     }
113     while ((ret = options ("sVt:c:g:d:m:v:nf:l:"
114                            , argv, argc, &arg)) != -2)
115     {
116         if (ret == 0)
117         {
118             if(cmd == 0) /* command */
119             {
120                 if (!zs)
121                 {
122 #if ZMBOL
123                     logf (LOG_LOG, "Z'mbol version %s %s",
124                           ZEBRAVER, ZEBRADATE);
125 #else
126                     logf (LOG_LOG, "Zebra version %s %s",
127                           ZEBRAVER, ZEBRADATE);
128 #endif
129                     zs = zebra_start (configName ? configName : "zebra.cfg");
130                     if (!zs)
131                         exit (1);
132                     zh = zebra_open (zs);
133                     if (disableCommit)
134                         zebra_shadow_enable (zh, 0);
135                 }
136                 if (rGroupDef.databaseName)
137                 {
138                     if (zebra_select_database (zh, rGroupDef.databaseName))
139                         exit (1);
140                 }
141                 else
142                 {
143                     if (zebra_select_database (zh, "Default"))
144                         exit (1);
145                 }
146
147                 if (!strcmp (arg, "update"))
148                     cmd = 'u';
149                 else if (!strcmp (arg, "update1"))
150                     cmd = 'U';
151                 else if (!strcmp (arg, "update2"))
152                     cmd = 'm';
153                 else if (!strcmp (arg, "dump"))
154                     cmd = 's';
155                 else if (!strcmp (arg, "del") || !strcmp(arg, "delete"))
156                     cmd = 'd';
157                 else if (!strcmp (arg, "init"))
158                 {
159                     zebra_init (zh);
160                 }
161                 else if (!strcmp (arg, "commit"))
162                 {
163                     zebra_commit (zh);
164                 }
165                 else if (!strcmp (arg, "clean"))
166                 {
167                     assert (!"todo");
168                 }
169                 else if (!strcmp (arg, "stat") || !strcmp (arg, "status"))
170                 {
171                     zebra_register_statistics (zh,0);
172                 }
173                 else if (!strcmp (arg, "dump") || !strcmp (arg, "dumpdict"))
174                 {
175                     zebra_register_statistics (zh,1);
176                 }
177                 else if (!strcmp (arg, "compact"))
178                 {
179                     zebra_compact (zh);
180                 }
181                 else
182                 {
183                     logf (LOG_FATAL, "unknown command: %s", arg);
184                     exit (1);
185                 }
186             }
187             else
188             {
189                 rGroupDef.path = arg;
190                 zebra_set_group (zh, &rGroupDef);
191                 zebra_begin_trans (zh);
192
193                 switch (cmd)
194                 {
195                 case 'u':
196                     zebra_repository_update (zh);
197                     break;
198                 case 'd':
199                     zebra_repository_delete (zh);
200                     break;
201                 case 's':
202                     logf (LOG_LOG, "dumping %s", rGroupDef.path);
203                     zebra_repository_show (zh);
204                     nsections = 0;
205                     break;
206                 default:
207                     nsections = 0;
208                 }
209                 cmd = 0;
210                 zebra_end_trans (zh);
211                 log_event_end (NULL, NULL);
212             }
213         }
214         else if (ret == 'V')
215         {
216 #if ZMBOL
217             fprintf (stderr, "Z'mbol %s %s\n", ZEBRAVER, ZEBRADATE);
218 #else
219             fprintf (stderr, "Zebra %s %s\n", ZEBRAVER, ZEBRADATE);
220 #endif
221             fprintf (stderr, " (C) 1994-2002, Index Data ApS\n");
222 #ifdef WIN32
223 #ifdef _DEBUG
224             fprintf (stderr, " WIN32 Debug\n");
225 #else
226             fprintf (stderr, " WIN32 Release\n");
227 #endif
228 #endif
229 #if HAVE_BZLIB_H
230             fprintf (stderr, "libbzip2\n"
231                      " (C) 1996-1999 Julian R Seward.  All rights reserved.\n");
232 #endif
233         }
234         else if (ret == 'v')
235             yaz_log_init_level (yaz_log_mask_str(arg));
236         else if (ret == 'l')
237             yaz_log_init_file (arg);
238         else if (ret == 'm')
239             mem_max = 1024*1024*atoi(arg);
240         else if (ret == 'd')
241             rGroupDef.databaseName = arg;
242         else if (ret == 's')
243             rGroupDef.flagRw = 0;
244         else if (ret == 'g')
245             rGroupDef.groupName = arg;
246         else if (ret == 'f')
247             rGroupDef.fileVerboseLimit = atoi(arg);
248         else if (ret == 'c')
249             configName = arg;
250         else if (ret == 't')
251             rGroupDef.recordType = arg;
252         else if (ret == 'n')
253             disableCommit = 1;
254         else
255             logf (LOG_WARN, "unknown option '-%s'", arg);
256     }
257     zebra_close (zh);
258     zebra_stop (zs);
259 #if HAVE_SYS_TIMES_H
260     gettimeofday(&end_time, 0);
261     usec = (end_time.tv_sec - start_time.tv_sec) * 1000000L +
262             end_time.tv_usec - start_time.tv_usec;
263     times(&tms2);
264     yaz_log (LOG_LOG, "zebraidx times: %5.2f %5.2f %5.2f",
265                 (double) usec / 1000000.0,
266                 (double) (tms2.tms_utime - tms1.tms_utime)/100,
267                 (double) (tms2.tms_stime - tms1.tms_stime)/100);
268 #endif
269     exit (0);
270     return 0;
271 }
272