sm501: Drop unneded variable
[qemu/ar7.git] / qapi / job.json
blob5e658281f5c4e4bbb484bea99fb46236a21657ca
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 will require
54 #           manual intervention via @job-finalize if auto-finalize was set to
55 #           false. These pending 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 auto-dismiss was set to false,
62 #             the job will remain in the query list until it is dismissed via
63 #             @job-dismiss.
65 # @null: The job is in the process of being dismantled. This state should not
66 #        ever be visible externally.
68 # Since: 2.12
70 { 'enum': 'JobStatus',
71   'data': ['undefined', 'created', 'running', 'paused', 'ready', 'standby',
72            'waiting', 'pending', 'aborting', 'concluded', 'null' ] }
75 # @JobVerb:
77 # Represents command verbs that can be applied to a job.
79 # @cancel: see @job-cancel
81 # @pause: see @job-pause
83 # @resume: see @job-resume
85 # @set-speed: see @block-job-set-speed
87 # @complete: see @job-complete
89 # @dismiss: see @job-dismiss
91 # @finalize: see @job-finalize
93 # Since: 2.12
95 { 'enum': 'JobVerb',
96   'data': ['cancel', 'pause', 'resume', 'set-speed', 'complete', 'dismiss',
97            'finalize' ] }
100 # @JOB_STATUS_CHANGE:
102 # Emitted when a job transitions to a different status.
104 # @id: The job identifier
105 # @status: The new job status
107 # Since: 3.0
109 { 'event': 'JOB_STATUS_CHANGE',
110   'data': { 'id': 'str',
111             'status': 'JobStatus' } }
114 # @job-pause:
116 # Pause an active job.
118 # This command returns immediately after marking the active job for pausing.
119 # Pausing an already paused job is an error.
121 # The job will pause as soon as possible, which means transitioning into the
122 # PAUSED state if it was RUNNING, or into STANDBY if it was READY. The
123 # corresponding JOB_STATUS_CHANGE event will be emitted.
125 # Cancelling a paused job automatically resumes it.
127 # @id: The job identifier.
129 # Since: 3.0
131 { 'command': 'job-pause', 'data': { 'id': 'str' } }
134 # @job-resume:
136 # Resume a paused job.
138 # This command returns immediately after resuming a paused job. Resuming an
139 # already running job is an error.
141 # @id : The job identifier.
143 # Since: 3.0
145 { 'command': 'job-resume', 'data': { 'id': 'str' } }
148 # @job-cancel:
150 # Instruct an active background job to cancel at the next opportunity.
151 # This command returns immediately after marking the active job for
152 # cancellation.
154 # The job will cancel as soon as possible and then emit a JOB_STATUS_CHANGE
155 # event. Usually, the status will change to ABORTING, but it is possible that
156 # a job successfully completes (e.g. because it was almost done and there was
157 # no opportunity to cancel earlier than completing the job) and transitions to
158 # PENDING instead.
160 # @id: The job identifier.
162 # Since: 3.0
164 { 'command': 'job-cancel', 'data': { 'id': 'str' } }
168 # @job-complete:
170 # Manually trigger completion of an active job in the READY state.
172 # @id: The job identifier.
174 # Since: 3.0
176 { 'command': 'job-complete', 'data': { 'id': 'str' } }
179 # @job-dismiss:
181 # Deletes a job that is in the CONCLUDED state. This command only needs to be
182 # run explicitly for jobs that don't have automatic dismiss enabled.
184 # This command will refuse to operate on any job that has not yet reached its
185 # terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of JOB_READY
186 # event, job-cancel or job-complete will still need to be used as appropriate.
188 # @id: The job identifier.
190 # Since: 3.0
192 { 'command': 'job-dismiss', 'data': { 'id': 'str' } }
195 # @job-finalize:
197 # Instructs all jobs in a transaction (or a single job if it is not part of any
198 # transaction) to finalize any graph changes and do any necessary cleanup. This
199 # command requires that all involved jobs are in the PENDING state.
201 # For jobs in a transaction, instructing one job to finalize will force
202 # ALL jobs in the transaction to finalize, so it is only necessary to instruct
203 # a single member job to finalize.
205 # @id: The identifier of any job in the transaction, or of a job that is not
206 #      part of any transaction.
208 # Since: 3.0
210 { 'command': 'job-finalize', 'data': { 'id': 'str' } }
213 # @JobInfo:
215 # Information about a job.
217 # @id: The job identifier
219 # @type: The kind of job that is being performed
221 # @status: Current job state/status
223 # @current-progress: Progress made until now. The unit is arbitrary and the
224 #                    value can only meaningfully be used for the ratio of
225 #                    @current-progress to @total-progress. The value is
226 #                    monotonically increasing.
228 # @total-progress: Estimated @current-progress value at the completion of
229 #                  the job. This value can arbitrarily change while the
230 #                  job is running, in both directions.
232 # @error: If this field is present, the job failed; if it is
233 #         still missing in the CONCLUDED state, this indicates
234 #         successful completion.
236 #         The value is a human-readable error message to describe
237 #         the reason for the job failure. It should not be parsed
238 #         by applications.
240 # Since: 3.0
242 { 'struct': 'JobInfo',
243   'data': { 'id': 'str', 'type': 'JobType', 'status': 'JobStatus',
244             'current-progress': 'int', 'total-progress': 'int',
245             '*error': 'str' } }
248 # @query-jobs:
250 # Return information about jobs.
252 # Returns: a list with a @JobInfo for each active job
254 # Since: 3.0
256 { 'command': 'query-jobs', 'returns': ['JobInfo'] }