X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fidzebra%2Frecctrl.h;h=4db54cc0ee505323e062bbfa7c689200abe745ba;hb=e25e81fb1286e771866415bedd5ac963af86568c;hp=b9f8d3cfc5efd8113a52ba0a2292ca8e0159eb4c;hpb=22963c0b23a178529bc71e5879c7e4f9c3c9b7f9;p=idzebra-moved-to-github.git diff --git a/include/idzebra/recctrl.h b/include/idzebra/recctrl.h index b9f8d3c..4db54cc 100644 --- a/include/idzebra/recctrl.h +++ b/include/idzebra/recctrl.h @@ -1,6 +1,6 @@ -/* $Id: recctrl.h,v 1.1 2004-09-28 10:15:03 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 - Index Data Aps +/* $Id: recctrl.h,v 1.14 2005-08-22 08:19:51 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS This file is part of the Zebra server. @@ -20,30 +20,41 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - - #ifndef RECCTRL_H #define RECCTRL_H +#include #include #include #include #include #include -#include +#include +#include + +YAZ_BEGIN_CDECL -#ifdef __cplusplus -extern "C" { +#if NATTR +#define ZEBRA_XPATH_ELM_BEGIN "_XPATH_BEGIN" +#define ZEBRA_XPATH_ELM_END "_XPATH_END" +#define ZEBRA_XPATH_CDATA "_XPATH_CDATA" +#define ZEBRA_XPATH_ATTR "_XPATH_ATTR" #endif /* single word entity */ typedef struct { +#if NATTR +#else int attrSet; int attrUse; - unsigned reg_type; - char *string; - int length; - int seqno; +#endif + unsigned index_type; + const char *index_name; + const char *term_buf; + int term_len; + zint seqno; + zint record_id; + zint section_id; ZebraMaps zebra_maps; struct recExtractCtrl *extractCtrl; } RecWord; @@ -59,9 +70,13 @@ struct recExtractCtrl { void (*init)(struct recExtractCtrl *p, RecWord *w); void *clientData; void (*tokenAdd)(RecWord *w); + void (*setStoreData)(struct recExtractCtrl *p, void *buf, size_t size); ZebraMaps zebra_maps; + int first_record; int flagShowRecords; int seqno[256]; + char match_criteria[256]; + int staticrank; void (*schemaAdd)(struct recExtractCtrl *p, Odr_oid *oid); data1_handle dh; void *handle; @@ -84,19 +99,22 @@ struct recRetrieveCtrl { int recordSize; /* size of record in bytes */ char *fname; /* name of file (or NULL if internal) */ data1_handle dh; + zebra_snippets *hit_snippet; + zebra_snippets *doc_snippet; /* response */ oid_value output_format; void *rec_buf; int rec_len; int diagnostic; - char *message; + char *addinfo; }; typedef struct recType *RecType; struct recType { + int version; char *name; /* Name of record type */ void *(*init)(Res res, RecType recType); /* Init function - called once */ void (*config)(void *clientData, Res res, const char *args); /* Config */ @@ -115,21 +133,30 @@ struct recType typedef struct recTypeClass *RecTypeClass; typedef struct recTypes *RecTypes; +YAZ_EXPORT RecTypeClass recTypeClass_create (Res res, NMEM nmem); + +YAZ_EXPORT void recTypeClass_destroy(RecTypeClass rtc); + +YAZ_EXPORT void recTypeClass_info(RecTypeClass rtc, void *cd, void (*cb)(void *cd, const char *s)); +YAZ_EXPORT RecTypes recTypes_init(RecTypeClass rtc, data1_handle dh); + +YAZ_EXPORT void recTypes_destroy(RecTypes recTypes); + +YAZ_EXPORT void recTypes_default_handlers(RecTypes recTypes, Res res); +YAZ_EXPORT RecType recType_byName(RecTypes rts, Res res, const char *name, void **clientDataP); -#ifdef __cplusplus -} -#endif +YAZ_END_CDECL #endif