/* * 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. */ using System; using System.Collections; using System.Threading; namespace Apache.NMS.EMS { /// /// Handles the multi-threaded dispatching between the transport and the consumers /// public class Dispatcher { System.Collections.Queue queue = new System.Collections.Queue(); readonly Object semaphore = new Object(); readonly ArrayList messagesToRedeliver = new ArrayList(); // TODO can't use EventWaitHandle on MONO 1.0 AutoResetEvent messageReceivedEventHandle = new AutoResetEvent(false); bool m_bAsyncDelivery = false; bool m_bClosed = false; public void SetAsyncDelivery(AutoResetEvent eventHandle) { lock (semaphore) { messageReceivedEventHandle = eventHandle; m_bAsyncDelivery = true; if (queue.Count > 0) { messageReceivedEventHandle.Set(); } } } /// /// Whem we start a transaction we must redeliver any rolled back messages /// public void RedeliverRolledBackMessages() { lock (semaphore) { System.Collections.Queue replacement = new System.Collections.Queue(queue.Count + messagesToRedeliver.Count); foreach (Apache.NMS.IMessage element in messagesToRedeliver) { replacement.Enqueue(element); } messagesToRedeliver.Clear(); while (queue.Count > 0) { Apache.NMS.IMessage element = (Apache.NMS.IMessage) queue.Dequeue(); replacement.Enqueue(element); } queue = replacement; if (queue.Count > 0) { messageReceivedEventHandle.Set(); } } } /// /// Redeliver the given message, putting it at the head of the queue /// public void Redeliver(Apache.NMS.IMessage message) { lock (semaphore) { messagesToRedeliver.Add(message); } } /// /// Method Enqueue /// public void Enqueue(Apache.NMS.IMessage message) { lock (semaphore) { queue.Enqueue(message); messageReceivedEventHandle.Set(); } } /// /// Method DequeueNoWait /// public Apache.NMS.IMessage DequeueNoWait() { Apache.NMS.EMS.Message rc = null; lock (semaphore) { if (!m_bClosed && queue.Count > 0) { rc = (Apache.NMS.EMS.Message) queue.Dequeue(); if(null != rc) { rc.ReadOnlyBody = true; rc.ReadOnlyProperties = true; } } } return rc; } /// /// Method Dequeue /// public Apache.NMS.IMessage Dequeue(TimeSpan timeout) { Apache.NMS.IMessage rc; bool bClosed = false; lock (semaphore) { bClosed = m_bClosed; rc = DequeueNoWait(); } while (!bClosed && rc == null) { if( !messageReceivedEventHandle.WaitOne(timeout, false)) { break; } lock (semaphore) { rc = DequeueNoWait(); bClosed = m_bClosed; } } return rc; } /// /// Method Dequeue /// public Apache.NMS.IMessage Dequeue() { TimeSpan indefiniteWait = TimeSpan.FromMilliseconds(Timeout.Infinite); return Dequeue(indefiniteWait); } public void Close() { lock (semaphore) { m_bClosed = true; queue.Clear(); if(m_bAsyncDelivery) { messageReceivedEventHandle.Set(); } } } } }