📄 main.c
字号:
/* $Id: main.c,v 1.107 2003/10/07 09:18:43 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003 Index Data ApsThis file is part of the Zebra server.Zebra is free software; you can redistribute it and/or modify it underthe terms of the GNU General Public License as published by the FreeSoftware Foundation; either version 2, or (at your option) any laterversion.Zebra is distributed in the hope that it will be useful, but WITHOUT ANYWARRANTY; without even the implied warranty of MERCHANTABILITY orFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public Licensefor more details.You should have received a copy of the GNU General Public Licensealong with Zebra; see the file LICENSE.zebra. If not, write to theFree Software Foundation, 59 Temple Place - Suite 330, Boston, MA02111-1307, USA.*/#include <stdio.h>#include <string.h>#include <assert.h>#ifdef WIN32#include <io.h>#else#include <unistd.h>#include <sys/time.h>#endif#include <time.h>#if HAVE_SYS_TIMES_H#include <sys/times.h>#endif#if HAVE_TCL_H#include <tcl.h>#endif#if HAVE_EXPAT_H#include <expat.h>#endif#include <data1.h>#include "zebraapi.h"char *prog;int main (int argc, char **argv){ int ret; int cmd = 0; char *arg; char *configName = 0; int nsections = 0; int disableCommit = 0; char *mem_max = 0; int trans_started=0;#if HAVE_SYS_TIMES_H struct tms tms1, tms2; struct timeval start_time, end_time; long usec;#endif#ifndef WIN32 char nbuf[100];#endif struct recordGroup rGroupDef; ZebraService zs = 0; ZebraHandle zh = 0; nmem_init ();#ifdef WIN32#else sprintf(nbuf, "%.40s(%d)", *argv, getpid()); yaz_log_init_prefix (nbuf);#endif#if HAVE_SYS_TIMES_H times(&tms1); gettimeofday(&start_time, 0);#endif rGroupDef.groupName = NULL; rGroupDef.databaseName = NULL; rGroupDef.path = NULL; rGroupDef.recordId = NULL; rGroupDef.recordType = NULL; rGroupDef.flagStoreData = -1; rGroupDef.flagStoreKeys = -1; rGroupDef.flagRw = 1; rGroupDef.databaseNamePath = 0; rGroupDef.explainDatabase = 0; rGroupDef.fileVerboseLimit = 100000; rGroupDef.followLinks = -1; prog = *argv; if (argc < 2) { fprintf (stderr, "%s [options] command <dir> ...\n" "Commands:\n" " update <dir> Update index with files below <dir>.\n" " If <dir> is empty filenames are read from stdin.\n" " delete <dir> Delete index with files below <dir>.\n" " create <db> Create database <db>\n" " drop <db> Drop database <db>\n" " commit Commit changes\n" " clean Clean shadow files\n" "Options:\n" " -t <type> Index files as <type> (grs or text).\n" " -c <config> Read configuration file <config>.\n" " -g <group> Index files according to group settings.\n" " -d <database> Records belong to Z39.50 database <database>.\n" " -m <mbytes> Use <mbytes> before flushing keys to disk.\n" " -n Don't use shadow system.\n" " -s Show analysis on stdout, but do no work.\n" " -v <level> Set logging to <level>.\n" " -l <file> Write log to <file>.\n" " -L Don't follow symbolic links.\n" " -f <n> Display information for the first <n> records.\n" " -V Show version.\n", *argv ); exit (1); } while ((ret = options ("sVt:c:g:d:m:v:nf:l:L" , argv, argc, &arg)) != -2) { if (ret == 0) { if(cmd == 0) /* command */ { if (!zs) { const char *config = configName ? configName : "zebra.cfg"; logf (LOG_LOG, "Zebra version %s %s", ZEBRAVER, ZEBRADATE); zs = zebra_start (config); if (!zs) { yaz_log (LOG_FATAL, "Cannot read config %s", config); exit (1); } zh = zebra_open (zs); if (disableCommit) zebra_shadow_enable (zh, 0); } if (rGroupDef.databaseName) { if (zebra_select_database (zh, rGroupDef.databaseName)) { logf(LOG_FATAL, "Could not select database %s errCode=%d", rGroupDef.databaseName, zebra_errCode(zh) ); exit (1); } } else { if (zebra_select_database (zh, "Default")) { logf(LOG_FATAL, "Could not select database Default errCode=%d", zebra_errCode(zh) ); exit (1); } } if (mem_max) zebra_set_resource(zh, "memmax",mem_max); if (!strcmp (arg, "update")) cmd = 'u'; else if (!strcmp (arg, "update1")) cmd = 'U'; else if (!strcmp (arg, "update2")) cmd = 'm'; else if (!strcmp (arg, "dump")) cmd = 's'; else if (!strcmp (arg, "del") || !strcmp(arg, "delete")) cmd = 'd'; else if (!strcmp (arg, "init")) { zebra_init (zh); } else if (!strcmp(arg, "drop")) { cmd = 'D'; } else if (!strcmp(arg, "create")) { cmd = 'C'; } else if (!strcmp (arg, "commit")) { zebra_commit (zh); } else if (!strcmp (arg, "clean")) { zebra_clean (zh); } else if (!strcmp (arg, "stat") || !strcmp (arg, "status")) { zebra_register_statistics (zh,0); } else if (!strcmp (arg, "dumpdict")) { zebra_register_statistics (zh,1); } else if (!strcmp (arg, "compact")) { zebra_compact (zh); } else { logf (LOG_FATAL, "unknown command: %s", arg); exit (1); } } else { rGroupDef.path = arg; zebra_set_group (zh, &rGroupDef); if (!trans_started) { trans_started=1; if (zebra_begin_trans (zh, 1)) exit(1); } switch (cmd) { case 'u': zebra_repository_update (zh); break; case 'd': zebra_repository_delete (zh); break; case 's': logf (LOG_LOG, "dumping %s", rGroupDef.path); zebra_repository_show (zh); nsections = 0; break; case 'C': zebra_create_database(zh, rGroupDef.path); break; case 'D': zebra_drop_database(zh, rGroupDef.path); break; default: nsections = 0; } log_event_end (NULL, NULL); } } else if (ret == 'V') { printf("Zebra %s %s\n", ZEBRAVER, ZEBRADATE); printf(" (C) 1994-2003, Index Data ApS\n");#ifdef WIN32#ifdef _DEBUG printf(" WIN32 Debug\n");#else printf(" WIN32 Release\n");#endif#endif#if HAVE_BZLIB_H printf("Using: libbzip2, (C) 1996-1999 Julian R Seward. All rights reserved.\n");#endif#if HAVE_TCL_H printf("Using: Tcl %s\n", TCL_VERSION);#endif#if HAVE_EXPAT_H if (1) { XML_Expat_Version v = XML_ExpatVersionInfo(); printf ("Using: Expat %d.%d.%d\n", v.major, v.minor, v.micro); }#endif } else if (ret == 'v') yaz_log_init_level (yaz_log_mask_str(arg)); else if (ret == 'l') yaz_log_init_file (arg); else if (ret == 'm') mem_max = arg; else if (ret == 'd') rGroupDef.databaseName = arg; else if (ret == 's') rGroupDef.flagRw = 0; else if (ret == 'g') rGroupDef.groupName = arg; else if (ret == 'f') rGroupDef.fileVerboseLimit = atoi(arg); else if (ret == 'c') configName = arg; else if (ret == 't') rGroupDef.recordType = arg; else if (ret == 'n') disableCommit = 1; else if (ret == 'L') rGroupDef.followLinks = 0; else logf (LOG_WARN, "unknown option '-%s'", arg); } /* while arg */ if (trans_started) zebra_end_trans (zh); zebra_close (zh); zebra_stop (zs);#if HAVE_SYS_TIMES_H if (trans_started) { gettimeofday(&end_time, 0); usec = (end_time.tv_sec - start_time.tv_sec) * 1000000L + end_time.tv_usec - start_time.tv_usec; times(&tms2); yaz_log (LOG_LOG, "zebraidx times: %5.2f %5.2f %5.2f", (double) usec / 1000000.0, (double) (tms2.tms_utime - tms1.tms_utime)/100, (double) (tms2.tms_stime - tms1.tms_stime)/100); }#endif nmem_exit(); exit (0); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -