4 * Copyright (C) 2009 Red Hat Inc.
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.
19 typedef struct QErrorStringTable
{
21 const char *error_fmt
;
24 typedef struct QError
{
30 const QErrorStringTable
*entry
;
33 QError
*qerror_new(void);
34 QError
*qerror_from_info(const char *file
, int linenr
, const char *func
,
35 const char *fmt
, va_list *va
);
36 QString
*qerror_human(const QError
*qerror
);
37 void qerror_print(const QError
*qerror
);
38 QError
*qobject_to_qerror(const QObject
*obj
);
43 #define QERR_COMMAND_NOT_FOUND \
44 "{ 'class': 'CommandNotFound', 'data': { 'name': %s } }"
46 #define QERR_DEVICE_ENCRYPTED \
47 "{ 'class': 'DeviceEncrypted', 'data': { 'device': %s } }"
49 #define QERR_DEVICE_LOCKED \
50 "{ 'class': 'DeviceLocked', 'data': { 'device': %s } }"
52 #define QERR_DEVICE_NOT_ACTIVE \
53 "{ 'class': 'DeviceNotActive', 'data': { 'device': %s } }"
55 #define QERR_DEVICE_NOT_FOUND \
56 "{ 'class': 'DeviceNotFound', 'data': { 'device': %s } }"
58 #define QERR_DEVICE_NOT_REMOVABLE \
59 "{ 'class': 'DeviceNotRemovable', 'data': { 'device': %s } }"
61 #define QERR_FD_NOT_FOUND \
62 "{ 'class': 'FdNotFound', 'data': { 'name': %s } }"
64 #define QERR_FD_NOT_SUPPLIED \
65 "{ 'class': 'FdNotSupplied', 'data': {} }"
67 #define QERR_INVALID_BLOCK_FORMAT \
68 "{ 'class': 'InvalidBlockFormat', 'data': { 'name': %s } }"
70 #define QERR_INVALID_PARAMETER \
71 "{ 'class': 'InvalidParameter', 'data': { 'name': %s } }"
73 #define QERR_INVALID_PARAMETER_TYPE \
74 "{ 'class': 'InvalidParameterType', 'data': { 'name': %s,'expected': %s } }"
76 #define QERR_INVALID_PASSWORD \
77 "{ 'class': 'InvalidPassword', 'data': {} }"
79 #define QERR_JSON_PARSING \
80 "{ 'class': 'JSONParsing', 'data': {} }"
82 #define QERR_KVM_MISSING_CAP \
83 "{ 'class': 'KVMMissingCap', 'data': { 'capability': %s, 'feature': %s } }"
85 #define QERR_MISSING_PARAMETER \
86 "{ 'class': 'MissingParameter', 'data': { 'name': %s } }"
88 #define QERR_QMP_BAD_INPUT_OBJECT \
89 "{ 'class': 'QMPBadInputObject', 'data': { 'expected': %s } }"
91 #define QERR_SET_PASSWD_FAILED \
92 "{ 'class': 'SetPasswdFailed', 'data': {} }"
94 #define QERR_UNDEFINED_ERROR \
95 "{ 'class': 'UndefinedError', 'data': {} }"
97 #define QERR_TOO_MANY_FILES \
98 "{ 'class': 'TooManyFiles', 'data': {} }"
100 #define QERR_VNC_SERVER_FAILED \
101 "{ 'class': 'VNCServerFailed', 'data': { 'target': %s } }"
103 #endif /* QERROR_H */