X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=include%2Fidzebra%2Frecctrl.h;h=e8f88c3b6d3857669e8f3e57c6de03ad7a5ed6bc;hp=097af097798594a96ce5138a558cbef3b258dee7;hb=a030c87bc444608639905eca95e29f84a4f1d991;hpb=1872e3fc60b482771bbd1cb4b0290b8d6a9ef5d0 diff --git a/include/idzebra/recctrl.h b/include/idzebra/recctrl.h index 097af09..e8f88c3 100644 --- a/include/idzebra/recctrl.h +++ b/include/idzebra/recctrl.h @@ -1,8 +1,5 @@ -/* $Id: recctrl.h,v 1.34 2007-04-16 08:44:31 adam Exp $ - Copyright (C) 1995-2007 - Index Data ApS - -This file is part of the Zebra server. +/* This file is part of the Zebra server. + Copyright (C) 1994-2011 Index Data Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -49,8 +46,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 +81,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 +104,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); @@ -115,7 +118,7 @@ struct recRetrieveCtrl { /* Input parameters ... */ Res res; /* Resource pool */ ODR odr; /* ODR used to create response */ - const int*input_format; /* Preferred record syntax OID */ + const Odr_oid * input_format; /* Preferred record syntax OID */ Z_RecordComposition *comp; /* formatting instructions */ char *encoding; /* preferred character encoding */ zint localno; /* local id of record */ @@ -124,15 +127,20 @@ 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 int *output_format; /* output format OID */ + const Odr_oid * output_format; /* output format OID */ void * rec_buf; int rec_len; int diagnostic; char * addinfo; + + /* special fetch to be included in retrieved response (say snippets) */ + void *handle; + int (*special_fetch)(void *handle, const char *esn, + const Odr_oid *input_format, + const Odr_oid **output_format, + WRBUF result, WRBUF addinfo); }; typedef struct recType *RecType; @@ -196,6 +204,7 @@ YAZ_END_CDECL /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab