498569f9fabef1cdc9119c608397f5c65dddf6dc
[vpp.git] / src / vpp-api / vom / bridge_domain_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_cmds.hpp"
17
18 DEFINE_VAPI_MSG_IDS_L2_API_JSON;
19
20 namespace VOM {
21 namespace bridge_domain_cmds {
22 create_cmd::create_cmd(HW::item<uint32_t>& item,
23                        const bridge_domain::learning_mode_t& lmode)
24   : rpc_cmd(item)
25   , m_learning_mode(lmode)
26 {
27 }
28
29 bool
30 create_cmd::operator==(const create_cmd& other) const
31 {
32   return (m_hw_item.data() == other.m_hw_item.data());
33 }
34
35 rc_t
36 create_cmd::issue(connection& con)
37 {
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;
45   payload.learn = m_learning_mode.value();
46   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
57 std::string
58 create_cmd::to_string() const
59 {
60   std::ostringstream s;
61   s << "bridge-domain-create: " << m_hw_item.to_string();
62
63   return (s.str());
64 }
65
66 delete_cmd::delete_cmd(HW::item<uint32_t>& item)
67   : rpc_cmd(item)
68 {
69 }
70
71 bool
72 delete_cmd::operator==(const delete_cmd& other) const
73 {
74   return (m_hw_item == other.m_hw_item);
75 }
76
77 rc_t
78 delete_cmd::issue(connection& con)
79 {
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
94 std::string
95 delete_cmd::to_string() const
96 {
97   std::ostringstream s;
98   s << "bridge-domain-delete: " << m_hw_item.to_string();
99
100   return (s.str());
101 }
102
103 dump_cmd::dump_cmd()
104 {
105 }
106
107 bool
108 dump_cmd::operator==(const dump_cmd& other) const
109 {
110   return (true);
111 }
112
113 rc_t
114 dump_cmd::issue(connection& con)
115 {
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
128 std::string
129 dump_cmd::to_string() const
130 {
131   return ("bridge-domain-dump");
132 }
133 }
134 }
135
136 /*
137  * fd.io coding-style-patch-verification: ON
138  *
139  * Local Variables:
140  * eval: (c-set-style "mozilla")
141  * End:
142  */