/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2004, 2005 StatPro Italia srl This file is part of QuantLib, a free-software/open-source library for financial quantitative analysts and developers - http://quantlib.org/ QuantLib is free software: you can redistribute it and/or modify it under the terms of the QuantLib license. You should have received a copy of the license along with this program; if not, please email . The license is also available online at . 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 license for more details. */ /*! \file singleton.hpp \brief basic support for the singleton pattern */ #ifndef quantlib_singleton_hpp #define quantlib_singleton_hpp #include #include #include #include namespace QuantLib { //! Basic support for the singleton pattern. /*! The typical use of this class is: \code class Foo : public Singleton { friend class Singleton; private: Foo() {} public: ... }; \endcode which, albeit sub-optimal, frees one from the concerns of creating and managing the unique instance and can serve later as a single implemementation point should synchronization features be added. \ingroup patterns */ template class Singleton : private boost::noncopyable { public: //! access to the unique instance static T& instance(); protected: Singleton() {} }; #if defined(QL_ENABLE_SESSIONS) // definition must be provided by the user Integer sessionId(); #endif // template definitions template T& Singleton::instance() { static std::map > instances_; #if defined(QL_ENABLE_SESSIONS) Integer id = sessionId(); #else Integer id = 0; #endif boost::shared_ptr& instance = instances_[id]; if (!instance) instance = boost::shared_ptr(new T); return *instance; } } #endif