FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
arp_proxy_config_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 #include "vom/api_types.hpp"
18 
19 namespace VOM {
20 namespace arp_proxy_config_cmds {
21 
23  const boost::asio::ip::address_v4& low,
24  const boost::asio::ip::address_v4& high)
25  : rpc_cmd(item)
26  , m_low(low)
27  , m_high(high)
28 {
29 }
30 
31 bool
33 {
34  return ((m_low == o.m_low) && (m_high == o.m_high));
35 }
36 
37 rc_t
39 {
40  msg_t req(con.ctx(), std::ref(*this));
41 
42  auto& payload = req.get_request().get_payload();
43  payload.is_add = 1;
44 
45  to_api(m_low, payload.proxy.low);
46  to_api(m_high, payload.proxy.hi);
47 
48  VAPI_CALL(req.execute());
49 
50  wait();
51 
52  return (rc_t::OK);
53 }
54 
55 std::string
57 {
58  std::ostringstream s;
59  s << "ARP-proxy-config: " << m_hw_item.to_string()
60  << " low:" << m_low.to_string() << " high:" << m_high.to_string();
61 
62  return (s.str());
63 }
64 
66  const boost::asio::ip::address_v4& low,
67  const boost::asio::ip::address_v4& high)
68  : rpc_cmd(item)
69  , m_low(low)
70  , m_high(high)
71 {
72 }
73 
74 bool
76 {
77  return ((m_low == o.m_low) && (m_high == o.m_high));
78 }
79 
80 rc_t
82 {
83  msg_t req(con.ctx(), std::ref(*this));
84 
85  auto& payload = req.get_request().get_payload();
86  payload.is_add = 0;
87 
88  to_api(m_low, payload.proxy.low);
89  to_api(m_high, payload.proxy.hi);
90 
91  VAPI_CALL(req.execute());
92 
93  wait();
95 
96  return (rc_t::OK);
97 }
98 
99 std::string
101 {
102  std::ostringstream s;
103  s << "ARP-proxy-unconfig: " << m_hw_item.to_string()
104  << " low:" << m_low.to_string() << " high:" << m_high.to_string();
105 
106  return (s.str());
107 }
108 
109 bool
110 dump_cmd::operator==(const dump_cmd& other) const
111 {
112  return (true);
113 }
114 
115 rc_t
117 {
118  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
119 
120  VAPI_CALL(m_dump->execute());
121 
122  wait();
123 
124  return rc_t::OK;
125 }
126 
127 std::string
129 {
130  return ("ARP-proxy-dump");
131 }
132 
133 }; // namesapce cmds
134 }; // namespace VOM
135 
136 /*
137  * fd.io coding-style-patch-verification: ON
138  *
139  * Local Variables:
140  * eval: (c-set-style "mozilla")
141  * End:
142  */
static const rc_t NOOP
The HW write/update action was/has not been attempted.
Definition: types.hpp:104
rc_t issue(connection &con)
Issue the command to VPP/HW.
config_cmd(HW::item< bool > &item, const boost::asio::ip::address_v4 &lo, const boost::asio::ip::address_v4 &high)
Constructor.
Error codes that VPP will return during a HW write.
Definition: types.hpp:89
rc_t issue(connection &con)
Issue the command to VPP/HW.
vapi_enum_ip_neighbor_flags to_api(const neighbour::flags_t &f)
Definition: api_types.cpp:21
std::string to_string() const
convert to string format for debug purposes
Definition: hw.hpp:161
rc_t wait()
Wait on the commands promise.
Definition: rpc_cmd.hpp:82
A representation of the connection to VPP.
Definition: connection.hpp:33
bool operator==(const config_cmd &i) const
Comparison operator - only used for UT.
A base class for all RPC commands to VPP.
Definition: rpc_cmd.hpp:40
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
Definition: types.hpp:29
unconfig_cmd(HW::item< bool > &item, const boost::asio::ip::address_v4 &lo, const boost::asio::ip::address_v4 &hig)
Constructor.
static const rc_t OK
The HW write was successfull.
Definition: types.hpp:109
std::string to_string() const
convert to string format for debug purposes
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:125
A cmd class that Unconfigs ArpProxy Config from an interface.
std::string to_string() const
convert to string format for debug purposes
A command class that adds the ARP Proxy config.
A cmd class that Dumps all the Proxy ARP configs.
bool operator==(const unconfig_cmd &i) const
Comparison operator - only used for UT.
HW::item< bool > & m_hw_item
A reference to an object&#39;s HW::item that the command will update.
Definition: rpc_cmd.hpp:134
rc_t issue(connection &con)
Issue the command to VPP/HW.
HW::item< bool > & item()
return the HW item the command updates
Definition: rpc_cmd.hpp:66
vapi::Proxy_arp_add_del msg_t
convenient typedef
Definition: rpc_cmd.hpp:46
bool operator==(const dump_cmd &i) const
Comparison operator - only used for UT.
std::string to_string() const
convert to string format for debug purposes