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