MezzanineEngine 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
singleton.h
1 // © Copyright 2010 - 2014 BlackTopp Studios Inc.
2 /* This file is part of The Mezzanine Engine.
3 
4  The Mezzanine Engine is free software: you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation, either version 3 of the License, or
7  (at your option) any later version.
8 
9  The Mezzanine Engine is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with The Mezzanine Engine. If not, see <http://www.gnu.org/licenses/>.
16 */
17 /* The original authors have included a copy of the license specified above in the
18  'Docs' folder. See 'gpl.txt'
19 */
20 /* We welcome the use of the Mezzanine engine to anyone, including companies who wish to
21  Build professional software and charge for their product.
22 
23  However there are some practical restrictions, so if your project involves
24  any of the following you should contact us and we will try to work something
25  out:
26  - DRM or Copy Protection of any kind(except Copyrights)
27  - Software Patents You Do Not Wish to Freely License
28  - Any Kind of Linking to Non-GPL licensed Works
29  - Are Currently In Violation of Another Copyright Holder's GPL License
30  - If You want to change our code and not add a few hundred MB of stuff to
31  your distribution
32 
33  These and other limitations could cause serious legal problems if you ignore
34  them, so it is best to simply contact us or the Free Software Foundation, if
35  you have any questions.
36 
37  Joseph Toppi - toppij@gmail.com
38  John Blackwood - makoenergy02@gmail.com
39 */
40 #ifndef _singleton_h
41 #define _singleton_h
42 
43 #include "exception.h"
44 
45 //#define THROW_ON_FETCH_FAIL
46 
47 #if defined(_MSC_VER)
48 // Turn off warnings generated by this singleton implementation
49 # pragma warning (disable : 4311)
50 # pragma warning (disable : 4312)
51 #endif
52 
53 namespace Mezzanine
54 {
55  ///////////////////////////////////////////////////////////////////////////////
56  /// @class Singleton
57  /// @headerfile singleton.h
58  /// @brief This is a convenient base class intended to be used with classes that need to be singletons.
59  /// @details This is based on the Ogre Singleton class.
60  ///////////////////////////////////////
61  template<class Type>
63  {
64  private:
65  /// @brief Made private because copying a singleton is a no-no.
66  Singleton(const Singleton<Type> &) {}
67  /// @brief Made private because copying a singleton is a no-no.
68  Singleton& operator=(const Singleton<Type> &) {}
69  protected:
70  static Type* SingletonPtr;
71  public:
72  /// @brief Class constructor.
74  {
75  if(SingletonPtr)
76  MEZZ_EXCEPTION(Exception::INVALID_STATE_EXCEPTION,"Singleton class already exists. Cannot make multiple singletons");
77  #if defined( _MSC_VER ) && _MSC_VER < 1200
78  int offset = (int)(Type*)1 - (int)(Singleton <Type>*)(Type*)1;
79  SingletonPtr = (Type*)((int)this + offset);
80  #else
81  SingletonPtr = static_cast<Type*>(this);
82  #endif
83  };
84  /// @brief Class destructor.
86  {
87  SingletonPtr = 0;
88  }
89  /// @brief Fetches a pointer to the singleton.
90  /// @return Returns a pointer to the type of singleton this is.
91  static Type* GetSingletonPtr()
92  {
93  #ifdef THROW_ON_FETCH_FAIL
94  if(!SingletonPtr)
95  MEZZ_EXCEPTION(Exception::INVALID_STATE_EXCEPTION,"Attempting to fetch invalid Singleton pointer");
96  #endif
97  return SingletonPtr;
98  }
99  /// @brief Checks to see if the singleton pointer is valid.
100  /// @return Returns true if the singleton is valid, false otherwise.
101  static bool SingletonValid()
102  {
103  return SingletonPtr != NULL;
104  }
105  };//Singleton
106 }//Mezzanine
107 
108 #endif