X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fsortidx.h;h=54aec5454cbadcbd3a6b77e2f847003e0a8dca66;hb=aa76dfa21ba30fe802a5ef6f3907b57ecd7e6c65;hp=b4f74e527cef55800ef1dc94552388f91d00ac5a;hpb=97a7adeb9e5059463f039495cc01cfa448463a27;p=idzebra-moved-to-github.git diff --git a/include/sortidx.h b/include/sortidx.h index b4f74e5..54aec54 100644 --- a/include/sortidx.h +++ b/include/sortidx.h @@ -23,23 +23,68 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include #include +#include YAZ_BEGIN_CDECL #define SORT_IDX_ENTRYSIZE 64 +/** \var zebra_sort_index_t + \brief sort index handle +*/ typedef struct zebra_sort_index *zebra_sort_index_t; #define ZEBRA_SORT_TYPE_FLAT 1 #define ZEBRA_SORT_TYPE_ISAMB 2 +#define ZEBRA_SORT_TYPE_MULTI 3 +/** \brief creates sort handle + \param bfs block files handle + \param write_flag (0=read-only, 1=write and read) + \param sort_type one of ZEBRA_SORT_TYPE_.. + \return sort index handle +*/ zebra_sort_index_t zebra_sort_open(BFiles bfs, int write_flag, int sort_type); + +/** \brief frees sort handle +*/ void zebra_sort_close(zebra_sort_index_t si); + +/** \brief sets type for sort usage + \param si sort index handle + \param type opaque type .. A sort file for each type is created +*/ int zebra_sort_type(zebra_sort_index_t si, int type); + +/** \brief sets sort system number for read / add / delete + \param si sort index handle + \param sysno system number +*/ void zebra_sort_sysno(zebra_sort_index_t si, zint sysno); -void zebra_sort_add(zebra_sort_index_t si, const char *buf, int len); + +/** \brief adds multi-map content to sort file + \param si sort index handle + \param w one or more 0-terminted strings (thus an array) + + zebra_sort_type and zebra_sort_sysno must be called prior to this +*/ +void zebra_sort_add(zebra_sort_index_t si, WRBUF w); + + +/** \brief delete sort entry + \param si sort index handle + + zebra_sort_type and zebra_sort_sysno must be called prior to this +*/ void zebra_sort_delete(zebra_sort_index_t si); -void zebra_sort_read(zebra_sort_index_t si, char *buf); + +/** \brief reads sort entry + \param si sort index handle + \param buf resulting buffer + \retval 0 could not be read + \retval 1 could be read (found) +*/ +int zebra_sort_read(zebra_sort_index_t si, WRBUF w); YAZ_END_CDECL