X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=include%2Fidzebra%2Frecctrl.h;h=4d18730e710b91444d6c54222205643ff4a72b3b;hp=88a91db726dcd2e901e3d20874c47cb480e7c346;hb=4478d785b7769691261005c98063b98a5a5971b3;hpb=ddd6e6bffac75d2671330b14b262a6594212dcce diff --git a/include/idzebra/recctrl.h b/include/idzebra/recctrl.h index 88a91db..4d18730 100644 --- a/include/idzebra/recctrl.h +++ b/include/idzebra/recctrl.h @@ -1,4 +1,4 @@ -/* $Id: recctrl.h,v 1.16 2006-05-02 08:27:43 marc Exp $ +/* $Id: recctrl.h,v 1.26 2006-08-14 10:40:14 adam Exp $ Copyright (C) 1995-2006 Index Data ApS @@ -15,9 +15,9 @@ 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 IDZEBRA_RECCTRL_H @@ -34,20 +34,23 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA YAZ_BEGIN_CDECL -#if NATTR +/* 1 */ #define ZEBRA_XPATH_ELM_BEGIN "_XPATH_BEGIN" + +/* 2 */ #define ZEBRA_XPATH_ELM_END "_XPATH_END" + +/* 1016 */ #define ZEBRA_XPATH_CDATA "_XPATH_CDATA" -#define ZEBRA_XPATH_ATTR "_XPATH_ATTR" -#endif + +/* 3 */ +#define ZEBRA_XPATH_ATTR_NAME "_XPATH_ATTR_NAME" + +/* 1015 */ +#define ZEBRA_XPATH_ATTR_CDATA "_XPATH_ATTR_CDATA" /* single word entity */ typedef struct { -#if NATTR -#else - int attrSet; - int attrUse; -#endif unsigned index_type; const char *index_name; const char *term_buf; @@ -76,7 +79,7 @@ struct recExtractCtrl { int flagShowRecords; int seqno[256]; char match_criteria[256]; - int staticrank; + zint staticrank; void (*schemaAdd)(struct recExtractCtrl *p, Odr_oid *oid); data1_handle dh; void *handle; @@ -96,7 +99,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 */ + 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; @@ -138,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 @@ -158,6 +169,16 @@ RecType recType_byName(RecTypes rts, Res res, const char *name, void **clientDataP); +#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 + */ +