qxLib
singleton.h
Go to the documentation of this file.
1 /**
2 
3  @file singleton.h
4  @author Khrapov
5  @date 17.06.2019
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 namespace qx
12 {
13 
14 /**
15  @struct singleton_traits
16  @tparam T - singleton class
17 **/
18 template<class T>
20 {
21  /**
22  @brief Called when singleton constructed
23  @param instance - singleton instance
24  **/
25  static void on_constructed(T& instance)
26  {
27  }
28 
29  /**
30  @brief Called when singleton proceeds getter
31  @param instance - singleton instance
32  **/
33  static void on_getter(T& instance)
34  {
35  }
36 
37  /**
38  @brief Called before singleton destructed
39  @param instance - singleton instance
40  **/
41  static void on_destructed(T& instance)
42  {
43  }
44 };
45 
46 } // namespace qx
47 
48 /**
49  @def QX_SINGLETON_S
50  @brief Simple Meyer's singleton
51  @details Implement singleton_traits for your type to change creation,
52  getting and destruction behaviour
53  @param T - your class type
54  @param specifiers - type specifiers, such as "static" or "thread_safe"
55 **/
56 #define QX_SINGLETON_S(T, specifiers) \
57 private: \
58  friend struct qx::singleton_traits<T>; \
59  \
60  T() \
61  { \
62  qx::singleton_traits<T>::on_constructed(*this); \
63  } \
64  ~T() \
65  { \
66  qx::singleton_traits<T>::on_destructed(*this); \
67  } \
68  T(const T&) = delete; \
69  T(T&&) = delete; \
70  const T& operator=(const T&) = delete; \
71  const T& operator=(T&&) = delete; \
72  \
73 public: \
74  static T& get_instance() \
75  { \
76  specifiers T instance; \
77  qx::singleton_traits<T>::on_getter(instance); \
78  return instance; \
79  } \
80  \
81 private:
82 
83 /**
84  @def QX_SINGLETON
85  @details Implement singleton_traits for your type to change creation,
86  getting and destruction behaviour
87  @brief Simple Meyer's singleton
88  @param T - your class type
89 **/
90 #define QX_SINGLETON(T) QX_SINGLETON_S(T, static)
static void on_getter(T &instance)
Called when singleton proceeds getter.
Definition: singleton.h:33
static void on_destructed(T &instance)
Called before singleton destructed.
Definition: singleton.h:41
static void on_constructed(T &instance)
Called when singleton constructed.
Definition: singleton.h:25