FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
ip_unnumbered_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 #include <vapi/vpe.api.vapi.hpp>
19 
20 namespace VOM {
21 namespace ip_unnumbered_cmds {
22 
24  const handle_t& itf,
25  const handle_t& l3_itf)
26  : rpc_cmd(item)
27  , m_itf(itf)
28  , m_l3_itf(l3_itf)
29 {
30 }
31 
32 bool
34 {
35  return ((m_itf == o.m_itf) && (m_l3_itf == o.m_l3_itf));
36 }
37 
38 rc_t
40 {
41  msg_t req(con.ctx(), std::ref(*this));
42 
43  auto& payload = req.get_request().get_payload();
44  payload.is_add = 1;
45  payload.sw_if_index = m_l3_itf.value();
46  payload.unnumbered_sw_if_index = m_itf.value();
47 
48  VAPI_CALL(req.execute());
49 
50  return (wait());
51 }
52 
53 std::string
55 {
56  std::ostringstream s;
57  s << "IP-unnumberd-config: " << m_hw_item.to_string()
58  << " itf:" << m_itf.to_string() << " l3-itf:" << m_l3_itf.to_string();
59 
60  return (s.str());
61 }
62 
64  const handle_t& itf,
65  const handle_t& l3_itf)
66  : rpc_cmd(item)
67  , m_itf(itf)
68  , m_l3_itf(l3_itf)
69 {
70 }
71 
72 bool
74 {
75  return ((m_itf == o.m_itf) && (m_l3_itf == o.m_l3_itf));
76 }
77 
78 rc_t
80 {
81  msg_t req(con.ctx(), std::ref(*this));
82 
83  auto& payload = req.get_request().get_payload();
84  payload.is_add = 0;
85  payload.sw_if_index = m_l3_itf.value();
86  payload.unnumbered_sw_if_index = m_itf.value();
87 
88  VAPI_CALL(req.execute());
89 
90  wait();
92 
93  return rc_t::OK;
94 }
95 
96 std::string
98 {
99  std::ostringstream s;
100  s << "IP-unnumberd-unconfig: " << m_hw_item.to_string()
101  << " itf:" << m_itf.to_string() << " l3-itf:" << m_l3_itf.to_string();
102 
103  return (s.str());
104 }
105 
106 bool
107 dump_cmd::operator==(const dump_cmd& other) const
108 {
109  return (true);
110 }
111 
112 rc_t
114 {
115  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
116 
117  auto& payload = m_dump->get_request().get_payload();
118  payload.sw_if_index = ~0;
119 
120  VAPI_CALL(m_dump->execute());
121 
122  wait();
123 
124  return rc_t::OK;
125 }
126 
127 std::string
129 {
130  return ("ip-unnumbered-dump");
131 }
132 
133 }; // namespace ip_unnumbered_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
A command class that configures the IP unnumbered.
A cmd class that Dumps all the IP unnumbered interfaces.
uint32_t value() const
get the value of the handle
Definition: types.cpp:93
config_cmd(HW::item< bool > &item, const handle_t &itf, const handle_t &l3_itf)
Constructor.
Error codes that VPP will return during a HW write.
Definition: types.hpp:89
A cmd class that Unconfigs L3 Config from an interface.
std::string to_string() const
convert to string format for debug purposes
bool operator==(const config_cmd &i) const
Comparison operator - only used for UT.
std::string to_string() const
convert to string format for debug purposes
Definition: hw.hpp:161
unconfig_cmd(HW::item< bool > &item, const handle_t &itf, const handle_t &l3_itf)
Constructor.
A representation of the connection to VPP.
Definition: connection.hpp:33
rc_t issue(connection &con)
Issue the command to VPP/HW.
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
bool operator==(const unconfig_cmd &i) const
Comparison operator - only used for UT.
std::string to_string() const
convert to string format for debug purposes
std::string to_string() const
convert to string format for debug purposes
Definition: types.cpp:69
rc_t issue(connection &con)
Issue the command to VPP/HW.
A type declaration of an interface handle in VPP.
Definition: types.hpp:233
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
bool operator==(const dump_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
HW::item< bool > & item()
return the HW item the command updates
Definition: rpc_cmd.hpp:66
vapi::Sw_interface_set_unnumbered msg_t
convenient typedef
Definition: rpc_cmd.hpp:46
rc_t issue(connection &con)
Issue the command to VPP/HW.