qdev-monitor: Convert qbus_find() to Error
[qemu.git] / include / qapi / qmp / qerror.h
blob6468e40098ab517d522875bbd6c7aa385cfd043d
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 "qapi/qmp/qstring.h"
16 #include "qemu/error-report.h"
17 #include "qapi/error.h"
18 #include "qapi-types.h"
19 #include <stdarg.h>
21 typedef struct QError {
22 QObject_HEAD;
23 Location loc;
24 char *err_msg;
25 ErrorClass err_class;
26 } QError;
28 QString *qerror_human(const QError *qerror);
29 void qerror_report(ErrorClass err_class, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
30 void qerror_report_err(Error *err);
33 * QError class list
34 * Please keep the definitions in alphabetical order.
35 * Use scripts/check-qerror.sh to check.
37 #define QERR_BASE_NOT_FOUND \
38 ERROR_CLASS_GENERIC_ERROR, "Base '%s' not found"
40 #define QERR_BLOCK_JOB_NOT_READY \
41 ERROR_CLASS_GENERIC_ERROR, "The active block job for device '%s' cannot be completed"
43 #define QERR_BUS_NO_HOTPLUG \
44 ERROR_CLASS_GENERIC_ERROR, "Bus '%s' does not support hotplugging"
46 #define QERR_DEVICE_HAS_NO_MEDIUM \
47 ERROR_CLASS_GENERIC_ERROR, "Device '%s' has no medium"
49 #define QERR_DEVICE_INIT_FAILED \
50 ERROR_CLASS_GENERIC_ERROR, "Device '%s' could not be initialized"
52 #define QERR_DEVICE_IN_USE \
53 ERROR_CLASS_GENERIC_ERROR, "Device '%s' is in use"
55 #define QERR_DEVICE_NO_HOTPLUG \
56 ERROR_CLASS_GENERIC_ERROR, "Device '%s' does not support hotplugging"
58 #define QERR_DEVICE_NOT_FOUND \
59 ERROR_CLASS_DEVICE_NOT_FOUND, "Device '%s' not found"
61 #define QERR_FD_NOT_FOUND \
62 ERROR_CLASS_GENERIC_ERROR, "File descriptor named '%s' not found"
64 #define QERR_FD_NOT_SUPPLIED \
65 ERROR_CLASS_GENERIC_ERROR, "No file descriptor supplied via SCM_RIGHTS"
67 #define QERR_FEATURE_DISABLED \
68 ERROR_CLASS_GENERIC_ERROR, "The feature '%s' is not enabled"
70 #define QERR_INVALID_BLOCK_FORMAT \
71 ERROR_CLASS_GENERIC_ERROR, "Invalid block format '%s'"
73 #define QERR_INVALID_PARAMETER \
74 ERROR_CLASS_GENERIC_ERROR, "Invalid parameter '%s'"
76 #define QERR_INVALID_PARAMETER_TYPE \
77 ERROR_CLASS_GENERIC_ERROR, "Invalid parameter type for '%s', expected: %s"
79 #define QERR_INVALID_PARAMETER_VALUE \
80 ERROR_CLASS_GENERIC_ERROR, "Parameter '%s' expects %s"
82 #define QERR_INVALID_PASSWORD \
83 ERROR_CLASS_GENERIC_ERROR, "Password incorrect"
85 #define QERR_IO_ERROR \
86 ERROR_CLASS_GENERIC_ERROR, "An IO error has occurred"
88 #define QERR_JSON_PARSING \
89 ERROR_CLASS_GENERIC_ERROR, "Invalid JSON syntax"
91 #define QERR_MIGRATION_ACTIVE \
92 ERROR_CLASS_GENERIC_ERROR, "There's a migration process in progress"
94 #define QERR_MISSING_PARAMETER \
95 ERROR_CLASS_GENERIC_ERROR, "Parameter '%s' is missing"
97 #define QERR_PERMISSION_DENIED \
98 ERROR_CLASS_GENERIC_ERROR, "Insufficient permission to perform this operation"
100 #define QERR_PROPERTY_VALUE_BAD \
101 ERROR_CLASS_GENERIC_ERROR, "Property '%s.%s' doesn't take value '%s'"
103 #define QERR_PROPERTY_VALUE_OUT_OF_RANGE \
104 ERROR_CLASS_GENERIC_ERROR, "Property %s.%s doesn't take value %" PRId64 " (minimum: %" PRId64 ", maximum: %" PRId64 ")"
106 #define QERR_QGA_COMMAND_FAILED \
107 ERROR_CLASS_GENERIC_ERROR, "Guest agent command failed, error was '%s'"
109 #define QERR_QMP_BAD_INPUT_OBJECT \
110 ERROR_CLASS_GENERIC_ERROR, "Expected '%s' in QMP input"
112 #define QERR_QMP_BAD_INPUT_OBJECT_MEMBER \
113 ERROR_CLASS_GENERIC_ERROR, "QMP input object member '%s' expects '%s'"
115 #define QERR_QMP_EXTRA_MEMBER \
116 ERROR_CLASS_GENERIC_ERROR, "QMP input object member '%s' is unexpected"
118 #define QERR_SET_PASSWD_FAILED \
119 ERROR_CLASS_GENERIC_ERROR, "Could not set password"
121 #define QERR_UNDEFINED_ERROR \
122 ERROR_CLASS_GENERIC_ERROR, "An undefined error has occurred"
124 #define QERR_UNKNOWN_BLOCK_FORMAT_FEATURE \
125 ERROR_CLASS_GENERIC_ERROR, "'%s' uses a %s feature which is not supported by this qemu version: %s"
127 #define QERR_UNSUPPORTED \
128 ERROR_CLASS_GENERIC_ERROR, "this feature or command is not currently supported"
130 #endif /* QERROR_H */