P4C
The P4 Compiler
Loading...
Searching...
No Matches
compile_context.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#ifndef LIB_COMPILE_CONTEXT_H_
18#define LIB_COMPILE_CONTEXT_H_
19
20#include <typeinfo>
21#include <vector>
22
23#include "lib/cstring.h"
24#include "lib/error_reporter.h"
25
31 protected:
32 virtual ~ICompileContext() = 0;
33};
34
38struct CompileContextStack final {
39 CompileContextStack() = delete;
40
45 template <typename CompileContextType>
46 static CompileContextType &top() {
47 auto &stack = getStack();
48 if (stack.empty()) reportNoContext();
49 auto *current = dynamic_cast<CompileContextType *>(stack.back());
50 if (!current) reportContextMismatch(typeid(CompileContextType).name());
51 return *current;
52 }
53
54 static bool isEmpty() { return getStack().empty(); }
55
56 private:
57 friend struct AutoCompileContext;
58
59 using StackType = std::vector<ICompileContext *>;
60
62 static void reportNoContext();
63 static void reportContextMismatch(const char *desiredContextType);
64
66 static void push(ICompileContext *context);
67 static void pop();
68 static StackType &getStack();
69};
70
79
84 protected:
85 BaseCompileContext() = default;
86 BaseCompileContext(const BaseCompileContext &other) = default;
87 BaseCompileContext &operator=(const BaseCompileContext &other) = default;
88
89 public:
92 static BaseCompileContext &get();
93
96
98 virtual DiagnosticAction getDefaultInfoDiagnosticAction();
99
101 virtual DiagnosticAction getDefaultWarningDiagnosticAction();
102
104 virtual DiagnosticAction getDefaultErrorDiagnosticAction();
105
108 virtual DiagnosticAction getDiagnosticAction(cstring diagnostic,
109 DiagnosticAction defaultAction);
110
111 private:
113 ErrorReporter errorReporterInstance;
114};
115
116#endif /* LIB_COMPILE_CONTEXT_H_ */
Definition compile_context.h:83
virtual DiagnosticAction getDefaultInfoDiagnosticAction()
Definition compile_context.cpp:65
virtual DiagnosticAction getDefaultWarningDiagnosticAction()
Definition compile_context.cpp:69
static BaseCompileContext & get()
Definition compile_context.cpp:59
virtual ErrorReporter & errorReporter()
Definition compile_context.cpp:63
virtual DiagnosticAction getDefaultErrorDiagnosticAction()
Definition compile_context.cpp:73
virtual DiagnosticAction getDiagnosticAction(cstring diagnostic, DiagnosticAction defaultAction)
Definition compile_context.cpp:77
Definition error_reporter.h:47
Definition compile_context.h:30
Definition cstring.h:80
Definition compile_context.h:75
Definition compile_context.h:38
static CompileContextType & top()
Definition compile_context.h:46