blob: e39f391e89789a5ddf5f9dff870d6461efc44b37 [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.
*/
#include "CompositeTaskRunner.h"
#include <memory>
#include <activemq/exceptions/ActiveMQException.h>
using namespace std;
using namespace activemq;
using namespace activemq::threads;
using namespace activemq::exceptions;
using namespace decaf;
using namespace decaf::util;
using namespace decaf::lang;
using namespace decaf::lang::exceptions;
////////////////////////////////////////////////////////////////////////////////
CompositeTaskRunner::CompositeTaskRunner() {
this->threadTerminated = false;
this->pending = false;
this->shutDown = false;
this->thread.reset( new Thread( this ) );
this->thread->start();
}
////////////////////////////////////////////////////////////////////////////////
CompositeTaskRunner::~CompositeTaskRunner() {
try{
this->shutdown();
}
AMQ_CATCHALL_NOTHROW()
}
////////////////////////////////////////////////////////////////////////////////
void CompositeTaskRunner::shutdown( unsigned int timeout ) {
synchronized( &mutex ) {
shutDown = true;
pending = true;
mutex.notifyAll();
// Wait till the thread stops ( no need to wait if shutdown
// is called from thread that is shutting down)
if( Thread::currentThread() != this->thread.get() && !threadTerminated ) {
mutex.wait( timeout );
}
}
}
////////////////////////////////////////////////////////////////////////////////
void CompositeTaskRunner::shutdown() {
synchronized( &mutex ) {
shutDown = true;
pending = true;
mutex.notifyAll();
}
// Wait till the thread stops ( no need to wait if shutdown
// is called from thread that is shutting down)
if( Thread::currentThread() != this->thread.get() && !threadTerminated ) {
this->thread->join();
}
}
////////////////////////////////////////////////////////////////////////////////
void CompositeTaskRunner::wakeup() {
synchronized( &mutex ) {
if( shutDown) {
return;
}
pending = true;
mutex.notifyAll();
}
}
////////////////////////////////////////////////////////////////////////////////
void CompositeTaskRunner::run() {
try {
while( true ) {
synchronized( &mutex ) {
pending = false;
if( shutDown ) {
return;
}
}
if( !this->iterate() ) {
// wait to be notified.
synchronized( &mutex ) {
if( shutDown ) {
return;
}
while( !pending ) {
mutex.wait();
}
}
}
}
}
AMQ_CATCH_NOTHROW( Exception )
AMQ_CATCHALL_NOTHROW()
// Make sure we notify any waiting threads that thread
// has terminated.
synchronized( &mutex ) {
threadTerminated = true;
mutex.notifyAll();
}
}
////////////////////////////////////////////////////////////////////////////////
void CompositeTaskRunner::addTask( CompositeTask* task ) {
if( task != NULL ) {
synchronized( &tasks ) {
this->tasks.add( task );
this->wakeup();
}
}
}
////////////////////////////////////////////////////////////////////////////////
void CompositeTaskRunner::removeTask( CompositeTask* task ) {
if( task != NULL ) {
synchronized( &tasks ) {
this->tasks.remove( task );
this->wakeup();
}
}
}
////////////////////////////////////////////////////////////////////////////////
bool CompositeTaskRunner::iterate() {
synchronized( &tasks ) {
auto_ptr< Iterator<CompositeTask*> > iter( tasks.iterator() );
while( iter->hasNext() ) {
CompositeTask* task = iter->next();
if( task->isPending() ) {
task->iterate();
// Always return true, so that we check again for
// any of the other tasks that might now be pending.
return true;
}
}
}
return false;
}