GBP V2
[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                        const bridge_domain::arp_term_mode_t& amode,
25                        const bridge_domain::flood_mode_t& fmode,
26                        const bridge_domain::mac_age_mode_t& mmode)
27   : rpc_cmd(item)
28   , m_learning_mode(lmode)
29   , m_arp_term_mode(amode)
30   , m_flood_mode(fmode)
31   , m_mac_age_mode(mmode)
32 {
33 }
34
35 bool
36 create_cmd::operator==(const create_cmd& other) const
37 {
38   return (m_hw_item.data() == other.m_hw_item.data());
39 }
40
41 rc_t
42 create_cmd::issue(connection& con)
43 {
44   msg_t req(con.ctx(), std::ref(*this));
45
46   auto& payload = req.get_request().get_payload();
47   payload.bd_id = m_hw_item.data();
48   payload.flood = m_flood_mode.value();
49   payload.uu_flood = m_flood_mode.value();
50   payload.forward = 1;
51   payload.learn = m_learning_mode.value();
52   payload.arp_term = m_arp_term_mode.value();
53   payload.mac_age = m_mac_age_mode.value();
54   payload.is_add = 1;
55
56   VAPI_CALL(req.execute());
57
58   m_hw_item.set(wait());
59
60   return (rc_t::OK);
61 }
62
63 std::string
64 create_cmd::to_string() const
65 {
66   std::ostringstream s;
67   s << "bridge-domain-create: " << m_hw_item.to_string();
68
69   return (s.str());
70 }
71
72 delete_cmd::delete_cmd(HW::item<uint32_t>& item)
73   : rpc_cmd(item)
74 {
75 }
76
77 bool
78 delete_cmd::operator==(const delete_cmd& other) const
79 {
80   return (m_hw_item == other.m_hw_item);
81 }
82
83 rc_t
84 delete_cmd::issue(connection& con)
85 {
86   msg_t req(con.ctx(), std::ref(*this));
87
88   auto& payload = req.get_request().get_payload();
89   payload.bd_id = m_hw_item.data();
90   payload.is_add = 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
100 std::string
101 delete_cmd::to_string() const
102 {
103   std::ostringstream s;
104   s << "bridge-domain-delete: " << m_hw_item.to_string();
105
106   return (s.str());
107 }
108
109 dump_cmd::dump_cmd()
110 {
111 }
112
113 bool
114 dump_cmd::operator==(const dump_cmd& other) const
115 {
116   return (true);
117 }
118
119 rc_t
120 dump_cmd::issue(connection& con)
121 {
122   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
123
124   auto& payload = m_dump->get_request().get_payload();
125   payload.bd_id = ~0;
126
127   VAPI_CALL(m_dump->execute());
128
129   wait();
130
131   return rc_t::OK;
132 }
133
134 std::string
135 dump_cmd::to_string() const
136 {
137   return ("bridge-domain-dump");
138 }
139 }
140 }
141
142 /*
143  * fd.io coding-style-patch-verification: ON
144  *
145  * Local Variables:
146  * eval: (c-set-style "mozilla")
147  * End:
148  */