X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=index%2Fzserver.h;h=04547fb869b377ddac7fa3345c832e70149c8088;hb=0d1685e5db9bf74ff80a4b483754532a73fcbb74;hp=d5d4cece8a793da5db8830843898724c26acc738;hpb=29357d2be4bc20d412d38bcb29876daedda28637;p=idzebra-moved-to-github.git diff --git a/index/zserver.h b/index/zserver.h index d5d4cec..04547fb 100644 --- a/index/zserver.h +++ b/index/zserver.h @@ -4,7 +4,16 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: zserver.h,v $ - * Revision 1.10 1995-10-09 16:18:38 adam + * Revision 1.13 1995-11-16 15:34:56 adam + * Uses new record management system in both indexer and server. + * + * Revision 1.12 1995/10/27 14:00:12 adam + * Implemented detection of database availability. + * + * Revision 1.11 1995/10/17 18:02:12 adam + * New feature: databases. Implemented as prefix to words in dictionary. + * + * Revision 1.10 1995/10/09 16:18:38 adam * Function dict_lookup_grep got extra client data parameter. * * Revision 1.9 1995/10/06 14:38:01 adam @@ -38,14 +47,13 @@ * */ -#include "index.h" #include #include -typedef struct { - size_t size; - char *buf; -} ZServerRecord; +#include "index.h" +#if RECORD_BASE +#include "recindex.h" +#endif typedef struct { int sysno; @@ -64,7 +72,11 @@ typedef struct { Dict wordDict; ISAM wordIsam; Dict fileDict; +#if RECORD_BASE + Records records; +#else int sys_idx_fd; +#endif int errCode; char *errString; ODR odr; @@ -74,7 +86,8 @@ int rpn_search (ZServerInfo *zi, Z_RPNQuery *rpn, int num_bases, char **basenames, const char *setname, int *hits); -int rpn_scan (ZServerInfo *zi, ODR odr, Z_AttributesPlusTerm *zapt, +int rpn_scan (ZServerInfo *zi, Z_AttributesPlusTerm *zapt, + int num_bases, char **basenames, int *position, int *num_entries, struct scan_entry **list, int *status); @@ -83,4 +96,4 @@ ZServerSet *resultSetAdd (ZServerInfo *zi, const char *name, ZServerSet *resultSetGet (ZServerInfo *zi, const char *name); ZServerSetSysno *resultSetSysnoGet (ZServerInfo *zi, const char *name, int num, int *positions); -void resultSetRecordDel (ZServerInfo *zi, ZServerRecord *records, int num); +void resultSetSysnoDel (ZServerInfo *zi, ZServerSetSysno *records, int num);