GBP: add allowed ethertypes to contracts
[vpp.git] / extras / vom / vom / gbp_endpoint_group_cmds.cpp
1 /*
2  * Copyright (c) 2018 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include "vom/gbp_endpoint_group_cmds.hpp"
17
18 namespace VOM {
19 namespace gbp_endpoint_group_cmds {
20
21 create_cmd::create_cmd(HW::item<bool>& item,
22                        epg_id_t epg_id,
23                        uint32_t bd_id,
24                        route::table_id_t rd_id,
25                        const handle_t& itf)
26   : rpc_cmd(item)
27   , m_epg_id(epg_id)
28   , m_bd_id(bd_id)
29   , m_rd_id(rd_id)
30   , m_itf(itf)
31 {
32 }
33
34 bool
35 create_cmd::operator==(const create_cmd& other) const
36 {
37   return ((m_itf == other.m_itf) && (m_bd_id == other.m_bd_id) &&
38           (m_rd_id == other.m_rd_id) && (m_epg_id == other.m_epg_id));
39 }
40
41 rc_t
42 create_cmd::issue(connection& con)
43 {
44   msg_t req(con.ctx(), std::ref(*this));
45
46   auto& payload = req.get_request().get_payload();
47   payload.epg.uplink_sw_if_index = m_itf.value();
48   payload.epg.epg_id = m_epg_id;
49   payload.epg.bd_id = m_bd_id;
50   payload.epg.rd_id = m_rd_id;
51
52   VAPI_CALL(req.execute());
53
54   return (wait());
55 }
56
57 std::string
58 create_cmd::to_string() const
59 {
60   std::ostringstream s;
61   s << "gbp-endpoint-group-create: " << m_hw_item.to_string()
62     << " epg-id:" << m_epg_id << " bd-id:" << m_bd_id << " rd-id:" << m_rd_id
63     << " itf:" << m_itf;
64
65   return (s.str());
66 }
67
68 delete_cmd::delete_cmd(HW::item<bool>& item, epg_id_t epg_id)
69   : rpc_cmd(item)
70   , m_epg_id(epg_id)
71 {
72 }
73
74 bool
75 delete_cmd::operator==(const delete_cmd& other) const
76 {
77   return (m_epg_id == other.m_epg_id);
78 }
79
80 rc_t
81 delete_cmd::issue(connection& con)
82 {
83   msg_t req(con.ctx(), std::ref(*this));
84
85   auto& payload = req.get_request().get_payload();
86   payload.epg_id = m_epg_id;
87
88   VAPI_CALL(req.execute());
89
90   return (wait());
91 }
92
93 std::string
94 delete_cmd::to_string() const
95 {
96   std::ostringstream s;
97   s << "gbp-endpoint-group-delete: " << m_hw_item.to_string()
98     << " epg:" << m_epg_id;
99
100   return (s.str());
101 }
102
103 dump_cmd::dump_cmd()
104 {
105 }
106
107 bool
108 dump_cmd::operator==(const dump_cmd& other) const
109 {
110   return (true);
111 }
112
113 rc_t
114 dump_cmd::issue(connection& con)
115 {
116   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
117
118   VAPI_CALL(m_dump->execute());
119
120   wait();
121
122   return rc_t::OK;
123 }
124
125 std::string
126 dump_cmd::to_string() const
127 {
128   return ("gbp-endpoint-group-dump");
129 }
130
131 }; // namespace gbp_endpoint_group_cmds
132 }; // namespace VOM
133
134 /*
135  * fd.io coding-style-patch-verification: ON
136  *
137  * Local Variables:
138  * eval: (c-set-style "mozilla")
139  * End:
140  */