da9fec1405963b839625080c015427c70e847fc3
[yaz-moved-to-github.git] / include / yaz / record_conv.h
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2010 Index Data.
3  * All rights reserved.
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of Index Data nor the names of its contributors
13  *       may be used to endorse or promote products derived from this
14  *       software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
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 #include <yaz/xmltypes.h>
40 #include <yaz/z-opac.h>
41
42 YAZ_BEGIN_CDECL
43
44 /** record conversion handle  */
45 typedef struct yaz_record_conv_struct *yaz_record_conv_t;
46
47 /** creates record handle
48     \return record handle
49 */
50 YAZ_EXPORT yaz_record_conv_t yaz_record_conv_create(void);
51
52 /** destroys record handle
53     \param p record conversion handle
54 */
55 YAZ_EXPORT void yaz_record_conv_destroy(yaz_record_conv_t p);
56
57 #if YAZ_HAVE_XML2
58 /** configures record conversion
59     \param p record conversion handle
60     \param node xmlNode pointer (root element of XML config)
61     \retval 0 success
62     \retval -1 failure
63
64     On failure, use yaz_record_conv_get_error to get error string.
65     
66     \verbatim
67     <backend syntax='xml'>
68       <xslt stylesheet="dc2marcxml.xsl"/>
69       <marc inputformat="xml" outputformat="marcxml" outputcharset="marc-8"/>
70     </backend>
71     \endverbatim
72
73     \verbatim
74     <backend syntax='usmarc' name='F'>
75       <marc inputformat="marc" outputformat="marcxml" inputcharset="marc-8"/>
76       <xslt stylesheet="marcxml2mods.xsl"/>
77       <xslt stylesheet="mods2dc.xsl"/>
78     </backend>
79     \endverbatim
80 */
81 YAZ_EXPORT
82 int yaz_record_conv_configure(yaz_record_conv_t p, const xmlNode *node);
83 #endif
84
85 /** performs record conversion on record buffer (OCTET aligned)
86     \param p record conversion handle
87     \param input_record_buf input record buffer
88     \param input_record_len length of input record buffer
89     \param output_record resultint record (WRBUF string)
90     \retval 0 success
91     \retval -1 failure
92
93     On failure, use yaz_record_conv_get_error to get error string.
94 */
95 YAZ_EXPORT
96 int yaz_record_conv_record(yaz_record_conv_t p, const char *input_record_buf,
97                            size_t input_record_len,
98                            WRBUF output_record);
99
100
101 /** performs record conversion on OPAC record
102     \param p record conversion handle
103     \param input_record Z39.50 OPAC record
104     \param output_record resultint record (WRBUF string)
105     \retval 0 success
106     \retval -1 failure
107
108     On failure, use yaz_record_conv_get_error to get error string.
109 */
110 YAZ_EXPORT
111 int yaz_record_conv_opac_record(yaz_record_conv_t p,
112                                 Z_OPACRecord *input_record,
113                                 WRBUF output_record);
114
115 /** returns error string (for last error)
116     \param p record conversion handle
117     \return error string
118 */    
119 YAZ_EXPORT
120 const char *yaz_record_conv_get_error(yaz_record_conv_t p);
121
122
123 /** set path for opening stylesheets etc.
124     \param p record conversion handle
125     \param path file path (UNIX style with : / Windows with ;)
126 */    
127 YAZ_EXPORT
128 void yaz_record_conv_set_path(yaz_record_conv_t p, const char *path);
129
130 YAZ_END_CDECL
131
132 #endif
133 /*
134  * Local variables:
135  * c-basic-offset: 4
136  * c-file-style: "Stroustrup"
137  * indent-tabs-mode: nil
138  * End:
139  * vim: shiftwidth=4 tabstop=8 expandtab
140  */
141