From fd920609819a5b10d3d7c8d34fe4fa4214c7da22 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Thu, 23 Nov 2017 12:15:00 -0800 Subject: VOM: Additions to allow uses to UT applications that use VOM - find object by key - compare objects Change-Id: I36ec8612be9482bcef7ceced2a59f7403f77b3e8 Signed-off-by: Neale Ranns --- src/vpp-api/vom/bridge_domain.hpp | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) (limited to 'src/vpp-api/vom/bridge_domain.hpp') diff --git a/src/vpp-api/vom/bridge_domain.hpp b/src/vpp-api/vom/bridge_domain.hpp index 2c134f0740b..c7f84e9ec3f 100644 --- a/src/vpp-api/vom/bridge_domain.hpp +++ b/src/vpp-api/vom/bridge_domain.hpp @@ -31,6 +31,11 @@ namespace VOM { class bridge_domain : public object_base { public: + /** + * Key Type for Bridge Domains in the sigular DB + */ + typedef uint32_t key_t; + /** * Bridge Domain Learning mode */ @@ -67,6 +72,21 @@ public: */ ~bridge_domain(); + /** + * Comparison operator - for UT + */ + bool operator==(const bridge_domain& b) const; + + /** + * Return the bridge domain's VPP ID + */ + uint32_t id() const; + + /** + * Return the bridge domain's key + */ + const key_t& key() const; + /** * Return the matchin 'singular' instance of the bridge-domain */ @@ -77,15 +97,10 @@ public: */ std::string to_string(void) const; - /** - * Return VPP's handle for this obejct - */ - uint32_t id() const; - /** * Static function to find the bridge_domain in the model */ - static std::shared_ptr find(uint32_t id); + static std::shared_ptr find(const key_t& key); /** * Dump all bridge-doamin into the stream provided @@ -146,7 +161,7 @@ private: /** * It's the singular_db class that calls replay() */ - friend class singular_db; + friend class singular_db; /** * Sweep/reap the object if still stale @@ -171,7 +186,7 @@ private: /** * A map of all interfaces key against the interface's name */ - static singular_db m_db; + static singular_db m_db; }; }; -- cgit 1.2.3-korg