X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fzebramap.h;h=21fd34ab5edde5737587657b930563c214c9db85;hb=f1a944fbdac20e88bf55918f2a4f66c301d684e2;hp=07e69088035d4bf85271662cd66c027438979872;hpb=5c693d36af8be6f6642257160b3c6441d2e2d762;p=idzebra-moved-to-github.git diff --git a/include/zebramap.h b/include/zebramap.h index 07e6908..21fd34a 100644 --- a/include/zebramap.h +++ b/include/zebramap.h @@ -1,10 +1,36 @@ /* - * Copyright (C) 1994-1998, Index Data I/S + * Copyright (C) 1994-1999, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: zebramap.h,v $ - * Revision 1.4 1998-02-10 12:03:05 adam + * Revision 1.12 2001-11-14 22:06:27 adam + * Rank-weight may be controlled via query. + * + * Revision 1.11 2001/01/22 10:42:56 adam + * Added numerical sort. + * + * Revision 1.10 1999/11/30 13:48:03 adam + * Improved installation. Updated for inclusion of YAZ header files. + * + * Revision 1.9 1999/09/07 07:19:21 adam + * Work on character mapping. Implemented replace rules. + * + * Revision 1.8 1999/02/12 13:29:21 adam + * Implemented position-flag for registers. + * + * Revision 1.7 1999/02/02 14:50:46 adam + * Updated WIN32 code specific sections. Changed header. + * + * Revision 1.6 1998/06/23 15:33:33 adam + * Added feature to specify sort criteria in query (type 7 specifies + * sort flags). + * + * 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 @@ -25,7 +51,7 @@ #ifndef ZEBRAMAP_H #define ZEBRAMAP_H -#include +#include #include #ifdef __cplusplus @@ -33,21 +59,28 @@ extern "C" { #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); -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 *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 *reg_type, char **search_type, int *complete_flag); + unsigned *reg_id, char **search_type, char *rank_type, + int *complete_flag, int *sort_flag); + +int zebra_maps_sort (ZebraMaps zms, Z_SortAttributes *sortAttributes, + int *numerical); + +int zebra_maps_is_complete (ZebraMaps zms, unsigned reg_id); +int zebra_maps_is_sort (ZebraMaps zms, unsigned reg_id); +int zebra_maps_is_positioned (ZebraMaps zms, unsigned reg_id); -int zebra_maps_sort (ZebraMaps zms, Z_SortAttributes *sortAttributes); +WRBUF zebra_replace(ZebraMaps zms, unsigned reg_id, const char *ex_list, + const char *input_str, int input_len); -int zebra_maps_is_complete (ZebraMaps zms, int structure); -int zebra_maps_is_sort (ZebraMaps zms, int reg_type); #ifdef __cplusplus } #endif