4 * Copyright (C) 2010 Red Hat Inc.
7 * Markus Armbruster <armbru@redhat.com>,
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
18 * Print to current monitor if we have one, else to stderr.
19 * TODO should return int, so callers can calculate width, but that
20 * requires surgery to monitor_vprintf(). Left for another day.
22 void error_vprintf(const char *fmt
, va_list ap
)
25 monitor_vprintf(cur_mon
, fmt
, ap
);
27 vfprintf(stderr
, fmt
, ap
);
32 * Print to current monitor if we have one, else to stderr.
33 * TODO just like error_vprintf()
35 void error_printf(const char *fmt
, ...)
40 error_vprintf(fmt
, ap
);
44 void error_printf_unless_qmp(const char *fmt
, ...)
48 if (!monitor_cur_is_qmp()) {
50 error_vprintf(fmt
, ap
);
55 static Location std_loc
= {
58 static Location
*cur_loc
= &std_loc
;
61 * Push location saved in LOC onto the location stack, return it.
62 * The top of that stack is the current location.
63 * Needs a matching loc_pop().
65 Location
*loc_push_restore(Location
*loc
)
74 * Initialize *LOC to "nowhere", push it onto the location stack.
75 * The top of that stack is the current location.
76 * Needs a matching loc_pop().
79 Location
*loc_push_none(Location
*loc
)
83 return loc_push_restore(loc
);
87 * Pop the location stack.
88 * LOC must be the current location, i.e. the top of the stack.
90 Location
*loc_pop(Location
*loc
)
92 assert(cur_loc
== loc
&& loc
->prev
);
99 * Save the current location in LOC, return LOC.
101 Location
*loc_save(Location
*loc
)
109 * Change the current location to the one saved in LOC.
111 void loc_restore(Location
*loc
)
113 Location
*prev
= cur_loc
->prev
;
116 cur_loc
->prev
= prev
;
120 * Change the current location to "nowhere in particular".
122 void loc_set_none(void)
124 cur_loc
->kind
= LOC_NONE
;
128 * Change the current location to argument ARGV[IDX..IDX+CNT-1].
130 void loc_set_cmdline(char **argv
, int idx
, int cnt
)
132 cur_loc
->kind
= LOC_CMDLINE
;
134 cur_loc
->ptr
= argv
+ idx
;
138 * Change the current location to file FNAME, line LNO.
140 void loc_set_file(const char *fname
, int lno
)
142 assert (fname
|| cur_loc
->kind
== LOC_FILE
);
143 cur_loc
->kind
= LOC_FILE
;
146 cur_loc
->ptr
= fname
;
150 static const char *progname
;
153 * Set the program name for error_print_loc().
155 void error_set_progname(const char *argv0
)
157 const char *p
= strrchr(argv0
, '/');
158 progname
= p
? p
+ 1 : argv0
;
162 * Print current location to current monitor if we have one, else to stderr.
164 void error_print_loc(void)
166 const char *sep
= "";
168 const char *const *argp
;
170 if (!cur_mon
&& progname
) {
171 fprintf(stderr
, "%s:", progname
);
174 switch (cur_loc
->kind
) {
177 for (i
= 0; i
< cur_loc
->num
; i
++) {
178 error_printf("%s%s", sep
, argp
[i
]);
184 error_printf("%s:", (const char *)cur_loc
->ptr
);
186 error_printf("%d:", cur_loc
->num
);
191 error_printf("%s", sep
);
196 * Print an error message to current monitor if we have one, else to stderr.
197 * Prepend the current location and append a newline.
198 * It's wrong to call this in a QMP monitor. Use qerror_report() there.
200 void error_report(const char *fmt
, ...)
206 error_vprintf(fmt
, ap
);