diff options
author | Chris Lalancette <clalance@redhat.com> | 2010-05-19 09:02:30 -0400 |
---|---|---|
committer | Chris Lalancette <clalance@redhat.com> | 2010-05-20 13:49:38 -0400 |
commit | a4079e7ec63c7ecdc5fcd23b33831c58e3679d46 (patch) | |
tree | 1041013675a52335025db9088bd09081eb64de7a /libvirt-override-api.xml | |
parent | a6daa0108e072db02855e4203b7cd6066ddc2b39 (diff) | |
download | libvirt-python-v6-a4079e7ec63c7ecdc5fcd23b33831c58e3679d46.tar.gz libvirt-python-v6-a4079e7ec63c7ecdc5fcd23b33831c58e3679d46.tar.xz libvirt-python-v6-a4079e7ec63c7ecdc5fcd23b33831c58e3679d46.zip |
Fix up the python bindings for snapshotting.
This involved a few fixes. To start with,
an virDomainSnapshot object is really tied to a
domain, not a connection, so we have to generate
a slightly different object so that we can get
at self._dom for the object.
Next, we had to "dummy" up an override piece of
XML with a bogus argument that the function doesn't
actually take. That's so that the generator places
virDomainRevertToSnapshot underneath the correct
class (namely, the virDomain class).
Finally, we had to hand-implement the
virDomainRevertToSnapshot implementation, ignoring the
bogus pointer we are being passed.
With all of this in place, I was able to successfully
take a snapshot and revert to it using only the
Python bindings.
Signed-off-by: Chris Lalancette <clalance@redhat.com>
Diffstat (limited to 'libvirt-override-api.xml')
-rw-r--r-- | libvirt-override-api.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libvirt-override-api.xml b/libvirt-override-api.xml index 9ba8e4e..be28b40 100644 --- a/libvirt-override-api.xml +++ b/libvirt-override-api.xml @@ -277,5 +277,12 @@ <arg name='flags' type='unsigned int' info='flags, curently unused'/> <return type='str *' info='the list of Names of None in case of error'/> </function> + <function name='virDomainRevertToSnapshot' file='python'> + <info>revert the domain to the given snapshot</info> + <arg name='dom' type='virDomainPtr' info='dummy domain pointer'/> + <arg name='snap' type='virDomainSnapshotPtr' info='pointer to the snapshot'/> + <arg name='flags' type='unsigned int' info='flags, curently unused'/> + <return type='int' info="0 on success, -1 on error"/> + </function> </symbols> </api> |