JobDetail.cs :  » Business-Application » Quartz-Enterprise-Scheduler » Quartz » 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 » JobDetail.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 Quartz.Collection;
using Quartz.Spi;
using Quartz.Util;

namespace Quartz{
    /// <summary>
    /// Conveys the detail properties of a given <see cref="IJob" /> instance.
    /// </summary>
    /// <remarks>
    /// Quartz does not store an actual instance of a <see cref="IJob" /> type, but
    /// instead allows you to define an instance of one, through the use of a <see cref="JobDetail" />.
    /// <p>
    /// <see cref="IJob" />s have a name and group associated with them, which
    /// should uniquely identify them within a single <see cref="IScheduler" />.
    /// </p>
    /// <p>
    /// <see cref="Trigger" /> s are the 'mechanism' by which <see cref="IJob" /> s
    /// are scheduled. Many <see cref="Trigger" /> s can point to the same <see cref="IJob" />,
    /// but a single <see cref="Trigger" /> can only point to one <see cref="IJob" />.
    /// </p>
    /// </remarks>
    /// <seealso cref="IJob" />
    /// <seealso cref="IStatefulJob"/>
    /// <seealso cref="JobDataMap"/>
    /// <seealso cref="Trigger"/>
    /// <author>James House</author>
    /// <author>Sharada Jambula</author>
    [Serializable]
    public class JobDetail : ICloneable
    {
        private string name;
        private string group = SchedulerConstants.DefaultGroup;
        private string description;
        private Type jobType;
        private JobDataMap jobDataMap;
        private bool volatility;
        private bool durability;
        private bool shouldRecover;

        private HashSet jobListeners = new HashSet();
        [NonSerialized]
        private Key key;

        /// <summary>
        /// Create a <see cref="JobDetail" /> with no specified name or group, and
        /// the default settings of all the other properties.
        /// <p>
        /// Note that the <see cref="Name" />,<see cref="Group" /> and
        /// <see cref="JobType" /> properties must be set before the job can be
        /// placed into a <see cref="IScheduler" />.
        /// </p>
        /// </summary>
        public JobDetail()
        {
            // do nothing...
        }

        /// <summary>
        /// Create a <see cref="JobDetail" /> with the given name, default group, and
        /// the default settings of all the other properties.
        /// If <see langword="null" />, Scheduler.DefaultGroup will be used.
        /// </summary>
        /// <exception cref="ArgumentException">
        /// If name is null or empty, or the group is an empty string.
        /// </exception>
        public JobDetail(string name, Type jobType) : this(name, null, jobType)
        {
        }

        /// <summary>
        /// Create a <see cref="JobDetail" /> with the given name, and group, and
        /// the default settings of all the other properties.
        /// If <see langword="null" />, Scheduler.DefaultGroup will be used.
        /// </summary>
        /// <exception cref="ArgumentException">
        /// If name is null or empty, or the group is an empty string.
        /// </exception>
        public JobDetail(string name, string group, Type jobType)
        {
            Name = name;
            Group = group;
            JobType = jobType;
        }

        /// <summary>
        /// Create a <see cref="JobDetail" /> with the given name, and group, and
        /// the given settings of all the other properties.
        /// </summary>
        /// <param name="name">The name.</param>
        /// <param name="group">if <see langword="null" />, Scheduler.DefaultGroup will be used.</param>
        /// <param name="jobType">Type of the job.</param>
        /// <param name="isVolatile">if set to <c>true</c>, job will be volatile.</param>
        /// <param name="isDurable">if set to <c>true</c>, job will be durable.</param>
        /// <param name="requestsRecovery">if set to <c>true</c>, job will request recovery.</param>
        /// <exception cref="ArgumentException"> 
        /// ArgumentException if name is null or empty, or the group is an empty string.
        /// </exception>
        public JobDetail(string name, string group, Type jobType, bool isVolatile, bool isDurable, bool requestsRecovery)
        {
            Name = name;
            Group = group;
            JobType = jobType;
            Volatile = isVolatile;
            Durable = isDurable;
            RequestsRecovery = requestsRecovery;
        }

        /// <summary>
        /// Get or sets the name of this <see cref="IJob" />.
        /// </summary>
        /// <exception cref="ArgumentException"> 
        /// if name is null or empty.
        /// </exception>
        public virtual string Name
        {
            get { return name; }

            set
            {
                if (value == null || value.Trim().Length == 0)
                {
                    throw new ArgumentException("Job name cannot be empty.");
                }

                name = value;
            }
        }

        /// <summary>
        /// Get or sets the group of this <see cref="IJob" />. 
        /// If <see langword="null" />, <see cref="SchedulerConstants.DefaultGroup" /> will be used.
        /// </summary>
        /// <exception cref="ArgumentException"> 
        /// If the group is an empty string.
        /// </exception>
        public virtual string Group
        {
            get { return group; }

            set
            {
                if (value != null && value.Trim().Length == 0)
                {
                    throw new ArgumentException("Group name cannot be empty.");
                }

                if (value == null)
                {
                    value = SchedulerConstants.DefaultGroup;
                }

                group = value;
            }
        }

        /// <summary> 
        /// Returns the 'full name' of the <see cref="Trigger" /> in the format
        /// "group.name".
        /// </summary>
        public virtual string FullName
        {
            get { return group + "." + name; }
        }

    /// <summary>
    /// Gets the key.
    /// </summary>
    /// <value>The key.</value>
        public virtual Key Key
        {
            get
            {
                if (key == null)
                {
                    key = new Key(Name, Group);
                }

                return key;
            }
        }

        /// <summary>
        /// Get or set the description given to the <see cref="IJob" /> instance by its
        /// creator (if any).
        /// </summary>
        /// <remarks>
        /// May be useful for remembering/displaying the purpose of the job, though the
        /// description has no meaning to Quartz.
        /// </remarks>
        public virtual string Description
        {
            get { return description; }
            set { description = value; }
        }

        /// <summary>
        /// Get or sets the instance of <see cref="IJob" /> that will be executed.
        /// </summary>
        /// <exception cref="ArgumentException"> 
        /// if jobType is null or the class is not a <see cref="IJob" />.
        /// </exception>
        public virtual Type JobType
        {
            get { return jobType; }

            set
            {
                if (value == null)
                {
                    throw new ArgumentException("Job class cannot be null.");
                }

                if (!typeof (IJob).IsAssignableFrom(value))
                {
                    throw new ArgumentException("Job class must implement the Job interface.");
                }

                jobType = value;
            }
        }

        /// <summary>
        /// Get or set the <see cref="JobDataMap" /> that is associated with the <see cref="IJob" />.
        /// </summary>
        public virtual JobDataMap JobDataMap
        {
            get
            {
                if (jobDataMap == null)
                {
                    jobDataMap = new JobDataMap();
                }
                return jobDataMap;
            }

            set { jobDataMap = value; }
        }

        /// <summary>
        /// Set whether or not the the <see cref="IScheduler" /> should re-Execute
        /// the <see cref="IJob" /> if a 'recovery' or 'fail-over' situation is
        /// encountered.
        /// <p>
        /// If not explicitly set, the default value is <see langword="false" />.
        /// </p>
        /// </summary>
        /// <seealso cref="JobExecutionContext.Recovering" />
        public virtual bool RequestsRecovery
        {
            set { shouldRecover = value; }
            get { return shouldRecover; }
        }

        /// <summary>
        /// Whether or not the <see cref="IJob" /> should not be persisted in the
        /// <see cref="IJobStore" /> for re-use after program
        /// restarts.
        /// <p>
        /// If not explicitly set, the default value is <see langword="false" />.
        /// </p>
        /// </summary>
        /// <returns> <see langword="true" /> if the <see cref="IJob" /> should be garbage
        /// collected along with the <see cref="IScheduler" />.
        /// </returns>
        public virtual bool Volatile
        {
            get { return volatility; }
            set { volatility = value;  }
        }

        /// <summary>
        /// Whether or not the <see cref="IJob" /> should remain stored after it is
        /// orphaned (no <see cref="Trigger" />s point to it).
        /// <p>
        /// If not explicitly set, the default value is <see langword="false" />.
        /// </p>
        /// </summary>
        /// <returns> 
        /// <see langword="true" /> if the Job should remain persisted after
        /// being orphaned.
        /// </returns>
        public virtual bool Durable
        {
            get { return durability; }
            set { durability = value; }
        }

        /// <summary>
        /// Whether or not the <see cref="IJob" /> implements the interface <see cref="IStatefulJob" />.
        /// </summary>
        public virtual bool Stateful
        {
            get
            {
                if (jobType == null)
                {
                    return false;
                }

                return (typeof (IStatefulJob).IsAssignableFrom(jobType));
            }
        }

        /// <summary>
        /// Gets or sets an array of <see cref="String" /> s containing the names of all
        /// <see cref="IJobListener" /> s assigned to the <see cref="IJob" />,
        /// in the order in which they should be notified. Setting the array
        /// clears any listener names that were in the list.
        /// </summary>
        public virtual string[] JobListenerNames
        {
            get { return (string[]) jobListeners.ToArray(typeof (string)); }
            set
            {
                jobListeners.Clear();
                for (int i = 0; i < value.Length; i++)
                {
                    AddJobListener(value[i]);
                }
            }
        }

        /// <summary> 
        /// Validates whether the properties of the <see cref="JobDetail" /> are
        /// valid for submission into a <see cref="IScheduler" />.
        /// </summary>
        public virtual void Validate()
        {
            if (name == null)
            {
                throw new SchedulerException("Job's name cannot be null", SchedulerException.ErrorClientError);
            }

            if (group == null)
            {
                throw new SchedulerException("Job's group cannot be null", SchedulerException.ErrorClientError);
            }

            if (jobType == null)
            {
                throw new SchedulerException("Job's class cannot be null", SchedulerException.ErrorClientError);
            }
        }



        /// <summary>
        /// Add the specified name of a <see cref="IJobListener" /> to the
        /// end of the <see cref="IJob" />'s list of listeners.
        /// </summary>
        public virtual void AddJobListener(string listenerName)
        {
      if (!jobListeners.Add(listenerName)) 
      {
        throw new ArgumentException(string.Format(CultureInfo.InvariantCulture, "Job listener '{0}' is already registered for job detail: {1}", listenerName, FullName));
      }
        }

        /// <summary>
        /// Remove the specified name of a <see cref="IJobListener" /> from
        /// the <see cref="IJob" />'s list of listeners.
        /// </summary>
        /// <returns>true if the given name was found in the list, and removed</returns>
        public virtual bool RemoveJobListener(string listenerName)
        {
            for (int i = 0; i < jobListeners.Count; i++)
            {
                if ((string) jobListeners[i] == listenerName)
                {
                    jobListeners.RemoveAt(i);
                    return true;
                }
            }
            return false;
        }

        /// <summary>
        /// Return a simple string representation of this object.
        /// </summary>
        public override string ToString()
        {
            return
                string.Format(
                    CultureInfo.InvariantCulture,
                    "JobDetail '{0}':  jobType: '{1} isStateful: {2} isVolatile: {3} isDurable: {4} requestsRecovers: {5}",
                    FullName, ((JobType == null) ? null : JobType.FullName), Stateful, Volatile, Durable, RequestsRecovery);
        }

        /// <summary>
        /// Creates a new object that is a copy of the current instance.
        /// </summary>
        /// <returns>
        /// A new object that is a copy of this instance.
        /// </returns>
        public virtual object Clone()
        {
            JobDetail copy;
            try
            {
                copy = (JobDetail) MemberwiseClone();
                copy.jobListeners = (HashSet) jobListeners.Clone();
                if (jobDataMap != null)
                {
                    copy.jobDataMap = (JobDataMap) jobDataMap.Clone();
                }
            }
            catch (Exception)
            {
                throw new Exception("Not Cloneable.");
            }

            return copy;
        }


    /// <summary>
    /// Determines whether the specified detail is equal to this instance.
    /// </summary>
    /// <param name="detail">The detail to examine.</param>
    /// <returns>
    ///   <c>true</c> if the specified detail is equal; otherwise, <c>false</c>.
    /// </returns>
        protected virtual bool IsEqual(JobDetail detail)
        {
      //doesn't consider job's saved data,
      //durability etc
            return (detail != null) && (detail.Name == Name) && (detail.Group == Group) &&
                   (detail.JobType == JobType);
        }
        
    /// <summary>
    /// Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
    /// </summary>
    /// <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
    /// <returns>
    ///   <see langword="true"/> if the specified <see cref="T:System.Object"/> is equal to the
    /// current <see cref="T:System.Object"/>; otherwise, <see langword="false"/>.
    /// </returns>
        public override bool Equals(object obj)
        {
            JobDetail jd = obj as JobDetail;
            if (jd == null)
            {
                return false;
            }

            return IsEqual(jd);
        }

        /// <summary>
        /// Checks equality between given job detail and this instance.
        /// </summary>
        /// <param name="detail">The detail to compare this instance with.</param>
        /// <returns></returns>
        public bool Equals(JobDetail detail)
        {
            return IsEqual(detail);
        }

    /// <summary>
    /// Serves as a hash function for a particular type, suitable
    /// for use in hashing algorithms and data structures like a hash table.
    /// </summary>
    /// <returns>
    /// A hash code for the current <see cref="T:System.Object"/>.
    /// </returns>
        public override int GetHashCode()
        {
            return FullName.GetHashCode();
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.