Loki/src/OrderedStatic.cpp
syntheticpp 85e43339c8 there is no svn keyword Log
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@756 7ec92016-0320-0410-acc4-a06ded1c099a
2006-10-17 20:05:42 +00:00

81 lines
2.3 KiB
C++

////////////////////////////////////////////////////////////////////////////////
// The Loki Library
// Copyright (c) 2005 Peter Kümmel
// Permission to use, copy, modify, distribute and sell this software for any
// purpose is hereby granted without fee, provided that the above copyright
// notice appear in all copies and that both that copyright notice and this
// permission notice appear in supporting documentation.
// The author makes no representations about the
// suitability of this software for any purpose. It is provided "as is"
// without express or implied warranty.
////////////////////////////////////////////////////////////////////////////////
// $Id$
#include <loki/OrderedStatic.h>
#include <limits>
#ifdef min
#undef min
#endif
#ifdef max
#undef max
#endif
namespace Loki
{
namespace Private
{
OrderedStaticCreatorFunc::OrderedStaticCreatorFunc()
{
}
OrderedStaticCreatorFunc::~OrderedStaticCreatorFunc()
{
}
OrderedStaticManagerClass::OrderedStaticManagerClass() :
staticObjects_(),
max_longevity_(std::numeric_limits<unsigned int>::min()),
min_longevity_(std::numeric_limits<unsigned int>::max())
{
}
OrderedStaticManagerClass::~OrderedStaticManagerClass()
{
}
void OrderedStaticManagerClass::createObjects()
{
for(unsigned int longevity=max_longevity_; longevity>=min_longevity_; longevity--)
{
for(unsigned int i=0; i<staticObjects_.size(); i++)
{
Data cur = staticObjects_.at(i);
if(cur.longevity==longevity)
( (*cur.object).*cur.creator )();
}
}
}
void OrderedStaticManagerClass::registerObject(unsigned int l, OrderedStaticCreatorFunc* o,Creator f)
{
staticObjects_.push_back(Data(l,o,f));
if(l>max_longevity_) max_longevity_=l;
if(l<min_longevity_) min_longevity_=l;
}
OrderedStaticManagerClass::Data::Data(unsigned int l, OrderedStaticCreatorFunc* o, Creator f)
: longevity(l), object(o), creator(f)
{
}
}//namespace Private
} // end namespace Loki