X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fzserver.h;h=0b49c28a777844bfda6d7840b63e4a6fa661e5b9;hb=83533000f9456dcab2fc171abafd84d6104d4087;hp=b7a452f1bccda41d0b4ca8e140ffc05349b6afa8;hpb=bceca936710690858ea162e7bc22de819f0e280f;p=idzebra-moved-to-github.git diff --git a/index/zserver.h b/index/zserver.h index b7a452f..0b49c28 100644 --- a/index/zserver.h +++ b/index/zserver.h @@ -4,7 +4,20 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: zserver.h,v $ - * Revision 1.41 1999-05-12 13:08:06 adam + * Revision 1.45 1999-11-30 13:48:04 adam + * Improved installation. Updated for inclusion of YAZ header files. + * + * Revision 1.44 1999/11/04 15:00:45 adam + * Implemented delete result set(s). + * + * Revision 1.43 1999/07/14 10:59:27 adam + * Changed functions isc_getmethod, isams_getmethod. + * Improved fatal error handling (such as missing EXPLAIN schema). + * + * Revision 1.42 1999/05/26 07:49:13 adam + * C++ compilation. + * + * Revision 1.41 1999/05/12 13:08:06 adam * First version of ISAMS. * * Revision 1.40 1998/11/16 16:03:45 adam @@ -146,20 +159,11 @@ * */ - -#ifndef USE_TIMES -#ifdef __linux__ -#define USE_TIMES 1 -#else -#define USE_TIMES 0 -#endif -#endif - -#if USE_TIMES +#if HAVE_SYS_TIMES_H #include #endif -#include +#include #include #include @@ -168,6 +172,10 @@ #include "zebraapi.h" #include "zinfo.h" +#ifdef __cplusplus +extern "C" { +#endif + typedef struct { int sysno; int score; @@ -188,9 +196,11 @@ struct zebra_info { ZebraSet sets; Dict dict; SortIdx sortIdx; + ISAMS isams; +#if ZMBOL ISAM isam; ISAMC isamc; - ISAMS isams; +#endif Records records; int errCode; int hits; @@ -203,7 +213,7 @@ struct zebra_info { ZebraLockHandle server_lock_cmt; ZebraLockHandle server_lock_org; char *server_path_prefix; -#if USE_TIMES +#if HAVE_SYS_TIMES_H struct tms tms1; struct tms tms2; #endif @@ -213,7 +223,6 @@ struct zebra_info { Passwd_db passwd_db; }; - struct rank_control { char *name; void *(*create)(ZebraHandle zh); @@ -235,7 +244,7 @@ void rpn_scan (ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt, int *position, int *num_entries, ZebraScanEntry **list, int *is_partial); -RSET rset_trunc (ZebraHandle zh, ISAM_P *isam_p, int no, +RSET rset_trunc (ZebraHandle zh, ISAMS_P *isam_p, int no, const char *term, int length_term, const char *flags); ZebraSet resultSetAdd (ZebraHandle zh, const char *name, int ov); @@ -243,7 +252,8 @@ ZebraSet resultSetGet (ZebraHandle zh, const char *name); ZebraSet resultSetAddRPN (ZebraHandle zh, ODR stream, ODR decode, Z_RPNQuery *rpn, int num_bases, char **basenames, const char *setname); RSET resultSetRef (ZebraHandle zh, Z_ResultSetId *resultSetId); -void resultSetDestroy (ZebraHandle zh); +void resultSetDestroy (ZebraHandle zh, int num_names, char **names, + int *statuses); ZebraPosSet zebraPosSetCreate (ZebraHandle zh, const char *name, int num, int *positions); @@ -288,3 +298,6 @@ int zebra_record_fetch (ZebraHandle zh, int sysno, int score, ODR stream, oid_value *output_format, char **rec_bufp, int *rec_lenp, char **basenamep); +#ifdef __cplusplus +} +#endif