VOM: support for pipes
[vpp.git] / extras / vom / 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   return (wait());
59 }
60
61 std::string
62 create_cmd::to_string() const
63 {
64   std::ostringstream s;
65   s << "bridge-domain-create: " << m_hw_item.to_string();
66
67   return (s.str());
68 }
69
70 delete_cmd::delete_cmd(HW::item<uint32_t>& item)
71   : rpc_cmd(item)
72 {
73 }
74
75 bool
76 delete_cmd::operator==(const delete_cmd& other) const
77 {
78   return (m_hw_item == other.m_hw_item);
79 }
80
81 rc_t
82 delete_cmd::issue(connection& con)
83 {
84   msg_t req(con.ctx(), std::ref(*this));
85
86   auto& payload = req.get_request().get_payload();
87   payload.bd_id = m_hw_item.data();
88   payload.is_add = 0;
89
90   VAPI_CALL(req.execute());
91
92   wait();
93   m_hw_item.set(rc_t::NOOP);
94
95   return (rc_t::OK);
96 }
97
98 std::string
99 delete_cmd::to_string() const
100 {
101   std::ostringstream s;
102   s << "bridge-domain-delete: " << m_hw_item.to_string();
103
104   return (s.str());
105 }
106
107 dump_cmd::dump_cmd()
108 {
109 }
110
111 bool
112 dump_cmd::operator==(const dump_cmd& other) const
113 {
114   return (true);
115 }
116
117 rc_t
118 dump_cmd::issue(connection& con)
119 {
120   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
121
122   auto& payload = m_dump->get_request().get_payload();
123   payload.bd_id = ~0;
124
125   VAPI_CALL(m_dump->execute());
126
127   wait();
128
129   return rc_t::OK;
130 }
131
132 std::string
133 dump_cmd::to_string() const
134 {
135   return ("bridge-domain-dump");
136 }
137 }
138 }
139
140 /*
141  * fd.io coding-style-patch-verification: ON
142  *
143  * Local Variables:
144  * eval: (c-set-style "mozilla")
145  * End:
146  */