FD.io VPP  v18.07-rc0-415-g6c78436
Vector Packet Processing
gbp_endpoint_group_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 
17 
18 namespace VOM {
19 namespace gbp_endpoint_group_cmds {
20 
22  epg_id_t epg_id,
23  uint32_t bd_id,
24  route::table_id_t rd_id,
25  const handle_t& itf)
26  : rpc_cmd(item)
27  , m_epg_id(epg_id)
28  , m_bd_id(bd_id)
29  , m_rd_id(rd_id)
30  , m_itf(itf)
31 {
32 }
33 
34 bool
36 {
37  return ((m_itf == other.m_itf) && (m_bd_id == other.m_bd_id) &&
38  (m_rd_id == other.m_rd_id) && (m_epg_id == other.m_epg_id));
39 }
40 
41 rc_t
43 {
44  msg_t req(con.ctx(), std::ref(*this));
45 
46  auto& payload = req.get_request().get_payload();
47  payload.is_add = 1;
48  payload.epg.uplink_sw_if_index = m_itf.value();
49  payload.epg.epg_id = m_epg_id;
50  payload.epg.bd_id = m_bd_id;
51  payload.epg.ip4_table_id = m_rd_id;
52  payload.epg.ip6_table_id = m_rd_id;
53 
54  VAPI_CALL(req.execute());
55 
56  m_hw_item.set(wait());
57 
58  return rc_t::OK;
59 }
60 
61 std::string
63 {
64  std::ostringstream s;
65  s << "gbp-endpoint-group-create: " << m_hw_item.to_string()
66  << " epg-id:" << m_epg_id << " bd-id:" << m_bd_id << " rd-id:" << m_rd_id
67  << " itf:" << m_itf;
68 
69  return (s.str());
70 }
71 
73  : rpc_cmd(item)
74  , m_epg_id(epg_id)
75 {
76 }
77 
78 bool
80 {
81  return (m_epg_id == other.m_epg_id);
82 }
83 
84 rc_t
86 {
87  msg_t req(con.ctx(), std::ref(*this));
88 
89  auto& payload = req.get_request().get_payload();
90  payload.is_add = 0;
91  payload.epg.epg_id = m_epg_id;
92 
93  VAPI_CALL(req.execute());
94 
95  m_hw_item.set(wait());
96 
97  return rc_t::OK;
98 }
99 
100 std::string
102 {
103  std::ostringstream s;
104  s << "gbp-endpoint-group-delete: " << m_hw_item.to_string()
105  << " epg:" << m_epg_id;
106 
107  return (s.str());
108 }
109 
111 {
112 }
113 
114 bool
115 dump_cmd::operator==(const dump_cmd& other) const
116 {
117  return (true);
118 }
119 
120 rc_t
122 {
123  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
124 
125  VAPI_CALL(m_dump->execute());
126 
127  wait();
128 
129  return rc_t::OK;
130 }
131 
132 std::string
134 {
135  return ("gbp-endpoint-group-dump");
136 }
137 
138 }; // namespace gbp_endpoint_group_cmds
139 }; // namespace VOM
140 
141 /*
142  * fd.io coding-style-patch-verification: ON
143  *
144  * Local Variables:
145  * eval: (c-set-style "mozilla")
146  * End:
147  */
delete_cmd(HW::item< bool > &item, epg_id_t epg_id)
Constructor.
uint32_t table_id_t
type def the table-id
Definition: prefix.hpp:83
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
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.
rc_t issue(connection &con)
Issue the command to VPP/HW.
A cmd class that deletes a GBP endpoint_group.
rc_t issue(connection &con)
Issue the command to VPP/HW.
std::string to_string() const
convert to string format for debug purposes
Error codes that VPP will return during a HW write.
Definition: types.hpp:90
std::string to_string() const
convert to string format for debug purposes
Definition: hw.hpp:160
bool operator==(const create_cmd &i) const
Comparison operator - only used for UT.
create_cmd(HW::item< bool > &item, epg_id_t epg_id, uint32_t bd_id, route::table_id_t rd_id, const handle_t &itf)
Constructor.
A cmd class that Dumps all the GBP endpoint_groups.
A representation of the connection to VPP.
Definition: connection.hpp:33
std::string to_string() const
convert to string format for debug purposes
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
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
Definition: types.hpp:29
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
bool operator==(const delete_cmd &i) const
Comparison operator - only used for UT.
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:124
vapi::Gbp_endpoint_group_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
rc_t issue(connection &con)
Issue the command to VPP/HW.
A command class that creates or updates the GBP endpoint_group.