19 namespace gbp_subnet_cmds {
30 , m_internal(internal)
39 return ((m_itf == other.m_itf) && (m_rd == other.m_rd) &&
40 (m_prefix == other.m_prefix) && (m_itf == other.m_itf) &&
41 (m_epg_id == other.m_epg_id));
47 msg_t req(con.
ctx(), std::ref(*
this));
49 auto& payload = req.get_request().get_payload();
51 payload.subnet.is_internal = m_internal;
52 payload.subnet.table_id = m_rd;
53 payload.subnet.sw_if_index = m_itf.
value();
54 payload.subnet.epg_id = m_epg_id;
55 m_prefix.
to_vpp(&payload.subnet.is_ip6, payload.subnet.address,
56 &payload.subnet.address_length);
68 <<
"internal:" << m_internal <<
", " << m_rd <<
":" << m_prefix.
to_string()
69 <<
" itf:" << m_itf <<
" epg-id:" << m_epg_id;
86 return ((m_rd == other.m_rd) && (m_prefix == other.m_prefix));
92 msg_t req(con.
ctx(), std::ref(*
this));
94 auto& payload = req.get_request().get_payload();
96 payload.subnet.table_id = m_rd;
97 m_prefix.
to_vpp(&payload.subnet.is_ip6, payload.subnet.address,
98 &payload.subnet.address_length);
100 payload.subnet.is_internal = 0;
101 payload.subnet.sw_if_index = ~0;
102 payload.subnet.epg_id = ~0;
112 std::ostringstream s;
132 m_dump.reset(
new msg_t(con.
ctx(), std::ref(*
this)));
144 return (
"gbp-subnet-dump");
uint32_t table_id_t
type def the table-id
uint32_t value() const
get the value of the handle
std::string to_string() const
convert to string format for debug purposes
bool operator==(const create_cmd &i) const
Comparison operator - only used for UT.
uint32_t epg_id_t
EPG IDs are 32 bit integers.
Error codes that VPP will return during a HW write.
rc_t issue(connection &con)
Issue the command to VPP/HW.
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.
rc_t wait()
Wait on the commands promise.
A cmd class that Dumps all the GBP subnets.
create_cmd(HW::item< bool > &item, route::table_id_t rd, const route::prefix_t &prefix, bool internal, const handle_t &itf, epg_id_t epg_id)
Constructor.
A representation of the connection to VPP.
std::string to_string() const
convert to string format for debug purposes
A base class for all RPC commands to VPP.
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
void to_vpp(uint8_t *is_ip6, uint8_t *addr, uint8_t *len) const
Convert the prefix into VPP API parameters.
std::string to_string() const
convert to string format for debug purposes
A cmd class that deletes a GBP subnet.
A type declaration of an interface handle in VPP.
static const rc_t OK
The HW write was successfull.
A command class that creates or updates the GBP subnet.
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
The VPP Object Model (VOM) library.
delete_cmd(HW::item< bool > &item, route::table_id_t rd, const route::prefix_t &prefix)
Constructor.
rc_t issue(connection &con)
Issue the command to VPP/HW.
rc_t issue(connection &con)
Issue the command to VPP/HW.
std::string to_string() const
convert to string format for debug purposes
bool operator==(const dump_cmd &i) const
Comparison operator - only used for UT.
HW::item< bool > & m_hw_item
A reference to an object's HW::item that the command will update.
HW::item< bool > & item()
return the HW item the command updates
vapi::Gbp_subnet_add_del msg_t
convenient typedef