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 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_KVM_MISSING_CAP
,
61 .desc
= "Using KVM without %(capability), %(feature) unavailable",
64 .error_fmt
= QERR_MISSING_PARAMETER
,
65 .desc
= "Parameter %(name) is missing",
68 .error_fmt
= QERR_QMP_BAD_INPUT_OBJECT
,
69 .desc
= "Bad QMP input object",
72 .error_fmt
= QERR_JSON_PARSING
,
73 .desc
= "Invalid JSON synaxt",
76 .error_fmt
= QERR_UNDEFINED_ERROR
,
77 .desc
= "An undefined error has ocurred",
83 * qerror_new(): Create a new QError
85 * Return strong reference.
87 QError
*qerror_new(void)
91 qerr
= qemu_mallocz(sizeof(*qerr
));
92 QOBJECT_INIT(qerr
, &qerror_type
);
97 static void qerror_abort(const QError
*qerr
, const char *fmt
, ...)
101 fprintf(stderr
, "qerror: bad call in function '%s':\n", qerr
->func
);
102 fprintf(stderr
, "qerror: -> ");
105 vfprintf(stderr
, fmt
, ap
);
108 fprintf(stderr
, "\nqerror: call at %s:%d\n", qerr
->file
, qerr
->linenr
);
112 static void qerror_set_data(QError
*qerr
, const char *fmt
, va_list *va
)
116 obj
= qobject_from_jsonv(fmt
, va
);
118 qerror_abort(qerr
, "invalid format '%s'", fmt
);
120 if (qobject_type(obj
) != QTYPE_QDICT
) {
121 qerror_abort(qerr
, "error format is not a QDict '%s'", fmt
);
124 qerr
->error
= qobject_to_qdict(obj
);
126 obj
= qdict_get(qerr
->error
, "class");
128 qerror_abort(qerr
, "missing 'class' key in '%s'", fmt
);
130 if (qobject_type(obj
) != QTYPE_QSTRING
) {
131 qerror_abort(qerr
, "'class' key value should be a QString");
134 obj
= qdict_get(qerr
->error
, "data");
136 qerror_abort(qerr
, "missing 'data' key in '%s'", fmt
);
138 if (qobject_type(obj
) != QTYPE_QDICT
) {
139 qerror_abort(qerr
, "'data' key value should be a QDICT");
143 static void qerror_set_desc(QError
*qerr
, const char *fmt
)
147 // FIXME: inefficient loop
149 for (i
= 0; qerror_table
[i
].error_fmt
; i
++) {
150 if (strcmp(qerror_table
[i
].error_fmt
, fmt
) == 0) {
151 qerr
->entry
= &qerror_table
[i
];
156 qerror_abort(qerr
, "error format '%s' not found", fmt
);
160 * qerror_from_info(): Create a new QError from error information
162 * The information consists of:
164 * - file the file name of where the error occurred
165 * - linenr the line number of where the error occurred
166 * - func the function name of where the error occurred
167 * - fmt JSON printf-like dictionary, there must exist keys 'class' and
169 * - va va_list of all arguments specified by fmt
171 * Return strong reference.
173 QError
*qerror_from_info(const char *file
, int linenr
, const char *func
,
174 const char *fmt
, va_list *va
)
179 qerr
->linenr
= linenr
;
184 qerror_abort(qerr
, "QDict not specified");
187 qerror_set_data(qerr
, fmt
, va
);
188 qerror_set_desc(qerr
, fmt
);
193 static void parse_error(const QError
*qerror
, int c
)
195 qerror_abort(qerror
, "expected '%c' in '%s'", c
, qerror
->entry
->desc
);
198 static const char *append_field(QString
*outstr
, const QError
*qerror
,
204 const char *end
, *key
;
207 parse_error(qerror
, '%');
210 parse_error(qerror
, '(');
213 end
= strchr(start
, ')');
215 parse_error(qerror
, ')');
217 key_qs
= qstring_from_substr(start
, 0, end
- start
- 1);
218 key
= qstring_get_str(key_qs
);
220 qdict
= qobject_to_qdict(qdict_get(qerror
->error
, "data"));
221 obj
= qdict_get(qdict
, key
);
223 qerror_abort(qerror
, "key '%s' not found in QDict", key
);
226 switch (qobject_type(obj
)) {
228 qstring_append(outstr
, qdict_get_str(qdict
, key
));
231 qstring_append_int(outstr
, qdict_get_int(qdict
, key
));
234 qerror_abort(qerror
, "invalid type '%c'", qobject_type(obj
));
242 * qerror_print(): Print QError data
244 * This function will print the member 'desc' of the specified QError object,
245 * it uses qemu_error() for this, so that the output is routed to the right
246 * place (ie. stderr or Monitor's device).
248 void qerror_print(const QError
*qerror
)
253 assert(qerror
->entry
!= NULL
);
255 qstring
= qstring_new();
257 for (p
= qerror
->entry
->desc
; *p
!= '\0';) {
259 qstring_append_chr(qstring
, *p
++);
260 } else if (*(p
+ 1) == '%') {
261 qstring_append_chr(qstring
, '%');
264 p
= append_field(qstring
, qerror
, p
);
268 qemu_error("%s\n", qstring_get_str(qstring
));
273 * qobject_to_qerror(): Convert a QObject into a QError
275 QError
*qobject_to_qerror(const QObject
*obj
)
277 if (qobject_type(obj
) != QTYPE_QERROR
) {
281 return container_of(obj
, QError
, base
);
285 * qerror_destroy_obj(): Free all memory allocated by a QError
287 static void qerror_destroy_obj(QObject
*obj
)
292 qerr
= qobject_to_qerror(obj
);
294 QDECREF(qerr
->error
);