10 # Type of a background job.
12 # @commit: block commit job type, see "block-commit"
14 # @stream: block stream job type, see "block-stream"
16 # @mirror: drive mirror job type, see "drive-mirror"
18 # @backup: drive backup job type, see "drive-backup"
20 # @create: image creation job type, see "blockdev-create" (since 3.0)
25 'data': ['commit', 'stream', 'mirror', 'backup', 'create'] }
30 # Indicates the present state of a given job in its lifetime.
32 # @undefined: Erroneous, default state. Should not ever be visible.
34 # @created: The job has been created, but not yet started.
36 # @running: The job is currently running.
38 # @paused: The job is running, but paused. The pause may be requested by
39 # either the QMP user or by internal processes.
41 # @ready: The job is running, but is ready for the user to signal completion.
42 # This is used for long-running jobs like mirror that are designed to
45 # @standby: The job is ready, but paused. This is nearly identical to @paused.
46 # The job may return to @ready or otherwise be canceled.
48 # @waiting: The job is waiting for other jobs in the transaction to converge
49 # to the waiting state. This status will likely not be visible for
50 # the last job in a transaction.
52 # @pending: The job has finished its work, but has finalization steps that it
53 # needs to make prior to completing. These changes may require
54 # manual intervention by the management process if manual was set
55 # to true. These changes may still fail.
57 # @aborting: The job is in the process of being aborted, and will finish with
58 # an error. The job will afterwards report that it is @concluded.
59 # This status may not be visible to the management process.
61 # @concluded: The job has finished all work. If manual was set to true, the job
62 # will remain in the query list until it is dismissed.
64 # @null: The job is in the process of being dismantled. This state should not
65 # ever be visible externally.
69 { 'enum': 'JobStatus',
70 'data': ['undefined', 'created', 'running', 'paused', 'ready', 'standby',
71 'waiting', 'pending', 'aborting', 'concluded', 'null' ] }
76 # Represents command verbs that can be applied to a job.
78 # @cancel: see @block-job-cancel
80 # @pause: see @block-job-pause
82 # @resume: see @block-job-resume
84 # @set-speed: see @block-job-set-speed
86 # @complete: see @block-job-complete
88 # @dismiss: see @block-job-dismiss
90 # @finalize: see @block-job-finalize
95 'data': ['cancel', 'pause', 'resume', 'set-speed', 'complete', 'dismiss',
101 # Emitted when a job transitions to a different status.
103 # @id: The job identifier
104 # @status: The new job status
108 { 'event': 'JOB_STATUS_CHANGE',
109 'data': { 'id': 'str',
110 'status': 'JobStatus' } }
115 # Pause an active job.
117 # This command returns immediately after marking the active job for pausing.
118 # Pausing an already paused job is an error.
120 # The job will pause as soon as possible, which means transitioning into the
121 # PAUSED state if it was RUNNING, or into STANDBY if it was READY. The
122 # corresponding JOB_STATUS_CHANGE event will be emitted.
124 # Cancelling a paused job automatically resumes it.
126 # @id: The job identifier.
130 { 'command': 'job-pause', 'data': { 'id': 'str' } }
135 # Resume a paused job.
137 # This command returns immediately after resuming a paused job. Resuming an
138 # already running job is an error.
140 # @id : The job identifier.
144 { 'command': 'job-resume', 'data': { 'id': 'str' } }
149 # Instruct an active background job to cancel at the next opportunity.
150 # This command returns immediately after marking the active job for
153 # The job will cancel as soon as possible and then emit a JOB_STATUS_CHANGE
154 # event. Usually, the status will change to ABORTING, but it is possible that
155 # a job successfully completes (e.g. because it was almost done and there was
156 # no opportunity to cancel earlier than completing the job) and transitions to
159 # @id: The job identifier.
163 { 'command': 'job-cancel', 'data': { 'id': 'str' } }
169 # Manually trigger completion of an active job in the READY state.
171 # @id: The job identifier.
175 { 'command': 'job-complete', 'data': { 'id': 'str' } }
180 # Deletes a job that is in the CONCLUDED state. This command only needs to be
181 # run explicitly for jobs that don't have automatic dismiss enabled.
183 # This command will refuse to operate on any job that has not yet reached its
184 # terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of JOB_READY
185 # event, job-cancel or job-complete will still need to be used as appropriate.
187 # @id: The job identifier.
191 { 'command': 'job-dismiss', 'data': { 'id': 'str' } }
196 # Instructs all jobs in a transaction (or a single job if it is not part of any
197 # transaction) to finalize any graph changes and do any necessary cleanup. This
198 # command requires that all involved jobs are in the PENDING state.
200 # For jobs in a transaction, instructing one job to finalize will force
201 # ALL jobs in the transaction to finalize, so it is only necessary to instruct
202 # a single member job to finalize.
204 # @id: The identifier of any job in the transaction, or of a job that is not
205 # part of any transaction.
209 { 'command': 'job-finalize', 'data': { 'id': 'str' } }
214 # Information about a job.
216 # @id: The job identifier
218 # @type: The kind of job that is being performed
220 # @status: Current job state/status
222 # @current-progress: Progress made until now. The unit is arbitrary and the
223 # value can only meaningfully be used for the ratio of
224 # @current-progress to @total-progress. The value is
225 # monotonically increasing.
227 # @total-progress: Estimated @current-progress value at the completion of
228 # the job. This value can arbitrarily change while the
229 # job is running, in both directions.
231 # @error: If this field is present, the job failed; if it is
232 # still missing in the CONCLUDED state, this indicates
233 # successful completion.
235 # The value is a human-readable error message to describe
236 # the reason for the job failure. It should not be parsed
241 { 'struct': 'JobInfo',
242 'data': { 'id': 'str', 'type': 'JobType', 'status': 'JobStatus',
243 'current-progress': 'int', 'total-progress': 'int',
249 # Return information about jobs.
251 # Returns: a list with a @JobInfo for each active job
255 { 'command': 'query-jobs', 'returns': ['JobInfo'] }