/usr/include/ace/Singleton.h is in libace-dev 6.3.3+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | // -*- C++ -*-
//=============================================================================
/**
* @file Singleton.h
*
* @brief
*
* @author Tim Harrison <harrison@cs.wustl.edu>
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
* @author Chris Lahey
* @author Rich Christy
* @author David Levine <levine@cs.wustl.edu>
*/
//=============================================================================
#ifndef ACE_SINGLETON_H
#define ACE_SINGLETON_H
#include /**/ "ace/pre.h"
#include /**/ "ace/config-all.h"
#include "ace/TSS_T.h"
#include "ace/Cleanup.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class ACE_Singleton
*
* @brief A Singleton Adapter uses the Adapter pattern to turn ordinary
* classes into Singletons optimized with the Double-Checked
* Locking optimization pattern.
*
* This implementation is a slight variation on the GoF
* Singleton pattern. In particular, a single
* <ACE_Singleton<TYPE, ACE_LOCK> > instance is allocated here,
* not a <TYPE> instance. The reason for this is to allow
* registration with the ACE_Object_Manager, so that the
* Singleton can be cleaned up when the process exits. For this
* scheme to work, a (static) cleanup() function must be
* provided. ACE_Singleton provides one so that TYPE doesn't
* need to.
* If you want to make sure that only the singleton instance of
* <T> is created, and that users cannot create their own
* instances of <T>, do the following to class <T>:
* (a) Make the constructor of <T> private (or protected)
* (b) Make Singleton a friend of <T>
* Here is an example:
* @verbatim
* class foo
* {
* friend class ACE_Singleton<foo, ACE_Null_Mutex>;
* private:
* foo () { cout << "foo constructed" << endl; }
* ~foo () { cout << "foo destroyed" << endl; }
* };
* typedef ACE_Singleton<foo, ACE_Null_Mutex> FOO;
* @endverbatim
*
* @note The best types to use for ACE_LOCK are
* ACE_Recursive_Thread_Mutex and ACE_Null_Mutex.
* ACE_Recursive_Thread_Mutex should be used in multi-threaded
* programs in which it is possible for more than one thread to
* access the <ACE_Singleton<TYPE, ACE_LOCK>> instance.
* ACE_Null_Mutex can be used otherwise. The reason that these
* types of locks are best has to do with their allocation by
* the ACE_Object_Manager. Single ACE_Recursive_Thread_Mutex
* and ACE_Null_Mutex instances are used for all ACE_Singleton
* instantiations. However, other types of locks are allocated
* per ACE_Singleton instantiation.
*/
template <class TYPE, class ACE_LOCK>
class ACE_Singleton : public ACE_Cleanup
{
public:
/// Global access point to the Singleton.
static TYPE *instance (void);
/// Cleanup method, used by @c ace_cleanup_destroyer to destroy the
/// ACE_Singleton.
virtual void cleanup (void *param = 0);
/// Explicitly delete the Singleton instance.
static void close (void);
/// Dump the state of the object.
static void dump (void);
protected:
/// Default constructor.
ACE_Singleton (void);
/// Contained instance.
TYPE instance_;
#if !defined (ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES)
/// Pointer to the Singleton (ACE_Cleanup) instance.
static ACE_Singleton<TYPE, ACE_LOCK> *singleton_;
#endif /* ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES */
/// Get pointer to the Singleton instance.
static ACE_Singleton<TYPE, ACE_LOCK> *&instance_i (void);
};
/**
* @class ACE_Unmanaged_Singleton
*
* @brief Same as ACE_Singleton, except does _not_ register with
* ACE_Object_Manager for destruction.
*
* This version of ACE_Singleton can be used if, for example,
* its DLL will be unloaded before the ACE_Object_Manager
* destroys the instance. Unlike with ACE_Singleton, the
* application is responsible for explicitly destroying the
* instance after it is no longer needed (if it wants to avoid
* memory leaks, at least). The close() static member function
* must be used to explicitly destroy the Singleton.
* Usage is the same as for ACE_Singleton, but note that if you
* you declare a friend, the friend class must still be an
* *ACE_Singleton*<T, [ACE_LOCK]>, not an ACE_Unmanaged_Singleton.
*/
template <class TYPE, class ACE_LOCK>
class ACE_Unmanaged_Singleton : public ACE_Singleton <TYPE, ACE_LOCK>
{
public:
/// Global access point to the Singleton.
static TYPE *instance (void);
/// Explicitly delete the Singleton instance.
static void close (void);
/// Dump the state of the object.
static void dump (void);
protected:
/// Default constructor.
ACE_Unmanaged_Singleton (void);
#if !defined (ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES)
/// Pointer to the Singleton (ACE_Cleanup) instance.
static ACE_Unmanaged_Singleton<TYPE, ACE_LOCK> *singleton_;
#endif /* ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES */
/// Get pointer to the Singleton instance.
static ACE_Unmanaged_Singleton<TYPE, ACE_LOCK> *&instance_i (void);
};
/**
* @class ACE_TSS_Singleton
*
* @brief This class uses the Adapter pattern to turn ordinary classes
* into Thread-specific Singletons optimized with the
* Double-Checked Locking optimization pattern.
*
* This implementation is another variation on the GoF Singleton
* pattern. In this case, a single <ACE_TSS_Singleton<TYPE,
* LOCK> > instance is allocated here, not a <TYPE> instance.
* Each call to the <instance> static method returns a Singleton
* whose pointer resides in thread-specific storage. As with
* ACE_Singleton, we use the ACE_Object_Manager so that the
* Singleton can be cleaned up when the process exits. For this
* scheme to work, a (static) cleanup() function must be
* provided. ACE_Singleton provides one so that TYPE doesn't
* need to.
*/
template <class TYPE, class ACE_LOCK>
class ACE_TSS_Singleton : public ACE_Cleanup
{
public:
/// Global access point to the singleton.
static TYPE *instance (void);
/// Cleanup method, used by <ace_cleanup_destroyer> to destroy the
/// singleton.
virtual void cleanup (void *param = 0);
/// Dump the state of the object.
static void dump (void);
protected:
/// Default constructor.
ACE_TSS_Singleton (void);
/// Contained instance.
ACE_TSS_TYPE (TYPE) instance_;
ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS_Singleton<TYPE,ACE_LOCK> &))
ACE_UNIMPLEMENTED_FUNC (ACE_TSS_Singleton (const ACE_TSS_Singleton<TYPE,ACE_LOCK> &))
#if !defined (ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES)
/// Pointer to the Singleton (ACE_Cleanup) instance.
static ACE_TSS_Singleton<TYPE, ACE_LOCK> *singleton_;
#endif /* ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES */
/// Get pointer to the TSS Singleton instance.
static ACE_TSS_Singleton<TYPE, ACE_LOCK> *&instance_i (void);
};
/**
* @class ACE_Unmanaged_TSS_Singleton
*
* @brief Same as ACE_TSS_Singleton, except does _not_ register with
* ACE_Object_Manager for destruction.
*
* This version of ACE_TSS_Singleton can be used if, for example, its DLL will
* be unloaded before the ACE_Object_Manager destroys the instance. Unlike with
* ACE_Singleton, the application is responsible for explicitly destroying the
* instance after it is no longer needed (if it wants to avoid memory leaks,
* at least). The close() static member function must be used to explicitly
* destroy the Singleton.
*/
template <class TYPE, class ACE_LOCK>
class ACE_Unmanaged_TSS_Singleton : public ACE_TSS_Singleton <TYPE, ACE_LOCK>
{
public:
/// Global access point to the singleton.
static TYPE *instance (void);
/// Explicitly delete the singleton instance.
static void close (void);
/// Dump the state of the object.
static void dump (void);
protected:
/// Default constructor.
ACE_Unmanaged_TSS_Singleton (void);
#if !defined (ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES)
/// Pointer to the Singleton (ACE_Cleanup) instance.
static ACE_Unmanaged_TSS_Singleton<TYPE, ACE_LOCK> *singleton_;
#endif /* ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES */
/// Get pointer to the Singleton instance.
static ACE_Unmanaged_TSS_Singleton<TYPE, ACE_LOCK> *&instance_i (void);
};
/**
* @class ACE_DLL_Singleton_T
*
* @brief Same as ACE_Singleton, except that it registers for
* destruction with the ACE_Framework_Repository instead of
* with the ACE_Object_Manager directly.
*
* This version of ACE_Singleton should be used for singletons
* that live in a dll loaded either directly by ACE_DLL or indirectly
* by the ACE Service Configuration framework. Whenever ACE_DLL is ready
* to actually unload the dll, ACE_DLL_Singleton based dlls associated
* with that dll will be destroyed first. In fact, any singleton can
* safely use ACE_DLL_Singleton, even those that don't live in dlls. In
* that case, the singleton will be destroyed at normal program shutdown.
*
* The only additional requirement is that the contained class
* export name() and dll_name() methods. See ACE_DLL_Singleton_Adapter_T
* below for a convenient example of how to satisfy this
* requirement for the dll_name().
*
* Usage is the same as for ACE_Singleton, but note that if you
* you declare a friend, the friend class must still be an
* *ACE_Singleton*<T, [ACE_LOCK]>, not an ACE_Unmanaged_Singleton.
*/
template <class TYPE, class ACE_LOCK>
class ACE_DLL_Singleton_T
{
public:
//void cleanup (void *param = 0);
/// Global access point to the Singleton.
static TYPE *instance (void);
/// Explicitly delete the Singleton instance.
static void close (void);
static void close_singleton (void);
/// Dump the state of the object.
static void dump (void);
const ACE_TCHAR *dll_name (void);
const ACE_TCHAR *name (void);
protected:
/// Default constructor.
ACE_DLL_Singleton_T (void);
/// Destructor.
~ACE_DLL_Singleton_T (void);
/// Contained instance.
TYPE instance_;
#if !defined (ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES)
/// Pointer to the Singleton instance.
static ACE_DLL_Singleton_T<TYPE, ACE_LOCK> *singleton_;
#endif /* ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES */
/// Get pointer to the singleton instance.
static ACE_DLL_Singleton_T<TYPE, ACE_LOCK> *&instance_i (void);
};
template <class TYPE>
class ACE_DLL_Singleton_Adapter_T : public TYPE
{
public:
const ACE_TCHAR *dll_name (void);
};
ACE_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
#include "ace/Singleton.inl"
#endif /* __ACE_INLINE__ */
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "ace/Singleton.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
#pragma implementation ("Singleton.cpp")
#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
#include /**/ "ace/post.h"
#endif /* ACE_SINGLETON_H */
|