blob: 498569f9fabef1cdc9119c608397f5c65dddf6dc [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_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070017
18DEFINE_VAPI_MSG_IDS_L2_API_JSON;
19
20namespace VOM {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070021namespace bridge_domain_cmds {
Neale Ranns10e7a9f2017-11-14 08:40:43 -080022create_cmd::create_cmd(HW::item<uint32_t>& item,
23 const bridge_domain::learning_mode_t& lmode)
Neale Ranns812ed392017-10-16 04:20:13 -070024 : rpc_cmd(item)
Neale Ranns10e7a9f2017-11-14 08:40:43 -080025 , m_learning_mode(lmode)
Neale Ranns812ed392017-10-16 04:20:13 -070026{
27}
28
29bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070030create_cmd::operator==(const create_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070031{
32 return (m_hw_item.data() == other.m_hw_item.data());
33}
34
35rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070036create_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070037{
38 msg_t req(con.ctx(), std::ref(*this));
39
40 auto& payload = req.get_request().get_payload();
41 payload.bd_id = m_hw_item.data();
42 payload.flood = 1;
43 payload.uu_flood = 1;
44 payload.forward = 1;
Neale Ranns10e7a9f2017-11-14 08:40:43 -080045 payload.learn = m_learning_mode.value();
Neale Ranns812ed392017-10-16 04:20:13 -070046 payload.arp_term = 1;
47 payload.mac_age = 0;
48 payload.is_add = 1;
49
50 VAPI_CALL(req.execute());
51
52 m_hw_item.set(wait());
53
54 return (rc_t::OK);
55}
56
57std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070058create_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -070059{
60 std::ostringstream s;
61 s << "bridge-domain-create: " << m_hw_item.to_string();
62
63 return (s.str());
64}
65
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070066delete_cmd::delete_cmd(HW::item<uint32_t>& item)
Neale Ranns812ed392017-10-16 04:20:13 -070067 : rpc_cmd(item)
68{
69}
70
71bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070072delete_cmd::operator==(const delete_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070073{
74 return (m_hw_item == other.m_hw_item);
75}
76
77rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070078delete_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070079{
80 msg_t req(con.ctx(), std::ref(*this));
81
82 auto& payload = req.get_request().get_payload();
83 payload.bd_id = m_hw_item.data();
84 payload.is_add = 0;
85
86 VAPI_CALL(req.execute());
87
88 wait();
89 m_hw_item.set(rc_t::NOOP);
90
91 return (rc_t::OK);
92}
93
94std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070095delete_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -070096{
97 std::ostringstream s;
98 s << "bridge-domain-delete: " << m_hw_item.to_string();
99
100 return (s.str());
101}
102
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700103dump_cmd::dump_cmd()
Neale Ranns812ed392017-10-16 04:20:13 -0700104{
105}
106
107bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700108dump_cmd::operator==(const dump_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700109{
110 return (true);
111}
112
113rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700114dump_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700115{
116 m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
117
118 auto& payload = m_dump->get_request().get_payload();
119 payload.bd_id = ~0;
120
121 VAPI_CALL(m_dump->execute());
122
123 wait();
124
125 return rc_t::OK;
126}
127
128std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700129dump_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700130{
131 return ("bridge-domain-dump");
132}
133}
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700134}
Neale Ranns812ed392017-10-16 04:20:13 -0700135
136/*
137 * fd.io coding-style-patch-verification: ON
138 *
139 * Local Variables:
140 * eval: (c-set-style "mozilla")
141 * End:
142 */