mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-21 19:02:25 +00:00
Switch the virsh XML generation to use virBuffer instead of virAsprintf
The code generating XML for storage pool source discovery is hardcoded to only allow a hostname and optional port number. Refactor this code to make it easier to add support for extra parameters. * tools/virsh.c: Refactor XML generator
This commit is contained in:
parent
1da8c5672f
commit
1bae28e49b
@ -5826,7 +5826,6 @@ cmdPoolDiscoverSourcesAs(vshControl * ctl, const vshCmd * cmd ATTRIBUTE_UNUSED)
|
||||
if (host) {
|
||||
size_t hostlen = strlen(host);
|
||||
char *port = vshCommandOptString(cmd, "port", &found);
|
||||
int ret;
|
||||
if (!found) {
|
||||
port = strrchr(host, ':');
|
||||
if (port) {
|
||||
@ -5836,23 +5835,18 @@ cmdPoolDiscoverSourcesAs(vshControl * ctl, const vshCmd * cmd ATTRIBUTE_UNUSED)
|
||||
port = NULL;
|
||||
}
|
||||
}
|
||||
ret = port ?
|
||||
virAsprintf(&srcSpec,
|
||||
"<source><host name='%.*s' port='%s'/></source>",
|
||||
(int)hostlen, host, port) :
|
||||
virAsprintf(&srcSpec,
|
||||
"<source><host name='%.*s'/></source>",
|
||||
(int)hostlen, host);
|
||||
if (ret < 0) {
|
||||
switch (errno) {
|
||||
case ENOMEM:
|
||||
vshError(ctl, "%s", _("Out of memory"));
|
||||
break;
|
||||
default:
|
||||
vshError(ctl, _("virAsprintf failed (errno %d)"), errno);
|
||||
}
|
||||
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
||||
virBufferAddLit(&buf, "<source>\n");
|
||||
virBufferVSprintf(&buf, " <host name='%.*s'",(int)hostlen, host);
|
||||
if (port)
|
||||
virBufferVSprintf(&buf, " port='%s'", port);
|
||||
virBufferAddLit(&buf, "/>\n");
|
||||
virBufferAddLit(&buf, "</source>\n");
|
||||
if (virBufferError(&buf)) {
|
||||
vshError(ctl, "%s", _("Out of memory"));
|
||||
return FALSE;
|
||||
}
|
||||
srcSpec = virBufferContentAndReset(&buf);
|
||||
}
|
||||
|
||||
srcList = virConnectFindStoragePoolSources(ctl->conn, type, srcSpec, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user