LoggingTriggerHistoryPlugin.cs :  » Business-Application » Quartz-Enterprise-Scheduler » Quartz » Plugin » History » 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 » Business Application » Quartz Enterprise Scheduler 
Quartz Enterprise Scheduler » Quartz » Plugin » History » LoggingTriggerHistoryPlugin.cs
/* 
* Copyright 2004-2009 James House 
* 
* 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.
* 
*/

/*
* Previously Copyright (c) 2001-2004 James House
*/
using System;
using System.Globalization;

using Common.Logging;

using Quartz.Spi;

namespace Quartz.Plugin.History{
    /// <summary> 
    /// Logs a history of all trigger firings via the Jakarta Commons-Logging
    /// framework.
    /// </summary>
    /// <remarks>
    /// <p>
    /// The logged message is customizable by setting one of the following message
    /// properties to a string that conforms to the syntax of <see cref="String.Format(string, object[])" />.
    /// </p>
    /// 
    /// <p>
    /// TriggerFiredMessage - available message data are: <table>
    /// <tr>
    /// <th>Element</th>
    /// <th>Data Type</th>
    /// <th>Description</th>
    /// </tr>
    /// <tr>
    /// <td>0</td>
    /// <td>String</td>
    /// <td>The Trigger's Name.</td>
    /// </tr>
    /// <tr>
    /// <td>1</td>
    /// <td>String</td>
    /// <td>The Trigger's Group.</td>
    /// </tr>
    /// <tr>
    /// <td>2</td>
    /// <td>Date</td>
    /// <td>The scheduled fire time.</td>
    /// </tr>
    /// <tr>
    /// <td>3</td>
    /// <td>Date</td>
    /// <td>The next scheduled fire time.</td>
    /// </tr>
    /// <tr>
    /// <td>4</td>
    /// <td>Date</td>
    /// <td>The actual fire time.</td>
    /// </tr>
    /// <tr>
    /// <td>5</td>
    /// <td>String</td>
    /// <td>The Job's name.</td>
    /// </tr>
    /// <tr>
    /// <td>6</td>
    /// <td>String</td>
    /// <td>The Job's group.</td>
    /// </tr>
    /// <tr>
    /// <td>7</td>
    /// <td>Integer</td>
    /// <td>The re-fire count from the JobExecutionContext.</td>
    /// </tr>
    /// </table>
    /// 
    /// The default message text is <i>"Trigger {1}.{0} fired job {6}.{5} at: {4,
    /// date, HH:mm:ss MM/dd/yyyy"</i>
    /// </p>
    /// 
    /// <p>
    /// TriggerMisfiredMessage - available message data are: <table>
    /// <tr>
    /// <th>Element</th>
    /// <th>Data Type</th>
    /// <th>Description</th>
    /// </tr>
    /// <tr>
    /// <td>0</td>
    /// <td>String</td>
    /// <td>The Trigger's Name.</td>
    /// </tr>
    /// <tr>
    /// <td>1</td>
    /// <td>String</td>
    /// <td>The Trigger's Group.</td>
    /// </tr>
    /// <tr>
    /// <td>2</td>
    /// <td>Date</td>
    /// <td>The scheduled fire time.</td>
    /// </tr>
    /// <tr>
    /// <td>3</td>
    /// <td>Date</td>
    /// <td>The next scheduled fire time.</td>
    /// </tr>
    /// <tr>
    /// <td>4</td>
    /// <td>Date</td>
    /// <td>The actual fire time. (the time the misfire was detected/handled)</td>
    /// </tr>
    /// <tr>
    /// <td>5</td>
    /// <td>String</td>
    /// <td>The Job's name.</td>
    /// </tr>
    /// <tr>
    /// <td>6</td>
    /// <td>String</td>
    /// <td>The Job's group.</td>
    /// </tr>
    /// </table>
    /// 
    /// The default message text is <i>"Trigger {1}.{0} misfired job {6}.{5} at:
    /// {4, date, HH:mm:ss MM/dd/yyyy}. Should have fired at: {3, date, HH:mm:ss
    /// MM/dd/yyyy"</i>
    /// </p>
    /// 
    /// <p>
    /// TriggerCompleteMessage - available message data are: <table>
    /// <tr>
    /// <th>Element</th>
    /// <th>Data Type</th>
    /// <th>Description</th>
    /// </tr>
    /// <tr>
    /// <td>0</td>
    /// <td>String</td>
    /// <td>The Trigger's Name.</td>
    /// </tr>
    /// <tr>
    /// <td>1</td>
    /// <td>String</td>
    /// <td>The Trigger's Group.</td>
    /// </tr>
    /// <tr>
    /// <td>2</td>
    /// <td>Date</td>
    /// <td>The scheduled fire time.</td>
    /// </tr>
    /// <tr>
    /// <td>3</td>
    /// <td>Date</td>
    /// <td>The next scheduled fire time.</td>
    /// </tr>
    /// <tr>
    /// <td>4</td>
    /// <td>Date</td>
    /// <td>The job completion time.</td>
    /// </tr>
    /// <tr>
    /// <td>5</td>
    /// <td>String</td>
    /// <td>The Job's name.</td>
    /// </tr>
    /// <tr>
    /// <td>6</td>
    /// <td>String</td>
    /// <td>The Job's group.</td>
    /// </tr>
    /// <tr>
    /// <td>7</td>
    /// <td>Integer</td>
    /// <td>The re-fire count from the JobExecutionContext.</td>
    /// </tr>
    /// <tr>
    /// <td>8</td>
    /// <td>Integer</td>
    /// <td>The trigger's resulting instruction code.</td>
    /// </tr>
    /// <tr>
    /// <td>9</td>
    /// <td>String</td>
    /// <td>A human-readable translation of the trigger's resulting instruction
    /// code.</td>
    /// </tr>
    /// </table>
    /// 
    /// The default message text is <i>"Trigger {1}.{0} completed firing job
    /// {6}.{5} at {4, date, HH:mm:ss MM/dd/yyyy} with resulting trigger instruction
    /// code: {9"</i>
    /// </p>
    /// </remarks>
    /// <author>James House</author>
    public class LoggingTriggerHistoryPlugin : ISchedulerPlugin, ITriggerListener
    {
        private string name;
        private string triggerFiredMessage = "Trigger {1}.{0} fired job {6}.{5} at: {4:HH:mm:ss MM/dd/yyyy} ";
        private string triggerMisfiredMessage = "Trigger {1}.{0} misfired job {6}.{5}  at: {4:HH:mm:ss MM/dd/yyyy}.  Should have fired at: {3:HH:mm:ss MM/dd/yyyy}";
        private string triggerCompleteMessage = "Trigger {1}.{0} completed firing job {6}.{5} at {4:HH:mm:ss MM/dd/yyyy} with resulting trigger instruction code: {9}";
        
        private ILog log = LogManager.GetLogger(typeof (LoggingTriggerHistoryPlugin));

        /// <summary>
        /// Logger instance to use. Defaults to common logging.
        /// </summary>
        public ILog Log
        {
            get { return log; }
            set { log = value; }
        }

        /// <summary> 
        /// Get or set the message that is printed upon the completion of a trigger's
        /// firing.
        /// </summary>
        public virtual string TriggerCompleteMessage
        {
            get { return triggerCompleteMessage; }
            set { triggerCompleteMessage = value; }
        }

        /// <summary> 
        /// Get or set the message that is printed upon a trigger's firing.
        /// </summary>
        public virtual string TriggerFiredMessage
        {
            get { return triggerFiredMessage; }
            set { triggerFiredMessage = value; }
        }

        /// <summary> 
        /// Get or set the message that is printed upon a trigger's mis-firing.
        /// </summary>
        public virtual string TriggerMisfiredMessage
        {
            get { return triggerMisfiredMessage; }
            set { triggerMisfiredMessage = value; }
        }

        /// <summary>
        /// Get the name of the <see cref="ITriggerListener" />.
        /// </summary>
        /// <value></value>
        public virtual string Name
        {
            get { return name; }
        }

        /// <summary>
        /// Called during creation of the <see cref="IScheduler" /> in order to give
        /// the <see cref="ISchedulerPlugin" /> a chance to Initialize.
        /// </summary>
        public virtual void Initialize(String pluginName, IScheduler sched)
        {
            name = pluginName;
            sched.AddGlobalTriggerListener(this);
        }

        /// <summary>
        /// Called when the associated <see cref="IScheduler" /> is started, in order
        /// to let the plug-in know it can now make calls into the scheduler if it
        /// needs to.
        /// </summary>
        public virtual void Start()
        {
            // do nothing...
        }

        /// <summary>
        /// Called in order to inform the <see cref="ISchedulerPlugin" /> that it
        /// should free up all of it's resources because the scheduler is shutting
        /// down.
        /// </summary>
        public virtual void Shutdown()
        {
            // nothing to do...
        }

        /// <summary>
        /// Called by the <see cref="IScheduler" /> when a <see cref="Trigger" />
        /// has fired, and it's associated <see cref="JobDetail" />
        /// is about to be executed.
        /// <p>
        /// It is called before the <see cref="VetoJobExecution" /> method of this
        /// interface.
        /// </p>
        /// </summary>
        /// <param name="trigger">The <see cref="Trigger" /> that has fired.</param>
        /// <param name="context">The <see cref="JobExecutionContext" /> that will be passed to the <see cref="IJob" />'s <see cref="IJob.Execute" /> method.</param>
        public virtual void TriggerFired(Trigger trigger, JobExecutionContext context)
        {
            if (!Log.IsInfoEnabled)
            {
                return;
            }

            object[] args =
                new object[]
                    {
                        trigger.Name, trigger.Group, trigger.GetPreviousFireTimeUtc(), trigger.GetNextFireTimeUtc(), DateTime.UtcNow,
                        context.JobDetail.Name, context.JobDetail.Group, context.RefireCount
                    };

            Log.Info(String.Format(CultureInfo.InvariantCulture, TriggerFiredMessage, args));
        }

        /// <summary>
        /// Called by the <see cref="IScheduler" /> when a <see cref="Trigger" />
        /// has misfired.
        /// <p>
        /// Consideration should be given to how much time is spent in this method,
        /// as it will affect all triggers that are misfiring.  If you have lots
        /// of triggers misfiring at once, it could be an issue it this method
        /// does a lot.
        /// </p>
        /// </summary>
        /// <param name="trigger">The <see cref="Trigger" /> that has misfired.</param>
        public virtual void TriggerMisfired(Trigger trigger)
        {
            if (!Log.IsInfoEnabled)
            {
                return;
            }

            object[] args =
                new object[]
                    {
                        trigger.Name, trigger.Group, trigger.GetPreviousFireTimeUtc(), trigger.GetNextFireTimeUtc(), DateTime.UtcNow,
                        trigger.JobName, trigger.JobGroup
                    };

            Log.Info(String.Format(CultureInfo.InvariantCulture, TriggerMisfiredMessage, args));
        }

        /// <summary>
        /// Called by the <see cref="IScheduler" /> when a <see cref="Trigger" />
        /// has fired, it's associated <see cref="JobDetail" />
        /// has been executed, and it's <see cref="Trigger.Triggered" /> method has been
        /// called.
        /// </summary>
        /// <param name="trigger">The <see cref="Trigger" /> that was fired.</param>
        /// <param name="context">The <see cref="JobExecutionContext" /> that was passed to the
        /// <see cref="IJob" />'s <see cref="IJob.Execute" /> method.</param>
        /// <param name="triggerInstructionCode">The result of the call on the <see cref="Trigger" />'s <see cref="Trigger.Triggered" />  method.</param>
        public virtual void TriggerComplete(Trigger trigger, JobExecutionContext context, SchedulerInstruction triggerInstructionCode)
        {
            if (!Log.IsInfoEnabled)
            {
                return;
            }

            String instrCode = "UNKNOWN";
            if (triggerInstructionCode == SchedulerInstruction.DeleteTrigger)
            {
                instrCode = "DELETE TRIGGER";
            }
            else if (triggerInstructionCode == SchedulerInstruction.NoInstruction)
            {
                instrCode = "DO NOTHING";
            }
            else if (triggerInstructionCode == SchedulerInstruction.ReExecuteJob)
            {
                instrCode = "RE-EXECUTE JOB";
            }
            else if (triggerInstructionCode ==SchedulerInstruction.SetAllJobTriggersComplete)
            {
                instrCode = "SET ALL OF JOB'S TRIGGERS COMPLETE";
            }
            else if (triggerInstructionCode == SchedulerInstruction.SetTriggerComplete)
            {
                instrCode = "SET THIS TRIGGER COMPLETE";
            }

            object[] args =
                new object[]
                    {
                        trigger.Name, trigger.Group, trigger.GetPreviousFireTimeUtc(), trigger.GetNextFireTimeUtc(), DateTime.UtcNow,
                        context.JobDetail.Name, context.JobDetail.Group, context.RefireCount, triggerInstructionCode, instrCode
                    };

            Log.Info(String.Format(CultureInfo.InvariantCulture, TriggerCompleteMessage, args));
        }

        /// <summary>
        /// Called by the <see cref="IScheduler" /> when a <see cref="Trigger" />
        /// has fired, and it's associated <see cref="JobDetail" />
        /// is about to be executed.
        /// <p>
        /// It is called after the <see cref="TriggerFired" /> method of this
        /// interface.
        /// </p>
        /// </summary>
        /// <param name="trigger">The <see cref="Trigger" /> that has fired.</param>
        /// <param name="context">The <see cref="JobExecutionContext" /> that will be passed to
        /// the <see cref="IJob" />'s <see cref="IJob.Execute" /> method.</param>
        /// <returns></returns>
        public virtual bool VetoJobExecution(Trigger trigger, JobExecutionContext context)
        {
            return false;
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.