summaryrefslogtreecommitdiffstats
path: root/generator.py
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2012-05-23 10:40:50 -0600
committerEric Blake <eblake@redhat.com>2012-06-19 13:50:03 -0600
commit7beedf6c6330c8ea5aa8e3d2d31c13e1cc7b780d (patch)
tree50a598489d8e2861e4f9c01ccb09fb3e83dacbad /generator.py
parent3e25987d1a4cef5074e880af1d63a5d0d229e352 (diff)
downloadlibvirt-python-split-7beedf6c6330c8ea5aa8e3d2d31c13e1cc7b780d.tar.gz
libvirt-python-split-7beedf6c6330c8ea5aa8e3d2d31c13e1cc7b780d.tar.xz
libvirt-python-split-7beedf6c6330c8ea5aa8e3d2d31c13e1cc7b780d.zip
list: add virDomainListAllSnapshots API
There was an inherent race between virDomainSnapshotNum() and virDomainSnapshotListNames(), where an additional snapshot could be created in the meantime, or where a snapshot could be deleted before converting the name back to a virDomainSnapshotPtr. It was also an awkward name: the function operates on domains, not domain snapshots. virDomainSnapshotListChildrenNames() suffered from the same inherent race, although its naming was nicer. This patch makes things nicer by grabbing a snapshot list atomically, in the format most useful to the user. * include/libvirt/libvirt.h.in (virDomainListAllSnapshots) (virDomainSnapshotListAllChildren): New declarations. * src/libvirt.c (virDomainSnapshotListNames) (virDomainSnapshotListChildrenNames): Add cross-references. (virDomainListAllSnapshots, virDomainSnapshotListAllChildren): New functions. * src/libvirt_public.syms (LIBVIRT_0.9.13): Export them. * src/driver.h (virDrvDomainListAllSnapshots) (virDrvDomainSnapshotListAllChildren): New callbacks. * python/generator.py (skip_function): Prepare for later hand-written versions.
Diffstat (limited to 'generator.py')
-rwxr-xr-xgenerator.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/generator.py b/generator.py
index 0b6ac7c..2dada6e 100755
--- a/generator.py
+++ b/generator.py
@@ -454,6 +454,8 @@ skip_function = (
'virSaveLastError', # We have our own python error wrapper
'virFreeError', # Only needed if we use virSaveLastError
'virConnectListAllDomains', #overridden in virConnect.py
+ 'virDomainListAllSnapshots', # overridden in virDomain.py
+ 'virDomainSnapshotListAllChildren', # overridden in virDomainSnapshot.py
'virStreamRecvAll', # Pure python libvirt-override-virStream.py
'virStreamSendAll', # Pure python libvirt-override-virStream.py