123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /*
- * PThreads.hh
- *
- * Copyright 2002, Emiliano Martin emilianomc@terra.es All rights reserved.
- *
- * See the COPYING file for the terms of usage and distribution.
- */
- #ifndef _LOG4CPP_THREADING_PTHREADS_HH
- #define _LOG4CPP_THREADING_PTHREADS_HH
- #include <log4cpp/Portability.hh>
- #include <stdio.h>
- #include <pthread.h>
- #include <string>
- #include <assert.h>
- namespace log4cpp {
- namespace threading {
- /**
- * returns the thread ID
- **/
- std::string getThreadId();
-
- /**
- **/
- class Mutex {
- private:
- pthread_mutex_t mutex;
- public:
- inline Mutex() {
- ::pthread_mutex_init(&mutex, NULL);
- }
- inline void lock() {
- ::pthread_mutex_lock(&mutex);
- }
- inline void unlock() {
- ::pthread_mutex_unlock(&mutex);
- }
- inline ~Mutex() {
- ::pthread_mutex_destroy(&mutex);
- }
- private:
- Mutex(const Mutex& m);
- Mutex& operator=(const Mutex &m);
- };
- /**
- * definition of ScopedLock;
- **/
- class ScopedLock {
- private:
- Mutex& _mutex;
- public:
- inline ScopedLock(Mutex& mutex) :
- _mutex(mutex) {
- _mutex.lock();
- }
- inline ~ScopedLock() {
- _mutex.unlock();
- }
- };
- /**
- *
- **/
- template<typename T> class ThreadLocalDataHolder {
- private:
- pthread_key_t _key;
- public:
- typedef T data_type;
- inline ThreadLocalDataHolder() {
- ::pthread_key_create(&_key, freeHolder);
- }
- inline static void freeHolder(void *p) {
- assert(p != NULL);
- delete reinterpret_cast<T *>(p);
- }
- inline ~ThreadLocalDataHolder() {
- T *data = get();
- if (data != NULL) {
- delete data;
- }
- ::pthread_key_delete(_key);
- }
-
- inline T* get() const {
- return reinterpret_cast<T *>(::pthread_getspecific(_key));
- }
- inline T* operator->() const { return get(); }
- inline T& operator*() const { return *get(); }
- inline T* release() {
- T* result = get();
- ::pthread_setspecific(_key, NULL);
- return result;
- }
- inline void reset(T* p = NULL) {
- T *data = get();
- if (data != NULL) {
- delete data;
- }
- ::pthread_setspecific(_key, p);
- }
- };
- }
- }
- #endif
|