FD.io VPP  v19.01.1-17-ge106252
Vector Packet Processing
gbp_recirc_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 
16 #include "vom/gbp_recirc_cmds.hpp"
17 
18 namespace VOM {
19 namespace gbp_recirc_cmds {
20 
22  const handle_t& itf,
23  bool is_ext,
25  : rpc_cmd(item)
26  , m_itf(itf)
27  , m_is_ext(is_ext)
28  , m_epg_id(epg_id)
29 {
30 }
31 
32 bool
34 {
35  return ((m_itf == other.m_itf) && (m_is_ext == other.m_is_ext) &&
36  (m_epg_id == other.m_epg_id));
37 }
38 
39 rc_t
41 {
42  msg_t req(con.ctx(), std::ref(*this));
43 
44  auto& payload = req.get_request().get_payload();
45  payload.is_add = 1;
46  payload.recirc.sw_if_index = m_itf.value();
47  payload.recirc.epg_id = m_epg_id;
48  payload.recirc.is_ext = m_is_ext;
49 
50  VAPI_CALL(req.execute());
51 
52  return (wait());
53 }
54 
55 std::string
57 {
58  std::ostringstream s;
59  s << "gbp-recirc-create: " << m_hw_item.to_string() << " itf:" << m_itf
60  << " ext:" << m_is_ext << " epg-id:" << m_epg_id;
61 
62  return (s.str());
63 }
64 
66  : rpc_cmd(item)
67  , m_itf(itf)
68 {
69 }
70 
71 bool
73 {
74  return (m_itf == other.m_itf);
75 }
76 
77 rc_t
79 {
80  msg_t req(con.ctx(), std::ref(*this));
81 
82  auto& payload = req.get_request().get_payload();
83  payload.is_add = 0;
84  payload.recirc.sw_if_index = m_itf.value();
85  payload.recirc.epg_id = ~0;
86 
87  VAPI_CALL(req.execute());
88 
89  return (wait());
90 }
91 
92 std::string
94 {
95  std::ostringstream s;
96  s << "gbp-recirc-delete: " << m_hw_item.to_string() << " itf:" << m_itf;
97 
98  return (s.str());
99 }
100 
102 {
103 }
104 
105 bool
106 dump_cmd::operator==(const dump_cmd& other) const
107 {
108  return (true);
109 }
110 
111 rc_t
113 {
114  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
115 
116  VAPI_CALL(m_dump->execute());
117 
118  wait();
119 
120  return rc_t::OK;
121 }
122 
123 std::string
125 {
126  return ("gbp-recirc-dump");
127 }
128 
129 }; // namespace gbp_recirc_cmds
130 }; // namespace VOM
131 
132 /*
133  * fd.io coding-style-patch-verification: ON
134  *
135  * Local Variables:
136  * eval: (c-set-style "mozilla")
137  * End:
138  */
std::string to_string() const
convert to string format for debug purposes
create_cmd(HW::item< bool > &item, const handle_t &itf, bool is_ext, epg_id_t epg_id)
Constructor.
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:93
uint32_t epg_id_t
EPG IDs are 32 bit integers.
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.
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 create_cmd &i) const
Comparison operator - only used for UT.
u16 epg_id
Definition: gbp.api:116
A base class for all RPC commands to VPP.
Definition: rpc_cmd.hpp:40
A cmd class that deletes a GBP recirc.
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
Definition: types.hpp:29
A command class that creates or updates the GBP recirc.
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
rc_t issue(connection &con)
Issue the command to VPP/HW.
rc_t issue(connection &con)
Issue the command to VPP/HW.
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
Definition: connection.cpp:49
A cmd class that Dumps all the GBP recircs.
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
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
bool operator==(const delete_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
delete_cmd(HW::item< bool > &item, const handle_t &itf)
Constructor.
HW::item< bool > & item()
return the HW item the command updates
Definition: rpc_cmd.hpp:66
vapi::Gbp_recirc_add_del msg_t
convenient typedef
Definition: rpc_cmd.hpp:46