FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
arp_proxy_binding_cmds.cpp
Go to the documentation of this file.
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 
17 
18 namespace VOM {
19 namespace arp_proxy_binding_cmds {
20 
22  : rpc_cmd(item)
23  , m_itf(itf)
24 {}
25 
26 bool
27 bind_cmd::operator==(const bind_cmd& other) const
28 {
29  return (m_itf == other.m_itf);
30 }
31 
32 rc_t
34 {
35  msg_t req(con.ctx(), std::ref(*this));
36 
37  auto& payload = req.get_request().get_payload();
38  payload.sw_if_index = m_itf.value();
39  payload.enable = 1;
40 
41  VAPI_CALL(req.execute());
42 
43  return (wait());
44 }
45 
48 {
49  std::ostringstream s;
50  s << "ARP-proxy-bind: " << m_hw_item.to_string()
51  << " itf:" << m_itf.to_string();
52 
53  return (s.str());
54 }
55 
57  : rpc_cmd(item)
58  , m_itf(itf)
59 {}
60 
61 bool
63 {
64  return (m_itf == other.m_itf);
65 }
66 
67 rc_t
69 {
70  msg_t req(con.ctx(), std::ref(*this));
71 
72  auto& payload = req.get_request().get_payload();
73  payload.sw_if_index = m_itf.value();
74  payload.enable = 0;
75 
76  VAPI_CALL(req.execute());
77 
78  wait();
80 
81  return rc_t::OK;
82 }
83 
86 {
87  std::ostringstream s;
88  s << "ARP-proxy-unbind: " << m_hw_item.to_string()
89  << " itf:" << m_itf.to_string();
90 
91  return (s.str());
92 }
93 
94 bool
95 dump_cmd::operator==(const dump_cmd& other) const
96 {
97  return (true);
98 }
99 
100 rc_t
102 {
103  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
104 
105  VAPI_CALL(m_dump->execute());
106 
107  wait();
108 
109  return rc_t::OK;
110 }
111 
114 {
115  return ("ARP-proxy-binding-dump");
116 }
117 
118 }; // namespace arp_proxy_binding_cmds
119 }; // namespace VOM
120 
121 /*
122  * fd.io coding-style-patch-verification: OFF
123  *
124  * Local Variables:
125  * eval: (c-set-style "mozilla")
126  * End:
127  */
VOM::arp_proxy_binding_cmds::bind_cmd::bind_cmd
bind_cmd(HW::item< bool > &item, const handle_t &itf)
Constructor.
Definition: arp_proxy_binding_cmds.cpp:21
VOM::HW::item< bool >
VOM::dump_cmd< vapi::Proxy_arp_intfc_dump >::msg_t
vapi::Proxy_arp_intfc_dump msg_t
Definition: dump_cmd.hpp:46
VOM::arp_proxy_binding_cmds::bind_cmd
A command class that binds the LLDP config to the interface.
Definition: arp_proxy_binding_cmds.hpp:29
arp_proxy_binding_cmds.hpp
VOM::rpc_cmd< HW::item< bool >, vapi::Proxy_arp_intfc_enable_disable >::wait
rc_t wait()
Wait on the commands promise.
Definition: rpc_cmd.hpp:82
VOM::HW::item::set
void set(const rc_t &rc)
Set the HW return code - should only be called from the family of Command objects.
Definition: hw.hpp:125
VOM::arp_proxy_binding_cmds::unbind_cmd::to_string
std::string to_string() const
convert to string format for debug purposes
Definition: arp_proxy_binding_cmds.cpp:85
VOM
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
VOM::arp_proxy_binding_cmds::unbind_cmd::issue
rc_t issue(connection &con)
Issue the command to VPP/HW.
Definition: arp_proxy_binding_cmds.cpp:68
VOM::rc_t::OK
const static rc_t OK
The HW write was successfull.
Definition: types.hpp:109
VOM::handle_t::value
uint32_t value() const
get the value of the handle
Definition: types.cpp:93
VOM::rpc_cmd
A base class for all RPC commands to VPP.
Definition: rpc_cmd.hpp:40
con
Connection con
Definition: vapi_cpp_test.cpp:56
VOM::arp_proxy_binding_cmds::unbind_cmd::unbind_cmd
unbind_cmd(HW::item< bool > &item, const handle_t &itf)
Constructor.
Definition: arp_proxy_binding_cmds.cpp:56
VOM::rpc_cmd< HW::item< bool >, vapi::Proxy_arp_intfc_enable_disable >::m_hw_item
HW::item< bool > & m_hw_item
A reference to an object's HW::item that the command will update.
Definition: rpc_cmd.hpp:134
VOM::dump_cmd< vapi::Proxy_arp_intfc_dump >::m_dump
std::unique_ptr< vapi::Proxy_arp_intfc_dump > m_dump
The VAPI event registration.
Definition: dump_cmd.hpp:143
VOM::arp_proxy_binding_cmds::dump_cmd::issue
rc_t issue(connection &con)
Issue the command to VPP/HW.
Definition: arp_proxy_binding_cmds.cpp:101
VAPI_CALL
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
Definition: types.hpp:29
VOM::connection
A representation of the connection to VPP.
Definition: connection.hpp:33
VOM::dump_cmd< vapi::Proxy_arp_intfc_dump >::wait
rc_t wait()
Wait for the issue of the command to complete.
Definition: dump_cmd.hpp:93
VOM::rc_t::NOOP
const static rc_t NOOP
The HW write/update action was/has not been attempted.
Definition: types.hpp:104
VOM::handle_t
A type declaration of an interface handle in VPP.
Definition: types.hpp:233
VOM::arp_proxy_binding_cmds::dump_cmd::to_string
std::string to_string() const
convert to string format for debug purposes
Definition: arp_proxy_binding_cmds.cpp:113
VOM::HW::item::to_string
std::string to_string() const
convert to string format for debug purposes
Definition: hw.hpp:161
VOM::arp_proxy_binding_cmds::bind_cmd::operator==
bool operator==(const bind_cmd &i) const
Comparison operator - only used for UT.
Definition: arp_proxy_binding_cmds.cpp:27
VOM::arp_proxy_binding_cmds::bind_cmd::to_string
std::string to_string() const
convert to string format for debug purposes
Definition: arp_proxy_binding_cmds.cpp:47
VOM::rpc_cmd< HW::item< bool >, vapi::Proxy_arp_intfc_enable_disable >::msg_t
vapi::Proxy_arp_intfc_enable_disable msg_t
convenient typedef
Definition: rpc_cmd.hpp:46
VOM::arp_proxy_binding_cmds::unbind_cmd
A cmd class that Unbinds ArpProxy Config from an interface.
Definition: arp_proxy_binding_cmds.hpp:62
VOM::handle_t::to_string
std::string to_string() const
convert to string format for debug purposes
Definition: types.cpp:69
VOM::arp_proxy_binding_cmds::dump_cmd
A cmd class that Dumps all the Proxy ARP configs.
Definition: arp_proxy_binding_cmds.hpp:95
VOM::arp_proxy_binding_cmds::unbind_cmd::operator==
bool operator==(const unbind_cmd &i) const
Comparison operator - only used for UT.
Definition: arp_proxy_binding_cmds.cpp:62
VOM::arp_proxy_binding_cmds::dump_cmd::operator==
bool operator==(const dump_cmd &i) const
Comparison operator - only used for UT.
Definition: arp_proxy_binding_cmds.cpp:95
item
cJSON * item
Definition: cJSON.h:222
VOM::rc_t
Error codes that VPP will return during a HW write.
Definition: types.hpp:89
VOM::arp_proxy_binding_cmds::bind_cmd::issue
rc_t issue(connection &con)
Issue the command to VPP/HW.
Definition: arp_proxy_binding_cmds.cpp:33
string
const char *const string
Definition: cJSON.h:172