]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
API: Introduce VIR_DOMAIN_JOB_SUCCESS field for virDomainGetJobStats
authorPeter Krempa <pkrempa@redhat.com>
Thu, 21 Nov 2019 17:01:06 +0000 (18:01 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Tue, 3 Dec 2019 14:26:53 +0000 (15:26 +0100)
The statistics fields are used in two places:

1) virDomainGetJobStats where the job type which ultimately holds
whether the job was successful or not is returned via a different
argument.

2) The virConnectDomainEventJobCompleted event where we report just the
statistics via typed parameters.

Since it might be useful to report the event also for jobs which
completed unsuccessfully and we don't have the means to transport the
state via a different variable with the event let's add a new field
which will hold the success state.

Since this is meant primarily for completed jobs a plain boolean is
sufficient to convey whether the job was successful or not.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
include/libvirt/libvirt-domain.h

index 6c21fe10986c4e810e68ebf4c9f372e192aaf4eb..40c71091ec3a6772260b69ff891da60def0450ad 100644 (file)
@@ -3578,6 +3578,13 @@ typedef enum {
  */
 # define VIR_DOMAIN_JOB_AUTO_CONVERGE_THROTTLE  "auto_converge_throttle"
 
+/**
+ * VIR_DOMAIN_JOB_SUCCESS:
+ *
+ * virDomainGetJobStats field: Present only in statistics for a completed job.
+ * Successful completion of the job as VIR_TYPED_PARAM_BOOLEAN.
+ */
+# define VIR_DOMAIN_JOB_SUCCESS "success"
 
 /**
  * virConnectDomainEventGenericCallback: