HolidayCalendar.cs :  » Business-Application » Quartz-Enterprise-Scheduler » Quartz » Impl » Calendar » 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 » Impl » Calendar » HolidayCalendar.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 Quartz.Collection;

namespace Quartz.Impl.Calendar{
  /// <summary>
  /// This implementation of the Calendar stores a list of holidays (full days
  /// that are excluded from scheduling).
    /// </summary>
  /// <remarks>
  /// The implementation DOES take the year into consideration, so if you want to
  /// exclude July 4th for the next 10 years, you need to add 10 entries to the
  /// exclude list.
  /// </remarks>
  /// <author>Sharada Jambula</author>
  /// <author>Juergen Donnerstag</author>
  [Serializable]
  public class HolidayCalendar : BaseCalendar, ICalendar
  {
    /// <summary>
    /// Returns a <see cref="ISortedSet" /> of Dates representing the excluded
    /// days. Only the month, day and year of the returned dates are
    /// significant.
    /// </summary>
    public virtual ISortedSet ExcludedDates
    {
      get { return TreeSet.UnmodifiableTreeSet(dates); }
    }

    // A sorted set to store the holidays
    private readonly TreeSet dates = new TreeSet();

        /// <summary>
        /// Initializes a new instance of the <see cref="HolidayCalendar"/> class.
        /// </summary>
    public HolidayCalendar()
    {
    }

        /// <summary>
        /// Initializes a new instance of the <see cref="HolidayCalendar"/> class.
        /// </summary>
        /// <param name="baseCalendar">The base calendar.</param>
    public HolidayCalendar(ICalendar baseCalendar)
    {
      CalendarBase = baseCalendar;
    }

    /// <summary>
    /// Determine whether the given time (in milliseconds) is 'included' by the
    /// Calendar.
    /// <p>
    /// Note that this Calendar is only has full-day precision.
    /// </p>
    /// </summary>
    public override bool IsTimeIncluded(DateTime timeStampUtc)
    {
      if (!base.IsTimeIncluded(timeStampUtc))
      {
        return false;
      }

      DateTime lookFor = timeStampUtc.Date;

      return !(dates.Contains(lookFor));
    }

    /// <summary>
    /// Determine the next time (in milliseconds) that is 'included' by the
    /// Calendar after the given time.
    /// <p>
    /// Note that this Calendar is only has full-day precision.
    /// </p>
    /// </summary>
    public override DateTime GetNextIncludedTimeUtc(DateTime timeUtc)
    {
      // Call base calendar implementation first
      DateTime baseTime = base.GetNextIncludedTimeUtc(timeUtc);
      if ((timeUtc != DateTime.MinValue) && (baseTime > timeUtc))
      {
        timeUtc = baseTime;
      }

      // Get timestamp for 00:00:00
      DateTime day = timeUtc.Date;

      while (!IsTimeIncluded(day))
      {
        day = day.AddDays(1);
      }

#if !NET_35
            return day.ToUniversalTime();
#else
            return TimeZoneInfo.ConvertTimeToUtc(day);
#endif
    }

    /// <summary>
    /// Add the given Date to the list of excluded days. Only the month, day and
    /// year of the returned dates are significant.
    /// </summary>
    public virtual void AddExcludedDate(DateTime excludedDateUtc)
    {
      DateTime date = excludedDateUtc.Date;
      dates.Add(date);
    }

    /// <summary>
    /// Removes the excluded date.
    /// </summary>
    /// <param name="dateToRemoveUtc">The date to remove.</param>
    public virtual void RemoveExcludedDate(DateTime dateToRemoveUtc)
    {
      DateTime date = dateToRemoveUtc.Date;
      dates.Remove(date);
    }

        public override int GetHashCode()
        {
            int baseHash = 0;
            if (GetBaseCalendar() != null)
                baseHash = GetBaseCalendar().GetHashCode();

            return ExcludedDates.GetHashCode() + 5 * baseHash;
        }

        public bool Equals(HolidayCalendar obj)
        {
            if (obj == null)
                return false;
            bool baseEqual = GetBaseCalendar() != null ?
                             GetBaseCalendar().Equals(obj.GetBaseCalendar()) : true;

            return baseEqual && (ExcludedDates.Equals(obj.ExcludedDates));

        }


        public override bool Equals(object obj)
        {
            if ((obj == null) || !(obj is HolidayCalendar))
                return false;
            else
                return Equals((HolidayCalendar)obj);


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