acf1c82901cad25d11ee46eba7cc95a6135a6879
[yaz-moved-to-github.git] / include / yaz / record_conv.h
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2012 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 /** record conversion type */
48 struct yaz_record_conv_type {
49     /** \brief internal; no need to set */
50     struct yaz_record_conv_type *next;
51
52     /** \brief construct and configure a type of ours */
53     void * (*construct)(yaz_record_conv_t , const xmlNode *, const char *path,
54                         WRBUF error_msg);
55
56     /** \brief converts a record */
57     int  (*convert)(void *info, WRBUF record, WRBUF error_msg);
58
59     /** \brief destroys our conversion handler */
60     void (*destroy)(void *info);
61 };
62
63 /** creates record handle
64     \return record handle
65 */
66 YAZ_EXPORT yaz_record_conv_t yaz_record_conv_create(void);
67
68 /** destroys record handle
69     \param p record conversion handle
70 */
71 YAZ_EXPORT void yaz_record_conv_destroy(yaz_record_conv_t p);
72
73 #if YAZ_HAVE_XML2
74 /** configures record conversion
75     \param p record conversion handle
76     \param node xmlNode pointer (root element of XML config)
77     \retval 0 success
78     \retval -1 failure
79
80     On failure, use yaz_record_conv_get_error to get error string.
81     
82     \verbatim
83     <backend syntax='xml'>
84       <xslt stylesheet="dc2marcxml.xsl"/>
85       <marc inputformat="xml" outputformat="marcxml" outputcharset="marc-8"/>
86     </backend>
87     \endverbatim
88
89     \verbatim
90     <backend syntax='usmarc' name='F'>
91       <marc inputformat="marc" outputformat="marcxml" inputcharset="marc-8"/>
92       <xslt stylesheet="marcxml2mods.xsl"/>
93       <xslt stylesheet="mods2dc.xsl"/>
94     </backend>
95     \endverbatim
96 */
97 YAZ_EXPORT
98 int yaz_record_conv_configure(yaz_record_conv_t p, const xmlNode *node);
99 #endif
100
101 /** performs record conversion on record buffer (OCTET aligned)
102     \param p record conversion handle
103     \param input_record_buf input record buffer
104     \param input_record_len length of input record buffer
105     \param output_record resultint record (WRBUF string)
106     \retval 0 success
107     \retval -1 failure
108
109     On failure, use yaz_record_conv_get_error to get error string.
110 */
111 YAZ_EXPORT
112 int yaz_record_conv_record(yaz_record_conv_t p, const char *input_record_buf,
113                            size_t input_record_len,
114                            WRBUF output_record);
115
116
117 /** performs record conversion on OPAC record
118     \param p record conversion handle
119     \param input_record Z39.50 OPAC record
120     \param output_record resultint record (WRBUF string)
121     \retval 0 success
122     \retval -1 failure
123
124     On failure, use yaz_record_conv_get_error to get error string.
125 */
126 YAZ_EXPORT
127 int yaz_record_conv_opac_record(yaz_record_conv_t p,
128                                 Z_OPACRecord *input_record,
129                                 WRBUF output_record);
130
131 /** returns error string (for last error)
132     \param p record conversion handle
133     \return error string
134 */    
135 YAZ_EXPORT
136 const char *yaz_record_conv_get_error(yaz_record_conv_t p);
137
138
139 /** set path for opening stylesheets etc.
140     \param p record conversion handle
141     \param path file path (UNIX style with : / Windows with ;)
142 */    
143 YAZ_EXPORT
144 void yaz_record_conv_set_path(yaz_record_conv_t p, const char *path);
145
146 /** adds a type to our conversion handler
147     \param p record conversion handle
148     \param type info
149 */    
150 YAZ_EXPORT
151 void yaz_record_conv_add_type(yaz_record_conv_t p,
152                               struct yaz_record_conv_type *type);
153
154 YAZ_END_CDECL
155
156 #endif
157 /*
158  * Local variables:
159  * c-basic-offset: 4
160  * c-file-style: "Stroustrup"
161  * indent-tabs-mode: nil
162  * End:
163  * vim: shiftwidth=4 tabstop=8 expandtab
164  */
165