Change wording ot YAZ license the 'Revised BSD License'. YAZ has used a
[yaz-moved-to-github.git] / include / yaz / marcdisp.h
1 /*
2  * Copyright (c) 1995-2006, 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 /* $Id: marcdisp.h,v 1.19 2006-10-09 21:02:41 adam Exp $ */
28
29 /**
30  * \file marcdisp.h
31  * \brief MARC conversion
32  */
33
34 #ifndef MARCDISP_H
35 #define MARCDISP_H
36
37 #include <yaz/yconfig.h>
38 #include <stdio.h>
39 #include <yaz/wrbuf.h>
40
41 YAZ_BEGIN_CDECL
42
43 /** \brief a yaz_marc_t handle (private content) */
44 typedef struct yaz_marc_t_ *yaz_marc_t;
45
46 /** \brief construct yaz_marc_t handle */
47 YAZ_EXPORT yaz_marc_t yaz_marc_create(void);
48
49 /** \brief destroy yaz_marc_t handle */
50 YAZ_EXPORT void yaz_marc_destroy(yaz_marc_t mt);
51
52 /** \brief set XML mode YAZ_MARC_LINE, YAZ_MARC_SIMPLEXML, ... */
53 YAZ_EXPORT void yaz_marc_xml(yaz_marc_t mt, int xmlmode);
54
55 /** \brief Output format: Line-format */
56 #define YAZ_MARC_LINE      0
57 /** \brief Output format: simplexml (no longer supported) */
58 #define YAZ_MARC_SIMPLEXML 1
59 /** \brief Output format: OAI-MARC (no longer supported) */
60 #define YAZ_MARC_OAIMARC   2
61 /** \brief Output format: MARCXML */
62 #define YAZ_MARC_MARCXML   3
63 /** \brief Output format: ISO2709 */
64 #define YAZ_MARC_ISO2709   4
65 /** \brief Output format: MarcXchange */
66 #define YAZ_MARC_XCHANGE   5
67
68 /** \brief supply iconv handle for character set conversion .. */
69 YAZ_EXPORT void yaz_marc_iconv(yaz_marc_t mt, yaz_iconv_t cd);
70
71 /** \brief set debug level 
72     \param mt handle
73     \param level level, where 0=lowest, 1 more debug, 2 even more 
74 */
75 YAZ_EXPORT void yaz_marc_debug(yaz_marc_t mt, int level);
76
77 /** \brief decodes ISO2709 buffer using straight buffers
78     \param mt marc handle
79     \param buf input buffer
80     \param bsize size of buffer or (-1 if "any size")
81     \param result result to be stored here (allocate before use!)
82     \param rsize size of result (set before calling)
83
84     Decodes MARC in buf of size bsize.
85     On success, result in *result with size *rsize. 
86     Returns -1 on error, or size of input record (>0) if OK
87 */
88 YAZ_EXPORT int yaz_marc_decode_buf(yaz_marc_t mt, const char *buf, int bsize,
89                                    char **result, int *rsize);
90
91 /** \brief decodes ISO2709/MARC buffer and stores result in WRBUF
92     \param mt handle
93     \param buf input buffer
94     \param bsize size of buffer (-1 if "any size")
95     \param wrbuf WRBUF for output
96
97     Decodes MARC in buf of size bsize.
98     On success, result in wrbuf
99     Returns -1 on error, or size of input record (>0) if OK
100 */
101 YAZ_EXPORT int yaz_marc_decode_wrbuf(yaz_marc_t mt, const char *buf,
102                                      int bsize, WRBUF wrbuf);
103
104 /** \brief depricated */
105 YAZ_EXPORT int marc_display(const char *buf, FILE *outf);
106 /** \brief depricated */
107 YAZ_EXPORT int marc_display_ex(const char *buf, FILE *outf, int debug);
108 /** \brief depricated */
109 YAZ_EXPORT int marc_display_exl(const char *buf, FILE *outf, int debug,
110                                 int length);
111 /** \brief depricated */
112 YAZ_EXPORT int marc_display_wrbuf(const char *buf, WRBUF wr, int debug,
113                                   int bsize);
114 /** \brief depricated */
115 YAZ_EXPORT int yaz_marc_decode(const char *buf, WRBUF wr,
116                                int debug, int bsize, int xml);
117
118 YAZ_EXPORT void yaz_marc_subfield_str(yaz_marc_t mt, const char *s);
119 YAZ_EXPORT void yaz_marc_endline_str(yaz_marc_t mt, const char *s);
120
121 /** \brief modifies part of the MARC leader */
122 YAZ_EXPORT void yaz_marc_modify_leader(yaz_marc_t mt, size_t off,
123                                        const char *str);
124
125 /** \brief like atoi(3) except that it reads exactly len characters */
126 YAZ_EXPORT int atoi_n(const char *buf, int len);
127
128 /** \brief MARC control char: record separator (29 Dec, 1D Hex) */
129 #define ISO2709_RS 035
130 /** \brief MARC control char: field separator (30 Dec, 1E Hex) */
131 #define ISO2709_FS 036
132 /** \brief MARC control char: identifier-field separator (31 Dec, 1F Hex) */
133 #define ISO2709_IDFS 037
134
135 /** \brief read ISO2709/MARC record from buffer
136     \param mt handle
137     \param buf ISO2709 buffer of size bsize
138     \param bsize size of buffer (-1 for unlimited size)
139
140     Parses ISO2709 record from supplied buffer
141     Returns > 0 for OK (same as length), -1=ERROR
142 */
143 YAZ_EXPORT int yaz_marc_read_iso2709(yaz_marc_t mt,
144                                      const char *buf, int bsize);
145
146 /** \brief parses MARCXML/MarcXchange record from xmlNode pointer 
147     \param mt handle
148     \param xmlnode is a pointer to root xmlNode pointer 
149
150     Returns 0=OK, -1=ERROR
151 */
152 YAZ_EXPORT int yaz_marc_read_xml(yaz_marc_t mt, const void *xmlnode);
153
154 /** \brief writes record in line format
155     \param mt handle
156     \param wrbuf WRBUF for output
157
158     Returns 0=OK, -1=ERROR
159 */
160 YAZ_EXPORT int yaz_marc_write_line(yaz_marc_t mt, WRBUF wrbuf);
161
162 /** \brief writes record in MARCXML format
163     \param mt handle
164     \param wrbuf WRBUF for output
165
166     Sets leader[9]='a' . Returns 0=OK, -1=ERROR . 
167 */
168
169 YAZ_EXPORT int yaz_marc_write_marcxml(yaz_marc_t mt, WRBUF wrbuf);
170
171 /** \brief writes record in MarcXchange XML
172     \param mt handle
173     \param wrbuf WRBUF for output
174     \param format record format (e.g. "MARC21")
175     \param type record type (e.g. Bibliographic)
176
177     Returns 0=OK, -1=ERROR
178 */
179 YAZ_EXPORT int yaz_marc_write_marcxchange(yaz_marc_t mt, WRBUF wrbuf,
180                                           const char *format,
181                                           const char *type);
182
183 /** \brief writes record in ISO2709 format
184     \param mt handle
185     \param wrbuf WRBUF for output
186     Returns 0=OK, -1=ERROR
187 */
188 YAZ_EXPORT int yaz_marc_write_iso2709(yaz_marc_t mt, WRBUF wrbuf);
189
190 /** \brief writes record in mode - given by yaz_marc_xml mode
191     \param mt handle
192     \param wrbuf WRBUF for output
193     This function calls yaz_marc_write_iso2709, yaz_marc_write_marcxml,
194     etc.. depending on mode given by yaz_marc_xml. 
195     Returns 0=OK, -1=ERROR 
196 */  
197 YAZ_EXPORT int yaz_marc_write_mode(yaz_marc_t mt, WRBUF wrbuf);
198
199 /** \brief sets leader spec (for modifying bytes in 24 byte leader)
200     \param mt handle
201     \param leader_spec
202     \retval 0 OK
203     \retval -1 ERROR
204     
205     Spec takes form pos=val,pos=val,...
206     where value is either a number (decimal char value) or a
207     string in 'a', e.g. 9='a'
208     
209 */  
210 YAZ_EXPORT int yaz_marc_leader_spec(yaz_marc_t mt, const char *leader_spec);
211 YAZ_END_CDECL
212
213 #endif
214 /*
215  * Local variables:
216  * c-basic-offset: 4
217  * indent-tabs-mode: nil
218  * End:
219  * vim: shiftwidth=4 tabstop=8 expandtab
220  */
221