From 05beb4d5d073a2cb7c11c3d6396a60a78d832523 Mon Sep 17 00:00:00 2001 From: fgerlits Date: Fri, 1 Dec 2006 20:25:01 +0000 Subject: [PATCH] prettified the mutex code --- .../core/include/LiveSupport/Core/Mutex.h | 154 ++++++++++++++++++ .../eventScheduler/src/SchedulerThread.cxx | 28 ++-- .../eventScheduler/src/SchedulerThread.h | 13 +- 3 files changed, 173 insertions(+), 22 deletions(-) create mode 100644 campcaster/src/modules/core/include/LiveSupport/Core/Mutex.h diff --git a/campcaster/src/modules/core/include/LiveSupport/Core/Mutex.h b/campcaster/src/modules/core/include/LiveSupport/Core/Mutex.h new file mode 100644 index 000000000..c99c91009 --- /dev/null +++ b/campcaster/src/modules/core/include/LiveSupport/Core/Mutex.h @@ -0,0 +1,154 @@ +/*------------------------------------------------------------------------------ + + Copyright (c) 2004 Media Development Loan Fund + + This file is part of the Campcaster project. + http://campcaster.campware.org/ + To report bugs, send an e-mail to bugs@campware.org + + Campcaster is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + Campcaster is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Campcaster; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + + Author : $Author$ + Version : $Revision$ + Location : $URL$ + +------------------------------------------------------------------------------*/ +#ifndef LiveSupport_Core_Mutex_h +#define LiveSupport_Core_Mutex_h + +#ifndef __cplusplus +#error This is a C++ include file +#endif + + +/* ============================================================ include files */ + +#ifdef HAVE_CONFIG_H +#include "configure.h" +#endif + +#include + + +namespace LiveSupport { +namespace Core { + + +/* ================================================================ constants */ + + +/* =================================================================== macros */ + + +/* =============================================================== data types */ + +/** + * A simple wrapper for pthread_mutex_t. + * + * @author $Author$ + * @version $Revision$ + */ +class Mutex +{ + private: + /** + * The mutex object. + */ + pthread_mutex_t * mutex; + + /** + * The error code returned by tryLockMutex(). + */ + int mutexError; + + + public: + /** + * Default constructor. + */ + Mutex(void) throw () + : mutexError(0) + { + mutex = new pthread_mutex_t; + pthread_mutex_init(mutex, NULL); + } + + /** + * A virtual destructor, as this class has virtual functions. + */ + virtual + ~Mutex(void) throw () + { + pthread_mutex_destroy(mutex); + } + + /** + * Lock the mutex. + * If the mutex is already locked, it blocks until it becomes free. + */ + void + lock(void) throw () + { + pthread_mutex_lock(mutex); + } + + /** + * Unlock a mutex. + */ + void + unlock(void) throw () + { + pthread_mutex_unlock(mutex); + } + + /** + * Try to lock a mutex. + * If the mutex is already locked, it returns false. + * + * @return true if the mutex was successfully locked; false otherwise. + */ + bool + tryLock(void) throw () + { + mutexError = pthread_mutex_trylock(mutex); + return (mutexError == 0); + } + + /** + * Get the error code (if any) after a call to tryLockMutex(). + * + * @return the error code; 0 for no error. + */ + int + getMutexError(void) throw () + { + return mutexError; + } +}; + + +/* ================================================= external data structures */ + + +/* ====================================================== function prototypes */ + + +} // namespace Core +} // namespace LiveSupport + + +#endif // LiveSupport_Core_Mutex_h + diff --git a/campcaster/src/modules/eventScheduler/src/SchedulerThread.cxx b/campcaster/src/modules/eventScheduler/src/SchedulerThread.cxx index c680bae76..662f21776 100644 --- a/campcaster/src/modules/eventScheduler/src/SchedulerThread.cxx +++ b/campcaster/src/modules/eventScheduler/src/SchedulerThread.cxx @@ -64,14 +64,9 @@ SchedulerThread :: SchedulerThread( throw () : eventContainer(eventContainer), granularity(granularity), - shouldRun(false), - isPreloading(false) + shouldRun(false) { //DEBUG_FUNC_INFO - pthread_mutexattr_init(&mutexAttr); - pthread_mutex_init(&nextEventLock, &mutexAttr); - pthread_mutex_init(&preloadLock, &mutexAttr); - pthread_mutexattr_destroy(&mutexAttr); } @@ -107,16 +102,17 @@ SchedulerThread :: getNextEvent(Ptr::Ref when) throw () void SchedulerThread :: nextStep(Ptr::Ref now) throw () { - pthread_mutex_lock(&nextEventLock); + nextEventMutex.lock(); + if (nextEvent) { if (imminent(now, nextInitTime)) { - pthread_mutex_lock(&preloadLock); + preloadMutex.lock(); debug() << "::nextStep() - Init [" << *TimeConversion::now() << "]" << endl; try { nextEvent->initialize(); } catch (std::exception &e) { - pthread_mutex_unlock(&preloadLock); + preloadMutex.unlock(); // cancel event by getting the next event after this was // supposed to finish getNextEvent(nextEventEnd); @@ -134,11 +130,11 @@ SchedulerThread :: nextStep(Ptr::Ref now) throw () currentEvent = nextEvent; currentEventEnd = nextEventEnd; getNextEvent(TimeConversion::now()); - pthread_mutex_unlock(&preloadLock); + preloadMutex.unlock(); } } - pthread_mutex_unlock(&nextEventLock); + nextEventMutex.unlock(); if (currentEvent && imminent(now, currentEventEnd)) { Ptr::Ref timeLeft(new time_duration(*currentEventEnd @@ -192,13 +188,13 @@ SchedulerThread :: signal(int signalId) throw () switch (signalId) { case UpdateSignal: - if (!pthread_mutex_trylock(&nextEventLock)) { - if (!pthread_mutex_trylock(&preloadLock)) { + if (nextEventMutex.tryLock()) { + if (preloadMutex.tryLock()) { getNextEvent(TimeConversion::now()); - pthread_mutex_unlock(&preloadLock); - pthread_mutex_unlock(&nextEventLock); + preloadMutex.unlock(); + nextEventMutex.unlock(); } else { - pthread_mutex_unlock(&nextEventLock); + nextEventMutex.unlock(); } } break; diff --git a/campcaster/src/modules/eventScheduler/src/SchedulerThread.h b/campcaster/src/modules/eventScheduler/src/SchedulerThread.h index 5cfabbeef..7f4c20f46 100644 --- a/campcaster/src/modules/eventScheduler/src/SchedulerThread.h +++ b/campcaster/src/modules/eventScheduler/src/SchedulerThread.h @@ -43,6 +43,7 @@ #include #include "LiveSupport/Core/RunnableInterface.h" +#include "LiveSupport/Core/Mutex.h" #include "LiveSupport/EventScheduler/ScheduledEventInterface.h" #include "LiveSupport/EventScheduler/EventContainerInterface.h" @@ -128,14 +129,14 @@ class SchedulerThread : public virtual RunnableInterface bool shouldRun; /** - * Flag indicating that we are between an initialize() and - * a start() call. + * A mutex for getting the next event. */ - bool isPreloading; + Mutex nextEventMutex; - pthread_mutex_t nextEventLock; - pthread_mutex_t preloadLock; - pthread_mutexattr_t mutexAttr; + /** + * A mutex for the preload. + */ + Mutex preloadMutex; /** * Default constructor.