/****************************************************************************** * Icinga 2 * * Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License * * as published by the Free Software Foundation; either version 2 * * of the License, or (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the Free Software Foundation * * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * ******************************************************************************/ #ifndef OBJECTSET_H #define OBJECTSET_H namespace icinga { template class ObjectSet : public Object { public: typedef shared_ptr > Ptr; typedef weak_ptr > WeakPtr; typedef typename set::iterator Iterator; ObjectSet(void) : m_Parent(), m_Predicate() { } ObjectSet(const typename ObjectSet::Ptr& parent, function predicate) : m_Parent(parent), m_Predicate(predicate) { } void Start(void) { if (m_Parent) { m_Parent->OnObjectAdded.connect(boost::bind(&ObjectSet::ObjectAddedOrCommittedHandler, this, _2)); m_Parent->OnObjectCommitted.connect(boost::bind(&ObjectSet::ObjectAddedOrCommittedHandler, this, _2)); m_Parent->OnObjectRemoved.connect(boost::bind(&ObjectSet::ObjectRemovedHandler, this, _2)); for (ObjectSet::Iterator it = m_Parent->Begin(); it != m_Parent->End(); it++) CheckObject(*it); } } void AddObject(const TValue& object) { m_Objects.insert(object); OnObjectAdded(GetSelf(), object); } void RemoveObject(const TValue& object) { ObjectSet::Iterator it = m_Objects.find(object); if (it != m_Objects.end()) { m_Objects.erase(it); OnObjectRemoved(GetSelf(), object); } } bool Contains(const TValue& object) const { return !(m_Objects.find(object) == m_Objects.end()); } void CheckObject(const TValue& object) { if (m_Predicate && !m_Predicate(object)) { RemoveObject(object); } else { if (!Contains(object)) { AddObject(object); } else { OnObjectCommitted(GetSelf(), object); } } } boost::signal::Ptr&, const TValue&)> OnObjectAdded; boost::signal::Ptr&, const TValue&)> OnObjectCommitted; boost::signal::Ptr&, const TValue&)> OnObjectRemoved; Iterator Begin(void) { return m_Objects.begin(); } Iterator End(void) { return m_Objects.end(); } void ForeachObject(function callback) { for (Iterator it = Begin(); it != End(); it++) { callback(GetSelf(), *it); } } private: set m_Objects; typename ObjectSet::Ptr m_Parent; function m_Predicate; void ObjectAddedOrCommittedHandler(const TValue& object) { CheckObject(object); } void ObjectRemovedHandler(const TValue& object) { RemoveObject(object); } }; } #endif /* OBJECTSET_H */