1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2011 Index Data.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
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.
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.
30 * \brief Header for WRBUF (growing buffer)
36 #include <yaz/xmalloc.h>
37 #include <yaz/yaz-iconv.h>
41 /** \brief string buffer */
49 /** \brief construct WRBUF
52 YAZ_EXPORT WRBUF wrbuf_alloc(void);
54 /** \brief destroy WRBUF and its buffer
57 For YAZ 4.0.2 WRBUF b may be NULL.
59 YAZ_EXPORT void wrbuf_destroy(WRBUF b);
61 /** \brief empty WRBUF content (length of buffer set to 0)
64 YAZ_EXPORT void wrbuf_rewind(WRBUF b);
66 /** \brief append constant size buffer to WRBU
69 \param size size of buffer
71 YAZ_EXPORT void wrbuf_write(WRBUF b, const char *buf, size_t size);
73 /** \brief appends C-string to WRBUF
75 \param buf C-string (0-terminated)
77 YAZ_EXPORT void wrbuf_puts(WRBUF b, const char *buf);
79 /** \brief writes buffer of certain size to WRBUF and XML encode (as CDATA)
82 \param size size of CDATA
84 YAZ_EXPORT void wrbuf_xmlputs_n(WRBUF b, const char *cp, size_t size);
86 /** \brief writes C-String to WRBUF and XML encode (as CDATA)
88 \param cp CDATA buffer (0-terminated)
90 YAZ_EXPORT void wrbuf_xmlputs(WRBUF b, const char *cp);
92 /** \brief puts buf to WRBUF and replaces a single char
94 \param buf buffer to append (C-string)
95 \param from character "from"
96 \param to charcter "to"
98 YAZ_EXPORT void wrbuf_puts_replace_char(WRBUF b, const char *buf,
99 const char from, const char to);
101 /** \brief writes C-string to WRBUF and escape non-ASCII characters
105 Non-ASCII characters will be presented as \\xDD .
107 YAZ_EXPORT void wrbuf_puts_escaped(WRBUF b, const char *str);
109 /** \brief writes buffer to WRBUF and escape non-ASCII characters
112 \param len size of buffer
114 Non-ASCII characters will be presented as \\xDD .
116 YAZ_EXPORT void wrbuf_write_escaped(WRBUF b, const char *buf, size_t len);
118 /** \brief writes printf result to WRBUF
120 \param fmt printf-like format
122 YAZ_EXPORT void wrbuf_printf(WRBUF b, const char *fmt, ...)
124 __attribute__ ((format (printf, 2, 3)))
127 /** \brief iconv converts buffer and appends to WRBUF
129 \param cd iconv handle
131 \param size size of buffer
133 YAZ_EXPORT void wrbuf_iconv_write(WRBUF b, yaz_iconv_t cd, const char *buf,
136 /** \brief iconv converts buffer and appends to WRBUF as XML CDATA
138 \param cd iconv handle
140 \param size size of buffer
142 YAZ_EXPORT void wrbuf_iconv_write_cdata(WRBUF b, yaz_iconv_t cd,
143 const char *buf, size_t size);
145 /** \brief iconv converts C-string and appends to WRBUF
147 \param cd iconv handle
150 YAZ_EXPORT void wrbuf_iconv_puts(WRBUF b, yaz_iconv_t cd, const char *str);
152 /** \brief iconv converts C-string and appends to WRBUF as XML CDATA
154 \param cd iconv handle
157 YAZ_EXPORT void wrbuf_iconv_puts_cdata(WRBUF b, yaz_iconv_t cd,
160 /** \brief iconv converts character and appends to WRBUF
162 \param cd iconv handle
165 YAZ_EXPORT void wrbuf_iconv_putchar(WRBUF b, yaz_iconv_t cd, int ch);
167 /** \brief iconv reset(flush) to WRBUF
169 \param cd iconv handle
171 This function calls iconv(cd, 0, 0, ..) to make it
172 flush any remaining content.
174 YAZ_EXPORT void wrbuf_iconv_reset(WRBUF b, yaz_iconv_t cd);
176 /** \brief chips traling blanks away from WRBUF
179 YAZ_EXPORT void wrbuf_chop_right(WRBUF b);
181 /** \brief cut size of WRBUF
183 \param no_to_remove number of bytes to remove
185 YAZ_EXPORT void wrbuf_cut_right(WRBUF b, size_t no_to_remove);
187 /** \brief grow WRBUF larger
189 \param minsize make WRBUF at least this size
191 This function is normally not used by applications
193 YAZ_EXPORT int wrbuf_grow(WRBUF b, size_t minsize);
195 #define wrbuf_len(b) ((b)->pos)
196 #define wrbuf_buf(b) ((b)->buf)
198 /** \brief returns WRBUF content as C-string
202 YAZ_EXPORT const char *wrbuf_cstr(WRBUF b);
204 #define wrbuf_putc(b, c) \
205 (((b)->pos >= (b)->size ? wrbuf_grow(b, 1) : 0), \
206 (b)->buf[(b)->pos++] = (c), 0)
214 * c-file-style: "Stroustrup"
215 * indent-tabs-mode: nil
217 * vim: shiftwidth=4 tabstop=8 expandtab