X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fmain.c;h=f957daf889580ce5c8db052fc0429bfbf8ad4f5a;hb=adc0ef50c52d332902ef92c8feb460eee55a1f05;hp=553e280e83d4a56e99e8ec8ea41aeda9211107ad;hpb=7e3b091d6944a2ef10f1c6e983181be53b565e34;p=idzebra-moved-to-github.git diff --git a/index/main.c b/index/main.c index 553e280..f957daf 100644 --- a/index/main.c +++ b/index/main.c @@ -4,7 +4,34 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: main.c,v $ - * Revision 1.30 1995-12-12 16:00:59 adam + * Revision 1.38 1996-03-26 16:01:14 adam + * New setting lockPath: directory of various lock files. + * + * Revision 1.37 1996/03/19 12:43:26 adam + * Bug fix: File update traversal didn't handle trailing slashes correctly. + * Bug fix: Update of sub directory groups wasn't handled correctly. + * + * Revision 1.36 1996/02/12 18:45:37 adam + * New fileVerboseFlag in record group control. + * + * Revision 1.35 1996/02/12 15:56:11 adam + * New code command: unread. + * + * Revision 1.34 1996/02/07 14:06:39 adam + * Better progress report during register merge. + * New command: clean - removes temporary shadow files. + * + * Revision 1.33 1996/02/06 17:11:18 adam + * Minor changes. + * + * Revision 1.32 1996/02/01 20:50:04 adam + * Bug fix: zebraIndexUnlock was always called even though zebraIndexLock + * was never called - happens when no commands are specified. + * + * Revision 1.31 1996/01/08 19:15:46 adam + * New input filter that works! + * + * Revision 1.30 1995/12/12 16:00:59 adam * System call sync(2) used after update/commit. * Locking (based on fcntl) uses F_EXLCK and F_SHLCK instead of F_WRLCK * and F_RDLCK. @@ -126,6 +153,12 @@ char *prog; size_t mem_max = 4*1024*1024; extern char *data1_tabpath; +static void abort_func (int level, const char *msg, void *info) +{ + if (level & LOG_FATAL) + abort (); +} + int main (int argc, char **argv) { int ret; @@ -144,6 +177,7 @@ int main (int argc, char **argv) rGroupDef.recordType = NULL; rGroupDef.flagStoreData = -1; rGroupDef.flagStoreKeys = -1; + rGroupDef.fileVerboseFlag = 1; prog = *argv; if (argc < 2) @@ -154,16 +188,18 @@ int main (int argc, char **argv) " If is empty filenames are read from stdin.\n" " delete Delete index with files below .\n" " commit Commit changes\n" + " clean Clean shadow files\n" "Options:\n" " -t Index files as (grs or text).\n" " -c Read configuration file .\n" " -g Index files according to group settings.\n" " -d Records belong to Z39.50 database .\n" " -m Use before flushing keys to disk.\n" - " -n Don't use commit system\n" + " -n Don't use shadow system\n" " -v Set logging to .\n"); exit (1); } + log_event_end (abort_func, NULL); while ((ret = options ("t:c:g:d:m:v:n", argv, argc, &arg)) != -2) { if (ret == 0) @@ -182,22 +218,24 @@ int main (int argc, char **argv) exit (1); } data1_tabpath = res_get (common_resource, "profilePath"); + bf_lockDir (res_get (common_resource, "lockPath")); } if (!strcmp (arg, "update")) cmd = 'u'; + else if (!strcmp (arg, "dump")) + cmd = 's'; else if (!strcmp (arg, "del") || !strcmp(arg, "delete")) cmd = 'd'; else if (!strcmp (arg, "commit")) { zebraIndexLock (1); - rval = res_get (common_resource, "commit"); + rval = res_get (common_resource, "shadow"); if (rval && *rval) bf_cache (1); else { logf (LOG_FATAL, "Cannot perform commit"); - logf (LOG_FATAL, "No commit area defined " - "in the configuration file"); + logf (LOG_FATAL, "No shadow area defined"); exit (1); } if (bf_commitExists ()) @@ -216,10 +254,23 @@ int main (int argc, char **argv) else logf (LOG_LOG, "Nothing to commit"); } + else if (!strcmp (arg, "clean")) + { + zebraIndexLock (1); + if (bf_commitExists ()) + { + zebraIndexLockMsg ("d"); + zebraIndexWait (0); + logf (LOG_LOG, "Commit clean"); + bf_commitClean (); + } + else + logf (LOG_LOG, "Nothing to clean"); + } else if (!strcmp (arg, "stat") || !strcmp (arg, "status")) { zebraIndexLock (0); - rval = res_get (common_resource, "commit"); + rval = res_get (common_resource, "shadow"); if (rval && *rval) { bf_cache (1); @@ -238,7 +289,7 @@ int main (int argc, char **argv) struct recordGroup rGroup; zebraIndexLock (0); - rval = res_get (common_resource, "commit"); + rval = res_get (common_resource, "shadow"); if (rval && *rval && !disableCommit) { bf_cache (1); @@ -264,6 +315,12 @@ int main (int argc, char **argv) logf (LOG_LOG, "Deleting %s", rGroup.path); repositoryDelete (&rGroup); } + else if (cmd == 's') + { + logf (LOG_LOG, "Dumping %s", rGroup.path); + repositoryShow (&rGroup); + } + cmd = 0; nsections = key_close (); if (nsections) @@ -303,7 +360,8 @@ int main (int argc, char **argv) exit (1); } } - zebraIndexUnlock (); + if (common_resource) + zebraIndexUnlock (); exit (0); }