VOM: support for pipes
[vpp.git] / extras / vom / vom / bridge_domain_entry_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/bridge_domain_entry_cmds.hpp"
17
18 namespace VOM {
19 namespace bridge_domain_entry_cmds {
20 create_cmd::create_cmd(HW::item<bool>& item,
21                        const mac_address_t& mac,
22                        uint32_t bd,
23                        handle_t tx_itf,
24                        bool is_bvi)
25   : rpc_cmd(item)
26   , m_mac(mac)
27   , m_bd(bd)
28   , m_tx_itf(tx_itf)
29   , m_is_bvi(is_bvi)
30 {
31 }
32
33 bool
34 create_cmd::operator==(const create_cmd& other) const
35 {
36   return ((m_mac == other.m_mac) && (m_tx_itf == other.m_tx_itf) &&
37           (m_bd == other.m_bd) && (m_is_bvi == other.m_is_bvi));
38 }
39
40 rc_t
41 create_cmd::issue(connection& con)
42 {
43   msg_t req(con.ctx(), std::ref(*this));
44
45   auto& payload = req.get_request().get_payload();
46   payload.bd_id = m_bd;
47   payload.is_add = 1;
48   m_mac.to_bytes(payload.mac, 6);
49   payload.sw_if_index = m_tx_itf.value();
50   payload.bvi_mac = m_is_bvi;
51
52   VAPI_CALL(req.execute());
53
54   return (wait());
55 }
56
57 std::string
58 create_cmd::to_string() const
59 {
60   std::ostringstream s;
61   s << "bridge-domain-entry-create: " << m_hw_item.to_string() << " bd:" << m_bd
62     << " mac:" << m_mac.to_string() << " tx:" << m_tx_itf
63     << " bvi:" << m_is_bvi;
64
65   return (s.str());
66 }
67
68 delete_cmd::delete_cmd(HW::item<bool>& item,
69                        const mac_address_t& mac,
70                        uint32_t bd,
71                        bool is_bvi)
72   : rpc_cmd(item)
73   , m_mac(mac)
74   , m_bd(bd)
75   , m_is_bvi(is_bvi)
76 {
77 }
78
79 bool
80 delete_cmd::operator==(const delete_cmd& other) const
81 {
82   return ((m_mac == other.m_mac) && (m_bd == other.m_bd) &&
83           (m_is_bvi == other.m_is_bvi));
84 }
85
86 rc_t
87 delete_cmd::issue(connection& con)
88 {
89   msg_t req(con.ctx(), std::ref(*this));
90
91   auto& payload = req.get_request().get_payload();
92   payload.bd_id = m_bd;
93   payload.is_add = 0;
94   m_mac.to_bytes(payload.mac, 6);
95   payload.sw_if_index = ~0;
96   payload.bvi_mac = m_is_bvi;
97
98   VAPI_CALL(req.execute());
99
100   wait();
101   m_hw_item.set(rc_t::NOOP);
102
103   return rc_t::OK;
104 }
105
106 std::string
107 delete_cmd::to_string() const
108 {
109   std::ostringstream s;
110   s << "bridge-domain-entry-delete: " << m_hw_item.to_string() << " bd:" << m_bd
111     << " mac:" << m_mac.to_string() << " bvi:" << m_is_bvi;
112
113   return (s.str());
114 }
115
116 dump_cmd::dump_cmd()
117 {
118 }
119
120 bool
121 dump_cmd::operator==(const dump_cmd& other) const
122 {
123   return (true);
124 }
125
126 rc_t
127 dump_cmd::issue(connection& con)
128 {
129   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
130
131   auto& payload = m_dump->get_request().get_payload();
132   payload.bd_id = ~0;
133
134   VAPI_CALL(m_dump->execute());
135
136   wait();
137
138   return rc_t::OK;
139 }
140
141 std::string
142 dump_cmd::to_string() const
143 {
144   return ("bridge-domain-entry-dump");
145 }
146 }
147 }
148
149 /*
150  * fd.io coding-style-patch-verification: ON
151  *
152  * Local Variables:
153  * eval: (c-set-style "mozilla")
154  * End:
155  */