error, qerror: add ErrorClass argument to error functions
[qemu/ar7.git] / qerror.h
blobbcc93f814f7d51f9588b089a6b58f4d608431ff8
1 /*
2 * QError Module
4 * Copyright (C) 2009 Red Hat Inc.
6 * Authors:
7 * Luiz Capitulino <lcapitulino@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
12 #ifndef QERROR_H
13 #define QERROR_H
15 #include "qdict.h"
16 #include "qstring.h"
17 #include "qemu-error.h"
18 #include "error.h"
19 #include "qapi-types.h"
20 #include <stdarg.h>
22 typedef struct QErrorStringTable {
23 ErrorClass err_class;
24 const char *error_fmt;
25 const char *desc;
26 } QErrorStringTable;
28 typedef struct QError {
29 QObject_HEAD;
30 QDict *error;
31 Location loc;
32 char *err_msg;
33 ErrorClass err_class;
34 } QError;
36 QString *qerror_human(const QError *qerror);
37 void qerror_report(ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
38 void qerror_report_err(Error *err);
39 void assert_no_error(Error *err);
40 char *qerror_format(const char *fmt, QDict *error);
43 * QError class list
44 * Please keep the definitions in alphabetical order.
45 * Use scripts/check-qerror.sh to check.
47 #define QERR_ADD_CLIENT_FAILED \
48 -1, "{ 'class': 'AddClientFailed', 'data': {} }"
50 #define QERR_AMBIGUOUS_PATH \
51 -1, "{ 'class': 'AmbiguousPath', 'data': { 'path': %s } }"
53 #define QERR_BAD_BUS_FOR_DEVICE \
54 -1, "{ 'class': 'BadBusForDevice', 'data': { 'device': %s, 'bad_bus_type': %s } }"
56 #define QERR_BASE_NOT_FOUND \
57 -1, "{ 'class': 'BaseNotFound', 'data': { 'base': %s } }"
59 #define QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED \
60 -1, "{ 'class': 'BlockFormatFeatureNotSupported', 'data': { 'format': %s, 'name': %s, 'feature': %s } }"
62 #define QERR_BUFFER_OVERRUN \
63 -1, "{ 'class': 'BufferOverrun', 'data': {} }"
65 #define QERR_BUS_NO_HOTPLUG \
66 -1, "{ 'class': 'BusNoHotplug', 'data': { 'bus': %s } }"
68 #define QERR_BUS_NOT_FOUND \
69 -1, "{ 'class': 'BusNotFound', 'data': { 'bus': %s } }"
71 #define QERR_COMMAND_DISABLED \
72 -1, "{ 'class': 'CommandDisabled', 'data': { 'name': %s } }"
74 #define QERR_COMMAND_NOT_FOUND \
75 -1, "{ 'class': 'CommandNotFound', 'data': { 'name': %s } }"
77 #define QERR_DEVICE_ENCRYPTED \
78 -1, "{ 'class': 'DeviceEncrypted', 'data': { 'device': %s, 'filename': %s } }"
80 #define QERR_DEVICE_FEATURE_BLOCKS_MIGRATION \
81 -1, "{ 'class': 'DeviceFeatureBlocksMigration', 'data': { 'device': %s, 'feature': %s } }"
83 #define QERR_DEVICE_HAS_NO_MEDIUM \
84 -1, "{ 'class': 'DeviceHasNoMedium', 'data': { 'device': %s } }"
86 #define QERR_DEVICE_INIT_FAILED \
87 -1, "{ 'class': 'DeviceInitFailed', 'data': { 'device': %s } }"
89 #define QERR_DEVICE_IN_USE \
90 -1, "{ 'class': 'DeviceInUse', 'data': { 'device': %s } }"
92 #define QERR_DEVICE_IS_READ_ONLY \
93 -1, "{ 'class': 'DeviceIsReadOnly', 'data': { 'device': %s } }"
95 #define QERR_DEVICE_LOCKED \
96 -1, "{ 'class': 'DeviceLocked', 'data': { 'device': %s } }"
98 #define QERR_DEVICE_MULTIPLE_BUSSES \
99 -1, "{ 'class': 'DeviceMultipleBusses', 'data': { 'device': %s } }"
101 #define QERR_DEVICE_NO_BUS \
102 -1, "{ 'class': 'DeviceNoBus', 'data': { 'device': %s } }"
104 #define QERR_DEVICE_NO_HOTPLUG \
105 -1, "{ 'class': 'DeviceNoHotplug', 'data': { 'device': %s } }"
107 #define QERR_DEVICE_NOT_ACTIVE \
108 -1, "{ 'class': 'DeviceNotActive', 'data': { 'device': %s } }"
110 #define QERR_DEVICE_NOT_ENCRYPTED \
111 -1, "{ 'class': 'DeviceNotEncrypted', 'data': { 'device': %s } }"
113 #define QERR_DEVICE_NOT_FOUND \
114 -1, "{ 'class': 'DeviceNotFound', 'data': { 'device': %s } }"
116 #define QERR_DEVICE_NOT_REMOVABLE \
117 -1, "{ 'class': 'DeviceNotRemovable', 'data': { 'device': %s } }"
119 #define QERR_DUPLICATE_ID \
120 -1, "{ 'class': 'DuplicateId', 'data': { 'id': %s, 'object': %s } }"
122 #define QERR_FD_NOT_FOUND \
123 -1, "{ 'class': 'FdNotFound', 'data': { 'name': %s } }"
125 #define QERR_FD_NOT_SUPPLIED \
126 -1, "{ 'class': 'FdNotSupplied', 'data': {} }"
128 #define QERR_FEATURE_DISABLED \
129 -1, "{ 'class': 'FeatureDisabled', 'data': { 'name': %s } }"
131 #define QERR_INVALID_BLOCK_FORMAT \
132 -1, "{ 'class': 'InvalidBlockFormat', 'data': { 'name': %s } }"
134 #define QERR_INVALID_OPTION_GROUP \
135 -1, "{ 'class': 'InvalidOptionGroup', 'data': { 'group': %s } }"
137 #define QERR_INVALID_PARAMETER \
138 -1, "{ 'class': 'InvalidParameter', 'data': { 'name': %s } }"
140 #define QERR_INVALID_PARAMETER_COMBINATION \
141 -1, "{ 'class': 'InvalidParameterCombination', 'data': {} }"
143 #define QERR_INVALID_PARAMETER_TYPE \
144 -1, "{ 'class': 'InvalidParameterType', 'data': { 'name': %s,'expected': %s } }"
146 #define QERR_INVALID_PARAMETER_VALUE \
147 -1, "{ 'class': 'InvalidParameterValue', 'data': { 'name': %s, 'expected': %s } }"
149 #define QERR_INVALID_PASSWORD \
150 -1, "{ 'class': 'InvalidPassword', 'data': {} }"
152 #define QERR_IO_ERROR \
153 -1, "{ 'class': 'IOError', 'data': {} }"
155 #define QERR_JSON_PARSE_ERROR \
156 -1, "{ 'class': 'JSONParseError', 'data': { 'message': %s } }"
158 #define QERR_JSON_PARSING \
159 -1, "{ 'class': 'JSONParsing', 'data': {} }"
161 #define QERR_KVM_MISSING_CAP \
162 -1, "{ 'class': 'KVMMissingCap', 'data': { 'capability': %s, 'feature': %s } }"
164 #define QERR_MIGRATION_ACTIVE \
165 -1, "{ 'class': 'MigrationActive', 'data': {} }"
167 #define QERR_MIGRATION_NOT_SUPPORTED \
168 -1, "{ 'class': 'MigrationNotSupported', 'data': {'device': %s} }"
170 #define QERR_MIGRATION_EXPECTED \
171 -1, "{ 'class': 'MigrationExpected', 'data': {} }"
173 #define QERR_MISSING_PARAMETER \
174 -1, "{ 'class': 'MissingParameter', 'data': { 'name': %s } }"
176 #define QERR_NO_BUS_FOR_DEVICE \
177 -1, "{ 'class': 'NoBusForDevice', 'data': { 'device': %s, 'bus': %s } }"
179 #define QERR_NOT_SUPPORTED \
180 -1, "{ 'class': 'NotSupported', 'data': {} }"
182 #define QERR_OPEN_FILE_FAILED \
183 -1, "{ 'class': 'OpenFileFailed', 'data': { 'filename': %s } }"
185 #define QERR_PERMISSION_DENIED \
186 -1, "{ 'class': 'PermissionDenied', 'data': {} }"
188 #define QERR_PROPERTY_NOT_FOUND \
189 -1, "{ 'class': 'PropertyNotFound', 'data': { 'device': %s, 'property': %s } }"
191 #define QERR_PROPERTY_VALUE_BAD \
192 -1, "{ 'class': 'PropertyValueBad', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
194 #define QERR_PROPERTY_VALUE_IN_USE \
195 -1, "{ 'class': 'PropertyValueInUse', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
197 #define QERR_PROPERTY_VALUE_NOT_FOUND \
198 -1, "{ 'class': 'PropertyValueNotFound', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
200 #define QERR_PROPERTY_VALUE_NOT_POWER_OF_2 \
201 -1, "{ 'class': 'PropertyValueNotPowerOf2', 'data': { " \
202 "'device': %s, 'property': %s, 'value': %"PRId64" } }"
204 #define QERR_PROPERTY_VALUE_OUT_OF_RANGE \
205 -1, "{ 'class': 'PropertyValueOutOfRange', 'data': { 'device': %s, 'property': %s, 'value': %"PRId64", 'min': %"PRId64", 'max': %"PRId64" } }"
207 #define QERR_QGA_COMMAND_FAILED \
208 -1, "{ 'class': 'QgaCommandFailed', 'data': { 'message': %s } }"
210 #define QERR_QGA_LOGGING_FAILED \
211 -1, "{ 'class': 'QgaLoggingFailed', 'data': {} }"
213 #define QERR_QMP_BAD_INPUT_OBJECT \
214 -1, "{ 'class': 'QMPBadInputObject', 'data': { 'expected': %s } }"
216 #define QERR_QMP_BAD_INPUT_OBJECT_MEMBER \
217 -1, "{ 'class': 'QMPBadInputObjectMember', 'data': { 'member': %s, 'expected': %s } }"
219 #define QERR_QMP_EXTRA_MEMBER \
220 -1, "{ 'class': 'QMPExtraInputObjectMember', 'data': { 'member': %s } }"
222 #define QERR_RESET_REQUIRED \
223 -1, "{ 'class': 'ResetRequired', 'data': {} }"
225 #define QERR_SET_PASSWD_FAILED \
226 -1, "{ 'class': 'SetPasswdFailed', 'data': {} }"
228 #define QERR_TOO_MANY_FILES \
229 -1, "{ 'class': 'TooManyFiles', 'data': {} }"
231 #define QERR_UNDEFINED_ERROR \
232 -1, "{ 'class': 'UndefinedError', 'data': {} }"
234 #define QERR_UNKNOWN_BLOCK_FORMAT_FEATURE \
235 -1, "{ 'class': 'UnknownBlockFormatFeature', 'data': { 'device': %s, 'format': %s, 'feature': %s } }"
237 #define QERR_UNSUPPORTED \
238 -1, "{ 'class': 'Unsupported', 'data': {} }"
240 #define QERR_VIRTFS_FEATURE_BLOCKS_MIGRATION \
241 -1, "{ 'class': 'VirtFSFeatureBlocksMigration', 'data': { 'path': %s, 'tag': %s } }"
243 #define QERR_VNC_SERVER_FAILED \
244 -1, "{ 'class': 'VNCServerFailed', 'data': { 'target': %s } }"
246 #define QERR_SOCKET_CONNECT_FAILED \
247 -1, "{ 'class': 'SockConnectFailed', 'data': {} }"
249 #define QERR_SOCKET_LISTEN_FAILED \
250 -1, "{ 'class': 'SockListenFailed', 'data': {} }"
252 #define QERR_SOCKET_BIND_FAILED \
253 -1, "{ 'class': 'SockBindFailed', 'data': {} }"
255 #define QERR_SOCKET_CREATE_FAILED \
256 -1, "{ 'class': 'SockCreateFailed', 'data': {} }"
258 #endif /* QERROR_H */