GBP: Sclass to src-epg conversions
[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                        uint16_t sclass,
24                        uint32_t bd_id,
25                        route::table_id_t rd_id,
26                        const handle_t& itf)
27   : rpc_cmd(item)
28   , m_epg_id(epg_id)
29   , m_sclass(sclass)
30   , m_bd_id(bd_id)
31   , m_rd_id(rd_id)
32   , m_itf(itf)
33 {
34 }
35
36 bool
37 create_cmd::operator==(const create_cmd& other) const
38 {
39   return ((m_itf == other.m_itf) && (m_bd_id == other.m_bd_id) &&
40           (m_rd_id == other.m_rd_id) && (m_epg_id == other.m_epg_id));
41 }
42
43 rc_t
44 create_cmd::issue(connection& con)
45 {
46   msg_t req(con.ctx(), std::ref(*this));
47
48   auto& payload = req.get_request().get_payload();
49   payload.epg.uplink_sw_if_index = m_itf.value();
50   payload.epg.epg_id = m_epg_id;
51   payload.epg.sclass = m_sclass;
52   payload.epg.bd_id = m_bd_id;
53   payload.epg.rd_id = m_rd_id;
54
55   VAPI_CALL(req.execute());
56
57   return (wait());
58 }
59
60 std::string
61 create_cmd::to_string() const
62 {
63   std::ostringstream s;
64   s << "gbp-endpoint-group-create: " << m_hw_item.to_string()
65     << " epg-id:" << m_epg_id << " bd-id:" << m_bd_id << " rd-id:" << m_rd_id
66     << " itf:" << m_itf;
67
68   return (s.str());
69 }
70
71 delete_cmd::delete_cmd(HW::item<bool>& item, epg_id_t epg_id)
72   : rpc_cmd(item)
73   , m_epg_id(epg_id)
74 {
75 }
76
77 bool
78 delete_cmd::operator==(const delete_cmd& other) const
79 {
80   return (m_epg_id == other.m_epg_id);
81 }
82
83 rc_t
84 delete_cmd::issue(connection& con)
85 {
86   msg_t req(con.ctx(), std::ref(*this));
87
88   auto& payload = req.get_request().get_payload();
89   payload.epg_id = m_epg_id;
90
91   VAPI_CALL(req.execute());
92
93   return (wait());
94 }
95
96 std::string
97 delete_cmd::to_string() const
98 {
99   std::ostringstream s;
100   s << "gbp-endpoint-group-delete: " << m_hw_item.to_string()
101     << " epg:" << m_epg_id;
102
103   return (s.str());
104 }
105
106 dump_cmd::dump_cmd()
107 {
108 }
109
110 bool
111 dump_cmd::operator==(const dump_cmd& other) const
112 {
113   return (true);
114 }
115
116 rc_t
117 dump_cmd::issue(connection& con)
118 {
119   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
120
121   VAPI_CALL(m_dump->execute());
122
123   wait();
124
125   return rc_t::OK;
126 }
127
128 std::string
129 dump_cmd::to_string() const
130 {
131   return ("gbp-endpoint-group-dump");
132 }
133
134 }; // namespace gbp_endpoint_group_cmds
135 }; // namespace VOM
136
137 /*
138  * fd.io coding-style-patch-verification: ON
139  *
140  * Local Variables:
141  * eval: (c-set-style "mozilla")
142  * End:
143  */