diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2017-11-03 04:39:05 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2017-11-06 17:44:21 +0000 |
commit | 9ef1c0adbf9399c55deeede3cf629dd4e8c20304 (patch) | |
tree | 0eeed8f869eee35a48797b6b837c16222a627e46 /src/vpp-api/vom/bridge_domain_entry_cmds.cpp | |
parent | addb55b9e0533c5f720b1cc1bdeeb4bbd0e6bf2a (diff) |
VOM reshuffle
split the VOM into two halves; a top/front-end and a bottom/backend.
Only the backend includes the auto-generated VAPI.
This serves two purposes:
1 - improves ompile times for VOM, since the VAPI is included
only in the backend.
2 - does not expose VAPI to users of VOM
Change-Id: I17b93aeaef10c0eba8612016d9034aca5628d9f7
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'src/vpp-api/vom/bridge_domain_entry_cmds.cpp')
-rw-r--r-- | src/vpp-api/vom/bridge_domain_entry_cmds.cpp | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/src/vpp-api/vom/bridge_domain_entry_cmds.cpp b/src/vpp-api/vom/bridge_domain_entry_cmds.cpp index 990af069a90..ddb8bf14f12 100644 --- a/src/vpp-api/vom/bridge_domain_entry_cmds.cpp +++ b/src/vpp-api/vom/bridge_domain_entry_cmds.cpp @@ -13,13 +13,14 @@ * limitations under the License. */ -#include "vom/bridge_domain_entry.hpp" +#include "vom/bridge_domain_entry_cmds.hpp" namespace VOM { -bridge_domain_entry::create_cmd::create_cmd(HW::item<bool>& item, - const mac_address_t& mac, - uint32_t bd, - handle_t tx_itf) +namespace bridge_domain_entry_cmds { +create_cmd::create_cmd(HW::item<bool>& item, + const mac_address_t& mac, + uint32_t bd, + handle_t tx_itf) : rpc_cmd(item) , m_mac(mac) , m_bd(bd) @@ -28,14 +29,14 @@ bridge_domain_entry::create_cmd::create_cmd(HW::item<bool>& item, } bool -bridge_domain_entry::create_cmd::operator==(const create_cmd& other) const +create_cmd::operator==(const create_cmd& other) const { return ((m_mac == other.m_mac) && (m_tx_itf == other.m_tx_itf) && (m_bd == other.m_bd)); } rc_t -bridge_domain_entry::create_cmd::issue(connection& con) +create_cmd::issue(connection& con) { msg_t req(con.ctx(), std::ref(*this)); @@ -53,7 +54,7 @@ bridge_domain_entry::create_cmd::issue(connection& con) } std::string -bridge_domain_entry::create_cmd::to_string() const +create_cmd::to_string() const { std::ostringstream s; s << "bridge-domain-entry-create: " << m_hw_item.to_string() << " bd:" << m_bd @@ -62,9 +63,9 @@ bridge_domain_entry::create_cmd::to_string() const return (s.str()); } -bridge_domain_entry::delete_cmd::delete_cmd(HW::item<bool>& item, - const mac_address_t& mac, - uint32_t bd) +delete_cmd::delete_cmd(HW::item<bool>& item, + const mac_address_t& mac, + uint32_t bd) : rpc_cmd(item) , m_mac(mac) , m_bd(bd) @@ -72,13 +73,13 @@ bridge_domain_entry::delete_cmd::delete_cmd(HW::item<bool>& item, } bool -bridge_domain_entry::delete_cmd::operator==(const delete_cmd& other) const +delete_cmd::operator==(const delete_cmd& other) const { return ((m_mac == other.m_mac) && (m_bd == other.m_bd)); } rc_t -bridge_domain_entry::delete_cmd::issue(connection& con) +delete_cmd::issue(connection& con) { msg_t req(con.ctx(), std::ref(*this)); @@ -97,7 +98,7 @@ bridge_domain_entry::delete_cmd::issue(connection& con) } std::string -bridge_domain_entry::delete_cmd::to_string() const +delete_cmd::to_string() const { std::ostringstream s; s << "bridge-domain-entry-delete: " << m_hw_item.to_string() << " bd:" << m_bd @@ -106,18 +107,18 @@ bridge_domain_entry::delete_cmd::to_string() const return (s.str()); } -bridge_domain_entry::dump_cmd::dump_cmd() +dump_cmd::dump_cmd() { } bool -bridge_domain_entry::dump_cmd::operator==(const dump_cmd& other) const +dump_cmd::operator==(const dump_cmd& other) const { return (true); } rc_t -bridge_domain_entry::dump_cmd::issue(connection& con) +dump_cmd::issue(connection& con) { m_dump.reset(new msg_t(con.ctx(), std::ref(*this))); @@ -132,11 +133,12 @@ bridge_domain_entry::dump_cmd::issue(connection& con) } std::string -bridge_domain_entry::dump_cmd::to_string() const +dump_cmd::to_string() const { return ("bridge-domain-entry-dump"); } } +} /* * fd.io coding-style-patch-verification: ON |