1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SALHELPER_SINGLETONREF_HXX
21 #define INCLUDED_SALHELPER_SINGLETONREF_HXX
23 #include <osl/mutex.hxx>
24 #include <rtl/instance.hxx>
25 #include <osl/diagnose.h>
26 #include <osl/getglobalmutex.hxx>
32 /** @short template for implementing singleton classes.
34 Such classes can be instantiated every time they
35 are needed. But the internal wrapped object will
36 be created one times only. Of course its used
37 resources are referenced one times only too.
38 This template hold it alive till the last
39 reference is gone. Further all operations
40 on this reference are threadsafe. Only
41 calls directly to the internal object (which modify
42 its state) must be made threadsafe by the object itself
45 @attention To prevent the code against race conditions, its not
46 allowed to start operations inside the ctor
47 of the internal wrapped object - especially operations
48 which needs a reference to the same singleton too.
50 The only chance to suppress such strange constellations
51 is a lazy-init mechanism.
54 <li>a) The singleton class can provide a special init()
55 method, which must be called as first after creation.</li>
56 <li>b) The singleton class can call a special impl_init()
57 method implicit for every called interface method.</li>
60 Note further that this singleton pattern can work only, if
61 all user of such singleton are located inside the same library!
62 Because static values can't be exported - e.g. from windows libraries.
64 template< class SingletonClass
>
72 /** @short pointer to the internal wrapped singleton. */
73 static SingletonClass
* m_pInstance
;
75 /** @short ref count, which regulate creation and removing of m_pInstance. */
76 static sal_Int32 m_nRef
;
85 /** @short standard ctor.
87 The internal wrapped object is created only,
88 if its ref count was 0. Otherwise this method
89 does nothing ... except increasing of the internal
95 ::osl::MutexGuard
aLock(SingletonRef::ownStaticLock());
97 // must be increased before(!) the check is done.
98 // Otherwise this check can fail inside the same thread ...
101 m_pInstance
= new SingletonClass();
103 OSL_ENSURE(m_nRef
>0 && m_pInstance
, "Race? Ref count of singleton >0, but instance is NULL!");
109 /** @short standard dtor.
111 The internal wrapped object is removed only,
112 if its ref count wil be 0. Otherwise this method
113 does nothing ... except decreasing of the internal
119 ::osl::MutexGuard
aLock(SingletonRef::ownStaticLock());
121 // must be decreased before(!) the check is done.
122 // Otherwise this check can fail inside the same thread ...
134 /** @short Allows rSingle->someBodyOp().
136 SingletonClass
* operator->() const
139 ::osl::MutexGuard
aLock(SingletonRef::ownStaticLock());
146 /** @short Allows (*rSingle).someBodyOp().
148 SingletonClass
& operator*() const
151 ::osl::MutexGuard
aLock(SingletonRef::ownStaticLock());
163 /** @short creates an own mutex for guarding static contents.
165 The global mutex the osl library is used one times
166 only to create an own static mutex, which can be used
167 next time to guard own static member operations.
169 struct SingletonLockInit
171 ::osl::Mutex
* operator()()
173 static ::osl::Mutex aInstance
;
178 ::osl::Mutex
& ownStaticLock() const
180 return *rtl_Instance
< ::osl::Mutex
,
183 ::osl::GetGlobalMutex
>::create(SingletonLockInit(), ::osl::GetGlobalMutex());
187 template< class SingletonClass
>
188 SingletonClass
* SingletonRef
< SingletonClass
>::m_pInstance
= 0;
190 template< class SingletonClass
>
191 sal_Int32 SingletonRef
< SingletonClass
>::m_nRef
= 0;
193 } // namespace salhelper
195 #endif // INCLUDED_SALHELPER_SINGLETONREF_HXX
197 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */