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