X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=include%2Fidzebra%2Frecctrl.h;h=86f882b0952fe2497cbae08865ee2ce48415e1d8;hp=92f46e45382000b62457a8b3e4062bcfbed17fca;hb=4097bac1dce126e79ce1550fad8b2034a311ff80;hpb=4b903c542156253ebb2a4f004b528fe9e3af5212 diff --git a/include/idzebra/recctrl.h b/include/idzebra/recctrl.h index 92f46e4..86f882b 100644 --- a/include/idzebra/recctrl.h +++ b/include/idzebra/recctrl.h @@ -1,4 +1,4 @@ -/* $Id: recctrl.h,v 1.36 2007-10-29 13:43:57 adam Exp $ +/* $Id: recctrl.h,v 1.40 2007-12-20 11:15:41 adam Exp $ Copyright (C) 1995-2007 Index Data ApS @@ -49,8 +49,8 @@ YAZ_BEGIN_CDECL /** Indexing token */ typedef struct { - /** index type ('w', 'p', .. */ - unsigned index_type; + /** index type, e.g. "w", "p", .. */ + const char *index_type; /** index name, e.g. "title" */ const char *index_name; /** token char data */ @@ -84,11 +84,18 @@ struct ZebraRecStream { void (*destroy)(struct ZebraRecStream *s); }; +/** record update action */ enum zebra_recctrl_action_t { + /** insert record (fail if it exists already) */ action_insert = 1, + /** replace record (fail it it does not exist) */ action_replace, + /** delete record (fail if it does not exist) */ action_delete, - action_update /* insert or replace as needed */ + /** insert or replace */ + action_update, + /** delete record (ignore if it does not exist) */ + action_a_delete }; /** \brief record extract for indexing */ @@ -100,7 +107,6 @@ struct recExtractCtrl { void (*setStoreData)(struct recExtractCtrl *p, void *buf, size_t size); int first_record; int flagShowRecords; - int seqno[256]; char match_criteria[256]; zint staticrank; void (*schemaAdd)(struct recExtractCtrl *p, Odr_oid *oid); @@ -124,8 +130,6 @@ 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 */ const Odr_oid * output_format; /* output format OID */