/** * @file llinstancetracker.h * @brief LLInstanceTracker is a mixin class that automatically tracks object * instances with or without an associated key * * $LicenseInfo:firstyear=2000&license=viewerlgpl$ * Second Life Viewer Source Code * Copyright (C) 2010, Linden Research, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License only. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA * $/LicenseInfo$ */ #ifndef LL_LLINSTANCETRACKER_H #define LL_LLINSTANCETRACKER_H #include #include #include "string_table.h" #include #include #include #include #include /** * Base class manages "class-static" data that must actually have singleton * semantics: one instance per process, rather than one instance per module as * sometimes happens with data simply declared static. */ class LL_COMMON_API LLInstanceTrackerBase { protected: /// Get a process-unique void* pointer slot for the specified type_info static void * & getInstances(std::type_info const & info); /// Find or create a STATICDATA instance for the specified TRACKED class. /// STATICDATA must be default-constructible. template static STATICDATA& getStatic() { void *& instances = getInstances(typeid(TRACKED)); if (! instances) { instances = new STATICDATA; } return *static_cast(instances); } /// It's not essential to derive your STATICDATA (for use with /// getStatic()) from StaticBase; it's just that both known /// implementations do. struct StaticBase { StaticBase(): sIterationNestDepth(0) {} S32 sIterationNestDepth; }; }; /// This mix-in class adds support for tracking all instances of the specified class parameter T /// The (optional) key associates a value of type KEY with a given instance of T, for quick lookup /// If KEY is not provided, then instances are stored in a simple set /// @NOTE: see explicit specialization below for default KEY==T* case template class LLInstanceTracker : public LLInstanceTrackerBase { typedef LLInstanceTracker MyT; typedef typename std::map InstanceMap; struct StaticData: public StaticBase { InstanceMap sMap; }; static StaticData& getStatic() { return LLInstanceTrackerBase::getStatic(); } static InstanceMap& getMap_() { return getStatic().sMap; } public: class instance_iter : public boost::iterator_facade { public: typedef boost::iterator_facade super_t; instance_iter(const typename InstanceMap::iterator& it) : mIterator(it) { ++getStatic().sIterationNestDepth; } ~instance_iter() { --getStatic().sIterationNestDepth; } private: friend class boost::iterator_core_access; void increment() { mIterator++; } bool equal(instance_iter const& other) const { return mIterator == other.mIterator; } T& dereference() const { return *(mIterator->second); } typename InstanceMap::iterator mIterator; }; class key_iter : public boost::iterator_facade { public: typedef boost::iterator_facade super_t; key_iter(typename InstanceMap::iterator it) : mIterator(it) { ++getStatic().sIterationNestDepth; } key_iter(const key_iter& other) : mIterator(other.mIterator) { ++getStatic().sIterationNestDepth; } ~key_iter() { --getStatic().sIterationNestDepth; } private: friend class boost::iterator_core_access; void increment() { mIterator++; } bool equal(key_iter const& other) const { return mIterator == other.mIterator; } KEY& dereference() const { return const_cast(mIterator->first); } typename InstanceMap::iterator mIterator; }; static T* getInstance(const KEY& k) { const InstanceMap& map(getMap_()); typename InstanceMap::const_iterator found = map.find(k); return (found == map.end()) ? NULL : found->second; } static instance_iter beginInstances() { return instance_iter(getMap_().begin()); } static instance_iter endInstances() { return instance_iter(getMap_().end()); } static S32 instanceCount() { return getMap_().size(); } static key_iter beginKeys() { return key_iter(getMap_().begin()); } static key_iter endKeys() { return key_iter(getMap_().end()); } protected: LLInstanceTracker(KEY key) { // make sure static data outlives all instances getStatic(); add_(key); } virtual ~LLInstanceTracker() { // it's unsafe to delete instances of this type while all instances are being iterated over. llassert_always(getStatic().sIterationNestDepth == 0); remove_(); } virtual void setKey(KEY key) { remove_(); add_(key); } virtual const KEY& getKey() const { return mInstanceKey; } private: LLInstanceTracker( const LLInstanceTracker& ); const LLInstanceTracker& operator=( const LLInstanceTracker& ); void add_(KEY key) { mInstanceKey = key; getMap_()[key] = static_cast(this); } void remove_() { getMap_().erase(mInstanceKey); } private: KEY mInstanceKey; }; /// explicit specialization for default case where KEY is T* /// use a simple std::set template class LLInstanceTracker : public LLInstanceTrackerBase { typedef LLInstanceTracker MyT; typedef typename std::set InstanceSet; struct StaticData: public StaticBase { InstanceSet sSet; }; static StaticData& getStatic() { return LLInstanceTrackerBase::getStatic(); } static InstanceSet& getSet_() { return getStatic().sSet; } public: /** * Does a particular instance still exist? Of course, if you already have * a T* in hand, you need not call getInstance() to @em locate the * instance -- unlike the case where getInstance() accepts some kind of * key. Nonetheless this method is still useful to @em validate a * particular T*, since each instance's destructor removes itself from the * underlying set. */ static T* getInstance(T* k) { const InstanceSet& set(getSet_()); typename InstanceSet::const_iterator found = set.find(k); return (found == set.end())? NULL : *found; } static S32 instanceCount() { return getSet_().size(); } class instance_iter : public boost::iterator_facade { public: instance_iter(const typename InstanceSet::iterator& it) : mIterator(it) { ++getStatic().sIterationNestDepth; } instance_iter(const instance_iter& other) : mIterator(other.mIterator) { ++getStatic().sIterationNestDepth; } ~instance_iter() { --getStatic().sIterationNestDepth; } private: friend class boost::iterator_core_access; void increment() { mIterator++; } bool equal(instance_iter const& other) const { return mIterator == other.mIterator; } T& dereference() const { return **mIterator; } typename InstanceSet::iterator mIterator; }; static instance_iter beginInstances() { return instance_iter(getSet_().begin()); } static instance_iter endInstances() { return instance_iter(getSet_().end()); } protected: LLInstanceTracker() { // make sure static data outlives all instances getStatic(); getSet_().insert(static_cast(this)); } virtual ~LLInstanceTracker() { // it's unsafe to delete instances of this type while all instances are being iterated over. llassert_always(getStatic().sIterationNestDepth == 0); getSet_().erase(static_cast(this)); } LLInstanceTracker(const LLInstanceTracker& other) { getSet_().insert(static_cast(this)); } }; #endif