]> git.proxmox.com Git - qemu.git/blame - util/error.c
qapi: Introduce enum BlockJobType
[qemu.git] / util / error.c
CommitLineData
d5ec4f27
LC
1/*
2 * QEMU Error Objects
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
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.
11 */
e4ea5e2d
SW
12
13#include "qemu-common.h"
7b1b5d19
PB
14#include "qapi/error.h"
15#include "qapi/qmp/qjson.h"
16#include "qapi/qmp/qdict.h"
13f59ae8 17#include "qapi-types.h"
7b1b5d19 18#include "qapi/qmp/qerror.h"
d5ec4f27
LC
19
20struct Error
21{
d5ec4f27 22 char *msg;
13f59ae8 23 ErrorClass err_class;
d5ec4f27
LC
24};
25
13f59ae8 26void error_set(Error **errp, ErrorClass err_class, const char *fmt, ...)
d5ec4f27
LC
27{
28 Error *err;
29 va_list ap;
30
31 if (errp == NULL) {
32 return;
33 }
d195325b 34 assert(*errp == NULL);
d5ec4f27 35
7267c094 36 err = g_malloc0(sizeof(*err));
d5ec4f27
LC
37
38 va_start(ap, fmt);
df1e608a 39 err->msg = g_strdup_vprintf(fmt, ap);
d5ec4f27 40 va_end(ap);
13f59ae8 41 err->err_class = err_class;
d5ec4f27
LC
42
43 *errp = err;
44}
45
680d16dc
PB
46void error_set_errno(Error **errp, int os_errno, ErrorClass err_class,
47 const char *fmt, ...)
48{
49 Error *err;
50 char *msg1;
51 va_list ap;
52
53 if (errp == NULL) {
54 return;
55 }
56 assert(*errp == NULL);
57
58 err = g_malloc0(sizeof(*err));
59
60 va_start(ap, fmt);
61 msg1 = g_strdup_vprintf(fmt, ap);
62 if (os_errno != 0) {
63 err->msg = g_strdup_printf("%s: %s", msg1, strerror(os_errno));
64 g_free(msg1);
65 } else {
66 err->msg = msg1;
67 }
68 va_end(ap);
69 err->err_class = err_class;
70
71 *errp = err;
72}
73
54028d75
LC
74void error_setg_file_open(Error **errp, int os_errno, const char *filename)
75{
76 error_setg_errno(errp, os_errno, "Could not open '%s'", filename);
77}
78
20840d4c
TS
79#ifdef _WIN32
80
81void error_set_win32(Error **errp, int win32_err, ErrorClass err_class,
82 const char *fmt, ...)
83{
84 Error *err;
85 char *msg1;
86 va_list ap;
87
88 if (errp == NULL) {
89 return;
90 }
91 assert(*errp == NULL);
92
93 err = g_malloc0(sizeof(*err));
94
95 va_start(ap, fmt);
96 msg1 = g_strdup_vprintf(fmt, ap);
97 if (win32_err != 0) {
98 char *msg2 = g_win32_error_message(win32_err);
99 err->msg = g_strdup_printf("%s: %s (error: %x)", msg1, msg2,
100 (unsigned)win32_err);
101 g_free(msg2);
102 g_free(msg1);
103 } else {
104 err->msg = msg1;
105 }
106 va_end(ap);
107 err->err_class = err_class;
108
109 *errp = err;
110}
111
112#endif
113
79020cfc
LC
114Error *error_copy(const Error *err)
115{
116 Error *err_new;
117
118 err_new = g_malloc0(sizeof(*err));
119 err_new->msg = g_strdup(err->msg);
13f59ae8 120 err_new->err_class = err->err_class;
79020cfc
LC
121
122 return err_new;
123}
124
d5ec4f27
LC
125bool error_is_set(Error **errp)
126{
127 return (errp && *errp);
128}
129
ea25fbca
LC
130ErrorClass error_get_class(const Error *err)
131{
132 return err->err_class;
133}
134
d5ec4f27
LC
135const char *error_get_pretty(Error *err)
136{
d5ec4f27
LC
137 return err->msg;
138}
139
d5ec4f27
LC
140void error_free(Error *err)
141{
142 if (err) {
7267c094
AL
143 g_free(err->msg);
144 g_free(err);
d5ec4f27
LC
145 }
146}
147
d5ec4f27
LC
148void error_propagate(Error **dst_err, Error *local_err)
149{
d195325b 150 if (dst_err && !*dst_err) {
d5ec4f27
LC
151 *dst_err = local_err;
152 } else if (local_err) {
153 error_free(local_err);
154 }
155}