blob: ddb8bf14f12b1c131753ac732811891512c62f77 [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
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070016#include "vom/bridge_domain_entry_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070017
18namespace VOM {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070019namespace bridge_domain_entry_cmds {
20create_cmd::create_cmd(HW::item<bool>& item,
21 const mac_address_t& mac,
22 uint32_t bd,
23 handle_t tx_itf)
Neale Ranns812ed392017-10-16 04:20:13 -070024 : rpc_cmd(item)
25 , m_mac(mac)
26 , m_bd(bd)
27 , m_tx_itf(tx_itf)
28{
29}
30
31bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070032create_cmd::operator==(const create_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070033{
34 return ((m_mac == other.m_mac) && (m_tx_itf == other.m_tx_itf) &&
35 (m_bd == other.m_bd));
36}
37
38rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070039create_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070040{
41 msg_t req(con.ctx(), std::ref(*this));
42
43 auto& payload = req.get_request().get_payload();
44 payload.bd_id = m_bd;
45 payload.is_add = 1;
Neale Rannsf29e85f2017-11-01 03:29:13 -070046 m_mac.to_bytes(payload.mac, 6);
Neale Ranns812ed392017-10-16 04:20:13 -070047 payload.sw_if_index = m_tx_itf.value();
48
49 VAPI_CALL(req.execute());
50
51 m_hw_item.set(wait());
52
53 return rc_t::OK;
54}
55
56std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070057create_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -070058{
59 std::ostringstream s;
60 s << "bridge-domain-entry-create: " << m_hw_item.to_string() << " bd:" << m_bd
61 << " mac:" << m_mac.to_string() << " tx:" << m_tx_itf;
62
63 return (s.str());
64}
65
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070066delete_cmd::delete_cmd(HW::item<bool>& item,
67 const mac_address_t& mac,
68 uint32_t bd)
Neale Ranns812ed392017-10-16 04:20:13 -070069 : rpc_cmd(item)
70 , m_mac(mac)
71 , m_bd(bd)
72{
73}
74
75bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070076delete_cmd::operator==(const delete_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070077{
78 return ((m_mac == other.m_mac) && (m_bd == other.m_bd));
79}
80
81rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070082delete_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070083{
84 msg_t req(con.ctx(), std::ref(*this));
85
86 auto& payload = req.get_request().get_payload();
87 payload.bd_id = m_bd;
88 payload.is_add = 1;
Neale Rannsf29e85f2017-11-01 03:29:13 -070089 m_mac.to_bytes(payload.mac, 6);
Neale Ranns812ed392017-10-16 04:20:13 -070090 payload.sw_if_index = ~0;
91
92 VAPI_CALL(req.execute());
93
94 wait();
95 m_hw_item.set(rc_t::NOOP);
96
97 return rc_t::OK;
98}
99
100std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700101delete_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700102{
103 std::ostringstream s;
104 s << "bridge-domain-entry-delete: " << m_hw_item.to_string() << " bd:" << m_bd
105 << " mac:" << m_mac.to_string();
106
107 return (s.str());
108}
109
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700110dump_cmd::dump_cmd()
Neale Ranns812ed392017-10-16 04:20:13 -0700111{
112}
113
114bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700115dump_cmd::operator==(const dump_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700116{
117 return (true);
118}
119
120rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700121dump_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700122{
123 m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
124
125 auto& payload = m_dump->get_request().get_payload();
126 payload.bd_id = ~0;
127
128 VAPI_CALL(m_dump->execute());
129
130 wait();
131
132 return rc_t::OK;
133}
134
135std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700136dump_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700137{
138 return ("bridge-domain-entry-dump");
139}
140}
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700141}
Neale Ranns812ed392017-10-16 04:20:13 -0700142
143/*
144 * fd.io coding-style-patch-verification: ON
145 *
146 * Local Variables:
147 * eval: (c-set-style "mozilla")
148 * End:
149 */