New feature: databases. Implemented as prefix to words in dictionary.
[idzebra-moved-to-github.git] / index / zserver.h
index 60cb91c..565965a 100644 (file)
@@ -4,7 +4,20 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: zserver.h,v $
- * Revision 1.7  1995-10-06 10:43:57  adam
+ * 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
+ * New result set method: r_score.
+ * Local no (sysno) and score is transferred to retrieveCtrl.
+ *
+ * Revision 1.8  1995/10/06  13:52:06  adam
+ * Bug fixes. Handler may abort further scanning.
+ *
+ * Revision 1.7  1995/10/06  10:43:57  adam
  * Scan added. 'occurrences' in scan entries not set yet.
  *
  * Revision 1.6  1995/09/28  09:19:48  adam
 #include <rset.h>
 
 typedef struct {
-    size_t size;
-    char *buf;
-} ZServerRecord;
-
-typedef struct {
     int sysno;
+    int score;
 } ZServerSetSysno;
 
 typedef struct ZServerSet_ {
@@ -54,7 +63,6 @@ typedef struct {
     ISAM wordIsam;
     Dict fileDict;
     int sys_idx_fd;
-    char *recordBuf;
     int errCode;
     char *errString;
     ODR odr;
@@ -65,11 +73,13 @@ int rpn_search (ZServerInfo *zi,
                 const char *setname, int *hits);
 
 int rpn_scan (ZServerInfo *zi, ODR odr, Z_AttributesPlusTerm *zapt,
-              int *position, int *num_entries, struct scan_entry **list);
+              int num_bases, char **basenames,
+              int *position, int *num_entries, struct scan_entry **list,
+              int *status);
 
 ZServerSet *resultSetAdd (ZServerInfo *zi, const char *name,
                           int ov, RSET rset);
 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);