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