move hw cursor pos from cirrus to vga
[qemu.git] / include / qapi / error.h
blobd712089f1ae1585e145e7c26755802bd0fe8302d
1 /*
2 * QEMU Error Objects
4 * Copyright IBM, Corp. 2011
6 * Authors:
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.
12 #ifndef ERROR_H
13 #define ERROR_H
15 #include "qemu/compiler.h"
16 #include "qapi-types.h"
17 #include <stdbool.h>
19 /**
20 * A class representing internal errors within QEMU. An error has a ErrorClass
21 * code and a human message.
23 typedef struct Error Error;
25 /**
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
28 * of QEMU.
30 void error_set(Error **errp, ErrorClass err_class, const char *fmt, ...)
31 GCC_FMT_ATTR(3, 4);
33 /**
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);
41 #ifdef _WIN32
42 /**
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);
49 #endif
51 /**
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, \
58 fmt, ## __VA_ARGS__)
59 #ifdef _WIN32
60 #define error_setg_win32(errp, win32_err, fmt, ...) \
61 error_set_win32(errp, win32_err, ERROR_CLASS_GENERIC_ERROR, \
62 fmt, ## __VA_ARGS__)
63 #endif
65 /**
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);
75 /**
76 * Returns an exact copy of the error passed as an argument.
78 Error *error_copy(const Error *err);
80 /**
81 * Get a human readable representation of an error object.
83 const char *error_get_pretty(Error *err);
85 /**
86 * Propagate an error to an indirect pointer to an error. This function will
87 * always transfer ownership of the error reference and handles the case where
88 * dst_err is NULL correctly. Errors after the first are discarded.
90 void error_propagate(Error **dst_errp, Error *local_err);
92 /**
93 * Free an error object.
95 void error_free(Error *err);
97 /**
98 * If passed to error_set and friends, abort().
101 extern Error *error_abort;
103 #endif