FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
bond_group_binding_cmds.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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 
17 
18 namespace VOM {
19 namespace bond_group_binding_cmds {
20 
22  const handle_t& bond_itf,
23  const bond_member& itf)
24  : rpc_cmd(item)
25  , m_bond_itf(bond_itf)
26  , m_itf(itf)
27 {
28 }
29 
30 bool
31 bind_cmd::operator==(const bind_cmd& other) const
32 {
33  return ((m_bond_itf == other.m_bond_itf) && (m_itf == other.m_itf));
34 }
35 
36 rc_t
38 {
39  msg_t req(con.ctx(), std::ref(*this));
40 
41  auto& payload = req.get_request().get_payload();
42 
43  m_itf.to_vpp(payload);
44  payload.bond_sw_if_index = m_bond_itf.value();
45 
46  VAPI_CALL(req.execute());
47 
48  m_hw_item.set(wait());
49 
50  return rc_t::OK;
51 }
52 
53 std::string
55 {
56  std::ostringstream s;
57  s << "bond-itf-bind: " << m_hw_item.to_string()
58  << " bond-itf:" << m_bond_itf.to_string()
59  << " slave-itf:" << m_itf.hdl().to_string();
60 
61  return (s.str());
62 }
63 
65  : rpc_cmd(item)
66  , m_itf(itf)
67 {
68 }
69 
70 bool
72 {
73  return (m_itf == other.m_itf);
74 }
75 
76 rc_t
78 {
79  msg_t req(con.ctx(), std::ref(*this));
80 
81  auto& payload = req.get_request().get_payload();
82  payload.sw_if_index = m_itf.value();
83 
84  VAPI_CALL(req.execute());
85 
86  wait();
88 
89  return rc_t::OK;
90 }
91 
92 std::string
94 {
95  std::ostringstream s;
96  s << "bond-itf-unbind: " << m_hw_item.to_string()
97  << " slave-itf:" << m_itf.to_string();
98 
99  return (s.str());
100 }
101 
103  : m_itf(hdl)
104 {
105 }
106 
108  : m_itf(d.m_itf)
109 {
110 }
111 
112 bool
113 dump_cmd::operator==(const dump_cmd& other) const
114 {
115  return (true);
116 }
117 
118 rc_t
120 {
121  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
122  auto& payload = m_dump->get_request().get_payload();
123  payload.sw_if_index = m_itf.value();
124 
125  VAPI_CALL(m_dump->execute());
126 
127  wait();
128 
129  return rc_t::OK;
130 }
131 
132 std::string
134 {
135  return ("bond-slave-itfs-dump");
136 }
137 
138 }; // namespace bond_group_binding_cmds
139 }; // namespace VOM
140 
141 /*
142  * fd.io coding-style-patch-verification: ON
143  *
144  * Local Variables:
145  * eval: (c-set-style "mozilla")
146  * End:
147  */
static const rc_t NOOP
The HW write/update action was/has not been attempted.
Definition: types.hpp:107
HW::item< bool > & m_hw_item
A reference to an object&#39;s HW::item that the command will update.
Definition: rpc_cmd.hpp:135
rc_t issue(connection &con)
Issue the command to VPP/HW.
std::string to_string() const
convert to string format for debug purposes
uint32_t value() const
get the value of the handle
Definition: types.cpp:96
A cmd class that detach slave from a bond interface.
Error codes that VPP will return during a HW write.
Definition: types.hpp:90
A cmd class that Dumps slave itfs.
A bond-member.
Definition: bond_member.hpp:26
vapi::Sw_interface_slave_dump msg_t
Definition: dump_cmd.hpp:46
std::string to_string() const
convert to string format for debug purposes
Definition: hw.hpp:160
std::string to_string() const
convert to string format for debug purposes
Definition: types.cpp:72
unbind_cmd(HW::item< bool > &item, const handle_t &itf)
Constructor.
bind_cmd(HW::item< bool > &item, const handle_t &bond_itf, const bond_member &itf)
Constructor.
A representation of the connection to VPP.
Definition: connection.hpp:33
HW::item< bool > & item()
return the HW item the command updates
Definition: rpc_cmd.hpp:64
A base class for all RPC commands to VPP.
Definition: rpc_cmd.hpp:38
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
Definition: types.hpp:29
rc_t issue(connection &con)
Issue the command to VPP/HW.
void to_vpp(vapi_payload_bond_enslave &bond_enslave) const
convert to VPP
Definition: bond_member.cpp:41
A type declaration of an interface handle in VPP.
Definition: types.hpp:236
bool operator==(const unbind_cmd &i) const
Comparison operator - only used for UT.
static const rc_t OK
The HW write was successfull.
Definition: types.hpp:112
std::string to_string() const
convert to string format for debug purposes
std::string to_string() const
convert to string format for debug purposes
rc_t wait()
Wait for the issue of the command to complete.
Definition: dump_cmd.hpp:93
bool operator==(const dump_cmd &i) const
Comparison operator - only used for UT.
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
Definition: connection.cpp:49
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
void set(const rc_t &rc)
Set the HW return code - should only be called from the family of Command objects.
Definition: hw.hpp:124
std::unique_ptr< vapi::Sw_interface_slave_dump > m_dump
The VAPI event registration.
Definition: dump_cmd.hpp:143
vapi::Bond_enslave msg_t
convenient typedef
Definition: rpc_cmd.hpp:44
const handle_t hdl(void) const
Get the interface handle.
Definition: bond_member.cpp:78
rc_t issue(connection &con)
Issue the command to VPP/HW.
A command class that binds the slave interface to the bond interface.
rc_t wait()
Wait on the commands promise.
Definition: rpc_cmd.hpp:89
bool operator==(const bind_cmd &i) const
Comparison operator - only used for UT.