X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fmutex.h;fp=source%2Fcore%2Fmutex.h;h=8088a2839dbd21a15b8567f3768e850d5c5bb583;hp=146b982806671fba20912a88f33af04d93c65b90;hb=521cf1db00f8ce2d9f9494dca503d6c17d89ac2f;hpb=80bbee2f401b4af71cb1b80508bdb0d2bb61fa40 diff --git a/source/core/mutex.h b/source/core/mutex.h index 146b982..8088a28 100644 --- a/source/core/mutex.h +++ b/source/core/mutex.h @@ -1,12 +1,13 @@ -/* +/* $Id$ + This file is part of libmspcore Copyright © 2006 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ -#ifndef MSP_FRAMEWORK_MUTEX_H_ -#define MSP_FRAMEWORK_MUTEX_H_ +#ifndef MSP_CORE_MUTEX_H_ +#define MSP_CORE_MUTEX_H_ -#include +#include "refptr.h" #include "types.h" namespace Msp { @@ -33,11 +34,16 @@ private: friend class Semaphore; }; +/** +Locks the mutex for te lifetime of the object. +*/ class MutexLock { public: - MutexLock(Mutex &m): mutex(m) { mutex.lock(); } - ~MutexLock() { mutex.unlock(); } + MutexLock(Mutex &m, bool l=true): mutex(m) { if(l) mutex.lock(); } + ~MutexLock() { mutex.unlock(); } + + int lock() { return mutex.lock(); } private: Mutex &mutex; @@ -45,8 +51,25 @@ private: MutexLock &operator=(const MutexLock &); }; - +/** +Protects a pointer with a mutex. As long as the MutexPtr (or a copy of it) +exists, the mutex will stay locked. +*/ template +class MutexPtr +{ +public: + MutexPtr(T *d, Mutex &m): mutex(new MutexLock(m)), data(d) { } + + T &operator*() const { return *data; } + T *operator->() const { return data; } + void clear() { mutex=0; data=0; } +private: + RefPtr mutex; + T *data; +}; + +/*template class MutexPtr: public RefCount { public: @@ -69,7 +92,7 @@ protected: } return true; } -}; +};*/ }