KillableSingleton.hpp
Go to the documentation of this file.
1 /*
2 
3  This file is part of OpenFLUID software
4  Copyright(c) 2007, INRA - Montpellier SupAgro
5 
6 
7  == GNU General Public License Usage ==
8 
9  OpenFLUID is free software: you can redistribute it and/or modify
10  it under the terms of the GNU General Public License as published by
11  the Free Software Foundation, either version 3 of the License, or
12  (at your option) any later version.
13 
14  OpenFLUID is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  GNU General Public License for more details.
18 
19  You should have received a copy of the GNU General Public License
20  along with OpenFLUID. If not, see <http://www.gnu.org/licenses/>.
21 
22 
23  == Other Usage ==
24 
25  Other Usage means a use of OpenFLUID that is inconsistent with the GPL
26  license, and requires a written agreement between You and INRA.
27  Licensees for Other Usage of OpenFLUID may use this file in accordance
28  with the terms contained in the written agreement between You and INRA.
29 
30 */
31 
32 /**
33  @file KillableSingleton.hpp
34 
35  @author Jean-Christophe FABRE <jean-christophe.fabre@inra.fr>
36 */
37 
38 
39 #ifndef __OPENFLUID_UTILS_KILLABLESINGLETON_HPP__
40 #define __OPENFLUID_UTILS_KILLABLESINGLETON_HPP__
41 
42 
43 namespace openfluid { namespace utils {
44 
45 /**
46  Singleton template class implementing a killable singleton design.
47  This implementation is not thread safe.
48 
49  @warning This template class does not work in a cross-dll context on Windows.
50  Due to this restriction, it must not be used in the OpenFLUID framework.
51 
52  Example of use to design an Example class as a killable singleton
53  @code
54 class Example : public openfluid::utils::KillableSingleton<Example>
55 {
56  friend class openfluid::utils::KillableSingleton<Example>;
57 
58 
59  private:
60 
61  Example();
62 
63  ~Example();
64 
65 
66  public:
67 
68  // some public members
69 };
70  @endcode
71 */
72 template<typename T>
74 {
75 
76  private:
77 
78  KillableSingleton<T>(T const&) = delete;
79 
80  void operator=(T const&) = delete;
81 
82 
83  protected:
84 
85  static T* mp_Instance;
86 
87  KillableSingleton<T>() = default;
88 
90  { }
91 
92 
93  public:
94 
95  /**
96  Returns a pointer to the singleton object.
97  Instantiates the class if it not has not been instantiated before or it has been killed before.
98  @return A pointer to the singleton object
99  */
100  static T* instance()
101  {
102  if (!mp_Instance)
103  mp_Instance = new T();
104 
105  return mp_Instance;
106  }
107 
108 
109  // =====================================================================
110  // =====================================================================
111 
112 
113  /**
114  Kills the singleton class
115  */
116  static void kill()
117  {
118  if (mp_Instance)
119  {
120  delete mp_Instance;
121  mp_Instance = nullptr;
122  }
123  }
124 };
125 
126 
127 template <typename T>
129 
130 
131 } } //namespaces
132 
133 #endif /* __OPENFLUID_UTILS_KILLABLESINGLETON_HPP__ */
Definition: KillableSingleton.hpp:73
static T * instance()
Definition: KillableSingleton.hpp:100
static T * mp_Instance
Definition: KillableSingleton.hpp:85
Definition: ApplicationException.hpp:47
static void kill()
Definition: KillableSingleton.hpp:116