libvirt/src/buf.c

414 lines
9.1 KiB
C
Raw Normal View History

2007-03-15 17:30:04 +00:00
/*
2007-06-26 22:21:22 +00:00
* buf.c: buffers for libvirt
2007-03-15 17:30:04 +00:00
*
2007-06-26 22:21:22 +00:00
* Copyright (C) 2005-2007 Red Hat, Inc.
2007-03-15 17:30:04 +00:00
*
* See COPYING.LIB for the License of this software
*
* Daniel Veillard <veillard@redhat.com>
*/
#include <config.h>
2007-03-15 17:30:04 +00:00
#include "libvirt/libvirt.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <ctype.h>
#define __VIR_BUFFER_C__
2007-03-15 17:30:04 +00:00
#include "buf.h"
/* If adding more fields, ensure to edit buf.h to match
the number of fields */
struct _virBuffer {
unsigned int size;
unsigned int use;
unsigned int error;
char *content;
};
/**
* virBufferFail
* @buf: the buffer
*
* Mark the buffer has having failed a memory allocation,
* freeing the content and setting the error flag.
*/
static void
virBufferNoMemory(const virBufferPtr buf)
{
free(buf->content);
buf->content = NULL;
buf->size = 0;
buf->use = 0;
buf->error = 1;
}
2007-03-15 17:30:04 +00:00
/**
2007-06-26 22:21:22 +00:00
* virBufferGrow:
2007-03-15 17:30:04 +00:00
* @buf: the buffer
* @len: the minimum free size to allocate on top of existing used space
2007-03-15 17:30:04 +00:00
*
* Grow the available space of a buffer to at least @len bytes.
2007-03-15 17:30:04 +00:00
*
* Returns zero on success or -1 on error
2007-03-15 17:30:04 +00:00
*/
static int
2007-06-26 22:21:22 +00:00
virBufferGrow(virBufferPtr buf, unsigned int len)
2007-03-15 17:30:04 +00:00
{
int size;
char *newbuf;
if (buf->error)
return -1;
if ((len + buf->use) < buf->size)
return 0;
2007-03-15 17:30:04 +00:00
size = buf->use + len + 1000;
newbuf = realloc(buf->content, size);
if (newbuf == NULL) {
virBufferNoMemory(buf);
return -1;
}
2007-03-15 17:30:04 +00:00
buf->content = newbuf;
buf->size = size;
return 0;
2007-03-15 17:30:04 +00:00
}
/**
2007-06-26 22:21:22 +00:00
* virBufferAdd:
* @buf: the buffer to add to
2007-03-15 17:30:04 +00:00
* @str: the string
* @len: the number of bytes to add
*
* Add a string range to an XML buffer. if len == -1, the length of
* str is recomputed to the full string.
*
*/
void
__virBufferAdd(const virBufferPtr buf, const char *str, int len)
2007-03-15 17:30:04 +00:00
{
unsigned int needSize;
if ((str == NULL) || (buf == NULL) || (len == 0))
return;
if (buf->error)
return;
2007-03-15 17:30:04 +00:00
if (len < 0)
len = strlen(str);
needSize = buf->use + len + 2;
if (needSize > buf->size &&
virBufferGrow(buf, needSize - buf->use) < 0)
return;
memcpy (&buf->content[buf->use], str, len);
2007-03-15 17:30:04 +00:00
buf->use += len;
buf->content[buf->use] = '\0';
2007-03-15 17:30:04 +00:00
}
/**
* virBufferAddChar:
* @buf: the buffer to add to
* @c: the character to add
*
* Add a single character 'c' to a buffer.
*
*/
void
__virBufferAddChar (virBufferPtr buf, char c)
{
unsigned int needSize;
if (buf == NULL)
return;
if (buf->error)
return;
needSize = buf->use + 2;
if (needSize > buf->size &&
virBufferGrow (buf, needSize - buf->use) < 0)
return;
buf->content[buf->use++] = c;
buf->content[buf->use] = '\0';
}
/**
* virBufferContentAndReset:
* @buf: Buffer
*
* Get the content from the buffer and free (only) the buffer structure.
* The caller owns the returned string & should free it when no longer
* required. The buffer object is reset to its initial state.
*
* Returns the buffer content or NULL in case of error.
*/
char *
__virBufferContentAndReset(const virBufferPtr buf)
2007-03-15 17:30:04 +00:00
{
char *str;
if (buf == NULL)
return NULL;
2007-03-15 17:30:04 +00:00
if (buf->error) {
memset(buf, 0, sizeof(*buf));
2007-03-15 17:30:04 +00:00
return NULL;
}
str = buf->content;
memset(buf, 0, sizeof(*buf));
return str;
2007-03-15 17:30:04 +00:00
}
/**
* virBufferError:
* @buf: the buffer
*
* Check to see if the buffer is in an error state due
* to failed memory allocation
*
* Return true if in error, 0 if normal
*/
int
__virBufferError(const virBufferPtr buf)
2007-03-15 17:30:04 +00:00
{
if (buf == NULL)
return 1;
return buf->error;
2007-03-15 17:30:04 +00:00
}
/**
* virBufferUse:
* @buf: the usage of the string in the buffer
2007-03-15 17:30:04 +00:00
*
* Return the string usage in bytes
2007-03-15 17:30:04 +00:00
*/
unsigned int
virBufferUse(const virBufferPtr buf)
2007-03-15 17:30:04 +00:00
{
if (buf == NULL)
return 0;
2007-03-15 17:30:04 +00:00
return buf->use;
2007-03-15 17:30:04 +00:00
}
/**
2007-06-26 22:21:22 +00:00
* virBufferVSprintf:
2007-03-15 17:30:04 +00:00
* @buf: the buffer to dump
* @format: the format
* @...: the variable list of arguments
2007-03-15 17:30:04 +00:00
*
* Do a formatted print to an XML buffer.
*/
void
__virBufferVSprintf(const virBufferPtr buf, const char *format, ...)
2007-03-15 17:30:04 +00:00
{
int size, count, grow_size;
2007-03-15 17:30:04 +00:00
va_list locarg, argptr;
if ((format == NULL) || (buf == NULL))
return;
if (buf->error)
return;
if (buf->size == 0 &&
virBufferGrow(buf, 100) < 0)
return;
2007-03-15 17:30:04 +00:00
size = buf->size - buf->use - 1;
va_start(argptr, format);
va_copy(locarg, argptr);
while (((count = vsnprintf(&buf->content[buf->use], size, format,
locarg)) < 0) || (count >= size - 1)) {
buf->content[buf->use] = 0;
va_end(locarg);
grow_size = (count > 1000) ? count : 1000;
if (virBufferGrow(buf, grow_size) < 0)
return;
2007-03-15 17:30:04 +00:00
size = buf->size - buf->use - 1;
va_copy(locarg, argptr);
}
va_end(locarg);
buf->use += count;
buf->content[buf->use] = '\0';
2007-03-15 17:30:04 +00:00
}
/**
* virBufferEscapeString:
* @buf: the buffer to dump
* @format: a printf like format string but with only one %s parameter
* @str: the string argument which need to be escaped
*
* Do a formatted print with a single string to an XML buffer. The string
* is escaped to avoid generating a not well-formed XML instance.
*/
void
virBufferEscapeString(const virBufferPtr buf, const char *format, const char *str)
{
int size, count, len, grow_size;
char *escaped, *out;
const char *cur;
if ((format == NULL) || (buf == NULL) || (str == NULL))
return;
if (buf->error)
return;
len = strlen(str);
escaped = malloc(5 * len + 1);
if (escaped == NULL) {
virBufferNoMemory(buf);
return;
}
cur = str;
out = escaped;
while (*cur != 0) {
if (*cur == '<') {
*out++ = '&';
*out++ = 'l';
*out++ = 't';
*out++ = ';';
} else if (*cur == '>') {
*out++ = '&';
*out++ = 'g';
*out++ = 't';
*out++ = ';';
} else if (*cur == '&') {
*out++ = '&';
*out++ = 'a';
*out++ = 'm';
*out++ = 'p';
*out++ = ';';
} else if ((*cur >= 0x20) || (*cur == '\n') || (*cur == '\t') ||
(*cur == '\r')) {
/*
* default case, just copy !
* Note that character over 0x80 are likely to give problem
* with UTF-8 XML, but since our string don't have an encoding
* it's hard to handle properly we have to assume it's UTF-8 too
*/
*out++ = *cur;
}
cur++;
}
*out = 0;
size = buf->size - buf->use - 1;
while (((count = snprintf(&buf->content[buf->use], size, format,
(char *)escaped)) < 0) || (count >= size - 1)) {
buf->content[buf->use] = 0;
grow_size = (count > 1000) ? count : 1000;
if (virBufferGrow(buf, grow_size) < 0) {
free(escaped);
return;
}
size = buf->size - buf->use - 1;
}
buf->use += count;
buf->content[buf->use] = '\0';
free(escaped);
}
/**
* virBufferURIEncodeString:
* @buf: the buffer to append to
* @str: the string argument which will be URI-encoded
*
* Append the string to the buffer. The string will be URI-encoded
* during the append (ie any non alpha-numeric characters are replaced
* with '%xx' hex sequences).
*/
void
virBufferURIEncodeString (virBufferPtr buf, const char *str)
{
int grow_size = 0;
const char *p;
unsigned char uc;
const char *hex = "0123456789abcdef";
if ((buf == NULL) || (str == NULL))
return;
if (buf->error)
return;
for (p = str; *p; ++p) {
/* This may not work on EBCDIC. */
if ((*p >= 'a' && *p <= 'z') ||
(*p >= 'A' && *p <= 'Z') ||
(*p >= '0' && *p <= '9'))
grow_size++;
else
grow_size += 3; /* %ab */
}
if (virBufferGrow (buf, grow_size) < 0)
return;
for (p = str; *p; ++p) {
/* This may not work on EBCDIC. */
if ((*p >= 'a' && *p <= 'z') ||
(*p >= 'A' && *p <= 'Z') ||
(*p >= '0' && *p <= '9'))
buf->content[buf->use++] = *p;
else {
uc = (unsigned char) *p;
buf->content[buf->use++] = '%';
buf->content[buf->use++] = hex[uc >> 4];
buf->content[buf->use++] = hex[uc & 0xf];
}
}
buf->content[buf->use] = '\0';
}
2007-03-15 17:30:04 +00:00
/**
2007-06-26 22:21:22 +00:00
* virBufferStrcat:
2007-03-15 17:30:04 +00:00
* @buf: the buffer to dump
* @...: the variable list of strings, the last argument must be NULL
2007-03-15 17:30:04 +00:00
*
* Concatenate strings to an XML buffer.
*/
void
2007-06-26 22:21:22 +00:00
virBufferStrcat(virBufferPtr buf, ...)
2007-03-15 17:30:04 +00:00
{
va_list ap;
char *str;
if (buf->error)
return;
2007-03-15 17:30:04 +00:00
va_start(ap, buf);
while ((str = va_arg(ap, char *)) != NULL) {
unsigned int len = strlen(str);
unsigned int needSize = buf->use + len + 2;
if (needSize > buf->size) {
if (virBufferGrow(buf, needSize - buf->use) < 0)
return;
2007-03-15 17:30:04 +00:00
}
memcpy(&buf->content[buf->use], str, len);
buf->use += len;
buf->content[buf->use] = 0;
}
va_end(ap);
}