X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fidzebra%2Frecctrl.h;h=ab1941bddd39b07fee8573c6da5d7d65c42ba1f5;hb=aa7cc3c1655c632a7b3a7053fb5b46b8ce0d3aeb;hp=6f107016bb1c37c9c633674e43bb843c3451c83f;hpb=39cb125e7755c6058a93dada8d5172804213cf8e;p=idzebra-moved-to-github.git diff --git a/include/idzebra/recctrl.h b/include/idzebra/recctrl.h index 6f10701..ab1941b 100644 --- a/include/idzebra/recctrl.h +++ b/include/idzebra/recctrl.h @@ -1,6 +1,6 @@ -/* $Id: recctrl.h,v 1.5 2004-11-29 21:55:25 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 - Index Data Aps +/* $Id: recctrl.h,v 1.12 2005-06-23 06:45:46 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS This file is part of the Zebra server. @@ -23,22 +23,35 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #ifndef RECCTRL_H #define RECCTRL_H +#include #include #include #include #include #include +#include #include YAZ_BEGIN_CDECL +#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; +#endif + unsigned index_type; + char *index_name; + char *term_buf; + int term_len; zint seqno; zint record_id; zint section_id; @@ -57,7 +70,9 @@ 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]; @@ -83,6 +98,8 @@ 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; @@ -96,6 +113,7 @@ 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 */