X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=include%2Fidzebra%2Frecctrl.h;h=4d18730e710b91444d6c54222205643ff4a72b3b;hp=0ded57dd2ae474accc52961468fb12ce7b0d63f0;hb=4478d785b7769691261005c98063b98a5a5971b3;hpb=36f8c4a15cad06268b2d5621aed28ab16c015cc5 diff --git a/include/idzebra/recctrl.h b/include/idzebra/recctrl.h index 0ded57d..4d18730 100644 --- a/include/idzebra/recctrl.h +++ b/include/idzebra/recctrl.h @@ -1,6 +1,6 @@ -/* $Id: recctrl.h,v 1.2 2004-09-28 12:39:54 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 - Index Data Aps +/* $Id: recctrl.h,v 1.26 2006-08-14 10:40:14 adam Exp $ + Copyright (C) 1995-2006 + Index Data ApS This file is part of the Zebra server. @@ -15,35 +15,49 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with Zebra; see the file LICENSE.zebra. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. -*/ - +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ -#ifndef RECCTRL_H -#define RECCTRL_H +#ifndef IDZEBRA_RECCTRL_H +#define IDZEBRA_RECCTRL_H +#include #include #include #include #include #include +#include #include -#ifdef __cplusplus -extern "C" { -#endif +YAZ_BEGIN_CDECL + +/* 1 */ +#define ZEBRA_XPATH_ELM_BEGIN "_XPATH_BEGIN" + +/* 2 */ +#define ZEBRA_XPATH_ELM_END "_XPATH_END" + +/* 1016 */ +#define ZEBRA_XPATH_CDATA "_XPATH_CDATA" + +/* 3 */ +#define ZEBRA_XPATH_ATTR_NAME "_XPATH_ATTR_NAME" + +/* 1015 */ +#define ZEBRA_XPATH_ATTR_CDATA "_XPATH_ATTR_CDATA" /* single word entity */ typedef struct { - int attrSet; - int attrUse; - unsigned reg_type; - char *string; - int length; - int seqno; + 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 +73,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]; + zint staticrank; void (*schemaAdd)(struct recExtractCtrl *p, Odr_oid *oid); data1_handle dh; void *handle; @@ -81,25 +99,29 @@ struct recRetrieveCtrl { char *encoding; /* preferred character encoding */ zint localno; /* local id of record */ int score; /* score 0-1000 or -1 if none */ + zint staticrank; /* static rank >= 0, 0 if none */ 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 */ + ZEBRA_RES (*config)(void *clientData, Res res, const char *args); /* Config */ void (*destroy)(void *clientData); /* Destroy function */ int (*extract)(void *clientData, struct recExtractCtrl *ctrl); /* Extract proc */ @@ -115,21 +137,48 @@ struct recType typedef struct recTypeClass *RecTypeClass; typedef struct recTypes *RecTypes; +YAZ_EXPORT RecTypeClass recTypeClass_create (Res res, NMEM nmem); + +YAZ_EXPORT +void recTypeClass_load_modules(RecTypeClass *rts, NMEM nmem, + const char *module_path); + +YAZ_EXPORT +RecTypeClass recTypeClass_add_modules(Res res, NMEM nmem, + const char *module_path); + +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 +#define KEY_SEGMENT_SIZE 1024 + +YAZ_END_CDECL #endif +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +