From b5eb3b185fb04bfed3ba6c89323cd82e7d666bae Mon Sep 17 00:00:00 2001 From: Mohsin Kazmi Date: Mon, 26 Feb 2018 18:36:17 +0100 Subject: VOM: Fix state reconciliation This commit also fixes the acl and arp handle for inspector to view internal state of VOM. Change-Id: Ibc8ff6cb51d2a77b4c04993ac7212564b8892337 Signed-off-by: Mohsin Kazmi --- src/vpp-api/vom/acl_list.hpp | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) (limited to 'src/vpp-api/vom/acl_list.hpp') diff --git a/src/vpp-api/vom/acl_list.hpp b/src/vpp-api/vom/acl_list.hpp index ff3eeeb21b2..bd84ce1ea43 100644 --- a/src/vpp-api/vom/acl_list.hpp +++ b/src/vpp-api/vom/acl_list.hpp @@ -53,7 +53,8 @@ public: * Construct a new object matching the desried state */ list(const key_t& key) - : m_key(key) + : m_hdl(handle_t::INVALID) + , m_key(key) { } @@ -64,10 +65,10 @@ public: } list(const key_t& key, const rules_t& rules) - : m_key(key) + : m_hdl(handle_t::INVALID) + , m_key(key) , m_rules(rules) { - m_evh.order(); } /** @@ -129,7 +130,7 @@ public: /** * Return the VPP assign handle */ - const handle_t& handle() const { return m_hdl.data(); } + const handle_t& handle() const { return (singular()->handle_i()); } static std::shared_ptr find(const handle_t& handle) { @@ -141,12 +142,19 @@ public: return (m_db.find(key)); } - static void add(const handle_t& handle, std::shared_ptr sp) + static void add(const key_t& key, const HW::item& item) { - m_hdl_db[handle] = sp; + std::shared_ptr sp = find(key); + + if (sp && item) { + m_hdl_db[item.data()] = sp; + } } - static void remove(const handle_t& handle) { m_hdl_db.erase(handle); } + static void remove(const HW::item& item) + { + m_hdl_db.erase(item.data()); + } const key_t& key() const { return m_key; } @@ -167,11 +175,8 @@ private: class event_handler : public OM::listener, public inspect::command_handler { public: - event_handler() - { - OM::register_listener(this); - inspect::register_handler({ "acl" }, "ACL lists", this); - } + event_handler(); + virtual ~event_handler() = default; /** @@ -215,9 +220,14 @@ private: */ static std::shared_ptr find_or_add(const list& temp) { - return (m_db.find_or_add(temp.m_key, temp)); + return (m_db.find_or_add(temp.key(), temp)); } + /** + * return the acl-list's handle in the singular instance + */ + const handle_t& handle_i() const { return (m_hdl.data()); } + /* * It's the VOM::OM class that updates call update */ @@ -246,7 +256,7 @@ private: /** * A map of all ACLs keyed against VPP's handle */ - static std::map> m_hdl_db; + static std::map> m_hdl_db; /** * The Key is a user defined identifer for this ACL @@ -279,7 +289,7 @@ singular_db::key_t, ACL::list> list::m_db; * Definition of the static per-handle DB for ACL Lists */ template -std::map>> list::m_hdl_db; +std::map>> list::m_hdl_db; template typename ACL::list::event_handler list::m_evh; -- cgit 1.2.3-korg