P4C
The P4 Compiler
Loading...
Searching...
No Matches
p4RuntimeSerializer.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 CONTROL_PLANE_P4RUNTIMESERIALIZER_H_
18#define CONTROL_PLANE_P4RUNTIMESERIALIZER_H_
19
20#pragma GCC diagnostic push
21#pragma GCC diagnostic ignored "-Wunused-parameter"
22#pragma GCC diagnostic ignored "-Wpedantic"
23#include <google/protobuf/util/json_util.h>
24#pragma GCC diagnostic pop
25
26#include <iosfwd>
27#include <unordered_map>
28
29#include "lib/cstring.h"
30#include "p4RuntimeTypes.h"
31
32namespace p4 {
33namespace config {
34namespace v1 {
35class P4Info;
36} // namespace v1
37} // namespace config
38namespace v1 {
39class WriteRequest;
40} // namespace v1
41} // namespace p4
42
43namespace IR {
44class P4Program;
45} // namespace IR
46
47class CompilerOptions;
48
49namespace P4 {
50
51using namespace literals;
52
58 void serializeP4InfoTo(std::ostream *destination, P4RuntimeFormat format) const;
61 void serializeEntriesTo(std::ostream *destination, P4RuntimeFormat format) const;
62
65 const ::p4::config::v1::P4Info *p4Info;
68 const ::p4::v1::WriteRequest *entries;
69
70 // Print options to use while outputting JSON.
71 google::protobuf::util::JsonPrintOptions jsonPrintOptions;
72
73 P4RuntimeAPI(const ::p4::config::v1::P4Info *p4Info, const ::p4::v1::WriteRequest *entries)
75 jsonPrintOptions.add_whitespace = true;
76 }
77
78 P4RuntimeAPI(const ::p4::config::v1::P4Info *p4Info, const ::p4::v1::WriteRequest *entries,
79 google::protobuf::util::JsonPrintOptions jsonPrintOptions)
80 : p4Info(p4Info), entries(entries), jsonPrintOptions(jsonPrintOptions) {}
81};
82
83namespace ControlPlaneAPI {
84struct P4RuntimeArchHandlerBuilderIface;
85} // namespace ControlPlaneAPI
86
89 public:
90 static P4RuntimeSerializer *get();
91
92 void registerArch(const cstring archName,
94
107 P4RuntimeAPI generateP4Runtime(const IR::P4Program *program, cstring arch);
108
118 void serializeP4RuntimeIfRequired(const IR::P4Program *program, const CompilerOptions &options);
119
128 void serializeP4RuntimeIfRequired(const P4RuntimeAPI &p4Runtime,
129 const CompilerOptions &options);
130
133 static cstring resolveArch(const CompilerOptions &options);
134
135 private:
137
138 std::unordered_map<cstring, const ControlPlaneAPI::P4RuntimeArchHandlerBuilderIface *>
139 archHandlerBuilders{};
140};
141
144P4RuntimeAPI generateP4Runtime(const IR::P4Program *program, cstring arch = "v1model"_cs);
145
148void serializeP4RuntimeIfRequired(const IR::P4Program *program, const CompilerOptions &options);
149
150} // namespace P4
151
152#endif /* CONTROL_PLANE_P4RUNTIMESERIALIZER_H_ */
Definition frontends/common/options.h:28
Public APIs to generate P4Info message. Uses the singleton pattern.
Definition p4RuntimeSerializer.h:88
Definition cstring.h:80
static cstring resolveArch(const CompilerOptions &options)
Definition p4RuntimeSerializer.cpp:1643
void serializeP4InfoTo(std::ostream *destination, P4RuntimeFormat format) const
Definition p4RuntimeSerializer.cpp:1488
P4RuntimeAPI generateP4Runtime(const IR::P4Program *program, cstring arch)
Definition p4RuntimeSerializer.cpp:1658
void serializeP4RuntimeIfRequired(const IR::P4Program *program, const CompilerOptions &options)
Definition p4RuntimeSerializer.cpp:1564
P4RuntimeAPI generateP4Runtime(const IR::P4Program *program, cstring arch)
Definition p4RuntimeSerializer.cpp:1452
void serializeP4RuntimeIfRequired(const IR::P4Program *program, const CompilerOptions &options)
Definition p4RuntimeSerializer.cpp:1662
void serializeEntriesTo(std::ostream *destination, P4RuntimeFormat format) const
Definition p4RuntimeSerializer.cpp:1508
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition applyOptionsPragmas.cpp:24
P4RuntimeFormat
P4Runtime serialization formats.
Definition p4RuntimeTypes.h:23
Definition p4RuntimeArchHandler.h:204
Definition p4RuntimeSerializer.h:55
const ::p4::config::v1::P4Info * p4Info
Definition p4RuntimeSerializer.h:65
const ::p4::v1::WriteRequest * entries
Definition p4RuntimeSerializer.h:68