17#ifndef LIB_ERROR_REPORTER_H_
18#define LIB_ERROR_REPORTER_H_
24#include <unordered_map>
26#include <boost/format.hpp>
28#include "absl/strings/str_format.h"
29#include "bug_helper.h"
30#include "error_catalog.h"
31#include "error_helper.h"
32#include "exceptions.h"
35enum class DiagnosticAction {
49 unsigned int infoCount;
50 unsigned int warningCount;
51 unsigned int errorCount;
52 unsigned int maxErrorCount;
75 if (!source.isValid())
return false;
89 defaultInfoDiagnosticAction(DiagnosticAction::Info),
90 defaultWarningDiagnosticAction(DiagnosticAction::Warn) {
95 template <
typename... Args>
96 std::string bug_message(
const char *format, Args &&...args) {
97 boost::format fmt(format);
100 return ::bug_helper(fmt,
"",
"", std::forward<Args>(args)...);
103 template <
typename... Args>
104 std::string format_message(
const char *format, Args &&...args) {
105 boost::format fmt(format);
106 return ::error_helper(fmt, std::forward<Args>(args)...).toString();
109 template <class T, typename = decltype(std::declval<T>()->getSourceInfo()),
typename... Args>
110 void diagnose(DiagnosticAction action,
const int errorCode,
const char *format,
111 const char *suffix, T node, Args &&...args) {
112 if (!node ||
error_reported(errorCode, node->getSourceInfo()))
return;
116 std::forward<Args>(args)...);
118 diagnose(action,
nullptr, format, suffix, node, std::forward<Args>(args)...);
121 template <
typename... Args>
122 void diagnose(DiagnosticAction action,
const int errorCode,
const char *format,
123 const char *suffix, Args &&...args) {
126 std::forward<Args>(args)...);
128 diagnose(action,
nullptr, format, suffix, std::forward<Args>(args)...);
133 template <
typename... Args>
134 void diagnose(DiagnosticAction action,
const char *diagnosticName,
const char *format,
135 const char *suffix, Args &&...args) {
136 if (action == DiagnosticAction::Ignore)
return;
138 ErrorMessage::MessageType msgType = ErrorMessage::MessageType::None;
139 if (action == DiagnosticAction::Info) {
142 if (errorCount > 0)
return;
145 msgType = ErrorMessage::MessageType::Info;
146 }
else if (action == DiagnosticAction::Warn) {
149 if (errorCount > 0)
return;
152 msgType = ErrorMessage::MessageType::Warning;
153 }
else if (action == DiagnosticAction::Error) {
155 msgType = ErrorMessage::MessageType::Error;
158 boost::format fmt(format);
159 ErrorMessage msg(msgType, diagnosticName ? diagnosticName :
"", suffix);
160 msg = ::error_helper(fmt, msg, std::forward<Args>(args)...);
163 if (errorCount > maxErrorCount)
164 FATAL_ERROR(
"Number of errors exceeded set maximum of %1%", maxErrorCount);
167 unsigned getErrorCount()
const {
return errorCount; }
169 unsigned getMaxErrorCount()
const {
return maxErrorCount; }
172 auto r = maxErrorCount;
173 maxErrorCount = newMaxCount;
177 unsigned getWarningCount()
const {
return warningCount; }
179 unsigned getInfoCount()
const {
return infoCount; }
185 void setOutputStream(std::ostream *stream) {
outputstream = stream; }
187 std::ostream *getOutputStream()
const {
return outputstream; }
191 template <
typename T>
194 std::stringstream ss;
206 template <
typename... Args>
216 if (!absl::FormatUntyped(&message, absl::UntypedFormatSpec(fmt),
217 {absl::FormatArg(args)...})) {
218 BUG(
"Failed to format string");
228 if (defaultAction == DiagnosticAction::Error)
return defaultAction;
229 auto it = diagnosticActions.find(diagnostic);
230 if (it != diagnosticActions.end())
return it->second;
233 if (defaultAction == DiagnosticAction::Warn &&
234 defaultWarningDiagnosticAction != DiagnosticAction::Warn)
235 return defaultWarningDiagnosticAction;
236 return defaultAction;
241 diagnosticActions[
cstring(diagnostic)] = action;
249 defaultWarningDiagnosticAction = action;
257 defaultInfoDiagnosticAction = action;
262 DiagnosticAction defaultInfoDiagnosticAction;
265 DiagnosticAction defaultWarningDiagnosticAction;
268 std::unordered_map<cstring, DiagnosticAction> diagnosticActions;
cstring getName(int errorCode)
retrieve the name for errorCode
Definition error_catalog.h:127
static ErrorCatalog & getCatalog()
Return the singleton object.
Definition error_catalog.h:101
Definition error_reporter.h:47
std::ostream * outputstream
the maximum number of errors that we print before fail
Definition error_reporter.h:54
void setDefaultWarningDiagnosticAction(DiagnosticAction action)
set the default diagnostic action for calls to warning().
Definition error_reporter.h:248
void setDefaultInfoDiagnosticAction(DiagnosticAction action)
set the default diagnostic action for calls to info().
Definition error_reporter.h:256
std::set< std::pair< int, const Util::SourceInfo > > errorTracker
Track errors or warnings that have already been issued for a particular source location.
Definition error_reporter.h:57
void setDiagnosticAction(std::string_view diagnostic, DiagnosticAction action)
Set the action to take for the given diagnostic.
Definition error_reporter.h:240
void diagnose(DiagnosticAction action, const char *diagnosticName, const char *format, const char *suffix, Args &&...args)
Definition error_reporter.h:134
bool error_reported(int err, Util::SourceInfo source)
Definition error_reporter.h:74
DiagnosticAction getDiagnosticAction(cstring diagnostic, DiagnosticAction defaultAction)
Definition error_reporter.h:226
void parser_error(const Util::InputSources *sources, const char *fmt, Args &&...args)
Definition error_reporter.h:207
DiagnosticAction getDefaultInfoDiagnosticAction()
Definition error_reporter.h:253
cstring get_error_name(int errorCode)
retrieve the format from the error catalog
Definition error_reporter.h:81
virtual void emit_message(const ErrorMessage &msg)
Output the message and flush the stream.
Definition error_reporter.h:60
void parser_error(const Util::SourceInfo &location, const T &message)
Definition error_reporter.h:192
unsigned setMaxErrorCount(unsigned newMaxCount)
set maxErrorCount to a the @newMaxCount threshold and return the previous value
Definition error_reporter.h:171
DiagnosticAction getDefaultWarningDiagnosticAction()
Definition error_reporter.h:245
unsigned getDiagnosticCount() const
Definition error_reporter.h:183
Definition source_file.h:123
Definition source_file.h:53
Definition error_message.h:36
Definition error_message.h:68