AbstractMessageListenerContainer.cs :  » Inversion-of-Control-Dependency-Injection » Spring.net » Spring » Messaging » Listener » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Inversion of Control Dependency Injection » Spring.net 
Spring.net » Spring » Messaging » Listener » AbstractMessageListenerContainer.cs
#region License

/*
 * Copyright 2002-2008 the original author or authors.
 *
 * 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.
 */

#endregion

using System;
using System.Messaging;
using Common.Logging;
using Spring.Context;
using Spring.Messaging.Core;
using Spring.Messaging.Support.Converters;
using Spring.Util;

namespace Spring.Messaging.Listener{
    /// <summary>
    /// Defines a minimal programming model for message listener containers.  They are expected to
    /// invoke a <see cref="IMessageListener"/> upon asynchronous receives of a MSMQ message.  Access to
    /// obtain MessageQueue and <see cref="IMessageConverter"/> instances is available through the 
    /// <see cref="IMessageQueueFactory"/> property, the default implementation 
    /// <see cref="DefaultMessageQueueFactory"/> provides per-thread instances of these classes.   
    /// </summary>
    /// <author>Mark Pollack</author>
    public abstract class AbstractMessageListenerContainer : AbstractListenerContainer, IApplicationContextAware
    {
        #region Logging Definition

        private static readonly ILog LOG = LogManager.GetLogger(typeof (AbstractMessageListenerContainer));

        #endregion

        #region Fields

        private string messageQueueObjectName;

        private IMessageQueueFactory messageQueueFactory;
        private IApplicationContext applicationContext;

        /// <summary>
        /// Most operations within the MessageListener container hierarchy use methods on the
        /// MessageQueue instance which are thread safe (BeginPeek, BeginReceive, 
        /// EndPeek, EndReceive, GetAllMessages, Peek, and Receive).  When using another
        /// method on the shared MessageQueue instance, wrap calls with a lock on this object.
        /// </summary>
        protected object messageQueueMonitor = new object();

        private IMessageListener messageListener;

        private TimeSpan recoveryTimeSpan = new TimeSpan(0, 0, 0, 1, 0);

        #endregion

        #region Properties

        /// <summary>
        /// Gets or sets the message queue factory.
        /// </summary>
        /// <value>The message queue factory.</value>
        public IMessageQueueFactory MessageQueueFactory
        {
            get { return messageQueueFactory; }
            set { messageQueueFactory = value; }
        }

        /// <summary>
        /// Gets or sets the name of the message queue object, as refered to in the 
        /// Spring configuration, that will be used to create a DefaultMessageQueue instance
        /// for consuming messages in the container.
        /// </summary>
        /// <value>The name of the message queue object.</value>
        public string MessageQueueObjectName
        {
            get { return messageQueueObjectName; }
            set
            {
                AssertUtils.ArgumentNotNull(value, "MessageQueueObjectName");
                messageQueueObjectName = value;
            }
        }

        /// <summary>
        /// Gets or sets the message listener.
        /// </summary>
        /// <value>The message listener.</value>
        public IMessageListener MessageListener
        {
            get { return messageListener; }
            set
            {
                AssertUtils.ArgumentNotNull(value, "MessageListener");
                messageListener = value;
            }
        }

        /// <summary>
        /// Gets or sets the recovery time span, how long to sleep after an exception in processing occured
        /// to avoid excessive redelivery attempts.  Default value is 1 second.
        /// </summary>
        /// <value>The recovery time span.</value>
        public TimeSpan RecoveryTimeSpan
        {
            get { return recoveryTimeSpan; }
            set { recoveryTimeSpan = value; }
        }

        #endregion

        #region IApplicationContextAware Members

        /// <summary>
        /// Gets or sets the <see cref="Spring.Context.IApplicationContext"/> that this
        /// object runs in.
        /// </summary>
        /// <remarks>
        /// <p>
        /// Normally this call will be used to initialize the object.
        /// </p>
        /// <p>
        /// Invoked after population of normal object properties but before an
        /// init callback such as
        /// <see cref="Spring.Objects.Factory.IInitializingObject"/>'s
        /// <see cref="Spring.Objects.Factory.IInitializingObject.AfterPropertiesSet"/>
        /// or a custom init-method. Invoked after the setting of any
        /// <see cref="Spring.Context.IResourceLoaderAware"/>'s
        /// <see cref="Spring.Context.IResourceLoaderAware.ResourceLoader"/>
        /// property.
        /// </p>
        /// </remarks>
        /// <exception cref="Spring.Context.ApplicationContextException">
        /// In the case of application context initialization errors.
        /// </exception>
        /// <exception cref="Spring.Objects.ObjectsException">
        /// If thrown by any application context methods.
        /// </exception>
        /// <exception cref="Spring.Objects.Factory.ObjectInitializationException"/>
        public IApplicationContext ApplicationContext
        {
            get { return applicationContext; }
            set { applicationContext = value; }
        }

        #endregion

        #region Protected Methods

        /// <summary>
        /// Validates that the <see cref="messageQueueObjectName"/> is not null.  If <see cref="MessageQueueFactory"/>
        /// is null, a <see cref="DefaultMessageQueueFactory"/> is created.  Can be be overridden in subclasses.
        /// </summary>
        protected override void ValidateConfiguration()
        {
            if (MessageQueueObjectName == null)
            {
                throw new ArgumentException("Property 'DefaultMessageQueueObjectName' is required");
            }
            if (MessageQueueFactory == null)
            {
                DefaultMessageQueueFactory qf = new DefaultMessageQueueFactory();
                qf.ApplicationContext = applicationContext;
                MessageQueueFactory = qf;
            }
        }


        /// <summary>
        /// Template method that execute listener with the provided message if
        /// <see cref="AbstractListenerContainer.Running"/> is true. Subclasses will call
        /// this method at the appropriate point in their processing lifecycle, for example 
        /// committing or rolling back a transaction if needed.
        /// </summary>
        /// <remarks>Calls the template method <see cref="InvokeListener"/></remarks>
        /// <param name="message">The message.</param>
        protected virtual void DoExecuteListener(Message message)
        {
            if (!Running)
            {
                if (LOG.IsWarnEnabled)
                {
                    LOG.Warn("Not processing recieved message because of the listener container " +
                             "having been stopped in the meantime: " + message);
                }
            }

            InvokeListener(message);
        }

        /// <summary>
        /// Invokes the listener if it is not null.  Invokes the method <see cref="DoInvokeListener"/>.
        /// Can be overridden in subclasses.
        /// </summary>        
        /// <param name="message">The message.</param>
        protected virtual void InvokeListener(Message message)
        {
            if (MessageListener != null)
            {
                DoInvokeListener(MessageListener, message);
            }
            else
            {
                throw new InvalidOperationException("No message listener specified - see property 'MessageListener'");
            }
        }

        /// <summary>
        /// Invokes the listener.  Can be overriden in subclasses.
        /// </summary>
        /// <param name="listener">The listener.</param>
        /// <param name="message">The message.</param>
        protected virtual void DoInvokeListener(IMessageListener listener, Message message)
        {
            listener.OnMessage(message);
        }

        /// <summary>
        /// Closes the queue handle.  Cancel pending receive operation by closing the queue handle
        /// To properly dispose of the queue handle, ensure that EnableConnectionCache=false on the
        /// MessageQueue that this listener is configured to use.
        /// </summary>
        protected void CloseQueueHandle(MessageQueue mq)
        {
            lock (messageQueueMonitor)
            {
                mq.Close();
                mq.Dispose();
            }
        }

        #endregion
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.