vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / lldp_binding_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/lldp_binding_cmds.hpp"
17
18 DEFINE_VAPI_MSG_IDS_LLDP_API_JSON;
19
20 namespace VOM {
21 namespace lldp_binding_cmds {
22
23 bind_cmd::bind_cmd(HW::item<bool>& item,
24                    const handle_t& itf,
25                    const std::string& port_desc)
26   : rpc_cmd(item)
27   , m_itf(itf)
28   , m_port_desc(port_desc)
29 {}
30
31 bool
32 bind_cmd::operator==(const bind_cmd& other) const
33 {
34   return ((m_itf == other.m_itf) && (m_port_desc == other.m_port_desc));
35 }
36
37 rc_t
38 bind_cmd::issue(connection& con)
39 {
40   msg_t req(con.ctx(), std::ref(*this));
41
42   auto& payload = req.get_request().get_payload();
43   payload.sw_if_index = m_itf.value();
44   payload.enable = 1;
45
46   memcpy(payload.port_desc.buf, m_port_desc.c_str(), m_port_desc.length());
47   payload.port_desc.length = m_port_desc.length();
48
49   VAPI_CALL(req.execute());
50
51   return (wait());
52 }
53
54 std::string
55 bind_cmd::to_string() const
56 {
57   std::ostringstream s;
58   s << "Lldp-bind: " << m_hw_item.to_string() << " itf:" << m_itf.to_string()
59     << " port_desc:" << m_port_desc;
60
61   return (s.str());
62 }
63
64 unbind_cmd::unbind_cmd(HW::item<bool>& item, const handle_t& itf)
65   : rpc_cmd(item)
66   , m_itf(itf)
67 {}
68
69 bool
70 unbind_cmd::operator==(const unbind_cmd& other) const
71 {
72   return (m_itf == other.m_itf);
73 }
74
75 rc_t
76 unbind_cmd::issue(connection& con)
77 {
78   msg_t req(con.ctx(), std::ref(*this));
79
80   auto& payload = req.get_request().get_payload();
81   payload.sw_if_index = m_itf.value();
82   payload.enable = 0;
83
84   VAPI_CALL(req.execute());
85
86   wait();
87   m_hw_item.set(rc_t::NOOP);
88
89   return rc_t::OK;
90 }
91
92 std::string
93 unbind_cmd::to_string() const
94 {
95   std::ostringstream s;
96   s << "Lldp-unbind: " << m_hw_item.to_string() << " itf:" << m_itf.to_string();
97
98   return (s.str());
99 }
100
101 }; // namespace lldp_binding_cmds
102 }; // namespace VOM
103
104 /*
105  * fd.io coding-style-patch-verification: ON
106  *
107  * Local Variables:
108  * eval: (c-set-style "mozilla")
109  * End:
110  */