+/*
+ * Copyright (C) 1995-2000, Index Data
+ * All rights reserved.
+ *
+ * $Header: /home/cvsroot/idis/index/Attic/apitest.c,v 1.10 2000-09-06 08:59:36 adam Exp $
+ */
#include <stdio.h>
various functions */
ODR odr_input, odr_output;
- /* zh is our Zebra Handle - describes the server as a whole */
+ /* zs is our Zebra Service - decribes whole server */
+ ZebraService zs;
+
+ /* zh is our Zebra Handle - describes database session */
ZebraHandle zh;
/* the database we specify in our example */
odr_input = odr_createmem (ODR_DECODE);
odr_output = odr_createmem (ODR_ENCODE);
- /* open Zebra */
- zh = zebra_open ("zebra.cfg");
+ zs = zebra_start ("zebra.cfg");
+ if (!zs)
+ {
+ printf ("zebra_start failed; missing zebra.cfg?\n");
+ exit (1);
+ }
+ /* open Zebra */
+ zh = zebra_open (zs);
if (!zh)
{
- printf ("Couldn't init zebra\n");
+ printf ("zebras_open failed\n");
exit (1);
}
-
- /* This call controls the logging facility in YAZ/Zebra */
-#if 0
- log_init(LOG_ALL, "", "out.log");
-#endif
-
/* Each argument to main will be a query */
for (argno = 1; argno < argc; argno++)
{
odr_destroy (odr_input);
odr_destroy (odr_output);
zebra_close (zh);
+ zebra_stop (zs);
return 0;
}
* All rights reserved.
*
* $Log: zebraapi.c,v $
- * Revision 1.35 2000-07-07 12:49:20 adam
+ * Revision 1.36 2000-09-06 08:59:36 adam
+ * Using read-only (for now) for server.
+ *
+ * Revision 1.35 2000/07/07 12:49:20 adam
* Optimized resultSetInsert{Rank,Sort}.
*
* Revision 1.34 2000/06/09 13:56:38 ian
return zh;
}
-static int zebra_register_activate (ZebraService zh);
+static int zebra_register_activate (ZebraService zh, int rw);
static int zebra_register_deactivate (ZebraService zh);
ZebraService zebra_start (const char *configName)
zh->stop_flag = 0;
zh->active = 0;
zebra_mutex_cond_init (&zh->session_lock);
- zebra_register_activate (zh);
+ zebra_register_activate (zh, 0);
return zh;
}
-static int zebra_register_activate (ZebraService zh)
+static int zebra_register_activate (ZebraService zh, int rw)
{
if (zh->active)
return 0;
passwd_db_file (zh->passwd_db, res_get (zh->res, "passwd"));
}
- if (!(zh->records = rec_open (zh->bfs, 1, 0)))
+ if (!(zh->records = rec_open (zh->bfs, rw, 0)))
{
logf (LOG_WARN, "rec_open");
return -1;
}
- if (!(zh->dict = dict_open (zh->bfs, FNAME_DICT, 80, 1, 0)))
+ if (!(zh->dict = dict_open (zh->bfs, FNAME_DICT, 80, rw, 0)))
{
logf (LOG_WARN, "dict_open");
return -1;
}
- if (!(zh->sortIdx = sortIdx_open (zh->bfs, 0)))
+ if (!(zh->sortIdx = sortIdx_open (zh->bfs, rw)))
{
logf (LOG_WARN, "sortIdx_open");
return -1;
if (res_get_match (zh->res, "isam", "s", ISAM_DEFAULT))
{
struct ISAMS_M_s isams_m;
- if (!(zh->isams = isams_open (zh->bfs, FNAME_ISAMS, 1,
+ if (!(zh->isams = isams_open (zh->bfs, FNAME_ISAMS, rw,
key_isams_m(zh->res, &isams_m))))
{
logf (LOG_WARN, "isams_open");
#if ZMBOL
else if (res_get_match (zh->res, "isam", "i", ISAM_DEFAULT))
{
- if (!(zh->isam = is_open (zh->bfs, FNAME_ISAM, key_compare, 1,
+ if (!(zh->isam = is_open (zh->bfs, FNAME_ISAM, key_compare, rw,
sizeof (struct it_key), zh->res)))
{
logf (LOG_WARN, "is_open");
{
struct ISAMC_M_s isamc_m;
if (!(zh->isamc = isc_open (zh->bfs, FNAME_ISAMC,
- 1, key_isamc_m(zh->res, &isamc_m))))
+ rw, key_isamc_m(zh->res, &isamc_m))))
{
logf (LOG_WARN, "isc_open");
return -1;
struct ISAMD_M_s isamd_m;
if (!(zh->isamd = isamd_open (zh->bfs, FNAME_ISAMD,
- 1, key_isamd_m(zh->res, &isamd_m))))
+ rw, key_isamd_m(zh->res, &isamd_m))))
{
logf (LOG_WARN, "isamd_open");
return -1;
}
#endif
zh->zei = zebraExplain_open (zh->records, zh->dh,
- zh->res, 1, 0 /* rGroup */,
+ zh->res, rw, 0 /* rGroup */,
explain_extract);
if (!zh->zei)
{
zh->errCode = 0;
zebra_mutex_cond_lock (&zs->session_lock);
if (!zs->stop_flag)
- zebra_register_activate(zs);
+ zebra_register_activate(zs, 0);
zebra_mutex_cond_unlock (&zs->session_lock);
}