Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ThreadLocalSingleton< void > Class Reference

#include <G4ThreadLocalSingleton.hh>

+ Inheritance diagram for G4ThreadLocalSingleton< void >:

Public Member Functions

 G4ThreadLocalSingleton ()
 
 G4ThreadLocalSingleton (const G4ThreadLocalSingleton &)=delete
 
 G4ThreadLocalSingleton (G4ThreadLocalSingleton &&)=default
 
 ~G4ThreadLocalSingleton () override
 
G4ThreadLocalSingletonoperator= (const G4ThreadLocalSingleton &)=delete
 
G4ThreadLocalSingletonoperator= (G4ThreadLocalSingleton &&)=default
 
void * Instance () const
 

Static Public Member Functions

static void Clear ()
 
template<typename FuncT>
static fvector_t::iterator Insert (FuncT &&_func)
 

Friends

template<class T>
class G4ThreadLocalSingleton
 
void G4AutoDelete::Register (void *)
 

Detailed Description

Definition at line 121 of file G4ThreadLocalSingleton.hh.

Constructor & Destructor Documentation

◆ G4ThreadLocalSingleton() [1/3]

Definition at line 150 of file G4ThreadLocalSingleton.hh.

179 : G4Cache<T*>()
180{
181 G4MUTEXINIT(listm);
182 G4Cache<T*>::Put(nullptr);
183 // Uncomment below to find the origin of where instantiation happened
184 /*
185 auto bt = G4Backtrace::GetDemangled<4, 1>(
186 [](const char* cstr) { return std::string{ cstr }; });
187 std::cout << "Backtrace to G4ThreadLocalSingleton<"
188 << G4Demangle<T>().c_str() << ">:\n";
189 for(auto& itr : bt)
190 {
191 if(!itr.empty())
192 std::cout << "\t" << itr << "\n";
193 }
194 */
196 // printf("Deleting G4ThreadLocalSingletons for type %s ...\n",
197 // G4Demangle<T>().c_str());
198 this->Clear();
199 });
200}
#define G4MUTEXINIT(mutex)
void Put(const value_type &val) const
Definition G4Cache.hh:321

◆ G4ThreadLocalSingleton() [2/3]

◆ G4ThreadLocalSingleton() [3/3]

◆ ~G4ThreadLocalSingleton()

Definition at line 153 of file G4ThreadLocalSingleton.hh.

204{
205 Clear();
206 G4MUTEXDESTROY(listm);
207}
#define G4MUTEXDESTROY(mutex)

Member Function Documentation

◆ Clear()

void G4ThreadLocalSingleton< void >::Clear ( )
static

Definition at line 45 of file G4ThreadLocalSingleton.cc.

46{
47 G4AutoLock _lk{ GetMutex() };
48 for(const auto& itr : GetCallbacks())
49 {
50 itr();
51 }
52 GetCallbacks().clear();
53}

Referenced by G4ThreadLocalSingleton, and Instance().

◆ Insert()

template<typename FuncT>
static fvector_t::iterator G4ThreadLocalSingleton< void >::Insert ( FuncT && _func)
inlinestatic

Definition at line 136 of file G4ThreadLocalSingleton.hh.

137 {
138 G4AutoLock _lk{ GetMutex() };
139 return GetCallbacks().emplace(GetCallbacks().end(),
141 }

◆ Instance()

void * G4ThreadLocalSingleton< void >::Instance ( ) const

Definition at line 161 of file G4ThreadLocalSingleton.hh.

211{
213 if(instance == static_cast<T*>(0))
214 {
215 instance = new T;
218 }
219 return instance;
220}
value_type & Get() const
Definition G4Cache.hh:315
friend void G4AutoDelete::Register(void *)

◆ operator=() [1/2]

G4ThreadLocalSingleton & G4ThreadLocalSingleton< void >::operator= ( const G4ThreadLocalSingleton< void > & )
delete

◆ operator=() [2/2]

G4ThreadLocalSingleton & G4ThreadLocalSingleton< void >::operator= ( G4ThreadLocalSingleton< void > && )
default

Friends And Related Symbol Documentation

◆ G4AutoDelete::Register

void G4AutoDelete::Register ( void * )
friend

◆ G4ThreadLocalSingleton

template<class T>
friend class G4ThreadLocalSingleton
friend

Definition at line 127 of file G4ThreadLocalSingleton.hh.

Referenced by G4ThreadLocalSingleton.


The documentation for this class was generated from the following files: