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/interface.hpp | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) (limited to 'src/vpp-api/vom/interface.hpp') diff --git a/src/vpp-api/vom/interface.hpp b/src/vpp-api/vom/interface.hpp index 76ecf8af0a0..8cba2fa2c2c 100644 --- a/src/vpp-api/vom/interface.hpp +++ b/src/vpp-api/vom/interface.hpp @@ -44,7 +44,7 @@ public: /** * The key for interface's key */ - typedef std::string key_type; + typedef std::string key_t; /** * The iterator type @@ -207,7 +207,7 @@ public: /** * Return the interface type */ - const key_type& key() const; + const key_t& key() const; /** * Return the L2 Address @@ -224,6 +224,11 @@ public: */ void set(const oper_state_t& state); + /** + * Comparison operator - only used for UT + */ + virtual bool operator==(const interface& i) const; + /** * A base class for interface Create commands */ @@ -400,21 +405,14 @@ public: }; /** - * The the singular instance of the interface in the object_base-Model - */ - static std::shared_ptr find(const interface& temp); - - /** - * The the singular instance of the interface in the object_base-Model - * by handle + * The the singular instance of the interface in the DB by handle */ static std::shared_ptr find(const handle_t& h); /** - * The the singular instance of the interface in the object_base-Model - * by name + * The the singular instance of the interface in the DB by key */ - static std::shared_ptr find(const std::string& s); + static std::shared_ptr find(const key_t& k); /** * Dump all interfaces into the stream provided @@ -472,12 +470,12 @@ protected: /** * A map of all interfaces key against the interface's name */ - static singular_db m_db; + static singular_db m_db; /** * Add an interface to the DB keyed on handle */ - static void add(const std::string& name, const HW::item& item); + static void add(const key_t& name, const HW::item& item); /** * remove an interface from the DB keyed on handle @@ -540,7 +538,7 @@ private: /** * It's the singular_db class that calls replay() */ - friend class singular_db; + friend class singular_db; /** * The interfaces name -- cgit 1.2.3-korg