blob: 1d1ab7bd4cb87f0d26d1815ef1b48591b6303d40 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _DECAF_CONCURRENT_MUTEX_H_
#define _DECAF_CONCURRENT_MUTEX_H_
#include <decaf/util/concurrent/Synchronizable.h>
#include <decaf/util/concurrent/Concurrent.h>
#include <decaf/lang/Thread.h>
#include <decaf/util/Config.h>
#include <apr_pools.h>
#include <apr_thread_mutex.h>
#include <apr_thread_cond.h>
#include <list>
#include <assert.h>
namespace decaf{
namespace util{
namespace concurrent{
/**
* Creates a pthread_mutex_t object. The object is created
* such that successive locks from the same thread is allowed
* and will be successful.
* @see pthread_mutex_t
*/
class DECAF_API Mutex : public Synchronizable {
private:
// APR Pool Allocator
apr_pool_t* pool;
// The mutex object.
apr_thread_mutex_t* mutex;
// List of waiting threads
std::list<apr_thread_cond_t*> eventQ;
// Lock Status Members
volatile unsigned long lock_owner;
volatile unsigned long lock_count;
public:
/**
* Constructor - creates and initializes the mutex.
*/
Mutex();
/**
* Destructor - destroys the mutex object.
*/
virtual ~Mutex();
/**
* Locks the object.
* @throws ActiveMQException
*/
virtual void lock() throw( lang::Exception );
/**
* Unlocks the object.
* @throws ActiveMQException
*/
virtual void unlock() throw( lang::Exception );
/**
* Waits on a signal from this object, which is generated
* by a call to Notify.
* @throws ActiveMQException
*/
virtual void wait() throw( lang::Exception );
/**
* Waits on a signal from this object, which is generated
* by a call to Notify. Must have this object locked before
* calling. This wait will timeout after the specified time
* interval.
* @param millisecs the time in milliseconds to wait.
* @throws ActiveMQException
*/
virtual void wait( unsigned long millisecs )
throw( lang::Exception );
/**
* Signals a waiter on this object that it can now wake
* up and continue.
* @throws ActiveMQException
*/
virtual void notify() throw( lang::Exception );
/**
* Signals the waiters on this object that it can now wake
* up and continue.
* @throws ActiveMQException
*/
virtual void notifyAll() throw( lang::Exception );
private:
/**
* Check if the calling thread is the Lock Owner
* @retun true if the caller is the lock owner
*/
bool isLockOwner(){
return lock_owner == lang::Thread::getId();
}
};
}}}
#endif /*_DECAF_CONCURRENT_MUTEX_H_*/