iotests: Add case for a corrupted inactive image
[qemu/ar7.git] / qapi / job.json
blob17d10037c401fd75b28db09bfef907a6b090f70d
1 # -*- Mode: Python -*-
3 ##
4 # == Background jobs
5 ##
7 ##
8 # @JobType:
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)
22 # Since: 1.7
24 { 'enum': 'JobType',
25   'data': ['commit', 'stream', 'mirror', 'backup', 'create'] }
28 # @JobStatus:
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
43 #         run indefinitely.
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.
67 # Since: 2.12
69 { 'enum': 'JobStatus',
70   'data': ['undefined', 'created', 'running', 'paused', 'ready', 'standby',
71            'waiting', 'pending', 'aborting', 'concluded', 'null' ] }
74 # @JobVerb:
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
92 # Since: 2.12
94 { 'enum': 'JobVerb',
95   'data': ['cancel', 'pause', 'resume', 'set-speed', 'complete', 'dismiss',
96            'finalize' ] }
99 # @JOB_STATUS_CHANGE:
101 # Emitted when a job transitions to a different status.
103 # @id: The job identifier
104 # @status: The new job status
106 # Since: 2.13
108 { 'event': 'JOB_STATUS_CHANGE',
109   'data': { 'id': 'str',
110             'status': 'JobStatus' } }
113 # @job-pause:
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.
128 # Since: 2.13
130 { 'command': 'job-pause', 'data': { 'id': 'str' } }
133 # @job-resume:
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.
142 # Since: 2.13
144 { 'command': 'job-resume', 'data': { 'id': 'str' } }
147 # @job-cancel:
149 # Instruct an active background job to cancel at the next opportunity.
150 # This command returns immediately after marking the active job for
151 # cancellation.
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
157 # PENDING instead.
159 # @id: The job identifier.
161 # Since: 2.13
163 { 'command': 'job-cancel', 'data': { 'id': 'str' } }
167 # @job-complete:
169 # Manually trigger completion of an active job in the READY state.
171 # @id: The job identifier.
173 # Since: 2.13
175 { 'command': 'job-complete', 'data': { 'id': 'str' } }
178 # @job-dismiss:
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.
189 # Since: 2.13
191 { 'command': 'job-dismiss', 'data': { 'id': 'str' } }
194 # @job-finalize:
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.
207 # Since: 2.13
209 { 'command': 'job-finalize', 'data': { 'id': 'str' } }
212 # @JobInfo:
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
237 #                       by applications.
239 # Since: 2.13
241 { 'struct': 'JobInfo',
242   'data': { 'id': 'str', 'type': 'JobType', 'status': 'JobStatus',
243             'current-progress': 'int', 'total-progress': 'int',
244             '*error': 'str' } }
247 # @query-jobs:
249 # Return information about jobs.
251 # Returns: a list with a @JobInfo for each active job
253 # Since: 2.13
255 { 'command': 'query-jobs', 'returns': ['JobInfo'] }