2 * QError: QEMU Error data-type.
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.
16 #include "qemu-common.h"
18 static void qerror_destroy_obj(QObject
*obj
);
20 static const QType qerror_type
= {
22 .destroy
= qerror_destroy_obj
,
26 * The 'desc' parameter is a printf-like string, the format of the format
31 * Where KEY is a QDict key, which has to be passed to qerror_from_info().
35 * "foo error on device: %(device) slot: %(slot_nr)"
37 * A single percent sign can be printed if followed by a second one,
40 * "running out of foo: %(foo)%%"
42 static const QErrorStringTable qerror_table
[] = {
44 .error_fmt
= QERR_COMMAND_NOT_FOUND
,
45 .desc
= "The command %(name) has not been found",
48 .error_fmt
= QERR_DEVICE_NOT_FOUND
,
49 .desc
= "The %(device) device has not been found",
52 .error_fmt
= QERR_DEVICE_NOT_ACTIVE
,
53 .desc
= "The %(device) device has not been activated by the guest",
56 .error_fmt
= QERR_INVALID_PARAMETER_TYPE
,
57 .desc
= "Invalid parameter type, expected: %(expected)",
60 .error_fmt
= QERR_INVALID_PASSWORD
,
61 .desc
= "The entered password is invalid",
64 .error_fmt
= QERR_KVM_MISSING_CAP
,
65 .desc
= "Using KVM without %(capability), %(feature) unavailable",
68 .error_fmt
= QERR_MISSING_PARAMETER
,
69 .desc
= "Parameter %(name) is missing",
72 .error_fmt
= QERR_QMP_BAD_INPUT_OBJECT
,
73 .desc
= "Bad QMP input object",
76 .error_fmt
= QERR_JSON_PARSING
,
77 .desc
= "Invalid JSON synaxt",
80 .error_fmt
= QERR_UNDEFINED_ERROR
,
81 .desc
= "An undefined error has ocurred",
87 * qerror_new(): Create a new QError
89 * Return strong reference.
91 QError
*qerror_new(void)
95 qerr
= qemu_mallocz(sizeof(*qerr
));
96 QOBJECT_INIT(qerr
, &qerror_type
);
101 static void qerror_abort(const QError
*qerr
, const char *fmt
, ...)
105 fprintf(stderr
, "qerror: bad call in function '%s':\n", qerr
->func
);
106 fprintf(stderr
, "qerror: -> ");
109 vfprintf(stderr
, fmt
, ap
);
112 fprintf(stderr
, "\nqerror: call at %s:%d\n", qerr
->file
, qerr
->linenr
);
116 static void qerror_set_data(QError
*qerr
, const char *fmt
, va_list *va
)
120 obj
= qobject_from_jsonv(fmt
, va
);
122 qerror_abort(qerr
, "invalid format '%s'", fmt
);
124 if (qobject_type(obj
) != QTYPE_QDICT
) {
125 qerror_abort(qerr
, "error format is not a QDict '%s'", fmt
);
128 qerr
->error
= qobject_to_qdict(obj
);
130 obj
= qdict_get(qerr
->error
, "class");
132 qerror_abort(qerr
, "missing 'class' key in '%s'", fmt
);
134 if (qobject_type(obj
) != QTYPE_QSTRING
) {
135 qerror_abort(qerr
, "'class' key value should be a QString");
138 obj
= qdict_get(qerr
->error
, "data");
140 qerror_abort(qerr
, "missing 'data' key in '%s'", fmt
);
142 if (qobject_type(obj
) != QTYPE_QDICT
) {
143 qerror_abort(qerr
, "'data' key value should be a QDICT");
147 static void qerror_set_desc(QError
*qerr
, const char *fmt
)
151 // FIXME: inefficient loop
153 for (i
= 0; qerror_table
[i
].error_fmt
; i
++) {
154 if (strcmp(qerror_table
[i
].error_fmt
, fmt
) == 0) {
155 qerr
->entry
= &qerror_table
[i
];
160 qerror_abort(qerr
, "error format '%s' not found", fmt
);
164 * qerror_from_info(): Create a new QError from error information
166 * The information consists of:
168 * - file the file name of where the error occurred
169 * - linenr the line number of where the error occurred
170 * - func the function name of where the error occurred
171 * - fmt JSON printf-like dictionary, there must exist keys 'class' and
173 * - va va_list of all arguments specified by fmt
175 * Return strong reference.
177 QError
*qerror_from_info(const char *file
, int linenr
, const char *func
,
178 const char *fmt
, va_list *va
)
183 qerr
->linenr
= linenr
;
188 qerror_abort(qerr
, "QDict not specified");
191 qerror_set_data(qerr
, fmt
, va
);
192 qerror_set_desc(qerr
, fmt
);
197 static void parse_error(const QError
*qerror
, int c
)
199 qerror_abort(qerror
, "expected '%c' in '%s'", c
, qerror
->entry
->desc
);
202 static const char *append_field(QString
*outstr
, const QError
*qerror
,
208 const char *end
, *key
;
211 parse_error(qerror
, '%');
214 parse_error(qerror
, '(');
217 end
= strchr(start
, ')');
219 parse_error(qerror
, ')');
221 key_qs
= qstring_from_substr(start
, 0, end
- start
- 1);
222 key
= qstring_get_str(key_qs
);
224 qdict
= qobject_to_qdict(qdict_get(qerror
->error
, "data"));
225 obj
= qdict_get(qdict
, key
);
227 qerror_abort(qerror
, "key '%s' not found in QDict", key
);
230 switch (qobject_type(obj
)) {
232 qstring_append(outstr
, qdict_get_str(qdict
, key
));
235 qstring_append_int(outstr
, qdict_get_int(qdict
, key
));
238 qerror_abort(qerror
, "invalid type '%c'", qobject_type(obj
));
246 * qerror_print(): Print QError data
248 * This function will print the member 'desc' of the specified QError object,
249 * it uses qemu_error() for this, so that the output is routed to the right
250 * place (ie. stderr or Monitor's device).
252 void qerror_print(const QError
*qerror
)
257 assert(qerror
->entry
!= NULL
);
259 qstring
= qstring_new();
261 for (p
= qerror
->entry
->desc
; *p
!= '\0';) {
263 qstring_append_chr(qstring
, *p
++);
264 } else if (*(p
+ 1) == '%') {
265 qstring_append_chr(qstring
, '%');
268 p
= append_field(qstring
, qerror
, p
);
272 qemu_error("%s\n", qstring_get_str(qstring
));
277 * qobject_to_qerror(): Convert a QObject into a QError
279 QError
*qobject_to_qerror(const QObject
*obj
)
281 if (qobject_type(obj
) != QTYPE_QERROR
) {
285 return container_of(obj
, QError
, base
);
289 * qerror_destroy_obj(): Free all memory allocated by a QError
291 static void qerror_destroy_obj(QObject
*obj
)
296 qerr
= qobject_to_qerror(obj
);
298 QDECREF(qerr
->error
);