vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / gbp_bridge_domain_cmds.cpp
1 /*
2  * Copyright (c) 2017 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_bridge_domain_cmds.hpp"
17
18 namespace VOM {
19 namespace gbp_bridge_domain_cmds {
20
21 create_cmd::create_cmd(HW::item<uint32_t>& item,
22                        u32 rd_id,
23                        const handle_t bvi,
24                        const handle_t uu_fwd,
25                        const handle_t bm_flood,
26                        const gbp_bridge_domain::flags_t& flags)
27   : rpc_cmd(item)
28   , m_rd_id(rd_id)
29   , m_bvi(bvi)
30   , m_uu_fwd(uu_fwd)
31   , m_bm_flood(bm_flood)
32   , m_flags(flags)
33 {
34 }
35
36 bool
37 create_cmd::operator==(const create_cmd& other) const
38 {
39   return ((m_hw_item.data() == other.m_hw_item.data()) &&
40           (m_rd_id == other.m_rd_id) && (m_bvi == other.m_bvi) &&
41           (m_uu_fwd == other.m_uu_fwd) && (m_bm_flood == other.m_bm_flood) &&
42           (m_flags == other.m_flags));
43 }
44
45 rc_t
46 create_cmd::issue(connection& con)
47 {
48   msg_t req(con.ctx(), std::ref(*this));
49
50   auto& payload = req.get_request().get_payload();
51
52   payload.bd.bd_id = m_hw_item.data();
53   payload.bd.rd_id = m_rd_id;
54   payload.bd.bvi_sw_if_index = m_bvi.value();
55   payload.bd.uu_fwd_sw_if_index = m_uu_fwd.value();
56   payload.bd.bm_flood_sw_if_index = m_bm_flood.value();
57
58   vapi_enum_gbp_bridge_domain_flags flags = GBP_BD_API_FLAG_NONE;
59   if (gbp_bridge_domain::flags_t::DO_NOT_LEARN & m_flags)
60     flags = static_cast<vapi_enum_gbp_bridge_domain_flags>(
61       flags | GBP_BD_API_FLAG_DO_NOT_LEARN);
62   if (gbp_bridge_domain::flags_t::UU_FWD_DROP & m_flags)
63     flags = static_cast<vapi_enum_gbp_bridge_domain_flags>(
64       flags | GBP_BD_API_FLAG_UU_FWD_DROP);
65   if (gbp_bridge_domain::flags_t::MCAST_DROP & m_flags)
66     flags = static_cast<vapi_enum_gbp_bridge_domain_flags>(
67       flags | GBP_BD_API_FLAG_MCAST_DROP);
68   if (gbp_bridge_domain::flags_t::UCAST_ARP & m_flags)
69     flags = static_cast<vapi_enum_gbp_bridge_domain_flags>(
70       flags | GBP_BD_API_FLAG_UCAST_ARP);
71
72   payload.bd.flags = flags;
73   VAPI_CALL(req.execute());
74
75   return (wait());
76 }
77
78 std::string
79 create_cmd::to_string() const
80 {
81   std::ostringstream s;
82   s << "gbp-bridge-domain: " << m_hw_item.to_string()
83     << " flags:" << m_flags.to_string() << " bvi:" << m_bvi.to_string()
84     << " uu-fwd:" << m_uu_fwd.to_string();
85
86   return (s.str());
87 }
88
89 delete_cmd::delete_cmd(HW::item<uint32_t>& item)
90   : rpc_cmd(item)
91 {
92 }
93
94 bool
95 delete_cmd::operator==(const delete_cmd& other) const
96 {
97   return (m_hw_item.data() == other.m_hw_item.data());
98 }
99
100 rc_t
101 delete_cmd::issue(connection& con)
102 {
103   msg_t req(con.ctx(), std::ref(*this));
104
105   auto& payload = req.get_request().get_payload();
106
107   payload.bd_id = m_hw_item.data();
108
109   VAPI_CALL(req.execute());
110
111   wait();
112   m_hw_item.set(rc_t::NOOP);
113
114   return rc_t::OK;
115 }
116
117 std::string
118 delete_cmd::to_string() const
119 {
120   std::ostringstream s;
121   s << "gbp-bridge-domain: " << m_hw_item.to_string();
122
123   return (s.str());
124 }
125
126 bool
127 dump_cmd::operator==(const dump_cmd& other) const
128 {
129   return (true);
130 }
131
132 rc_t
133 dump_cmd::issue(connection& con)
134 {
135   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
136
137   VAPI_CALL(m_dump->execute());
138
139   wait();
140
141   return rc_t::OK;
142 }
143
144 std::string
145 dump_cmd::to_string() const
146 {
147   return ("gbp-bridge-domain-dump");
148 }
149
150 }; // namespace gbp_bridge_domain_cmds
151 }; // namespace VOM
152
153 /*
154  * fd.io coding-style-patch-verification: ON
155  *
156  * Local Variables:
157  * eval: (c-set-style "mozilla")
158  * End:
159  */