singleton.hpp 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. #ifndef BOOST_SERIALIZATION_SINGLETON_HPP
  2. #define BOOST_SERIALIZATION_SINGLETON_HPP
  3. /////////1/////////2///////// 3/////////4/////////5/////////6/////////7/////////8
  4. // singleton.hpp
  5. //
  6. // Copyright David Abrahams 2006. Original version
  7. //
  8. // Copyright Robert Ramey 2007. Changes made to permit
  9. // application throughout the serialization library.
  10. //
  11. // Distributed under the Boost
  12. // Software License, Version 1.0. (See accompanying
  13. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  14. //
  15. // The intention here is to define a template which will convert
  16. // any class into a singleton with the following features:
  17. //
  18. // a) initialized before first use.
  19. // b) thread-safe for const access to the class
  20. // c) non-locking
  21. //
  22. // In order to do this,
  23. // a) Initialize dynamically when used.
  24. // b) Require that all singletons be initialized before main
  25. // is called or any entry point into the shared library is invoked.
  26. // This guarentees no race condition for initialization.
  27. // In debug mode, we assert that no non-const functions are called
  28. // after main is invoked.
  29. //
  30. // MS compatible compilers support #pragma once
  31. #if defined(_MSC_VER)
  32. # pragma once
  33. #endif
  34. #include <boost/assert.hpp>
  35. #include <boost/config.hpp>
  36. #include <boost/noncopyable.hpp>
  37. #include <boost/serialization/force_include.hpp>
  38. #include <boost/archive/detail/auto_link_archive.hpp>
  39. #include <boost/serialization/config.hpp>
  40. #include <boost/archive/detail/abi_prefix.hpp> // must be the last header
  41. #ifdef BOOST_MSVC
  42. # pragma warning(push)
  43. # pragma warning(disable : 4511 4512)
  44. #endif
  45. namespace boost {
  46. namespace serialization {
  47. //////////////////////////////////////////////////////////////////////
  48. // Provides a dynamically-initialized (singleton) instance of T in a
  49. // way that avoids LNK1179 on vc6. See http://tinyurl.com/ljdp8 or
  50. // http://lists.boost.org/Archives/boost/2006/05/105286.php for
  51. // details.
  52. //
  53. // singletons created by this code are guarenteed to be unique
  54. // within the executable or shared library which creates them.
  55. // This is sufficient and in fact ideal for the serialization library.
  56. // The singleton is created when the module is loaded and destroyed
  57. // when the module is unloaded.
  58. // This base class has two functions.
  59. // First it provides a module handle for each singleton indicating
  60. // the executable or shared library in which it was created. This
  61. // turns out to be necessary and sufficient to implement the tables
  62. // used by serialization library.
  63. // Second, it provides a mechanism to detect when a non-const function
  64. // is called after initialization.
  65. // make a singleton to lock/unlock all singletons for alteration.
  66. // The intent is that all singletons created/used by this code
  67. // are to be initialized before main is called. A test program
  68. // can lock all the singletons when main is entereed. This any
  69. // attempt to retieve a mutable instances while locked will
  70. // generate a assertion if compiled for debug.
  71. class BOOST_SYMBOL_VISIBLE singleton_module :
  72. public boost::noncopyable
  73. {
  74. private:
  75. static bool & get_lock();
  76. public:
  77. BOOST_SERIALIZATION_DECL static void lock();
  78. BOOST_SERIALIZATION_DECL static void unlock();
  79. BOOST_SERIALIZATION_DECL static bool is_locked();
  80. };
  81. #include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
  82. namespace detail {
  83. template<class T>
  84. class singleton_wrapper : public T
  85. {
  86. public:
  87. static bool m_is_destroyed;
  88. ~singleton_wrapper(){
  89. m_is_destroyed = true;
  90. }
  91. };
  92. template<class T>
  93. bool detail::singleton_wrapper< T >::m_is_destroyed = false;
  94. } // detail
  95. template <class T>
  96. class singleton : public singleton_module
  97. {
  98. private:
  99. BOOST_DLLEXPORT static T & instance;
  100. // include this to provoke instantiation at pre-execution time
  101. static void use(T const *) {}
  102. BOOST_DLLEXPORT static T & get_instance() {
  103. static detail::singleton_wrapper< T > t;
  104. // refer to instance, causing it to be instantiated (and
  105. // initialized at startup on working compilers)
  106. BOOST_ASSERT(! detail::singleton_wrapper< T >::m_is_destroyed);
  107. use(& instance);
  108. return static_cast<T &>(t);
  109. }
  110. public:
  111. BOOST_DLLEXPORT static T & get_mutable_instance(){
  112. BOOST_ASSERT(! is_locked());
  113. return get_instance();
  114. }
  115. BOOST_DLLEXPORT static const T & get_const_instance(){
  116. return get_instance();
  117. }
  118. BOOST_DLLEXPORT static bool is_destroyed(){
  119. return detail::singleton_wrapper< T >::m_is_destroyed;
  120. }
  121. };
  122. template<class T>
  123. BOOST_DLLEXPORT T & singleton< T >::instance = singleton< T >::get_instance();
  124. } // namespace serialization
  125. } // namespace boost
  126. #ifdef BOOST_MSVC
  127. #pragma warning(pop)
  128. #endif
  129. #endif // BOOST_SERIALIZATION_SINGLETON_HPP