FD.io VPP  v18.07-rc0-415-g6c78436
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,
24  epg_id_t epg_id)
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  m_hw_item.set(wait());
53 
54  return rc_t::OK;
55 }
56 
57 std::string
59 {
60  std::ostringstream s;
61  s << "gbp-recirc-create: " << m_hw_item.to_string() << " itf:" << m_itf
62  << " ext:" << m_is_ext << " epg-id:" << m_epg_id;
63 
64  return (s.str());
65 }
66 
68  : rpc_cmd(item)
69  , m_itf(itf)
70 {
71 }
72 
73 bool
75 {
76  return (m_itf == other.m_itf);
77 }
78 
79 rc_t
81 {
82  msg_t req(con.ctx(), std::ref(*this));
83 
84  auto& payload = req.get_request().get_payload();
85  payload.is_add = 0;
86  payload.recirc.sw_if_index = m_itf.value();
87  payload.recirc.epg_id = ~0;
88 
89  VAPI_CALL(req.execute());
90 
91  m_hw_item.set(wait());
92 
93  return rc_t::OK;
94 }
95 
96 std::string
98 {
99  std::ostringstream s;
100  s << "gbp-recirc-delete: " << m_hw_item.to_string() << " itf:" << m_itf;
101 
102  return (s.str());
103 }
104 
106 {
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 ("gbp-recirc-dump");
131 }
132 
133 }; // namespace gbp_recirc_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  */
std::string to_string() const
convert to string format for debug purposes
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
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:90
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:160
A representation of the connection to VPP.
Definition: connection.hpp:33
bool operator==(const create_cmd &i) const
Comparison operator - only used for UT.
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
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:236
static const rc_t OK
The HW write was successfull.
Definition: types.hpp:112
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
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
vapi::Gbp_recirc_add_del msg_t
convenient typedef
Definition: rpc_cmd.hpp:44
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.
delete_cmd(HW::item< bool > &item, const handle_t &itf)
Constructor.