X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Frecord_conv.h;h=d6af1581e644fac69d95d81460dd5456dcfe813f;hp=aab75a188c29b2cf3a33be3f14608f53c2d294c2;hb=a3e65bcd3250b107397675bc65b35b5939355025;hpb=d71e0f5445235ed25ab633d73a26bb4f01a0885f diff --git a/include/yaz/record_conv.h b/include/yaz/record_conv.h index aab75a1..d6af158 100644 --- a/include/yaz/record_conv.h +++ b/include/yaz/record_conv.h @@ -55,6 +55,22 @@ YAZ_EXPORT yaz_record_conv_t yaz_record_conv_create(void); YAZ_EXPORT void yaz_record_conv_destroy(yaz_record_conv_t p); #if YAZ_HAVE_XML2 +/** record conversion type */ +struct yaz_record_conv_type { + /** \brief pointer to next type ; NULL for last */ + struct yaz_record_conv_type *next; + + /** \brief construct and configure a type of ours */ + void * (*construct)(yaz_record_conv_t , const xmlNode *, const char *path, + WRBUF error_msg); + + /** \brief converts a record */ + int (*convert)(void *info, WRBUF record, WRBUF error_msg); + + /** \brief destroys our conversion handler */ + void (*destroy)(void *info); +}; + /** configures record conversion \param p record conversion handle \param node xmlNode pointer (root element of XML config) @@ -80,6 +96,19 @@ YAZ_EXPORT void yaz_record_conv_destroy(yaz_record_conv_t p); */ YAZ_EXPORT int yaz_record_conv_configure(yaz_record_conv_t p, const xmlNode *node); + +/** configures record conversion with user-defined conversion types + \param p record conversion handle + \param node xmlNode pointer (root element of XML config) + \param types conversion types + \retval 0 success + \retval -1 failure + +*/ +YAZ_EXPORT +int yaz_record_conv_configure_t(yaz_record_conv_t p, const xmlNode *node, + struct yaz_record_conv_type *types); + #endif /** performs record conversion on record buffer (OCTET aligned) @@ -132,28 +161,6 @@ void yaz_record_conv_set_path(yaz_record_conv_t p, const char *path); \param type info */ -#if YAZ_HAVE_XML2 -/** record conversion type */ -struct yaz_record_conv_type { - /** \brief internal; no need to set */ - struct yaz_record_conv_type *next; - - /** \brief construct and configure a type of ours */ - void * (*construct)(yaz_record_conv_t , const xmlNode *, const char *path, - WRBUF error_msg); - - /** \brief converts a record */ - int (*convert)(void *info, WRBUF record, WRBUF error_msg); - - /** \brief destroys our conversion handler */ - void (*destroy)(void *info); -}; - -YAZ_EXPORT -void yaz_record_conv_add_type(yaz_record_conv_t p, - struct yaz_record_conv_type *type); - -#endif YAZ_END_CDECL #endif