All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.phloc.event.async.dispatch.impl.queue.AsyncQueueDispatcherThread Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (C) 2006-2015 phloc systems
 * http://www.phloc.com
 * office[at]phloc[dot]com
 *
 * Licensed 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.
 */
package com.phloc.event.async.dispatch.impl.queue;

import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;

import javax.annotation.Nullable;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.phloc.commons.collections.triple.IReadonlyTriple;
import com.phloc.commons.collections.triple.ReadonlyTriple;
import com.phloc.event.IEvent;
import com.phloc.event.IEventObserver;
import com.phloc.event.IEventObservingExceptionHandler;
import com.phloc.event.async.dispatch.impl.AsynchronousEventResultCollector;
import com.phloc.event.impl.EventObservingExceptionHandler;
import com.phloc.event.impl.EventObservingExceptionWrapper;

final class AsyncQueueDispatcherThread extends Thread
{
  private static final Logger s_aLogger = LoggerFactory.getLogger (AsyncQueueDispatcherThread.class);
  private final BlockingQueue > m_aQueue;
  private final IEventObservingExceptionHandler m_aExceptionHandler;

  public AsyncQueueDispatcherThread (@Nullable final IEventObservingExceptionHandler aExceptionHandler)
  {
    super ("async-queue-dispatcher-thread");
    m_aQueue = new LinkedBlockingQueue > ();
    m_aExceptionHandler = aExceptionHandler != null ? aExceptionHandler : EventObservingExceptionHandler.getInstance ();
  }

  public void addToQueue (final IEvent aEvent,
                          final IEventObserver aObserver,
                          final AsynchronousEventResultCollector aResultCollector)
  {
    try
    {
      m_aQueue.put (ReadonlyTriple.create (aEvent, aObserver, aResultCollector));
    }
    catch (final InterruptedException ex)
    {
      s_aLogger.error ("Failed to add event to queue", ex);
    }
  }

  @Override
  public void run ()
  {
    try
    {
      while (!isInterrupted ())
      {
        // get current element
        final IReadonlyTriple  aElement = m_aQueue.take ();
        final IEvent aEvent = aElement.getFirst ();
        final IEventObserver aObserver = aElement.getSecond ();
        final AsynchronousEventResultCollector aCollector = aElement.getThird ();

        try
        {
          // main dispatch
          aObserver.onEvent (aEvent, aCollector);
        }
        catch (final Throwable t)
        {
          m_aExceptionHandler.handleObservingException (t);
          s_aLogger.error ("Failed to notify " + aObserver + " on " + aEvent, t);

          // Notify on exception
          if (aCollector != null)
          {
            // Put exception in result list
            aCollector.run (new EventObservingExceptionWrapper (aObserver, aEvent, t));
          }
        }
      }
    }
    catch (final InterruptedException ex)
    {
      // OK, gracefully stopped
      if (false)
        s_aLogger.error ("Failed to execute queued event dispatcher thread", ex);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy