X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fidzebra%2Frecctrl.h;h=3f20cb05ad3f733cd7747d0870cee1e4bfd4f139;hb=0af00389d43835ef54928dc22f7d34ae30f3c723;hp=0a39e703e53277666eff5e0034f7b669398b8136;hpb=0f3b8bcc6fe2e3beeec7c834d9a64dca48a4f1b7;p=idzebra-moved-to-github.git diff --git a/include/idzebra/recctrl.h b/include/idzebra/recctrl.h index 0a39e70..3f20cb0 100644 --- a/include/idzebra/recctrl.h +++ b/include/idzebra/recctrl.h @@ -1,5 +1,5 @@ -/* $Id: recctrl.h,v 1.10 2005-04-28 08:20:39 adam Exp $ - Copyright (C) 1995-2005 +/* $Id: recctrl.h,v 1.21 2006-06-07 10:14:40 adam Exp $ + Copyright (C) 1995-2006 Index Data ApS This file is part of the Zebra server. @@ -20,8 +20,8 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifndef RECCTRL_H -#define RECCTRL_H +#ifndef IDZEBRA_RECCTRL_H +#define IDZEBRA_RECCTRL_H #include #include @@ -29,17 +29,31 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include #include +#include #include 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 *attrStr; - char *term_buf; + unsigned index_type; + const char *index_name; + const char *term_buf; int term_len; zint seqno; zint record_id; @@ -65,6 +79,7 @@ struct recExtractCtrl { int flagShowRecords; int seqno[256]; char match_criteria[256]; + zint staticrank; void (*schemaAdd)(struct recExtractCtrl *p, Odr_oid *oid); data1_handle dh; void *handle; @@ -84,9 +99,12 @@ struct recRetrieveCtrl { char *encoding; /* preferred character encoding */ zint localno; /* local id of record */ int score; /* score 0-1000 or -1 if none */ + int 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; @@ -103,7 +121,7 @@ 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 */ @@ -123,6 +141,14 @@ 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 @@ -146,3 +172,11 @@ RecType recType_byName(RecTypes rts, Res res, const char *name, YAZ_END_CDECL #endif +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +