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