4 * Copyright IBM, Corp. 2011
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2. See
10 * the COPYING.LIB file in the top-level directory.
15 #include "qemu/compiler.h"
16 #include "qapi-types.h"
20 * A class representing internal errors within QEMU. An error has a ErrorClass
21 * code and a human message.
23 typedef struct Error Error
;
26 * Set an indirect pointer to an error given a ErrorClass value and a
27 * printf-style human message. This function is not meant to be used outside
30 void error_set(Error
**errp
, ErrorClass err_class
, const char *fmt
, ...)
34 * Set an indirect pointer to an error given a ErrorClass value and a
35 * printf-style human message, followed by a strerror() string if
36 * @os_error is not zero.
38 void error_set_errno(Error
**errp
, int os_error
, ErrorClass err_class
,
39 const char *fmt
, ...) GCC_FMT_ATTR(4, 5);
43 * Set an indirect pointer to an error given a ErrorClass value and a
44 * printf-style human message, followed by a g_win32_error_message() string if
45 * @win32_err is not zero.
47 void error_set_win32(Error
**errp
, int win32_err
, ErrorClass err_class
,
48 const char *fmt
, ...) GCC_FMT_ATTR(4, 5);
52 * Same as error_set(), but sets a generic error
54 #define error_setg(errp, fmt, ...) \
55 error_set(errp, ERROR_CLASS_GENERIC_ERROR, fmt, ## __VA_ARGS__)
56 #define error_setg_errno(errp, os_error, fmt, ...) \
57 error_set_errno(errp, os_error, ERROR_CLASS_GENERIC_ERROR, \
60 #define error_setg_win32(errp, win32_err, fmt, ...) \
61 error_set_win32(errp, win32_err, ERROR_CLASS_GENERIC_ERROR, \
66 * Helper for open() errors
68 void error_setg_file_open(Error
**errp
, int os_errno
, const char *filename
);
71 * Get the error class of an error object.
73 ErrorClass
error_get_class(const Error
*err
);
76 * Returns an exact copy of the error passed as an argument.
78 Error
*error_copy(const Error
*err
);
81 * Get a human readable representation of an error object.
83 const char *error_get_pretty(Error
*err
);
86 * Convenience function to error_report() and free an error object.
88 void error_report_err(Error
*);
91 * Propagate an error to an indirect pointer to an error. This function will
92 * always transfer ownership of the error reference and handles the case where
93 * dst_err is NULL correctly. Errors after the first are discarded.
95 void error_propagate(Error
**dst_errp
, Error
*local_err
);
98 * Free an error object.
100 void error_free(Error
*err
);
103 * If passed to error_set and friends, abort().
106 extern Error
*error_abort
;