diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2017-11-23 12:15:00 -0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2017-11-24 14:04:48 +0000 |
commit | fd920609819a5b10d3d7c8d34fe4fa4214c7da22 (patch) | |
tree | fb0b5c3b5a9ba56308ef704ef922e959aafad17f /src/vpp-api/vom/bridge_domain.cpp | |
parent | 227bf211ab65e7aed6862fc881cc949c342200fd (diff) |
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 <neale.ranns@cisco.com>
Diffstat (limited to 'src/vpp-api/vom/bridge_domain.cpp')
-rw-r--r-- | src/vpp-api/vom/bridge_domain.cpp | 44 |
1 files changed, 16 insertions, 28 deletions
diff --git a/src/vpp-api/vom/bridge_domain.cpp b/src/vpp-api/vom/bridge_domain.cpp index 81d83621212..682681988f9 100644 --- a/src/vpp-api/vom/bridge_domain.cpp +++ b/src/vpp-api/vom/bridge_domain.cpp @@ -52,12 +52,24 @@ bridge_domain::bridge_domain(const bridge_domain& o) { } +const bridge_domain::key_t& +bridge_domain::key() const +{ + return (m_id.data()); +} + uint32_t bridge_domain::id() const { return (m_id.data()); } +bool +bridge_domain::operator==(const bridge_domain& b) const +{ + return (id() == b.id()); +} + void bridge_domain::sweep() { @@ -93,41 +105,17 @@ bridge_domain::to_string() const } std::shared_ptr<bridge_domain> -bridge_domain::find(uint32_t id) +bridge_domain::find(const key_t& key) { - /* - * Loop throught the entire map looking for matching interface. - * not the most efficient algorithm, but it will do for now. The - * number of L3 configs is low and this is only called during bootup - */ - std::shared_ptr<bridge_domain> bd; - - auto it = m_db.cbegin(); - - while (it != m_db.cend()) { - /* - * The key in the DB is a pair of the interface's name and prefix. - * If the keys match, save the L3-config - */ - auto key = it->first; - - if (id == key) { - bd = it->second.lock(); - break; - } - - ++it; - } - - return (bd); + return (m_db.find(key)); } void bridge_domain::update(const bridge_domain& desired) { /* - * the desired state is always that the interface should be created - */ + * the desired state is always that the interface should be created + */ if (rc_t::OK != m_id.rc()) { HW::enqueue(new bridge_domain_cmds::create_cmd(m_id, m_learning_mode)); } |