Newer
Older
WorkCardReader / utils / id / Singleton.h
tanyue on 18 Jun 2022 2 KB 20220618 界面调整
#ifndef _JW_CORE_SINGLETON_H_
#define _JW_CORE_SINGLETON_H_

namespace Jiawa {
    namespace Core {

        // boost/container/detail/singleton.hpp
        // http://blog.csdn.net/fullsail/article/details/8483106
        // T must be: no-throw default constructible and no-throw destructible
        template <typename T>
        class Singleton {
        private:
            Singleton() = default;
            ~Singleton() = default;

        private:
            struct object_creator
            {
                // This constructor does nothing more than ensure that instance()
                //  is called before main() begins, thus creating the static
                //  T object before multithreading race issues can come up.
                object_creator() { Singleton<T>::instance(); }
                inline void do_nothing() const { }
            };
            static object_creator create_object;

        private:
            Singleton(const Singleton&) = delete;
            Singleton(const Singleton&&) = delete;
            Singleton& operator=(const Singleton&) = delete;
            Singleton& operator=(const Singleton&&) = delete;

        public:
            typedef T object_type;

            // If, at any point (in user code), Singleton<T>::instance()
            //  is called, then the following function is instantiated.
            static object_type& instance()
            {
                // This is the object that we return a reference to.
                // It is guaranteed to be created before main() begins because of
                //  the next line.
                static object_type obj;

                // The following line does nothing else than force the instantiation
                //  of Singleton<T>::create_object, whose constructor is
                //  called before main() begins.
                create_object.do_nothing();

                return obj;
            }
        };

        template <typename T>
        typename Singleton<T>::object_creator Singleton<T>::create_object;
    }
}

#endif // _JW_CORE_SINGLETON_H_