Zebra with full functionality
[idzebra-moved-to-github.git] / index / main.c
1 /*
2  * Copyright (C) 1994-2002, Index Data
3  * All rights reserved.
4  *
5  * $Id: main.c,v 1.85 2002-04-05 08:46:26 adam Exp $
6  */
7 #include <stdio.h>
8 #include <string.h>
9 #include <assert.h>
10 #ifdef WIN32
11 #include <io.h>
12 #else
13 #include <unistd.h>
14 #endif
15
16 #include <yaz/data1.h>
17 #include "zebraapi.h"
18
19 char *prog;
20
21 int main (int argc, char **argv)
22 {
23     int ret;
24     int cmd = 0;
25     char *arg;
26     char *configName = 0;
27     int nsections = 0;
28     int disableCommit = 0;
29     size_t mem_max = 0;
30 #ifndef WIN32
31     char nbuf[100];
32 #endif
33     struct recordGroup rGroupDef;
34     ZebraService zs = 0;
35     ZebraHandle zh = 0;
36
37     nmem_init ();
38
39 #ifdef WIN32
40 #else
41     sprintf(nbuf, "%.40s(%d)", *argv, getpid());
42     yaz_log_init_prefix (nbuf);
43 #endif
44
45     rGroupDef.groupName = NULL;
46     rGroupDef.databaseName = NULL;
47     rGroupDef.path = NULL;
48     rGroupDef.recordId = NULL;
49     rGroupDef.recordType = NULL;
50     rGroupDef.flagStoreData = -1;
51     rGroupDef.flagStoreKeys = -1;
52     rGroupDef.flagRw = 1;
53     rGroupDef.databaseNamePath = 0;
54     rGroupDef.explainDatabase = 0;
55     rGroupDef.fileVerboseLimit = 100000;
56
57     prog = *argv;
58     if (argc < 2)
59     {
60         fprintf (stderr, "%s [options] command <dir> ...\n"
61         "Commands:\n"
62         " update <dir>  Update index with files below <dir>.\n"
63         "               If <dir> is empty filenames are read from stdin.\n"
64         " delete <dir>  Delete index with files below <dir>.\n"
65         " commit        Commit changes\n"
66         " clean         Clean shadow files\n"
67         "Options:\n"
68         " -t <type>     Index files as <type> (grs or text).\n"
69         " -c <config>   Read configuration file <config>.\n"
70         " -g <group>    Index files according to group settings.\n"
71         " -d <database> Records belong to Z39.50 database <database>.\n"
72         " -m <mbytes>   Use <mbytes> before flushing keys to disk.\n"
73         " -n            Don't use shadow system.\n"
74         " -s            Show analysis on stdout, but do no work.\n"
75         " -v <level>    Set logging to <level>.\n"
76         " -l <file>     Write log to <file>.\n"
77         " -f <n>        Display information for the first <n> records.\n"
78         " -V            Show version.\n", *argv
79                  );
80         exit (1);
81     }
82     while ((ret = options ("sVt:c:g:d:m:v:nf:l:"
83                            , argv, argc, &arg)) != -2)
84     {
85         if (ret == 0)
86         {
87             if(cmd == 0) /* command */
88             {
89                 if (!zs)
90                 {
91 #if ZMBOL
92                     logf (LOG_LOG, "Z'mbol version %s %s",
93                           ZEBRAVER, ZEBRADATE);
94 #else
95                     logf (LOG_LOG, "Zebra version %s %s",
96                           ZEBRAVER, ZEBRADATE);
97 #endif
98                     zs = zebra_start (configName ? configName : "zebra.cfg");
99                     if (!zs)
100                         exit (1);
101                     zh = zebra_open (zs);
102                 }
103                 if (rGroupDef.databaseName)
104                 {
105                     if (zebra_select_database (zh, rGroupDef.databaseName))
106                         exit (1);
107                 }
108                 else
109                 {
110                     if (zebra_select_database (zh, "Default"))
111                         exit (1);
112                 }
113
114                 if (!strcmp (arg, "update"))
115                     cmd = 'u';
116                 else if (!strcmp (arg, "update1"))
117                     cmd = 'U';
118                 else if (!strcmp (arg, "update2"))
119                     cmd = 'm';
120                 else if (!strcmp (arg, "dump"))
121                     cmd = 's';
122                 else if (!strcmp (arg, "del") || !strcmp(arg, "delete"))
123                     cmd = 'd';
124                 else if (!strcmp (arg, "init"))
125                 {
126                     zebra_init (zh);
127                 }
128                 else if (!strcmp (arg, "commit"))
129                 {
130                     zebra_commit (zh);
131                 }
132                 else if (!strcmp (arg, "clean"))
133                 {
134                     assert (!"todo");
135                 }
136                 else if (!strcmp (arg, "stat") || !strcmp (arg, "status"))
137                 {
138                     assert (!"todo");
139                 }
140                 else if (!strcmp (arg, "compact"))
141                 {
142                     zebra_compact (zh);
143                 }
144                 else
145                 {
146                     logf (LOG_FATAL, "unknown command: %s", arg);
147                     exit (1);
148                 }
149             }
150             else
151             {
152                 rGroupDef.path = arg;
153                 zebra_set_group (zh, &rGroupDef);
154                 zebra_begin_trans (zh);
155
156                 switch (cmd)
157                 {
158                 case 'u':
159                     zebra_repository_update (zh);
160                     break;
161                 case 'd':
162                     zebra_repository_delete (zh);
163                     break;
164                 case 's':
165                     logf (LOG_LOG, "dumping %s", rGroupDef.path);
166                     zebra_repository_show (zh);
167                     nsections = 0;
168                     break;
169                 default:
170                     nsections = 0;
171                 }
172                 cmd = 0;
173                 zebra_end_trans (zh);
174                 log_event_end (NULL, NULL);
175             }
176         }
177         else if (ret == 'V')
178         {
179 #if ZMBOL
180             fprintf (stderr, "Z'mbol %s %s\n", ZEBRAVER, ZEBRADATE);
181 #else
182             fprintf (stderr, "Zebra %s %s\n", ZEBRAVER, ZEBRADATE);
183 #endif
184             fprintf (stderr, " (C) 1994-2002, Index Data ApS\n");
185 #ifdef WIN32
186 #ifdef _DEBUG
187             fprintf (stderr, " WIN32 Debug\n");
188 #else
189             fprintf (stderr, " WIN32 Release\n");
190 #endif
191 #endif
192 #if HAVE_BZLIB_H
193             fprintf (stderr, "libbzip2\n"
194                      " (C) 1996-1999 Julian R Seward.  All rights reserved.\n");
195 #endif
196         }
197         else if (ret == 'v')
198             yaz_log_init_level (yaz_log_mask_str(arg));
199         else if (ret == 'l')
200             yaz_log_init_file (arg);
201         else if (ret == 'm')
202             mem_max = 1024*1024*atoi(arg);
203         else if (ret == 'd')
204             rGroupDef.databaseName = arg;
205         else if (ret == 's')
206             rGroupDef.flagRw = 0;
207         else if (ret == 'g')
208             rGroupDef.groupName = arg;
209         else if (ret == 'f')
210             rGroupDef.fileVerboseLimit = atoi(arg);
211         else if (ret == 'c')
212             configName = arg;
213         else if (ret == 't')
214             rGroupDef.recordType = arg;
215         else if (ret == 'n')
216             disableCommit = 1;
217         else
218             logf (LOG_WARN, "unknown option '-%s'", arg);
219     }
220     zebra_close (zh);
221     zebra_stop (zs);
222     exit (0);
223     return 0;
224 }
225