X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Fwrbuf.h;h=12965380d2c23893687cc2d390d2a71a6a99eca8;hp=f92c395414408bdf074c783cf7970da77baa6363;hb=89a547847448c1288ce39a0d5af1a1f18378e979;hpb=6ad80c673e9591ae178154cfe2ce002834cfdafd diff --git a/include/yaz/wrbuf.h b/include/yaz/wrbuf.h index f92c395..1296538 100644 --- a/include/yaz/wrbuf.h +++ b/include/yaz/wrbuf.h @@ -1,30 +1,33 @@ -/* - * Copyright (c) 1995-2003, Index Data. - * - * Permission to use, copy, modify, distribute, and sell this software and - * its documentation, in whole or in part, for any purpose, is hereby granted, - * provided that: - * - * 1. This copyright and permission notice appear in all copies of the - * software and its documentation. Notices of copyright or attribution - * which appear at the beginning of any file must remain unchanged. +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2011 Index Data. + * All rights reserved. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: * - * 2. The names of Index Data or the individual authors may not be used to - * endorse or promote products derived from this software without specific - * prior written permission. - * - * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND, - * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY - * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - * IN NO EVENT SHALL INDEX DATA BE LIABLE FOR ANY SPECIAL, INCIDENTAL, - * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR - * NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF - * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE - * OF THIS SOFTWARE. - * - * $Id: wrbuf.h,v 1.10 2003-12-11 00:37:21 adam Exp $ + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Index Data nor the names of its contributors + * may be used to endorse or promote products derived from this + * software without specific prior written permission. * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/** + * \file wrbuf.h + * \brief Header for WRBUF (growing buffer) */ #ifndef WRBUF_H @@ -35,31 +38,201 @@ YAZ_BEGIN_CDECL +/** \brief string buffer */ typedef struct wrbuf { char *buf; - int pos; - int size; + size_t pos; + size_t size; } wrbuf, *WRBUF; +/** \brief construct WRBUF + \returns WRBUF + */ YAZ_EXPORT WRBUF wrbuf_alloc(void); -YAZ_EXPORT void wrbuf_free(WRBUF b, int free_buf); + +/** \brief destroy WRBUF and its buffer + \param b WRBUF + + For YAZ 4.0.2 WRBUF b may be NULL. + */ +YAZ_EXPORT void wrbuf_destroy(WRBUF b); + +/** \brief empty WRBUF content (length of buffer set to 0) + \param b WRBUF + */ YAZ_EXPORT void wrbuf_rewind(WRBUF b); -YAZ_EXPORT int wrbuf_grow(WRBUF b, int minsize); -YAZ_EXPORT int wrbuf_write(WRBUF b, const char *buf, int size); -YAZ_EXPORT int wrbuf_puts(WRBUF b, const char *buf); -YAZ_EXPORT int wrbuf_xmlputs(WRBUF b, const char *cp); -YAZ_EXPORT void wrbuf_printf(WRBUF b, const char *fmt, ...); -YAZ_EXPORT int wrbuf_iconv_write(WRBUF b, yaz_iconv_t cd, const char *buf, - int size); + +/** \brief append constant size buffer to WRBU + \param b WRBUF + \param buf buffer + \param size size of buffer + */ +YAZ_EXPORT void wrbuf_write(WRBUF b, const char *buf, size_t size); + +/** \brief appends C-string to WRBUF + \param b WRBUF + \param buf C-string (0-terminated) + */ +YAZ_EXPORT void wrbuf_puts(WRBUF b, const char *buf); + +/** \brief appends C-string to WRBUF - void pointer variant + \param buf C-string + \param client_data assumed WRBUF +*/ +YAZ_EXPORT void wrbuf_vp_puts(const char *buf, void *client_data); + +/** \brief writes buffer of certain size to WRBUF and XML encode (as CDATA) + \param b WRBUF + \param cp CDATA + \param size size of CDATA + */ +YAZ_EXPORT void wrbuf_xmlputs_n(WRBUF b, const char *cp, size_t size); + +/** \brief writes C-String to WRBUF and XML encode (as CDATA) + \param b WRBUF + \param cp CDATA buffer (0-terminated) + */ +YAZ_EXPORT void wrbuf_xmlputs(WRBUF b, const char *cp); + +/** \brief puts buf to WRBUF and replaces a single char + \param b WRBUF + \param buf buffer to append (C-string) + \param from character "from" + \param to charcter "to" +*/ +YAZ_EXPORT void wrbuf_puts_replace_char(WRBUF b, const char *buf, + const char from, const char to); + +/** \brief writes C-string to WRBUF and escape non-ASCII characters + \param b WRBUF + \param str C-string + + Non-ASCII characters will be presented as \\xDD . + */ +YAZ_EXPORT void wrbuf_puts_escaped(WRBUF b, const char *str); + +/** \brief writes buffer to WRBUF and escape non-ASCII characters + \param b WRBUF + \param buf buffer + \param len size of buffer + + Non-ASCII characters will be presented as \\xDD . + */ +YAZ_EXPORT void wrbuf_write_escaped(WRBUF b, const char *buf, size_t len); + +/** \brief writes printf result to WRBUF + \param b WRBUF + \param fmt printf-like format + */ +YAZ_EXPORT void wrbuf_printf(WRBUF b, const char *fmt, ...) +#ifdef __GNUC__ + __attribute__ ((format (printf, 2, 3))) +#endif + ; + +/** \brief general writer of string using iconv and cdata + \param b WRBUF + \param cd iconv handle (0 for no conversion) + \param buf buffer + \param size size of buffer + \param cdata non-zero for CDATA; 0 for cdata + \returns -1 if invalid sequence was encountered (truncation in effect) + \returns 0 if buffer could be converted and written +*/ +int wrbuf_iconv_write_x(WRBUF b, yaz_iconv_t cd, const char *buf, + size_t size, int cdata); + +/** \brief iconv converts buffer and appends to WRBUF + \param b WRBUF + \param cd iconv handle + \param buf buffer + \param size size of buffer +*/ +YAZ_EXPORT void wrbuf_iconv_write(WRBUF b, yaz_iconv_t cd, const char *buf, + size_t size); + +/** \brief iconv converts buffer and appends to WRBUF as XML CDATA + \param b WRBUF + \param cd iconv handle + \param buf buffer + \param size size of buffer +*/ +YAZ_EXPORT void wrbuf_iconv_write_cdata(WRBUF b, yaz_iconv_t cd, + const char *buf, size_t size); + +/** \brief iconv converts C-string and appends to WRBUF + \param b WRBUF + \param cd iconv handle + \param str C-string +*/ +YAZ_EXPORT void wrbuf_iconv_puts(WRBUF b, yaz_iconv_t cd, const char *str); + +/** \brief iconv converts C-string and appends to WRBUF as XML CDATA + \param b WRBUF + \param cd iconv handle + \param str C-string +*/ +YAZ_EXPORT void wrbuf_iconv_puts_cdata(WRBUF b, yaz_iconv_t cd, + const char *str); + +/** \brief iconv converts character and appends to WRBUF + \param b WRBUF + \param cd iconv handle + \param ch character +*/ +YAZ_EXPORT void wrbuf_iconv_putchar(WRBUF b, yaz_iconv_t cd, int ch); + +/** \brief iconv reset(flush) to WRBUF + \param b + \param cd iconv handle + + This function calls iconv(cd, 0, 0, ..) to make it + flush any remaining content. +*/ +YAZ_EXPORT void wrbuf_iconv_reset(WRBUF b, yaz_iconv_t cd); + +/** \brief chips traling blanks away from WRBUF + \param b WRBUF +*/ +YAZ_EXPORT void wrbuf_chop_right(WRBUF b); + +/** \brief cut size of WRBUF + \param b WRBUF + \param no_to_remove number of bytes to remove + */ +YAZ_EXPORT void wrbuf_cut_right(WRBUF b, size_t no_to_remove); + +/** \brief grow WRBUF larger + \param b WRBUF + \param minsize make WRBUF at least this size + + This function is normally not used by applications +*/ +YAZ_EXPORT int wrbuf_grow(WRBUF b, size_t minsize); #define wrbuf_len(b) ((b)->pos) #define wrbuf_buf(b) ((b)->buf) +/** \brief returns WRBUF content as C-string + \param b WRBUF + \returns C-string +*/ +YAZ_EXPORT const char *wrbuf_cstr(WRBUF b); + #define wrbuf_putc(b, c) \ - (((b)->pos >= (b)->size ? wrbuf_grow(b, 1) : 0), \ + ((void) ((b)->pos >= (b)->size ? wrbuf_grow(b, 1) : 0), \ (b)->buf[(b)->pos++] = (c), 0) YAZ_END_CDECL #endif +/* + * Local variables: + * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +