]> Git Repo - qemu.git/blob - qerror.h
error: Put error definitions back in alphabetical order
[qemu.git] / qerror.h
1 /*
2  * QError header file.
3  *
4  * Copyright (C) 2009 Red Hat Inc.
5  *
6  * Authors:
7  *  Luiz Capitulino <[email protected]>
8  *
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.
11  */
12 #ifndef QERROR_H
13 #define QERROR_H
14
15 #include "qdict.h"
16 #include "qstring.h"
17 #include "qemu-error.h"
18 #include <stdarg.h>
19
20 typedef struct QErrorStringTable {
21     const char *desc;
22     const char *error_fmt;
23 } QErrorStringTable;
24
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;
34
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);
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, ...)
42     __attribute__ ((format(printf, 4, 5)));
43 #define qerror_report(fmt, ...) \
44     qerror_report_internal(__FILE__, __LINE__, __func__, fmt, ## __VA_ARGS__)
45 QError *qobject_to_qerror(const QObject *obj);
46
47 /*
48  * QError class list
49  * Please keep the definitions in alphabetical order.
50  * Use "grep '^#define QERR_' qerror.h | sort -c" to check.
51  */
52 #define QERR_BAD_BUS_FOR_DEVICE \
53     "{ 'class': 'BadBusForDevice', 'data': { 'device': %s, 'bad_bus_type': %s } }"
54
55 #define QERR_BUS_NOT_FOUND \
56     "{ 'class': 'BusNotFound', 'data': { 'bus': %s } }"
57
58 #define QERR_BUS_NO_HOTPLUG \
59     "{ 'class': 'BusNoHotplug', 'data': { 'bus': %s } }"
60
61 #define QERR_COMMAND_NOT_FOUND \
62     "{ 'class': 'CommandNotFound', 'data': { 'name': %s } }"
63
64 #define QERR_DEVICE_ENCRYPTED \
65     "{ 'class': 'DeviceEncrypted', 'data': { 'device': %s } }"
66
67 #define QERR_DEVICE_INIT_FAILED \
68     "{ 'class': 'DeviceInitFailed', 'data': { 'device': %s } }"
69
70 #define QERR_DEVICE_LOCKED \
71     "{ 'class': 'DeviceLocked', 'data': { 'device': %s } }"
72
73 #define QERR_DEVICE_MULTIPLE_BUSSES \
74     "{ 'class': 'DeviceMultipleBusses', 'data': { 'device': %s } }"
75
76 #define QERR_DEVICE_NOT_ACTIVE \
77     "{ 'class': 'DeviceNotActive', 'data': { 'device': %s } }"
78
79 #define QERR_DEVICE_NOT_ENCRYPTED \
80     "{ 'class': 'DeviceNotEncrypted', 'data': { 'device': %s } }"
81
82 #define QERR_DEVICE_NOT_FOUND \
83     "{ 'class': 'DeviceNotFound', 'data': { 'device': %s } }"
84
85 #define QERR_DEVICE_NOT_REMOVABLE \
86     "{ 'class': 'DeviceNotRemovable', 'data': { 'device': %s } }"
87
88 #define QERR_DEVICE_NO_BUS \
89     "{ 'class': 'DeviceNoBus', 'data': { 'device': %s } }"
90
91 #define QERR_FD_NOT_FOUND \
92     "{ 'class': 'FdNotFound', 'data': { 'name': %s } }"
93
94 #define QERR_FD_NOT_SUPPLIED \
95     "{ 'class': 'FdNotSupplied', 'data': {} }"
96
97 #define QERR_INVALID_BLOCK_FORMAT \
98     "{ 'class': 'InvalidBlockFormat', 'data': { 'name': %s } }"
99
100 #define QERR_INVALID_PARAMETER \
101     "{ 'class': 'InvalidParameter', 'data': { 'name': %s } }"
102
103 #define QERR_INVALID_PARAMETER_TYPE \
104     "{ 'class': 'InvalidParameterType', 'data': { 'name': %s,'expected': %s } }"
105
106 #define QERR_INVALID_PASSWORD \
107     "{ 'class': 'InvalidPassword', 'data': {} }"
108
109 #define QERR_JSON_PARSING \
110     "{ 'class': 'JSONParsing', 'data': {} }"
111
112 #define QERR_KVM_MISSING_CAP \
113     "{ 'class': 'KVMMissingCap', 'data': { 'capability': %s, 'feature': %s } }"
114
115 #define QERR_MISSING_PARAMETER \
116     "{ 'class': 'MissingParameter', 'data': { 'name': %s } }"
117
118 #define QERR_NO_BUS_FOR_DEVICE \
119     "{ 'class': 'NoBusForDevice', 'data': { 'device': %s, 'bus': %s } }"
120
121 #define QERR_OPEN_FILE_FAILED \
122     "{ 'class': 'OpenFileFailed', 'data': { 'filename': %s } }"
123
124 #define QERR_PROPERTY_NOT_FOUND \
125     "{ 'class': 'PropertyNotFound', 'data': { 'device': %s, 'property': %s } }"
126
127 #define QERR_PROPERTY_VALUE_BAD \
128     "{ 'class': 'PropertyValueBad', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
129
130 #define QERR_PROPERTY_VALUE_IN_USE \
131     "{ 'class': 'PropertyValueInUse', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
132
133 #define QERR_PROPERTY_VALUE_NOT_FOUND \
134     "{ 'class': 'PropertyValueNotFound', 'data': { 'device': %s, 'property': %s, 'value': %s } }"
135
136 #define QERR_QMP_BAD_INPUT_OBJECT \
137     "{ 'class': 'QMPBadInputObject', 'data': { 'expected': %s } }"
138
139 #define QERR_SET_PASSWD_FAILED \
140     "{ 'class': 'SetPasswdFailed', 'data': {} }"
141
142 #define QERR_TOO_MANY_FILES \
143     "{ 'class': 'TooManyFiles', 'data': {} }"
144
145 #define QERR_UNDEFINED_ERROR \
146     "{ 'class': 'UndefinedError', 'data': {} }"
147
148 #define QERR_VNC_SERVER_FAILED \
149     "{ 'class': 'VNCServerFailed', 'data': { 'target': %s } }"
150
151 #endif /* QERROR_H */
This page took 0.032584 seconds and 4 git commands to generate.