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 static Location std_loc
= {
47 static Location
*cur_loc
= &std_loc
;
50 * Push location saved in LOC onto the location stack, return it.
51 * The top of that stack is the current location.
52 * Needs a matching loc_pop().
54 Location
*loc_push_restore(Location
*loc
)
63 * Initialize *LOC to "nowhere", push it onto the location stack.
64 * The top of that stack is the current location.
65 * Needs a matching loc_pop().
68 Location
*loc_push_none(Location
*loc
)
72 return loc_push_restore(loc
);
76 * Pop the location stack.
77 * LOC must be the current location, i.e. the top of the stack.
79 Location
*loc_pop(Location
*loc
)
81 assert(cur_loc
== loc
&& loc
->prev
);
88 * Save the current location in LOC, return LOC.
90 Location
*loc_save(Location
*loc
)
98 * Change the current location to the one saved in LOC.
100 void loc_restore(Location
*loc
)
102 Location
*prev
= cur_loc
->prev
;
105 cur_loc
->prev
= prev
;
109 * Change the current location to "nowhere in particular".
111 void loc_set_none(void)
113 cur_loc
->kind
= LOC_NONE
;
117 * Print current location to current monitor if we have one, else to stderr.
119 void error_print_loc(void)
121 switch (cur_loc
->kind
) {
127 * Print an error message to current monitor if we have one, else to stderr.
128 * Prepend the current location and append a newline.
129 * It's wrong to call this in a QMP monitor. Use qerror_report() there.
131 void error_report(const char *fmt
, ...)
137 error_vprintf(fmt
, ap
);
142 void qerror_report_internal(const char *file
, int linenr
, const char *func
,
143 const char *fmt
, ...)
149 qerror
= qerror_from_info(file
, linenr
, func
, fmt
, &va
);
153 monitor_set_error(cur_mon
, qerror
);
155 qerror_print(qerror
);