1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
//===- ManagedStatic.h -----------------------------------------------------===//
//
// The SkyPat Team
//
// This file is distributed under the New BSD License.
// See LICENSE for details.
//
//===----------------------------------------------------------------------===//
#include <skypat/Support/ManagedStatic.h>
#include <cassert>
using namespace skypat;
static const ManagedStaticBase *StaticList = NULL;
//===----------------------------------------------------------------------===//
// ManagedStaticBase
//===----------------------------------------------------------------------===//
void ManagedStaticBase::RegisterManagedStatic(void *(*pCreator)(),
void (*pDeleter)(void*)) const
{
assert(NULL == m_Ptr && NULL == m_pDeleter && m_pNext == 0 &&
"Partially initialized ManagedStatic!?");
m_Ptr = pCreator ? pCreator() : NULL;
m_pDeleter = pDeleter;
// Add to list of managed statics.
m_pNext = StaticList;
StaticList = this;
}
void ManagedStaticBase::destroy() const
{
assert(m_pDeleter && "ManagedStatic not initialized correctly!");
assert(StaticList == this &&
"Not destroyed in reverse order of construction?");
// Unlink from list.
StaticList = m_pNext;
m_pNext = NULL;
// Destroy memory.
m_pDeleter(m_Ptr);
// Cleanup.
m_Ptr = NULL;
m_pDeleter = NULL;
}
//===----------------------------------------------------------------------===//
// Non-member functions
//===----------------------------------------------------------------------===//
void skypat::shutdown()
{
while (StaticList)
StaticList->destroy();
}
|