OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Catalog_Namespace::write_lock< T > Class Template Reference

#include <RWLocks.h>

Public Member Functions

 write_lock (const T *cat)
 
 ~write_lock ()
 
void unlock ()
 

Private Member Functions

template<typename inner_type >
void lock_catalog (const inner_type *cat)
 

Private Attributes

const T * catalog
 
heavyai::unique_lock
< heavyai::shared_mutex
lock
 
heavyai::unique_lock
< heavyai::DistributedSharedMutex
dlock
 
bool holds_lock
 

Detailed Description

template<typename T>
class Catalog_Namespace::write_lock< T >

Definition at line 130 of file RWLocks.h.

Constructor & Destructor Documentation

template<typename T >
Catalog_Namespace::write_lock< T >::write_lock ( const T *  cat)
inline

Definition at line 153 of file RWLocks.h.

References Catalog_Namespace::write_lock< T >::lock_catalog().

153 : catalog(cat), holds_lock(false) { lock_catalog(cat); }
std::string cat(Ts &&...args)
void lock_catalog(const inner_type *cat)
Definition: RWLocks.h:137

+ Here is the call graph for this function:

template<typename T >
Catalog_Namespace::write_lock< T >::~write_lock ( )
inline

Definition at line 155 of file RWLocks.h.

References Catalog_Namespace::write_lock< T >::unlock().

155 { unlock(); }

+ Here is the call graph for this function:

Member Function Documentation

template<typename T >
template<typename inner_type >
void Catalog_Namespace::write_lock< T >::lock_catalog ( const inner_type *  cat)
inlineprivate

Definition at line 137 of file RWLocks.h.

References Catalog_Namespace::write_lock< T >::dlock, g_multi_instance, Catalog_Namespace::write_lock< T >::holds_lock, and Catalog_Namespace::write_lock< T >::lock.

Referenced by Catalog_Namespace::write_lock< T >::write_lock().

137  {
138  std::thread::id tid = std::this_thread::get_id();
139 
140  if (cat->thread_holding_write_lock != tid) {
141  if (!g_multi_instance) {
143  } else {
144  dlock =
146  }
147  cat->thread_holding_write_lock = tid;
148  holds_lock = true;
149  }
150  }
bool g_multi_instance
Definition: heavyai_locks.h:22
std::string cat(Ts &&...args)
heavyai::unique_lock< heavyai::DistributedSharedMutex > dlock
Definition: RWLocks.h:133
std::unique_lock< T > unique_lock
heavyai::unique_lock< heavyai::shared_mutex > lock
Definition: RWLocks.h:132

+ Here is the caller graph for this function:

template<typename T >
void Catalog_Namespace::write_lock< T >::unlock ( )
inline

Definition at line 157 of file RWLocks.h.

References Catalog_Namespace::write_lock< T >::catalog, Catalog_Namespace::write_lock< T >::dlock, g_multi_instance, Catalog_Namespace::write_lock< T >::holds_lock, and Catalog_Namespace::write_lock< T >::lock.

Referenced by Catalog_Namespace::Catalog::createDashboard(), Catalog_Namespace::Catalog::replaceDashboard(), Catalog_Namespace::Catalog::setUncappedTableEpoch(), and Catalog_Namespace::write_lock< T >::~write_lock().

157  {
158  if (holds_lock) {
159  std::thread::id no_thread;
160  catalog->thread_holding_write_lock = no_thread;
161  if (!g_multi_instance) {
162  lock.unlock();
163  } else {
164  dlock.unlock();
165  }
166  holds_lock = false;
167  }
168  }
bool g_multi_instance
Definition: heavyai_locks.h:22
heavyai::unique_lock< heavyai::DistributedSharedMutex > dlock
Definition: RWLocks.h:133
heavyai::unique_lock< heavyai::shared_mutex > lock
Definition: RWLocks.h:132

+ Here is the caller graph for this function:

Member Data Documentation

template<typename T >
const T* Catalog_Namespace::write_lock< T >::catalog
private

Definition at line 131 of file RWLocks.h.

Referenced by Catalog_Namespace::write_lock< T >::unlock().

template<typename T >
bool Catalog_Namespace::write_lock< T >::holds_lock
private

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