Added retrieval handling support in Generic Frontend Server to support
[yaz-moved-to-github.git] / include / yaz / record_conv.h
1 /*
2  * Copyright (C) 2005-2006, Index Data ApS
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and
5  * its documentation, in whole or in part, for any purpose, is hereby granted,
6  * provided that:
7  *
8  * 1. This copyright and permission notice appear in all copies of the
9  * software and its documentation. Notices of copyright or attribution
10  * which appear at the beginning of any file must remain unchanged.
11  *
12  * 2. The name of Index Data or the individual authors may not be used to
13  * endorse or promote products derived from this software without specific
14  * prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
18  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
19  * IN NO EVENT SHALL INDEX DATA BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
20  * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES
21  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR
22  * NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
23  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24  * OF THIS SOFTWARE.
25  *
26  * $Id: record_conv.h,v 1.4 2006-05-07 14:48:24 adam Exp $
27  */
28 /**
29  * \file record_conv.h
30  * \brief Record Conversions Utility
31  */
32
33 #ifndef YAZ_RECORD_CONV_H
34 #define YAZ_RECORD_CONV_H
35
36 #include <stddef.h>
37 #include <yaz/wrbuf.h>
38 #include <yaz/yconfig.h>
39
40 YAZ_BEGIN_CDECL
41
42 /** record conversion handle  */
43 typedef struct yaz_record_conv_struct *yaz_record_conv_t;
44
45 /** creates record handle
46     \return record handle
47 */
48 YAZ_EXPORT yaz_record_conv_t yaz_record_conv_create(void);
49
50 /** destroys record handle
51     \param p record conversion handle
52 */
53 YAZ_EXPORT void yaz_record_conv_destroy(yaz_record_conv_t p);
54
55 /** configures record conversion
56     \param p record conversion handle
57     \param node xmlNode pointer (root element of XML config)
58     \retval 0 success
59     \retval -1 failure
60
61     On failure, use yaz_record_conv_get_error to get error string.
62     
63     \verbatim
64     <convert>
65       <xslt stylesheet="dc2marcxml.xsl"/>
66       <marc inputformat="xml" outputformat="marcxml" outputcharset="marc-8"/>
67     </convert>
68     \endverbatim
69
70     \verbatim
71     <convert>
72       <marc inputformat="marc" outputformat="marcxml" inputcharset="marc-8"/>
73       <xslt stylesheet="marcxml2mods.xsl"/>
74       <xslt stylesheet="mods2dc.xsl"/>
75     </convert>
76     \endverbatim
77
78
79 */
80 YAZ_EXPORT
81 int yaz_record_conv_configure(yaz_record_conv_t p, const void *node);
82
83 /** performs record conversion
84     \param p record conversion handle
85     \param input_record_buf input record buffer
86     \param input_record_len length of input record buffer
87     \param output_record resultint record (WRBUF string)
88     \retval 0 success
89     \retval -1 failure
90
91     On failure, use yaz_record_conv_get_error to get error string.
92 */
93 YAZ_EXPORT
94 int yaz_record_conv_record(yaz_record_conv_t p, const char *input_record_buf,
95                            size_t input_record_len,
96                            WRBUF output_record);
97
98 /** returns error string (for last error)
99     \param p record conversion handle
100     \return error string
101 */    
102 YAZ_EXPORT
103 const char *yaz_record_conv_get_error(yaz_record_conv_t p);
104
105
106 /** set path for opening stylesheets etc.
107     \param p record conversion handle
108     \param path file path (UNIX style with : / Windows with ;)
109 */    
110 YAZ_EXPORT
111 void yaz_record_conv_set_path(yaz_record_conv_t p, const char *path);
112
113 YAZ_END_CDECL
114
115 #endif
116 /*
117  * Local variables:
118  * c-basic-offset: 4
119  * indent-tabs-mode: nil
120  * End:
121  * vim: shiftwidth=4 tabstop=8 expandtab
122  */
123