P4C
The P4 Compiler
Loading...
Searching...
No Matches
error.h
1/*
2Copyright 2013-present Barefoot Networks, Inc.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17/* -*-C++-*- */
18
19#ifndef LIB_ERROR_H_
20#define LIB_ERROR_H_
21
22#include "lib/compile_context.h"
23#include "lib/cstring.h"
24#include "lib/error_reporter.h"
25
26// This should eventually be turned to 0 when all the code is converted
27#define LEGACY 1
28
31inline unsigned errorCount() { return BaseCompileContext::get().errorReporter().getErrorCount(); }
32
35inline unsigned diagnosticCount() {
37}
38
39// Errors (and warnings) are specified using boost::format format strings, i.e.,
40// %1%, %2%, etc (starting at 1, not at 0).
41// Some compatibility for printf-style arguments is also supported.
42
44// LEGACY: once we transition to error types, this should be deprecated
45#if LEGACY
46template <typename... Args>
47inline void error(const char *format, Args &&...args) {
48 auto &context = BaseCompileContext::get();
49 auto action = context.getDefaultErrorDiagnosticAction();
50 context.errorReporter().diagnose(action, nullptr, format, "", std::forward<Args>(args)...);
51}
52#endif
53
56template <class T, typename = std::enable_if_t<Util::has_SourceInfo_v<T>>, class... Args>
57void error(const int kind, const char *format, const T *node, Args &&...args) {
58 auto &context = BaseCompileContext::get();
59 auto action = context.getDefaultErrorDiagnosticAction();
60 context.errorReporter().diagnose(action, kind, format, "", node, std::forward<Args>(args)...);
61}
62
64template <class T, typename = std::enable_if_t<Util::has_SourceInfo_v<T>>, class... Args>
65void errorWithSuffix(const int kind, const char *format, const char *suffix, const T *node,
66 Args &&...args) {
67 auto &context = BaseCompileContext::get();
68 auto action = context.getDefaultErrorDiagnosticAction();
69 context.errorReporter().diagnose(action, kind, format, suffix, node,
70 std::forward<Args>(args)...);
71}
72
74template <class T, typename = std::enable_if_t<Util::has_SourceInfo_v<T>>, class... Args>
75void error(const int kind, const char *format, const T &node, Args &&...args) {
76 error(kind, format, &node, std::forward<Args>(args)...);
77}
78
79#if LEGACY
83// LEGACY: once we transition to error types, this should be deprecated
84template <class T, typename = std::enable_if_t<Util::has_SourceInfo_v<T>>, class... Args>
85void error(const char *format, const T *node, Args &&...args) {
86 error(ErrorType::LEGACY_ERROR, format, node, std::forward<Args>(args)...);
87}
88
90// LEGACY: once we transition to error types, this should be deprecated
91template <class T, typename = std::enable_if_t<Util::has_SourceInfo_v<T>>, class... Args>
92void error(const char *format, const T &node, Args &&...args) {
93 error(ErrorType::LEGACY_ERROR, format, node, std::forward<Args>(args)...);
94}
95#endif
96
99template <typename... Args>
100void error(const int kind, const char *format, Args &&...args) {
101 auto &context = BaseCompileContext::get();
102 auto action = context.getDefaultErrorDiagnosticAction();
103 context.errorReporter().diagnose(action, kind, format, "", std::forward<Args>(args)...);
104}
105
106#if LEGACY
108template <typename... Args>
109inline void warning(const char *format, Args &&...args) {
110 auto &context = BaseCompileContext::get();
111 auto action = context.getDefaultWarningDiagnosticAction();
112 context.errorReporter().diagnose(action, nullptr, format, "", std::forward<Args>(args)...);
113}
114#endif
115
117template <class T, typename = std::enable_if_t<Util::has_SourceInfo_v<T>>, class... Args>
118void warning(const int kind, const char *format, const T *node, Args &&...args) {
119 auto &context = BaseCompileContext::get();
120 auto action = context.getDefaultWarningDiagnosticAction();
121 context.errorReporter().diagnose(action, kind, format, "", node, std::forward<Args>(args)...);
122}
123
125template <class T, typename = std::enable_if_t<Util::has_SourceInfo_v<T>>, class... Args>
126void warning(const int kind, const char *format, const T &node, Args &&...args) {
127 ::warning(kind, format, &node, std::forward<Args>(args)...);
128}
129
132template <typename... Args>
133void warning(const int kind, const char *format, Args &&...args) {
134 auto &context = BaseCompileContext::get();
135 auto action = context.getDefaultWarningDiagnosticAction();
136 context.errorReporter().diagnose(action, kind, format, "", std::forward<Args>(args)...);
137}
138
140template <class T, typename = std::enable_if_t<Util::has_SourceInfo_v<T>>, class... Args>
141void info(const int kind, const char *format, const T *node, Args &&...args) {
142 auto &context = BaseCompileContext::get();
143 auto action = context.getDefaultInfoDiagnosticAction();
144 context.errorReporter().diagnose(action, kind, format, "", node, std::forward<Args>(args)...);
145}
146
148template <class T, typename = std::enable_if_t<Util::has_SourceInfo_v<T>>, class... Args>
149void info(const int kind, const char *format, const T &node, Args &&...args) {
150 ::info(kind, format, &node, std::forward<Args>(args)...);
151}
152
155template <typename... Args>
156void info(const int kind, const char *format, Args &&...args) {
157 auto &context = BaseCompileContext::get();
158 auto action = context.getDefaultInfoDiagnosticAction();
159 context.errorReporter().diagnose(action, kind, format, "", std::forward<Args>(args)...);
160}
161
175template <typename... Args>
176inline void diagnose(DiagnosticAction defaultAction, const char *diagnosticName, const char *format,
177 const char *suffix, Args &&...args) {
178 auto &context = BaseCompileContext::get();
179 auto action = context.getDiagnosticAction(cstring(diagnosticName), defaultAction);
180 context.errorReporter().diagnose(action, diagnosticName, format, suffix,
181 std::forward<Args>(args)...);
182}
183
184#endif /* LIB_ERROR_H_ */
static BaseCompileContext & get()
Definition compile_context.cpp:59
virtual ErrorReporter & errorReporter()
Definition compile_context.cpp:63
unsigned getDiagnosticCount() const
Definition error_reporter.h:183
Definition cstring.h:80