Signed-off-by: Katerina Koukiou <kkoukiou(a)redhat.com>
---
data/org.libvirt.StoragePool.xml | 9 +++++++++
src/storagepool.c | 41 ++++++++++++++++++++++++++++++++++++++++
tests/test_storage.py | 21 ++++++++++++++++++++
3 files changed, 71 insertions(+)
diff --git a/data/org.libvirt.StoragePool.xml b/data/org.libvirt.StoragePool.xml
index 161ade5..0a324e6 100644
--- a/data/org.libvirt.StoragePool.xml
+++ b/data/org.libvirt.StoragePool.xml
@@ -75,6 +75,15 @@
<arg name="flags" type="u" direction="in"/>
<arg name="storageVol" type="o"
direction="out"/>
</method>
+ <method name="StorageVolCreateXMLFrom">
+ <annotation name="org.gtk.GDBus.DocString"
+ value="See
https://libvirt.org/html/libvirt-libvirt-storage.html#virStorageVolCreate...
+ Call with @key argument set to the key of the storage volume to be
cloned."/>
+ <arg name="xml" type="s" direction="in"/>
+ <arg name="key" type="s" direction="in"/>
+ <arg name="flags" type="u" direction="in"/>
+ <arg name="storageVol" type="o"
direction="out"/>
+ </method>
<method name="StorageVolLookupByName">
<annotation name="org.gtk.GDBus.DocString"
value="See
https://libvirt.org/html/libvirt-libvirt-storage.html#virStorageVolLookup...
diff --git a/src/storagepool.c b/src/storagepool.c
index 55077ed..854ca7d 100644
--- a/src/storagepool.c
+++ b/src/storagepool.c
@@ -401,6 +401,46 @@ virtDBusStoragePoolStorageVolCreateXML(GVariant *inArgs,
*outArgs = g_variant_new("(o)", path);
}
+static void
+virtDBusStoragePoolStorageVolCreateXMLFrom(GVariant *inArgs,
+ GUnixFDList *inFDs G_GNUC_UNUSED,
+ const gchar *objectPath,
+ gpointer userData,
+ GVariant **outArgs,
+ GUnixFDList **outFDs G_GNUC_UNUSED,
+ GError **error)
+{
+ virtDBusConnect *connect = userData;
+ g_autoptr(virStoragePool) storagePool = NULL;
+ g_autoptr(virStorageVol) storageVol = NULL;
+ g_autoptr(virStorageVol) storageVolOld = NULL;
+ gchar *key;
+ gchar *xml;
+ guint flags;
+ g_autofree gchar *path = NULL;
+
+ g_variant_get(inArgs, "(&s&su)", &xml, &key, &flags);
+
+ storagePool = virtDBusStoragePoolGetVirStoragePool(connect, objectPath,
+ error);
+ if (!storagePool)
+ return;
+
+ storageVolOld = virStorageVolLookupByKey(connect->connection, key);
+ if (!storageVolOld)
+ return virtDBusUtilSetLastVirtError(error);
+
+ storageVol = virStorageVolCreateXMLFrom(storagePool, xml, storageVolOld,
+ flags);
+ if (!storageVol)
+ return virtDBusUtilSetLastVirtError(error);
+
+ path = virtDBusUtilBusPathForVirStorageVol(storageVol,
+ connect->storageVolPath);
+
+ *outArgs = g_variant_new("(o)", path);
+}
+
static void
virtDBusStoragePoolStorageVolLookupByName(GVariant *inArgs,
GUnixFDList *inFDs G_GNUC_UNUSED,
@@ -475,6 +515,7 @@ static virtDBusGDBusMethodTable virtDBusStoragePoolMethodTable[] = {
{ "ListStorageVolumes", virtDBusStoragePoolListAllVolumes },
{ "Refresh", virtDBusStoragePoolRefresh },
{ "StorageVolCreateXML", virtDBusStoragePoolStorageVolCreateXML },
+ { "StorageVolCreateXMLFrom", virtDBusStoragePoolStorageVolCreateXMLFrom },
{ "StorageVolLookupByName", virtDBusStoragePoolStorageVolLookupByName },
{ "Undefine", virtDBusStoragePoolUndefine },
{ 0 }
diff --git a/tests/test_storage.py b/tests/test_storage.py
index f342e77..8a0c4f6 100755
--- a/tests/test_storage.py
+++ b/tests/test_storage.py
@@ -130,6 +130,27 @@ class TestStoragePool(libvirttest.BaseTestClass):
path, _ = self.test_storage_vol()
assert isinstance(path, dbus.ObjectPath)
+ def test_storage_pool_volume_create_xml_from(self):
+ minimal_storage_vol_clone_xml = '''
+ <volume>
+ <name>clone.img</name>
+ <capacity unit="G">1</capacity>
+ </volume>
+ '''
+ _, test_storage_vol = self.test_storage_vol()
+ props = test_storage_vol.GetAll('org.libvirt.StorageVol',
+ dbus_interface=dbus.PROPERTIES_IFACE)
+ test_storage_vol_key = str(props['Key'])
+
+ _, test_storage_pool = self.test_storage_pool()
+ storage_pool_iface = dbus.Interface(test_storage_pool,
+ 'org.libvirt.StoragePool')
+
+ new_vol_path =
storage_pool_iface.StorageVolCreateXMLFrom(minimal_storage_vol_clone_xml,
+ test_storage_vol_key,
+ 0)
+ assert isinstance(new_vol_path, dbus.ObjectPath)
+
class TestStorageVolume(libvirttest.BaseTestClass):
def test_storage_vol_delete(self):
--
2.15.0