blob: 05a7c5d81eccb0291706ae8e29c32aac8a9acd65 [file] [log] [blame]
fischman@chromium.org998561e2012-01-24 07:56:41 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
deanm@google.coma6deb002008-09-08 23:11:13 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// The LazyInstance<Type, Traits> class manages a single instance of Type,
6// which will be lazily created on the first time it's accessed. This class is
7// useful for places you would normally use a function-level static, but you
8// need to have guaranteed thread-safety. The Type constructor will only ever
9// be called once, even if two threads are racing to create the object. Get()
10// and Pointer() will always return the same, completely initialized instance.
11// When the instance is constructed it is registered with AtExitManager. The
12// destructor will be called on program exit.
13//
14// LazyInstance is completely thread safe, assuming that you create it safely.
15// The class was designed to be POD initialized, so it shouldn't require a
16// static constructor. It really only makes sense to declare a LazyInstance as
joth@chromium.orgb24883c2011-11-15 22:31:49 +090017// a global variable using the LAZY_INSTANCE_INITIALIZER initializer.
deanm@google.coma6deb002008-09-08 23:11:13 +090018//
19// LazyInstance is similar to Singleton, except it does not have the singleton
20// property. You can have multiple LazyInstance's of the same type, and each
21// will manage a unique instance. It also preallocates the space for Type, as
22// to avoid allocating the Type instance on the heap. This may help with the
23// performance of creating the instance, and reducing heap fragmentation. This
24// requires that Type be a complete type so we can determine the size.
25//
26// Example usage:
joth@chromium.orgb24883c2011-11-15 22:31:49 +090027// static LazyInstance<MyClass> my_instance = LAZY_INSTANCE_INITIALIZER;
deanm@google.coma6deb002008-09-08 23:11:13 +090028// void SomeMethod() {
29// my_instance.Get().SomeMethod(); // MyClass::SomeMethod()
maruel@chromium.org8fe7adc2009-03-04 00:01:12 +090030//
deanm@google.coma6deb002008-09-08 23:11:13 +090031// MyClass* ptr = my_instance.Pointer();
32// ptr->DoDoDo(); // MyClass::DoDoDo
33// }
34
35#ifndef BASE_LAZY_INSTANCE_H_
36#define BASE_LAZY_INSTANCE_H_
37
willchan@chromium.org25726ef2010-11-20 05:34:18 +090038#include <new> // For placement new.
39
deanm@google.coma6deb002008-09-08 23:11:13 +090040#include "base/atomicops.h"
darin@chromium.orge585bed2011-08-06 00:34:00 +090041#include "base/base_export.h"
deanm@google.coma6deb002008-09-08 23:11:13 +090042#include "base/basictypes.h"
earthdok@google.com00c0afd2013-06-08 07:09:32 +090043#include "base/debug/leak_annotations.h"
timurrrr@chromium.org4814da92011-10-22 04:46:00 +090044#include "base/logging.h"
jbates@chromium.orgdde8e302012-02-24 02:52:20 +090045#include "base/memory/aligned_memory.h"
timurrrr@chromium.orgf39c3ff2010-05-14 17:24:42 +090046#include "base/third_party/dynamic_annotations/dynamic_annotations.h"
brettw@chromium.org5b5f5e02011-01-01 10:01:06 +090047#include "base/threading/thread_restrictions.h"
deanm@google.coma6deb002008-09-08 23:11:13 +090048
joth@chromium.orgb24883c2011-11-15 22:31:49 +090049// LazyInstance uses its own struct initializer-list style static
50// initialization, as base's LINKER_INITIALIZED requires a constructor and on
51// some compilers (notably gcc 4.4) this still ends up needing runtime
52// initialization.
53#define LAZY_INSTANCE_INITIALIZER {0}
54
deanm@google.coma6deb002008-09-08 23:11:13 +090055namespace base {
56
57template <typename Type>
58struct DefaultLazyInstanceTraits {
joth@chromium.org524b5ce2011-10-26 04:04:48 +090059 static const bool kRegisterOnExit = true;
thakis@chromium.org2a1f9262014-03-06 10:11:54 +090060#ifndef NDEBUG
willchan@chromium.org25726ef2010-11-20 05:34:18 +090061 static const bool kAllowedToAccessOnNonjoinableThread = false;
thakis@chromium.org2a1f9262014-03-06 10:11:54 +090062#endif
willchan@chromium.org25726ef2010-11-20 05:34:18 +090063
craig.schlenter@chromium.org0cf58332010-03-13 00:28:48 +090064 static Type* New(void* instance) {
jbates@chromium.orgdde8e302012-02-24 02:52:20 +090065 DCHECK_EQ(reinterpret_cast<uintptr_t>(instance) & (ALIGNOF(Type) - 1), 0u)
timurrrr@chromium.org4814da92011-10-22 04:46:00 +090066 << ": Bad boy, the buffer passed to placement new is not aligned!\n"
67 "This may break some stuff like SSE-based optimizations assuming the "
68 "<Type> objects are word aligned.";
deanm@google.coma6deb002008-09-08 23:11:13 +090069 // Use placement new to initialize our instance in our preallocated space.
70 // The parenthesis is very important here to force POD type initialization.
craig.schlenter@chromium.org0cf58332010-03-13 00:28:48 +090071 return new (instance) Type();
deanm@google.coma6deb002008-09-08 23:11:13 +090072 }
joth@chromium.org524b5ce2011-10-26 04:04:48 +090073 static void Delete(Type* instance) {
deanm@google.coma6deb002008-09-08 23:11:13 +090074 // Explicitly call the destructor.
joth@chromium.org524b5ce2011-10-26 04:04:48 +090075 instance->~Type();
deanm@google.coma6deb002008-09-08 23:11:13 +090076 }
77};
78
fischman@chromium.orgdfdfa902012-01-26 10:56:19 +090079// We pull out some of the functionality into non-templated functions, so we
80// can implement the more complicated pieces out of line in the .cc file.
81namespace internal {
82
fischman@chromium.org998561e2012-01-24 07:56:41 +090083// Use LazyInstance<T>::Leaky for a less-verbose call-site typedef; e.g.:
84// base::LazyInstance<T>::Leaky my_leaky_lazy_instance;
85// instead of:
fischman@chromium.orgdfdfa902012-01-26 10:56:19 +090086// base::LazyInstance<T, base::internal::LeakyLazyInstanceTraits<T> >
87// my_leaky_lazy_instance;
fischman@chromium.org998561e2012-01-24 07:56:41 +090088// (especially when T is MyLongTypeNameImplClientHolderFactory).
fischman@chromium.orgdfdfa902012-01-26 10:56:19 +090089// Only use this internal::-qualified verbose form to extend this traits class
90// (depending on its implementation details).
evan@chromium.orga04f70c2010-10-22 05:41:47 +090091template <typename Type>
92struct LeakyLazyInstanceTraits {
joth@chromium.org524b5ce2011-10-26 04:04:48 +090093 static const bool kRegisterOnExit = false;
thakis@chromium.org2a1f9262014-03-06 10:11:54 +090094#ifndef NDEBUG
willchan@chromium.org25726ef2010-11-20 05:34:18 +090095 static const bool kAllowedToAccessOnNonjoinableThread = true;
thakis@chromium.org2a1f9262014-03-06 10:11:54 +090096#endif
willchan@chromium.org25726ef2010-11-20 05:34:18 +090097
evan@chromium.orga04f70c2010-10-22 05:41:47 +090098 static Type* New(void* instance) {
earthdok@google.com00c0afd2013-06-08 07:09:32 +090099 ANNOTATE_SCOPED_MEMORY_LEAK;
evan@chromium.orga04f70c2010-10-22 05:41:47 +0900100 return DefaultLazyInstanceTraits<Type>::New(instance);
101 }
joth@chromium.org524b5ce2011-10-26 04:04:48 +0900102 static void Delete(Type* instance) {
103 }
evan@chromium.orga04f70c2010-10-22 05:41:47 +0900104};
105
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900106// Our AtomicWord doubles as a spinlock, where a value of
107// kBeingCreatedMarker means the spinlock is being held for creation.
108static const subtle::AtomicWord kLazyInstanceStateCreating = 1;
dvyukov@google.com6beeb832011-05-17 00:01:54 +0900109
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900110// Check if instance needs to be created. If so return true otherwise
111// if another thread has beat us, wait for instance to be created and
112// return false.
113BASE_EXPORT bool NeedsLazyInstance(subtle::AtomicWord* state);
deanm@google.coma6deb002008-09-08 23:11:13 +0900114
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900115// After creating an instance, call this to register the dtor to be called
116// at program exit and to update the atomic state to hold the |new_instance|
117BASE_EXPORT void CompleteLazyInstance(subtle::AtomicWord* state,
118 subtle::AtomicWord new_instance,
119 void* lazy_instance,
120 void (*dtor)(void*));
dvyukov@google.com6beeb832011-05-17 00:01:54 +0900121
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900122} // namespace internal
deanm@google.coma6deb002008-09-08 23:11:13 +0900123
124template <typename Type, typename Traits = DefaultLazyInstanceTraits<Type> >
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900125class LazyInstance {
deanm@google.coma6deb002008-09-08 23:11:13 +0900126 public:
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900127 // Do not define a destructor, as doing so makes LazyInstance a
128 // non-POD-struct. We don't want that because then a static initializer will
129 // be created to register the (empty) destructor with atexit() under MSVC, for
130 // example. We handle destruction of the contained Type class explicitly via
131 // the OnExit member function, where needed.
dvyukov@google.com6beeb832011-05-17 00:01:54 +0900132 // ~LazyInstance() {}
deanm@google.coma6deb002008-09-08 23:11:13 +0900133
fischman@chromium.org998561e2012-01-24 07:56:41 +0900134 // Convenience typedef to avoid having to repeat Type for leaky lazy
135 // instances.
fischman@chromium.orgdfdfa902012-01-26 10:56:19 +0900136 typedef LazyInstance<Type, internal::LeakyLazyInstanceTraits<Type> > Leaky;
fischman@chromium.org998561e2012-01-24 07:56:41 +0900137
deanm@google.coma6deb002008-09-08 23:11:13 +0900138 Type& Get() {
139 return *Pointer();
140 }
141
142 Type* Pointer() {
joth@chromium.orgd70623d2011-11-05 02:29:10 +0900143#ifndef NDEBUG
144 // Avoid making TLS lookup on release builds.
willchan@chromium.org25726ef2010-11-20 05:34:18 +0900145 if (!Traits::kAllowedToAccessOnNonjoinableThread)
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900146 ThreadRestrictions::AssertSingletonAllowed();
joth@chromium.orgd70623d2011-11-05 02:29:10 +0900147#endif
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900148 // If any bit in the created mask is true, the instance has already been
149 // fully constructed.
150 static const subtle::AtomicWord kLazyInstanceCreatedMask =
151 ~internal::kLazyInstanceStateCreating;
willchan@chromium.org25726ef2010-11-20 05:34:18 +0900152
deanm@google.coma6deb002008-09-08 23:11:13 +0900153 // We will hopefully have fast access when the instance is already created.
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900154 // Since a thread sees private_instance_ == 0 or kLazyInstanceStateCreating
155 // at most once, the load is taken out of NeedsInstance() as a fast-path.
dvyukov@google.com6beeb832011-05-17 00:01:54 +0900156 // The load has acquire memory ordering as a thread which sees
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900157 // private_instance_ > creating needs to acquire visibility over
158 // the associated data (private_buf_). Pairing Release_Store is in
159 // CompleteLazyInstance().
160 subtle::AtomicWord value = subtle::Acquire_Load(&private_instance_);
161 if (!(value & kLazyInstanceCreatedMask) &&
162 internal::NeedsLazyInstance(&private_instance_)) {
163 // Create the instance in the space provided by |private_buf_|.
jbates@chromium.orgdde8e302012-02-24 02:52:20 +0900164 value = reinterpret_cast<subtle::AtomicWord>(
165 Traits::New(private_buf_.void_data()));
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900166 internal::CompleteLazyInstance(&private_instance_, value, this,
167 Traits::kRegisterOnExit ? OnExit : NULL);
craig.schlenter@chromium.org0cf58332010-03-13 00:28:48 +0900168 }
deanm@google.coma6deb002008-09-08 23:11:13 +0900169
deanm@chromium.org7c73faa2009-06-26 20:28:03 +0900170 // This annotation helps race detectors recognize correct lock-less
171 // synchronization between different threads calling Pointer().
craig.schlenter@chromium.org0cf58332010-03-13 00:28:48 +0900172 // We suggest dynamic race detection tool that "Traits::New" above
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900173 // and CompleteLazyInstance(...) happens before "return instance()" below.
174 // See the corresponding HAPPENS_BEFORE in CompleteLazyInstance(...).
175 ANNOTATE_HAPPENS_AFTER(&private_instance_);
176 return instance();
deanm@google.coma6deb002008-09-08 23:11:13 +0900177 }
178
dilmah@chromium.org19b68692011-02-23 04:21:59 +0900179 bool operator==(Type* p) {
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900180 switch (subtle::NoBarrier_Load(&private_instance_)) {
181 case 0:
dilmah@chromium.org19b68692011-02-23 04:21:59 +0900182 return p == NULL;
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900183 case internal::kLazyInstanceStateCreating:
jbates@chromium.orgdde8e302012-02-24 02:52:20 +0900184 return static_cast<void*>(p) == private_buf_.void_data();
dilmah@chromium.org19b68692011-02-23 04:21:59 +0900185 default:
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900186 return p == instance();
dilmah@chromium.org19b68692011-02-23 04:21:59 +0900187 }
188 }
189
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900190 // Effectively private: member data is only public to allow the linker to
jbates@chromium.orgdde8e302012-02-24 02:52:20 +0900191 // statically initialize it and to maintain a POD class. DO NOT USE FROM
192 // OUTSIDE THIS CLASS.
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900193
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900194 subtle::AtomicWord private_instance_;
jbates@chromium.orgdde8e302012-02-24 02:52:20 +0900195 // Preallocated space for the Type instance.
196 base::AlignedMemory<sizeof(Type), ALIGNOF(Type)> private_buf_;
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900197
deanm@google.coma6deb002008-09-08 23:11:13 +0900198 private:
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900199 Type* instance() {
200 return reinterpret_cast<Type*>(subtle::NoBarrier_Load(&private_instance_));
201 }
202
satish@chromium.org2940ad12010-12-14 16:48:49 +0900203 // Adapter function for use with AtExit. This should be called single
joth@chromium.org524b5ce2011-10-26 04:04:48 +0900204 // threaded, so don't synchronize across threads.
satish@chromium.org2940ad12010-12-14 16:48:49 +0900205 // Calling OnExit while the instance is in use by other threads is a mistake.
206 static void OnExit(void* lazy_instance) {
207 LazyInstance<Type, Traits>* me =
208 reinterpret_cast<LazyInstance<Type, Traits>*>(lazy_instance);
joth@chromium.orgb24883c2011-11-15 22:31:49 +0900209 Traits::Delete(me->instance());
jbates@chromium.orgdde8e302012-02-24 02:52:20 +0900210 subtle::NoBarrier_Store(&me->private_instance_, 0);
satish@chromium.org2940ad12010-12-14 16:48:49 +0900211 }
deanm@google.coma6deb002008-09-08 23:11:13 +0900212};
213
214} // namespace base
215
216#endif // BASE_LAZY_INSTANCE_H_