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