X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fidzebra%2Frecctrl.h;h=1fbc831d6a358f14359079cd1f169c72b8317e12;hb=f49130df276ecd0cdc157338da45ae5c46546d3a;hp=ab1941bddd39b07fee8573c6da5d7d65c42ba1f5;hpb=9eebf93dc2525854867cbc43920ea8ba4a199ab5;p=idzebra-moved-to-github.git diff --git a/include/idzebra/recctrl.h b/include/idzebra/recctrl.h index ab1941b..1fbc831 100644 --- a/include/idzebra/recctrl.h +++ b/include/idzebra/recctrl.h @@ -1,5 +1,5 @@ -/* $Id: recctrl.h,v 1.12 2005-06-23 06:45:46 adam Exp $ - Copyright (C) 1995-2005 +/* $Id: recctrl.h,v 1.17 2006-05-05 07:34:25 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 @@ -49,8 +49,8 @@ typedef struct { int attrUse; #endif unsigned index_type; - char *index_name; - char *term_buf; + const char *index_name; + const char *term_buf; int term_len; zint seqno; zint record_id; @@ -76,6 +76,7 @@ struct recExtractCtrl { int flagShowRecords; int seqno[256]; char match_criteria[256]; + int staticrank; void (*schemaAdd)(struct recExtractCtrl *p, Odr_oid *oid); data1_handle dh; void *handle; @@ -95,6 +96,7 @@ 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; @@ -116,7 +118,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 */ @@ -136,6 +138,10 @@ YAZ_EXPORT RecTypeClass recTypeClass_create (Res res, NMEM nmem); YAZ_EXPORT +RecTypeClass recTypeClass_add_modules(Res res, NMEM nmem, + const char *module_path); + +YAZ_EXPORT void recTypeClass_destroy(RecTypeClass rtc); YAZ_EXPORT