-/* $Id: zebraapi.c,v 1.82 2003-02-11 14:01:39 heikki Exp $
+/* $Id: zebraapi.c,v 1.83 2003-02-12 15:45:59 heikki Exp $
Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
Index Data Aps
#include "index.h"
#include <charmap.h>
+/* simple asserts to validate the most essential input args */
+#define ASSERTZH assert(zh && zh->service)
+#define ASSERTZHRES assert(zh && zh->service && zh->res)
+#define ASSERTZS assert(zs)
+
static Res zebra_open_res (ZebraHandle zh);
static void zebra_close_res (ZebraHandle zh);
-static void zebra_chdir (ZebraService zh)
+
+static void zebra_chdir (ZebraService zs)
{
- const char *dir = res_get (zh->global_res, "chdir");
+ const char *dir ;
+ ASSERTZS;
+ dir = res_get (zs->global_res, "chdir");
if (!dir)
return;
logf (LOG_DEBUG, "chdir %s", dir);
static void zebra_flush_reg (ZebraHandle zh)
{
+ ASSERTZH;
+ zh->errCode=0;
zebraExplain_flush (zh->reg->zei, zh);
extract_flushWriteKeys (zh);
{
ZebraHandle zh;
const char *default_encoding;
+ ASSERTZS;
if (!zs)
return 0;
int record_compression = REC_COMPRESS_NONE;
char *recordCompression = 0;
+ ASSERTZS;
+
reg = xmalloc (sizeof(*reg));
assert (name);
void zebra_admin_shutdown (ZebraHandle zh)
{
+ ASSERTZH;
+ zh->errCode=0;
+
zebra_mutex_cond_lock (&zh->service->session_lock);
zh->service->stop_flag = 1;
zebra_mutex_cond_unlock (&zh->service->session_lock);
void zebra_admin_start (ZebraHandle zh)
{
- ZebraService zs = zh->service;
- zh->errCode = 0;
+ ZebraService zs;
+ ASSERTZH;
+ zh->errCode=0;
+ zs = zh->service;
zebra_mutex_cond_lock (&zs->session_lock);
zebra_mutex_cond_unlock (&zs->session_lock);
}
static void zebra_register_close (ZebraService zs, struct zebra_register *reg)
{
+ ASSERTZS;
yaz_log(LOG_DEBUG, "zebra_register_close p=%p", reg);
reg->stop_flag = 0;
zebra_chdir (zs);
void zebra_stop(ZebraService zs)
{
if (!zs)
- return ;
+ return ;
yaz_log (LOG_LOG, "zebra_stop");
while (zs->sessions)
if (!zh)
return;
-
+ ASSERTZH;
+ zh->errCode=0;
+
zs = zh->service;
yaz_log (LOG_DEBUG, "zebra_close zh=%p", zh);
if (!zh)
- return ;
+ return ;
resultSetDestroy (zh, -1, 0, 0);
}
zebra_mutex_cond_unlock (&zs->session_lock);
xfree (zh->reg_name);
+ zh->service=0; /* more likely to trigger an assert */
xfree (zh);
}
{
Res res = 0;
char fname[512];
+ ASSERTZH;
+ zh->errCode=0;
+
if (zh->path_reg)
{
sprintf (fname, "%.200s/zebra.cfg", zh->path_reg);
static void zebra_close_res (ZebraHandle zh)
{
+ ASSERTZH;
+ zh->errCode=0;
if (zh->res != zh->service->global_res)
res_close (zh->res);
zh->res = 0;
static int zebra_select_register (ZebraHandle zh, const char *new_reg)
{
+ ASSERTZH;
+ zh->errCode=0;
if (zh->res && strcmp (zh->reg_name, new_reg) == 0)
return 0;
if (!zh->res)
struct map_baseinfo info;
struct map_baseinfo *p = &info;
int i;
+ ASSERTZH;
+ zh->errCode=0;
info.zh = zh;
info.num_bases = *num_bases;
int zebra_select_database (ZebraHandle zh, const char *basename)
{
+ ASSERTZH;
+ zh->errCode=0;
return zebra_select_databases (zh, 1, &basename);
}
const char *cp;
int len = 0;
char *new_reg = 0;
+ ASSERTZH;
+ zh->errCode=0;
if (num_bases < 1)
{
void zebra_search_rpn (ZebraHandle zh, ODR decode, ODR stream,
Z_RPNQuery *query, const char *setname, int *hits)
{
+ ASSERTZH;
+ zh->errCode=0;
zh->hits = 0;
*hits = 0;
{
ZebraPosSet poset;
int i, *pos_array;
+ ASSERTZH;
+ zh->errCode=0;
if (!zh->res)
{
int *position, int *num_entries, ZebraScanEntry **entries,
int *is_partial)
{
+ ASSERTZH;
+ zh->errCode=0;
if (zebra_begin_read (zh))
{
*entries = 0;
const char *output_setname, Z_SortKeySpecList *sort_sequence,
int *sort_status)
{
+ ASSERTZH;
+ zh->errCode=0;
if (zebra_begin_read (zh))
return;
resultSetSort (zh, stream->mem, num_input_setnames, input_setnames,
int *statuses)
{
int i, status;
+ ASSERTZH;
+ zh->errCode=0;
if (zebra_begin_read(zh))
return Z_DeleteStatus_systemProblemAtTarget;
switch (function)
{
if (zh)
return zh->errCode;
- return 0; /* is this the right thing to return ?*/
+ return 0;
}
const char *zebra_errString (ZebraHandle zh)
int zebra_auth (ZebraHandle zh, const char *user, const char *pass)
{
- ZebraService zs = zh->service;
+ ZebraService zs;
+ ASSERTZH;
+ zh->errCode=0;
+ zs= zh->service;
if (!zs->passwd_db || !passwd_db_auth (zs->passwd_db, user, pass))
{
logf(LOG_APP,"AUTHOK:%s", user?user:"ANONYMOUS");
void zebra_admin_import_begin (ZebraHandle zh, const char *database,
const char *record_type)
{
+ ASSERTZH;
+ zh->errCode=0;
if (zebra_select_database(zh, database))
return;
zebra_begin_trans (zh);
void zebra_admin_import_end (ZebraHandle zh)
{
+ ASSERTZH;
+ zh->errCode=0;
zebra_end_trans (zh);
}
{
int sysno;
int i;
+ ASSERTZH;
+ zh->errCode=0;
for (i = 0; i<segment->num_segmentRecords; i++)
{
Z_NamePlusRecord *npr = segment->segmentRecords[i];
int sysno = 0;
char *rinfo = 0;
char recid_z[256];
+ ASSERTZH;
+ zh->errCode=0;
if (!recid_buf || recid_len <= 0 || recid_len >= sizeof(recid_z))
return -1;
void zebra_admin_create (ZebraHandle zh, const char *database)
{
ZebraService zs;
+ ASSERTZH;
+ zh->errCode=0;
if (zebra_select_database (zh, database))
return;
char *output_str, int output_len)
{
WRBUF wrbuf;
+ ASSERTZH;
+ zh->errCode=0;
if (!zh->reg->zebra_maps)
return -1;
wrbuf = zebra_replace(zh->reg->zebra_maps, reg_id, "",
char *fname;
long p = getpid();
FILE *f;
+ ASSERTZH;
+ zh->errCode=0;
sprintf (state_fname, "state.%s.LCK", zh->reg_name);
fname = zebra_mk_fname (res_get(zh->res, "lockDir"), state_fname);
char *fname;
FILE *f;
+ ASSERTZH;
+ zh->errCode=0;
sprintf (state_fname, "state.%s.LCK", zh->reg_name);
fname = zebra_mk_fname (res_get(zh->res, "lockDir"), state_fname);
f = fopen (fname, "r");
int dirty = 0;
char val;
int seqno;
+ ASSERTZH;
assert (zh->res);
zebra_flush_reg (zh);
return 0;
}
+ zh->errCode=0;
#if HAVE_SYS_TIMES_H
times (&zh->tms1);
#endif
void zebra_end_read (ZebraHandle zh)
{
+ ASSERTZH;
(zh->trans_no)--;
if (zh->trans_no != 0)
return;
+ zh->errCode=0;
#if HAVE_SYS_TIMES_H
times (&zh->tms2);
int seqno = 0;
char val = '?';
const char *rval = 0;
+ ASSERTZHRES;
assert (zh->res);
{
return;
}
+ zh->errCode=0;
yaz_log (LOG_LOG, "zebra_begin_trans");
char val;
int seqno;
const char *rval;
+ ASSERTZH;
zh->trans_no--;
if (zh->trans_no != 0)
return;
+ zh->errCode=0;
yaz_log (LOG_LOG, "zebra_end_trans");
rval = res_get (zh->res, "shadow");
void zebra_repository_update (ZebraHandle zh)
{
+ ASSERTZH;
+ zh->errCode=0;
logf (LOG_LOG, "updating %s", zh->rGroup.path);
repositoryUpdate (zh);
}
void zebra_repository_delete (ZebraHandle zh)
{
+ ASSERTZH;
+ zh->errCode=0;
logf (LOG_LOG, "deleting %s", zh->rGroup.path);
repositoryDelete (zh);
}
void zebra_repository_show (ZebraHandle zh)
{
+ ASSERTZH;
+ zh->errCode=0;
repositoryShow (zh);
}
char val;
const char *rval;
BFiles bfs;
+ ASSERTZH;
+ zh->errCode=0;
if (!zh->res)
{
{
const char *rval;
BFiles bfs = 0;
+ ASSERTZH;
+ zh->errCode=0;
if (!zh->res)
{
int zebra_compact (ZebraHandle zh)
{
BFiles bfs;
+ ASSERTZH;
+ zh->errCode=0;
if (!zh->res)
{
zh->errCode = 109;
int zebra_record_insert (ZebraHandle zh, const char *buf, int len)
{
int sysno = 0;
+ int olderr;
+ ASSERTZH;
+ zh->errCode=0;
zebra_begin_trans (zh);
+ if (zh->errCode)
+ return 0; /* bad sysno */
extract_rec_in_mem (zh, "grs.sgml",
buf, len,
"Default", /* database */
1 /* store_keys */,
1 /* store_data */,
0 /* match criteria */);
+ olderr=zh->errCode;
zebra_end_trans (zh);
+ if (olderr)
+ zh->errCode=olderr;
return sysno;
}
void zebra_set_group (ZebraHandle zh, struct recordGroup *rg)
{
+ ASSERTZH;
+ zh->errCode=0;
memcpy (&zh->rGroup, rg, sizeof(*rg));
}
void zebra_result (ZebraHandle zh, int *code, char **addinfo)
{
+ ASSERTZH;
*code = zh->errCode;
*addinfo = zh->errString;
}
void zebra_shadow_enable (ZebraHandle zh, int value)
{
+ ASSERTZH;
+ zh->errCode=0;
zh->shadow_enable = value;
}
int zebra_record_encoding (ZebraHandle zh, const char *encoding)
{
+ ASSERTZH;
+ zh->errCode=0;
xfree (zh->record_encoding);
/*
*/
if (zh->iconv_to_utf8 != 0)
- yaz_iconv_close(zh->iconv_to_utf8);
+ yaz_iconv_close(zh->iconv_to_utf8);
if (zh->iconv_from_utf8 != 0)
- yaz_iconv_close(zh->iconv_from_utf8);
+ yaz_iconv_close(zh->iconv_from_utf8);
zh->record_encoding = xstrdup (encoding);
void zebra_set_resource(ZebraHandle zh, const char *name, const char *value)
{
+ ASSERTZH;
+ zh->errCode=0;
res_put(zh->res, name, value);
}
const char *zebra_get_resource(ZebraHandle zh,
const char *name, const char *defaultvalue)
{
+ ASSERTZH;
+ zh->errCode=0;
return res_get_def( zh->res, name, (char *)defaultvalue);
}
/* zebrash.c - command-line interface to zebra API
- * $ID$
+ * $Id: zebrash.c,v 1.6 2003-02-12 15:45:59 heikki Exp $
*
* Copyrigth 2003 Index Data Aps
*
{
if (!zs)
strcat(outbuff,"zebra seems not to have been started, "
- "stopping anyway");
+ "stopping anyway\n");
zebra_stop(zs);
zs=0;
return 0; /* ok */
{
if (!zs)
strcat(outbuff,"zebra seems not to have been started, "
- "trying anyway");
+ "trying anyway\n");
zh=zebra_open(zs);
return 0; /* ok */
}
{
if (!zh)
strcat(outbuff,"Seems like you have not called zebra_open,"
- "trying anyway");
+ "trying anyway\n");
zebra_close(zh);
return 0; /* ok */
}
argbuf[MAX_ARG_LEN-1]='\0'; /* just to be sure */
n=split_args(argbuf, args);
if (0==n)
- return 0; /* no command on line, too bad */
+ return -1; /* no command on line, too bad */
for (i=0;cmds[i].cmd;i++)
if (0==strcmp(cmds[i].cmd, args[0]))
{
strcat(outbuff,args[0] );
strcat(outbuff,"'. Try help");
logf(LOG_APP,"Unknown command");
- return -1;
+ return -2;
}
static int cmd_help( char *args[], char *outbuff)
}
/* If Zebra reports an error after an operation,
- * append it to the outbuff */
+ * append it to the outbuff and log it */
static void Zerrors ( char *outbuff)
{
int ec;
ec=zebra_errCode (zh);
if (ec)
{
- sprintf(tmp, "Zebra error %d: %s, (%s) \n",
+ sprintf(tmp, "Zebra error %d: %s, (%s)",
ec, zebra_errString (zh),
zebra_errAdd (zh) );
strcat(outbuff, tmp);
+ strcat(outbuff, "\n");
+ logf(LOG_APP, tmp);
}
}
printf (PROMPT);
fflush (stdout);
if (!fgets (buf, MAX_ARG_LEN-1, stdin))
- break;
+ break;
#endif
outbuff[0]='\0';
rc=onecommand(buf, outbuff);
if (rc==0)
+ {
strcat(outbuff, "OK\n");
+ logf(LOG_APP, "OK");
+ }
else if (rc > 0)
{
sprintf(tmp, "command returned %d\n",rc);
strcat(outbuff,tmp);
- }
+ }
Zerrors(outbuff);
printf("%s\n", outbuff);
} /* while */
} /* shell() */
-
+
/**************************************
* Main