Minor changes to zebramap data structures. Changed query
authorAdam Dickmeiss <adam@indexdata.dk>
Thu, 5 Mar 1998 08:39:25 +0000 (08:39 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Thu, 5 Mar 1998 08:39:25 +0000 (08:39 +0000)
mapping rules.

include/rsrel.h [deleted file]
include/zebramap.h

diff --git a/include/rsrel.h b/include/rsrel.h
deleted file mode 100644 (file)
index e1299bb..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (C) 1995-1998, Index Data I/S 
- * All rights reserved.
- * Sebastian Hammer, Adam Dickmeiss
- *
- * $Log: rsrel.h,v $
- * Revision 1.7  1998-01-07 13:53:41  adam
- * Queries using simple ranked operands returns right number of hits.
- *
- * Revision 1.6  1997/12/18 10:54:24  adam
- * New method result set method rs_hits that returns the number of
- * hits in result-set (if known). The ranked result set returns real
- * number of hits but only when not combined with other operands.
- *
- * Revision 1.5  1997/09/22 12:39:06  adam
- * Added get_pos method for the ranked result sets.
- *
- * Revision 1.4  1997/09/05 15:30:05  adam
- * Changed prototype for chr_map_input - added const.
- * Added support for C++, headers uses extern "C" for public definitions.
- *
- * Revision 1.3  1996/11/08 11:08:02  adam
- * New internal release.
- *
- * Revision 1.2  1996/06/11 10:53:16  quinn
- * Relevance work.
- *
- * Revision 1.1  1995/09/08  14:52:09  adam
- * Work on relevance sets.
- *
- */
-
-#ifndef RSET_REL_H
-#define RSET_REL_H
-
-#include <rset.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-extern const rset_control *rset_kind_relevance;
-
-#define RSREL_METHOD_A  1
-#define RSREL_METHOD_B  2
-
-typedef struct rset_relevance_parms
-{
-    int     key_size;
-    int     max_rec;
-    int     (*cmp)(const void *p1, const void *p2);
-
-    ISAM    is;
-    ISAMC   isc;
-    ISAM_P  *isam_positions;            /* positions */
-    int     no_isam_positions;          /* no of positions (no of ISAM_P) */
-    int     no_terms;                   /* no of terms */
-    int     *term_no;                   /* which term at isam_position */
-    int     (*get_pos)(const void *p);
-
-    int     method;
-} rset_relevance_parms;
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
index 07e6908..e9894c3 100644 (file)
@@ -4,7 +4,11 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: zebramap.h,v $
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: zebramap.h,v $
- * Revision 1.4  1998-02-10 12:03:05  adam
+ * Revision 1.5  1998-03-05 08:39:26  adam
+ * Minor changes to zebramap data structures. Changed query
+ * mapping rules.
+ *
+ * Revision 1.4  1998/02/10 12:03:05  adam
  * Implemented Sort.
  *
  * Revision 1.3  1997/11/18 10:05:08  adam
  * Implemented Sort.
  *
  * Revision 1.3  1997/11/18 10:05:08  adam
@@ -33,21 +37,22 @@ extern "C" {
 #endif
 
 typedef struct zebra_maps *ZebraMaps;
 #endif
 
 typedef struct zebra_maps *ZebraMaps;
-ZebraMaps zebra_maps_open (const char *tabpath, Res res);
+ZebraMaps zebra_maps_open (Res res);
 
 void zebra_maps_close (ZebraMaps zm);
 
 
 void zebra_maps_close (ZebraMaps zm);
 
-const char **zebra_maps_input (ZebraMaps zms, int reg_type,
+const char **zebra_maps_input (ZebraMaps zms, unsigned reg_id,
                               const char **from, int len);
                               const char **from, int len);
-const char *zebra_maps_output(ZebraMaps, int reg_type, const char **from);
+const char *zebra_maps_output(ZebraMaps, unsigned reg_id, const char **from);
 
 int zebra_maps_attr (ZebraMaps zms, Z_AttributesPlusTerm *zapt,
 
 int zebra_maps_attr (ZebraMaps zms, Z_AttributesPlusTerm *zapt,
-                    int *reg_type, char **search_type, int *complete_flag);
+                    unsigned *reg_id, char **search_type, char **rank_type,
+                    int *complete_flag);
 
 int zebra_maps_sort (ZebraMaps zms, Z_SortAttributes *sortAttributes);
 
 
 int zebra_maps_sort (ZebraMaps zms, Z_SortAttributes *sortAttributes);
 
-int zebra_maps_is_complete (ZebraMaps zms, int structure);
-int zebra_maps_is_sort (ZebraMaps zms, int reg_type);
+int zebra_maps_is_complete (ZebraMaps zms, unsigned reg_id);
+int zebra_maps_is_sort (ZebraMaps zms, unsigned reg_id);
 #ifdef __cplusplus
 }
 #endif
 #ifdef __cplusplus
 }
 #endif