Fix log messages
[idzebra-moved-to-github.git] / index / main.c
1 /* $Id: main.c,v 1.95 2002-08-29 08:47:08 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                     const char *config = configName ? configName : "zebra.cfg";
123                     logf (LOG_LOG, "Zebra version %s %s",
124                           ZEBRAVER, ZEBRADATE);
125                     zs = zebra_start (config);
126                     if (!zs)
127                     {
128                         yaz_log (LOG_FATAL, "Cannot read config %s", config);
129                         exit (1);
130                     }   
131                     zh = zebra_open (zs);
132                     if (disableCommit)
133                         zebra_shadow_enable (zh, 0);
134                 }
135                 if (rGroupDef.databaseName)
136                 {
137                     if (zebra_select_database (zh, rGroupDef.databaseName))
138                         exit (1);
139                 }
140                 else
141                 {
142                     if (zebra_select_database (zh, "Default"))
143                         exit (1);
144                 }
145
146                 if (!strcmp (arg, "update"))
147                     cmd = 'u';
148                 else if (!strcmp (arg, "update1"))
149                     cmd = 'U';
150                 else if (!strcmp (arg, "update2"))
151                     cmd = 'm';
152                 else if (!strcmp (arg, "dump"))
153                     cmd = 's';
154                 else if (!strcmp (arg, "del") || !strcmp(arg, "delete"))
155                     cmd = 'd';
156                 else if (!strcmp (arg, "init"))
157                 {
158                     zebra_init (zh);
159                 }
160                 else if (!strcmp (arg, "commit"))
161                 {
162                     zebra_commit (zh);
163                 }
164                 else if (!strcmp (arg, "clean"))
165                 {
166                     assert (!"todo");
167                 }
168                 else if (!strcmp (arg, "stat") || !strcmp (arg, "status"))
169                 {
170                     zebra_register_statistics (zh,0);
171                 }
172                 else if (!strcmp (arg, "dump") || !strcmp (arg, "dumpdict"))
173                 {
174                     zebra_register_statistics (zh,1);
175                 }
176                 else if (!strcmp (arg, "compact"))
177                 {
178                     zebra_compact (zh);
179                 }
180                 else
181                 {
182                     logf (LOG_FATAL, "unknown command: %s", arg);
183                     exit (1);
184                 }
185             }
186             else
187             {
188                 rGroupDef.path = arg;
189                 zebra_set_group (zh, &rGroupDef);
190                 zebra_begin_trans (zh);
191
192                 switch (cmd)
193                 {
194                 case 'u':
195                     zebra_repository_update (zh);
196                     break;
197                 case 'd':
198                     zebra_repository_delete (zh);
199                     break;
200                 case 's':
201                     logf (LOG_LOG, "dumping %s", rGroupDef.path);
202                     zebra_repository_show (zh);
203                     nsections = 0;
204                     break;
205                 default:
206                     nsections = 0;
207                 }
208                 cmd = 0;
209                 zebra_end_trans (zh);
210                 log_event_end (NULL, NULL);
211             }
212         }
213         else if (ret == 'V')
214         {
215             fprintf (stderr, "Zebra %s %s\n", ZEBRAVER, ZEBRADATE);
216             fprintf (stderr, " (C) 1994-2002, Index Data ApS\n");
217 #ifdef WIN32
218 #ifdef _DEBUG
219             fprintf (stderr, " WIN32 Debug\n");
220 #else
221             fprintf (stderr, " WIN32 Release\n");
222 #endif
223 #endif
224 #if HAVE_BZLIB_H
225             fprintf (stderr, "libbzip2\n"
226                      " (C) 1996-1999 Julian R Seward.  All rights reserved.\n");
227 #endif
228         }
229         else if (ret == 'v')
230             yaz_log_init_level (yaz_log_mask_str(arg));
231         else if (ret == 'l')
232             yaz_log_init_file (arg);
233         else if (ret == 'm')
234             mem_max = 1024*1024*atoi(arg);
235         else if (ret == 'd')
236             rGroupDef.databaseName = arg;
237         else if (ret == 's')
238             rGroupDef.flagRw = 0;
239         else if (ret == 'g')
240             rGroupDef.groupName = arg;
241         else if (ret == 'f')
242             rGroupDef.fileVerboseLimit = atoi(arg);
243         else if (ret == 'c')
244             configName = arg;
245         else if (ret == 't')
246             rGroupDef.recordType = arg;
247         else if (ret == 'n')
248             disableCommit = 1;
249         else
250             logf (LOG_WARN, "unknown option '-%s'", arg);
251     }
252     zebra_close (zh);
253     zebra_stop (zs);
254 #if HAVE_SYS_TIMES_H
255     gettimeofday(&end_time, 0);
256     usec = (end_time.tv_sec - start_time.tv_sec) * 1000000L +
257             end_time.tv_usec - start_time.tv_usec;
258     times(&tms2);
259     yaz_log (LOG_LOG, "zebraidx times: %5.2f %5.2f %5.2f",
260                 (double) usec / 1000000.0,
261                 (double) (tms2.tms_utime - tms1.tms_utime)/100,
262                 (double) (tms2.tms_stime - tms1.tms_stime)/100);
263 #endif
264     exit (0);
265     return 0;
266 }
267