vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / gbp_endpoint_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_endpoint_cmds.hpp"
17 #include "vom/api_types.hpp"
18
19 DEFINE_VAPI_MSG_IDS_GBP_API_JSON;
20
21 namespace VOM {
22 namespace gbp_endpoint_cmds {
23
24 static vapi_enum_gbp_endpoint_flags
25 to_api(const gbp_endpoint::flags_t& in)
26 {
27   vapi_enum_gbp_endpoint_flags out = GBP_API_ENDPOINT_FLAG_NONE;
28
29   if (in & gbp_endpoint::flags_t::REMOTE)
30     out = (vapi_enum_gbp_endpoint_flags)(out | GBP_API_ENDPOINT_FLAG_REMOTE);
31   if (in & gbp_endpoint::flags_t::BOUNCE)
32     out = (vapi_enum_gbp_endpoint_flags)(out | GBP_API_ENDPOINT_FLAG_BOUNCE);
33   if (in & gbp_endpoint::flags_t::LEARNT)
34     out = (vapi_enum_gbp_endpoint_flags)(out | GBP_API_ENDPOINT_FLAG_LEARNT);
35   if (in & gbp_endpoint::flags_t::EXTERNAL)
36     out = (vapi_enum_gbp_endpoint_flags)(out | GBP_API_ENDPOINT_FLAG_EXTERNAL);
37
38   return (out);
39 }
40
41 create_cmd::create_cmd(HW::item<handle_t>& item,
42                        const handle_t& itf,
43                        const std::vector<boost::asio::ip::address>& ip_addrs,
44                        const mac_address_t& mac,
45                        sclass_t sclass,
46                        const gbp_endpoint::flags_t& flags)
47   : rpc_cmd(item)
48   , m_itf(itf)
49   , m_ip_addrs(ip_addrs)
50   , m_mac(mac)
51   , m_sclass(sclass)
52   , m_flags(flags)
53 {
54 }
55
56 bool
57 create_cmd::operator==(const create_cmd& other) const
58 {
59   return ((m_itf == other.m_itf) && (m_ip_addrs == other.m_ip_addrs) &&
60           (m_mac == other.m_mac) && (m_sclass == other.m_sclass) &&
61           (m_flags == other.m_flags));
62 }
63
64 rc_t
65 create_cmd::issue(connection& con)
66 {
67   msg_t req(con.ctx(), m_ip_addrs.size() * sizeof(vapi_type_address),
68             std::ref(*this));
69   uint8_t n;
70
71   auto& payload = req.get_request().get_payload();
72   payload.endpoint.sw_if_index = m_itf.value();
73   payload.endpoint.sclass = m_sclass;
74   payload.endpoint.n_ips = m_ip_addrs.size();
75   payload.endpoint.flags = to_api(m_flags);
76
77   for (n = 0; n < payload.endpoint.n_ips; n++) {
78     VOM::to_api(m_ip_addrs[n], payload.endpoint.ips[n]);
79   }
80   to_api(m_mac, payload.endpoint.mac);
81
82   VAPI_CALL(req.execute());
83
84   return (wait());
85 }
86
87 vapi_error_e
88 create_cmd::operator()(vapi::Gbp_endpoint_add& reply)
89 {
90   int handle = reply.get_response().get_payload().handle;
91   int retval = reply.get_response().get_payload().retval;
92
93   VOM_LOG(log_level_t::DEBUG) << this->to_string() << " " << retval;
94
95   rc_t rc = rc_t::from_vpp_retval(retval);
96   handle_t hdl = handle_t::INVALID;
97
98   if (rc_t::OK == rc) {
99     hdl = handle;
100   }
101
102   this->fulfill(HW::item<handle_t>(hdl, rc));
103
104   return (VAPI_OK);
105 }
106
107 std::string
108 create_cmd::to_string() const
109 {
110   std::ostringstream s;
111   s << "gbp-endpoint-create: " << m_hw_item.to_string() << " itf:" << m_itf
112     << " ips:[";
113   for (auto ip : m_ip_addrs)
114     s << ip.to_string();
115
116   s << "] mac:" << m_mac << " slcass:" << m_sclass
117     << " flags:" << m_flags.to_string();
118
119   return (s.str());
120 }
121
122 delete_cmd::delete_cmd(HW::item<handle_t>& item)
123   : rpc_cmd(item)
124 {
125 }
126
127 bool
128 delete_cmd::operator==(const delete_cmd& other) const
129 {
130   return (m_hw_item == other.m_hw_item);
131 }
132
133 rc_t
134 delete_cmd::issue(connection& con)
135 {
136   msg_t req(con.ctx(), std::ref(*this));
137
138   auto& payload = req.get_request().get_payload();
139   payload.handle = m_hw_item.data().value();
140
141   VAPI_CALL(req.execute());
142
143   return (wait());
144 }
145
146 std::string
147 delete_cmd::to_string() const
148 {
149   std::ostringstream s;
150   s << "gbp-endpoint-delete: " << m_hw_item.to_string();
151
152   return (s.str());
153 }
154
155 dump_cmd::dump_cmd()
156 {
157 }
158
159 bool
160 dump_cmd::operator==(const dump_cmd& other) const
161 {
162   return (true);
163 }
164
165 rc_t
166 dump_cmd::issue(connection& con)
167 {
168   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
169
170   VAPI_CALL(m_dump->execute());
171
172   wait();
173
174   return rc_t::OK;
175 }
176
177 std::string
178 dump_cmd::to_string() const
179 {
180   return ("gbp-endpoint-dump");
181 }
182
183 }; // namespace gbp_endpoint_cmds
184 }; // namespace VOM
185
186 /*
187  * fd.io coding-style-patch-verification: ON
188  *
189  * Local Variables:
190  * eval: (c-set-style "mozilla")
191  * End:
192  */