scsi-disk: Remove duplicate cdb parsing
[qemu/ar7.git] / qerror.h
blob943a24b4e5b2142d00c409ea958c2faf9cd047c8
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 <stdarg.h>
20 typedef struct QErrorStringTable {
21 const char *desc;
22 const char *error_fmt;
23 } QErrorStringTable;
25 typedef struct QError {
26 QObject_HEAD;
27 QDict *error;
28 Location loc;
29 int linenr;
30 const char *file;
31 const char *func;
32 const QErrorStringTable *entry;
33 } QError;
35 QError *qerror_new(void);
36 QError *qerror_from_info(const char *file, int linenr, const char *func,
37 const char *fmt, va_list *va) GCC_FMT_ATTR(4, 0);
38 QString *qerror_human(const QError *qerror);
39 void qerror_print(QError *qerror);
40 void qerror_report_internal(const char *file, int linenr, const char *func,
41 const char *fmt, ...) GCC_FMT_ATTR(4, 5);
42 #define qerror_report(fmt, ...) \
43 qerror_report_internal(__FILE__, __LINE__, __func__, fmt, ## __VA_ARGS__)
44 QError *qobject_to_qerror(const QObject *obj);
47 * QError class list
48 * Please keep the definitions in alphabetical order.
49 * Use "grep '^#define QERR_' qerror.h | sort -c" to check.
51 #define QERR_BAD_BUS_FOR_DEVICE \
52 "{ 'class': 'BadBusForDevice', 'data': { 'device': %s, 'bad_bus_type': %s } }"
54 #define QERR_BUS_NOT_FOUND \
55 "{ 'class': 'BusNotFound', 'data': { 'bus': %s } }"
57 #define QERR_BUS_NO_HOTPLUG \
58 "{ 'class': 'BusNoHotplug', 'data': { 'bus': %s } }"
60 #define QERR_COMMAND_NOT_FOUND \
61 "{ 'class': 'CommandNotFound', 'data': { 'name': %s } }"
63 #define QERR_DEVICE_ENCRYPTED \
64 "{ 'class': 'DeviceEncrypted', 'data': { 'device': %s } }"
66 #define QERR_DEVICE_INIT_FAILED \
67 "{ 'class': 'DeviceInitFailed', 'data': { 'device': %s } }"
69 #define QERR_DEVICE_IN_USE \
70 "{ 'class': 'DeviceInUse', 'data': { 'device': %s } }"
72 #define QERR_DEVICE_LOCKED \
73 "{ 'class': 'DeviceLocked', 'data': { 'device': %s } }"
75 #define QERR_DEVICE_MULTIPLE_BUSSES \
76 "{ 'class': 'DeviceMultipleBusses', 'data': { 'device': %s } }"
78 #define QERR_DEVICE_NOT_ACTIVE \
79 "{ 'class': 'DeviceNotActive', 'data': { 'device': %s } }"
81 #define QERR_DEVICE_NOT_ENCRYPTED \
82 "{ 'class': 'DeviceNotEncrypted', 'data': { 'device': %s } }"
84 #define QERR_DEVICE_NOT_FOUND \
85 "{ 'class': 'DeviceNotFound', 'data': { 'device': %s } }"
87 #define QERR_DEVICE_NOT_REMOVABLE \
88 "{ 'class': 'DeviceNotRemovable', 'data': { 'device': %s } }"
90 #define QERR_DEVICE_NO_BUS \
91 "{ 'class': 'DeviceNoBus', 'data': { 'device': %s } }"
93 #define QERR_DUPLICATE_ID \
94 "{ 'class': 'DuplicateId', 'data': { 'id': %s, 'object': %s } }"
96 #define QERR_FD_NOT_FOUND \
97 "{ 'class': 'FdNotFound', 'data': { 'name': %s } }"
99 #define QERR_FD_NOT_SUPPLIED \
100 "{ 'class': 'FdNotSupplied', 'data': {} }"
102 #define QERR_INVALID_BLOCK_FORMAT \
103 "{ 'class': 'InvalidBlockFormat', 'data': { 'name': %s } }"
105 #define QERR_INVALID_PARAMETER \
106 "{ 'class': 'InvalidParameter', 'data': { 'name': %s } }"
108 #define QERR_INVALID_PARAMETER_TYPE \
109 "{ 'class': 'InvalidParameterType', 'data': { 'name': %s,'expected': %s } }"
111 #define QERR_INVALID_PARAMETER_VALUE \
112 "{ 'class': 'InvalidParameterValue', 'data': { 'name': %s, 'expected': %s } }"
114 #define QERR_INVALID_PASSWORD \
115 "{ 'class': 'InvalidPassword', 'data': {} }"
117 #define QERR_JSON_PARSING \
118 "{ 'class': 'JSONParsing', 'data': {} }"
120 #define QERR_KVM_MISSING_CAP \
121 "{ 'class': 'KVMMissingCap', 'data': { 'capability': %s, 'feature': %s } }"
123 #define QERR_MIGRATION_EXPECTED \
124 "{ 'class': 'MigrationExpected', 'data': {} }"
126 #define QERR_MISSING_PARAMETER \
127 "{ 'class': 'MissingParameter', 'data': { 'name': %s } }"
129 #define QERR_NO_BUS_FOR_DEVICE \
130 "{ 'class': 'NoBusForDevice', 'data': { 'device': %s, 'bus': %s } }"
132 #define QERR_OPEN_FILE_FAILED \
133 "{ 'class': 'OpenFileFailed', 'data': { 'filename': %s } }"
135 #define QERR_PROPERTY_NOT_FOUND \
136 "{ 'class': 'PropertyNotFound', 'data': { 'device': %s, 'property': %s } }"
138 #define QERR_PROPERTY_VALUE_BAD \
139 "{ 'class': 'PropertyValueBad', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
141 #define QERR_PROPERTY_VALUE_IN_USE \
142 "{ 'class': 'PropertyValueInUse', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
144 #define QERR_PROPERTY_VALUE_NOT_FOUND \
145 "{ 'class': 'PropertyValueNotFound', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
147 #define QERR_QMP_BAD_INPUT_OBJECT \
148 "{ 'class': 'QMPBadInputObject', 'data': { 'expected': %s } }"
150 #define QERR_QMP_BAD_INPUT_OBJECT_MEMBER \
151 "{ 'class': 'QMPBadInputObjectMember', 'data': { 'member': %s, 'expected': %s } }"
153 #define QERR_QMP_EXTRA_MEMBER \
154 "{ 'class': 'QMPExtraInputObjectMember', 'data': { 'member': %s } }"
156 #define QERR_SET_PASSWD_FAILED \
157 "{ 'class': 'SetPasswdFailed', 'data': {} }"
159 #define QERR_TOO_MANY_FILES \
160 "{ 'class': 'TooManyFiles', 'data': {} }"
162 #define QERR_UNDEFINED_ERROR \
163 "{ 'class': 'UndefinedError', 'data': {} }"
165 #define QERR_VNC_SERVER_FAILED \
166 "{ 'class': 'VNCServerFailed', 'data': { 'target': %s } }"
168 #endif /* QERROR_H */