mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 11:35:19 +00:00
util: buffer: Add support for adding text blocks with indentation
The current auto-indentation buffer code applies indentation only on complete strings. To allow adding a string containing newlines and having it properly indented this patch adds virBufferAddStr.
This commit is contained in:
parent
db1edae895
commit
6ff59cbc83
@ -1099,6 +1099,7 @@ virBitmapToData;
|
|||||||
virBufferAdd;
|
virBufferAdd;
|
||||||
virBufferAddBuffer;
|
virBufferAddBuffer;
|
||||||
virBufferAddChar;
|
virBufferAddChar;
|
||||||
|
virBufferAddStr;
|
||||||
virBufferAdjustIndent;
|
virBufferAdjustIndent;
|
||||||
virBufferAsprintf;
|
virBufferAsprintf;
|
||||||
virBufferCheckErrorInternal;
|
virBufferCheckErrorInternal;
|
||||||
|
@ -756,3 +756,32 @@ virBufferTrim(virBufferPtr buf, const char *str, int len)
|
|||||||
buf->use -= len < 0 ? len2 : len;
|
buf->use -= len < 0 ? len2 : len;
|
||||||
buf->content[buf->use] = '\0';
|
buf->content[buf->use] = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* virBufferAddStr:
|
||||||
|
* @buf: the buffer to append to
|
||||||
|
* @str: string to append
|
||||||
|
*
|
||||||
|
* Appends @str to @buffer. Applies autoindentation on the separate lines of
|
||||||
|
* @str.
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
virBufferAddStr(virBufferPtr buf,
|
||||||
|
const char *str)
|
||||||
|
{
|
||||||
|
const char *end;
|
||||||
|
|
||||||
|
if (!buf || !str || buf->error)
|
||||||
|
return;
|
||||||
|
|
||||||
|
while (*str) {
|
||||||
|
if ((end = strchr(str, '\n'))) {
|
||||||
|
virBufferAdd(buf, str, (end - str) + 1);
|
||||||
|
str = end + 1;
|
||||||
|
} else {
|
||||||
|
virBufferAdd(buf, str, -1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -96,5 +96,6 @@ void virBufferAdjustIndent(virBufferPtr buf, int indent);
|
|||||||
int virBufferGetIndent(const virBuffer *buf, bool dynamic);
|
int virBufferGetIndent(const virBuffer *buf, bool dynamic);
|
||||||
|
|
||||||
void virBufferTrim(virBufferPtr buf, const char *trim, int len);
|
void virBufferTrim(virBufferPtr buf, const char *trim, int len);
|
||||||
|
void virBufferAddStr(virBufferPtr buf, const char *str);
|
||||||
|
|
||||||
#endif /* __VIR_BUFFER_H__ */
|
#endif /* __VIR_BUFFER_H__ */
|
||||||
|
@ -310,6 +310,43 @@ static int testBufAddBuffer(const void *data ATTRIBUTE_UNUSED)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct testBufAddStrData {
|
||||||
|
const char *data;
|
||||||
|
const char *expect;
|
||||||
|
};
|
||||||
|
|
||||||
|
static int
|
||||||
|
testBufAddStr(const void *opaque ATTRIBUTE_UNUSED)
|
||||||
|
{
|
||||||
|
const struct testBufAddStrData *data = opaque;
|
||||||
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
||||||
|
char *actual;
|
||||||
|
int ret = -1;
|
||||||
|
|
||||||
|
virBufferAddLit(&buf, "<c>\n");
|
||||||
|
virBufferAdjustIndent(&buf, 2);
|
||||||
|
virBufferAddStr(&buf, data->data);
|
||||||
|
virBufferAdjustIndent(&buf, -2);
|
||||||
|
virBufferAddLit(&buf, "</c>");
|
||||||
|
|
||||||
|
if (!(actual = virBufferContentAndReset(&buf))) {
|
||||||
|
TEST_ERROR("buf is empty");
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (STRNEQ_NULLABLE(actual, data->expect)) {
|
||||||
|
TEST_ERROR("testBufAddStr(): Strings don't match:\n");
|
||||||
|
virtTestDifference(stderr, data->expect, actual);
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = 0;
|
||||||
|
|
||||||
|
cleanup:
|
||||||
|
VIR_FREE(actual);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
mymain(void)
|
mymain(void)
|
||||||
@ -330,6 +367,18 @@ mymain(void)
|
|||||||
DO_TEST("Trim", testBufTrim, 0);
|
DO_TEST("Trim", testBufTrim, 0);
|
||||||
DO_TEST("AddBuffer", testBufAddBuffer, 0);
|
DO_TEST("AddBuffer", testBufAddBuffer, 0);
|
||||||
|
|
||||||
|
#define DO_TEST_ADD_STR(DATA, EXPECT) \
|
||||||
|
do { \
|
||||||
|
struct testBufAddStrData info = { DATA, EXPECT }; \
|
||||||
|
if (virtTestRun("Buf: AddStr", testBufAddStr, &info) < 0) \
|
||||||
|
ret = -1; \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
DO_TEST_ADD_STR("", "<c>\n</c>");
|
||||||
|
DO_TEST_ADD_STR("<a/>", "<c>\n <a/></c>");
|
||||||
|
DO_TEST_ADD_STR("<a/>\n", "<c>\n <a/>\n</c>");
|
||||||
|
DO_TEST_ADD_STR("<b>\n <a/>\n</b>\n", "<c>\n <b>\n <a/>\n </b>\n</c>");
|
||||||
|
|
||||||
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user