DailyCalendar.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 » DailyCalendar.cs
using System;
using System.Globalization;
using System.Text;

using Quartz;

namespace Quartz.Impl.Calendar{
    /// <summary>
    /// This implementation of the Calendar excludes (or includes - see below) a
    /// specified time range each day. 
    /// </summary>
    /// <remarks>
    /// For example, you could use this calendar to
    /// exclude business hours (8AM - 5PM) every day. Each <see cref="DailyCalendar" />
    /// only allows a single time range to be specified, and that time range may not
    /// * cross daily boundaries (i.e. you cannot specify a time range from 8PM - 5AM).
    /// If the property <see cref="invertTimeRange" /> is <see langword="false" /> (default),
    /// the time range defines a range of times in which triggers are not allowed to
    /// * fire. If <see cref="invertTimeRange" /> is <see langword="true" />, the time range
    /// is inverted: that is, all times <i>outside</i> the defined time range
    /// are excluded.
    /// <p>
    /// Note when using <see cref="DailyCalendar" />, it behaves on the same principals
    /// as, for example, WeeklyCalendar defines a set of days that are
    /// excluded <i>every week</i>. Likewise, <see cref="DailyCalendar" /> defines a
    /// set of times that are excluded <i>every day</i>.
    /// </p>
    /// </remarks>
    /// <author>Mike Funk</author>
    /// <author>Aaron Craven</author>
    [Serializable]
    public class DailyCalendar : BaseCalendar
    {
        private static readonly string invalidHourOfDay = "Invalid hour of day: ";
        private static readonly string invalidMinute = "Invalid minute: ";
        private static readonly string invalidSecond = "Invalid second: ";
        private static readonly string invalidMillis = "Invalid millis: ";
        private static readonly string invalidTimeRange = "Invalid time range: ";
        private static readonly string separator = " - ";
        private static readonly long oneMillis = 1;
        private static readonly char colon = ':';

        private int rangeStartingHourOfDay;
        private int rangeStartingMinute;
        private int rangeStartingSecond;
        private int rangeStartingMillis;
        private int rangeEndingHourOfDay;
        private int rangeEndingMinute;
        private int rangeEndingSecond;
        private int rangeEndingMillis;

        private bool invertTimeRange = false;


        /// <summary>
        /// Create a <see cref="DailyCalendar" /> with a time range defined by the
        /// specified strings and no baseCalendar. 
        ///  <param name="rangeStartingTime" /> and <param name="rangeEndingTime" />
        /// must be in the format &quot;HH:MM[:SS[:mmm]]&quot; where:
        /// <ul>
        ///     <li>
        ///         HH is the hour of the specified time. The hour should be
        ///          specified using military (24-hour) time and must be in the range
        ///          0 to 23.
        ///     </li>
        ///     <li>
        ///         MM is the minute of the specified time and must be in the range
        ///         0 to 59.
        ///     </li>
        ///     <li>
        ///         SS is the second of the specified time and must be in the range
        ///         0 to 59.
        ///     </li>
        ///     <li>
        ///         mmm is the millisecond of the specified time and must be in the
        ///         range 0 to 999.
        ///     </li>
        ///     <li>items enclosed in brackets ('[', ']') are optional.</li>
        ///     <li>
        ///         The time range starting time must be before the time range ending
        ///         time. Note this means that a time range may not cross daily 
        ///         boundaries (10PM - 2AM)
        ///     </li>  
        /// </ul>
        /// </summary>
        public DailyCalendar(string rangeStartingTime,
                             string rangeEndingTime)
        {
            SetTimeRange(rangeStartingTime, rangeEndingTime);
        }


        /// <summary>
        /// Create a <see cref="DailyCalendar"/> with a time range defined by the
        /// specified strings and the specified baseCalendar.
        /// <param name="rangeStartingTime"/> and <param name="rangeEndingTime"/>
        /// must be in the format "HH:MM[:SS[:mmm]]" where:
        /// <ul>
        ///     <li>
        /// HH is the hour of the specified time. The hour should be
        /// specified using military (24-hour) time and must be in the range
        /// 0 to 23.
        /// </li>
        ///     <li>
        /// MM is the minute of the specified time and must be in the range
        /// 0 to 59.
        /// </li>
        ///     <li>
        /// SS is the second of the specified time and must be in the range
        /// 0 to 59.
        /// </li>
        ///     <li>
        /// mmm is the millisecond of the specified time and must be in the
        /// range 0 to 999.
        /// </li>
        ///     <li>
        /// items enclosed in brackets ('[', ']') are optional.
        /// </li>
        ///     <li>
        /// The time range starting time must be before the time range ending
        /// time. Note this means that a time range may not cross daily
        /// boundaries (10PM - 2AM)
        /// </li>
        ///   </ul>
        /// </summary>
        /// <param name="baseCalendar">The base calendar for this calendar instance see BaseCalendar for more
        /// information on base calendar functionality.</param>
        public DailyCalendar(ICalendar baseCalendar,
                             string rangeStartingTime,
                             string rangeEndingTime) : base(baseCalendar)
        {
            SetTimeRange(rangeStartingTime, rangeEndingTime);
        }

        /// <summary>
        /// Create a <see cref="DailyCalendar" /> with a time range defined by the
        /// specified values and no baseCalendar. Values are subject to
        /// the following validations:
        /// <ul>
        ///     <li>
        ///         Hours must be in the range 0-23 and are expressed using military
        ///        (24-hour) time.
        ///     </li>
        ///    <li>Minutes must be in the range 0-59</li>
        ///    <li>Seconds must be in the range 0-59</li>
        ///    <li>Milliseconds must be in the range 0-999</li>
        ///    <li>
        ///         The time range starting time must be before the time range ending
        ///        time. Note this means that a time range may not cross daily 
        ///        boundaries (10PM - 2AM)
        ///     </li>  
        /// </ul>
        /// </summary>
        /// <param name="rangeStartingHourOfDay">The range starting hour of day.</param>
        /// <param name="rangeStartingMinute">The range starting minute.</param>
        /// <param name="rangeStartingSecond">The range starting second.</param>
        /// <param name="rangeStartingMillis">The range starting millis.</param>
        /// <param name="rangeEndingHourOfDay">The range ending hour of day.</param>
        /// <param name="rangeEndingMinute">The range ending minute.</param>
        /// <param name="rangeEndingSecond">The range ending second.</param>
        /// <param name="rangeEndingMillis">The range ending millis.</param>
        public DailyCalendar(int rangeStartingHourOfDay,
                             int rangeStartingMinute,
                             int rangeStartingSecond,
                             int rangeStartingMillis,
                             int rangeEndingHourOfDay,
                             int rangeEndingMinute,
                             int rangeEndingSecond,
                             int rangeEndingMillis)
        {
            SetTimeRange(rangeStartingHourOfDay,
                         rangeStartingMinute,
                         rangeStartingSecond,
                         rangeStartingMillis,
                         rangeEndingHourOfDay,
                         rangeEndingMinute,
                         rangeEndingSecond,
                         rangeEndingMillis);
        }

        /// <summary>
        /// Create a <see cref="DailyCalendar"/> with a time range defined by the
        /// specified values and the specified <param name="baseCalendar"/>. Values are
        /// subject to the following validations:
        /// <ul>
        ///     <li>
        /// Hours must be in the range 0-23 and are expressed using military
        /// (24-hour) time.
        /// </li>
        ///     <li>Minutes must be in the range 0-59</li>
        ///     <li>Seconds must be in the range 0-59</li>
        ///     <li>Milliseconds must be in the range 0-999</li>
        ///     <li>
        /// The time range starting time must be before the time range ending
        /// time. Note this means that a time range may not cross daily
        /// boundaries (10PM - 2AM)
        /// </li>
        ///   </ul>
        /// </summary>
        /// <param name="rangeStartingHourOfDay">The range starting hour of day.</param>
        /// <param name="rangeStartingMinute">The range starting minute.</param>
        /// <param name="rangeStartingSecond">The range starting second.</param>
        /// <param name="rangeStartingMillis">The range starting millis.</param>
        /// <param name="rangeEndingHourOfDay">The range ending hour of day.</param>
        /// <param name="rangeEndingMinute">The range ending minute.</param>
        /// <param name="rangeEndingSecond">The range ending second.</param>
        /// <param name="rangeEndingMillis">The range ending millis.</param>
        public DailyCalendar(ICalendar baseCalendar,
                             int rangeStartingHourOfDay,
                             int rangeStartingMinute,
                             int rangeStartingSecond,
                             int rangeStartingMillis,
                             int rangeEndingHourOfDay,
                             int rangeEndingMinute,
                             int rangeEndingSecond,
                             int rangeEndingMillis) : base(baseCalendar)
        {
            SetTimeRange(rangeStartingHourOfDay,
                         rangeStartingMinute,
                         rangeStartingSecond,
                         rangeStartingMillis,
                         rangeEndingHourOfDay,
                         rangeEndingMinute,
                         rangeEndingSecond,
                         rangeEndingMillis);
        }


        /// <summary>
        /// Create a <see cref="DailyCalendar" /> with a time range defined by the
        ///  specified <see cref="DateTime" />s and no 
        ///  baseCalendar. The Calendars are subject to the following
        ///  considerations:
        ///  <ul>
        ///     <li>
        ///         Only the time-of-day fields of the specified Calendars will be
        ///        used (the date fields will be ignored)
        ///     </li>
        ///    <li>
        ///         The starting time must be before the ending time of the defined
        ///        time range. Note this means that a time range may not cross
        ///        daily boundaries (10PM - 2AM). <i>(because only time fields are
        ///        are used, it is possible for two Calendars to represent a valid
        ///        time range and 
        ///        <c>rangeStartingCalendar.after(rangeEndingCalendar) ==  true</c>)
        ///      </i>
        ///     </li>  
        /// </ul> 
        /// </summary>
        /// <param name="rangeStartingCalendarUtc">The range starting calendar.</param>
        /// <param name="rangeEndingCalendarUtc">The range ending calendar.</param>
        public DailyCalendar(DateTime rangeStartingCalendarUtc,
                             DateTime rangeEndingCalendarUtc)
        {
            SetTimeRange(rangeStartingCalendarUtc, rangeEndingCalendarUtc);
        }

        /// <summary>
        /// Create a <see cref="DailyCalendar"/> with a time range defined by the
        /// specified <see cref="DateTime"/>s and the specified
        /// <param name="baseCalendar"/>. The Calendars are subject to the following
        /// considerations:
        /// <ul>
        ///     <li>
        /// Only the time-of-day fields of the specified Calendars will be
        /// used (the date fields will be ignored)
        /// </li>
        ///     <li>
        /// The starting time must be before the ending time of the defined
        /// time range. Note this means that a time range may not cross
        /// daily boundaries (10PM - 2AM). <i>(because only time fields are
        /// are used, it is possible for two Calendars to represent a valid
        /// time range and
        /// <c>rangeStartingCalendarUtc > rangeEndingCalendarUtc == true</c>)</i>
        ///     </li>
        ///   </ul>
        /// </summary>
        /// <param name="rangeStartingCalendarUtc">The range starting calendar.</param>
        /// <param name="rangeEndingCalendarUtc">The range ending calendar.</param>
        public DailyCalendar(ICalendar baseCalendar,
                             DateTime rangeStartingCalendarUtc,
                             DateTime rangeEndingCalendarUtc) : base(baseCalendar)
        {
            SetTimeRange(rangeStartingCalendarUtc, rangeEndingCalendarUtc);
        }

        /// <summary>
        /// Create a <see cref="DailyCalendar" /> with a time range defined by the
        /// specified values and no baseCalendar. The values are 
        ///  subject to the following considerations:
        ///  <ul>
        ///     <li>
        ///         Only the time-of-day portion of the specified values will be
        ///        used
        ///     </li>
        ///    <li>
        ///         The starting time must be before the ending time of the defined
        ///        time range. Note this means that a time range may not cross
        ///        daily boundaries (10PM - 2AM). <i>(because only time value are
        ///        are used, it is possible for the two values to represent a valid
        ///        time range and <c>rangeStartingTime &gt; rangeEndingTime</c>)</i>
        ///     </li>  
        /// </ul> 
        /// </summary>
        /// <param name="rangeStartingTimeInMillis">The range starting time in millis.</param>
        /// <param name="rangeEndingTimeInMillis">The range ending time in millis.</param>
        public DailyCalendar(long rangeStartingTimeInMillis,
                             long rangeEndingTimeInMillis)
        {
            SetTimeRange(rangeStartingTimeInMillis,
                         rangeEndingTimeInMillis);
        }


        /// <summary>
        /// Create a <see cref="DailyCalendar"/> with a time range defined by the
        /// specified values and the specified <param name="baseCalendar"/>. The values
        /// are subject to the following considerations:
        /// <ul>
        ///     <li>
        /// Only the time-of-day portion of the specified values will be
        /// used
        /// </li>
        ///     <li>
        /// The starting time must be before the ending time of the defined
        /// time range. Note this means that a time range may not cross
        /// daily boundaries (10PM - 2AM). <i>(because only time value are
        /// are used, it is possible for the two values to represent a valid
        /// time range and <c>rangeStartingTime &gt; rangeEndingTime</c>)</i>
        ///     </li>
        ///   </ul>
        /// </summary>
        /// <param name="rangeStartingTimeInMillis">The range starting time in millis.</param>
        /// <param name="rangeEndingTimeInMillis">The range ending time in millis.</param>
        public DailyCalendar(ICalendar baseCalendar,
                             long rangeStartingTimeInMillis,
                             long rangeEndingTimeInMillis) : base(baseCalendar)
        {
            SetTimeRange(rangeStartingTimeInMillis,
                         rangeEndingTimeInMillis);
        }

        /// <summary>
        /// Determine whether the given time  is 'included' by the
        /// Calendar.
        /// </summary>
        /// <param name="timeUtc"></param>
        /// <returns></returns>
        public override bool IsTimeIncluded(DateTime timeUtc)
        {
            if ((GetBaseCalendar() != null) &&
                (GetBaseCalendar().IsTimeIncluded(timeUtc) == false))
            {
                return false;
            }

            DateTime startOfDayInMillis = GetStartOfDay(timeUtc);
            DateTime endOfDayInMillis = GetEndOfDay(timeUtc);
            DateTime timeRangeStartingTimeInMillis =
                GetTimeRangeStartingTimeUtc(timeUtc);
            DateTime timeRangeEndingTimeInMillis =
                GetTimeRangeEndingTimeUtc(timeUtc);
            if (!invertTimeRange)
            {
                if ((timeUtc > startOfDayInMillis &&
                     timeUtc < timeRangeStartingTimeInMillis) ||
                    (timeUtc > timeRangeEndingTimeInMillis &&
                     timeUtc < endOfDayInMillis))
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            else
            {
                if ((timeUtc >= timeRangeStartingTimeInMillis) &&
                    (timeUtc <= timeRangeEndingTimeInMillis))
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
        }


        /// <summary>
        /// Determine the next time (in milliseconds) that is 'included' by the
        /// Calendar after the given time. Return the original value if timeStamp is
        /// included. Return 0 if all days are excluded.
        /// </summary>
        /// <param name="timeUtc"></param>
        /// <returns></returns>
        /// <seealso cref="ICalendar.GetNextIncludedTimeUtc"/>
        public override DateTime GetNextIncludedTimeUtc(DateTime timeUtc)
        {
            DateTime nextIncludedTime = timeUtc.AddMilliseconds(oneMillis);

            while (!IsTimeIncluded(nextIncludedTime))
            {
                if (!invertTimeRange)
                {
                    //If the time is in a range excluded by this calendar, we can
                    // move to the end of the excluded time range and continue 
                    // testing from there. Otherwise, if nextIncludedTime is 
                    // excluded by the baseCalendar, ask it the next time it 
                    // includes and begin testing from there. Failing this, add one
                    // millisecond and continue testing.
                    if ((nextIncludedTime >=
                         GetTimeRangeStartingTimeUtc(nextIncludedTime)) &&
                        (nextIncludedTime <=
                         GetTimeRangeEndingTimeUtc(nextIncludedTime)))
                    {
                        nextIncludedTime =
                            GetTimeRangeEndingTimeUtc(nextIncludedTime).AddMilliseconds(oneMillis);
                    }
                    else if ((GetBaseCalendar() != null) &&
                             (!GetBaseCalendar().IsTimeIncluded(nextIncludedTime)))
                    {
                        nextIncludedTime =
                            GetBaseCalendar().GetNextIncludedTimeUtc(nextIncludedTime);
                    }
                    else
                    {
                        nextIncludedTime = nextIncludedTime.AddMilliseconds(1);
                    }
                }
                else
                {
                    //If the time is in a range excluded by this calendar, we can
                    // move to the end of the excluded time range and continue 
                    // testing from there. Otherwise, if nextIncludedTime is 
                    // excluded by the baseCalendar, ask it the next time it 
                    // includes and begin testing from there. Failing this, add one
                    // millisecond and continue testing.
                    if (nextIncludedTime <
                        GetTimeRangeStartingTimeUtc(nextIncludedTime))
                    {
                        nextIncludedTime =
                            GetTimeRangeStartingTimeUtc(nextIncludedTime);
                    }
                    else if (nextIncludedTime >
                             GetTimeRangeEndingTimeUtc(nextIncludedTime))
                    {
                        //(move to start of next day)
                        nextIncludedTime = GetEndOfDay(nextIncludedTime);
                        nextIncludedTime = nextIncludedTime.AddMilliseconds(1);
                    }
                    else if ((GetBaseCalendar() != null) &&
                             (!GetBaseCalendar().IsTimeIncluded(nextIncludedTime)))
                    {
                        nextIncludedTime =
                            GetBaseCalendar().GetNextIncludedTimeUtc(nextIncludedTime);
                    }
                    else
                    {
                        nextIncludedTime = nextIncludedTime.AddMilliseconds(1);
                    }
                }
            }

            return nextIncludedTime;
        }


        /// <summary>
        /// Returns the start time of the time range of the day 
        /// specified in <param name="timeUtc" />.
        /// </summary>
        /// <returns>
        ///     a DateTime representing the start time of the
        ///     time range for the specified date.
        /// </returns>
        public DateTime GetTimeRangeStartingTimeUtc(DateTime timeUtc)
        {
            DateTime rangeStartingTime = new DateTime(timeUtc.Year, timeUtc.Month, timeUtc.Day,
                                                      rangeStartingHourOfDay, rangeStartingMinute,
                                                      rangeStartingSecond, rangeStartingMillis);
            return rangeStartingTime;
        }

        /// <summary>
        /// Returns the end time of the time range of the day
        /// specified in <param name="timeUtc" />
        /// </summary>
        /// <returns>
        /// A DateTime representing the end time of the
        /// time range for the specified date.
        /// </returns>
        public DateTime GetTimeRangeEndingTimeUtc(DateTime timeUtc)
        {
            DateTime rangeEndingTime = new DateTime(timeUtc.Year, timeUtc.Month, timeUtc.Day,
                                                    rangeEndingHourOfDay, rangeEndingMinute,
                                                    rangeEndingSecond, rangeEndingMillis);
            return rangeEndingTime;
        }

        /// <summary>
        /// Indicates whether the time range represents an inverted time range (see
        /// class description).
        /// </summary>
        /// <value><c>true</c> if invert time range; otherwise, <c>false</c>.</value>
        public bool InvertTimeRange
        {
            get { return invertTimeRange; }
            set { invertTimeRange = value; }
        }


        /// <summary>
        /// Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
        /// </summary>
        /// <returns>
        /// A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
        /// </returns>
        public override string ToString()
        {
            StringBuilder buffer = new StringBuilder();
            buffer.Append("base calendar: [");
            if (GetBaseCalendar() != null)
            {
                buffer.Append(GetBaseCalendar().ToString());
            }
            else
            {
                buffer.Append("null");
            }

            const string ThreeDigitFormat = "000";
            const string TwoDigitFormat = "00";

            buffer.Append("], time range: '");
            buffer.Append(rangeStartingHourOfDay.ToString(TwoDigitFormat, CultureInfo.InvariantCulture));
            buffer.Append(":");
            buffer.Append(rangeStartingMinute.ToString(TwoDigitFormat, CultureInfo.InvariantCulture));
            buffer.Append(":");
            buffer.Append(rangeStartingSecond.ToString(TwoDigitFormat, CultureInfo.InvariantCulture));
            buffer.Append(":");
            buffer.Append(rangeStartingMillis.ToString(ThreeDigitFormat, CultureInfo.InvariantCulture));
            buffer.Append(" - ");
            buffer.Append(rangeEndingHourOfDay.ToString(TwoDigitFormat, CultureInfo.InvariantCulture));
            buffer.Append(":");
            buffer.Append(rangeEndingMinute.ToString(TwoDigitFormat, CultureInfo.InvariantCulture));
            buffer.Append(":");
            buffer.Append(rangeEndingSecond.ToString(TwoDigitFormat, CultureInfo.InvariantCulture));
            buffer.Append(":");
            buffer.Append(rangeEndingMillis.ToString(ThreeDigitFormat, CultureInfo.InvariantCulture));
            buffer.AppendFormat("', inverted: {0}]", invertTimeRange);
            return buffer.ToString();
        }


        /// <summary>
        /// Sets the time range for the <see cref="DailyCalendar" /> to the times 
        /// represented in the specified Strings. 
        /// </summary>
        /// <param name="rangeStartingTimeString">The range starting time string.</param>
        /// <param name="rangeEndingTimeString">The range ending time string.</param>
        public void SetTimeRange(string rangeStartingTimeString,
                                  string rangeEndingTimeString)
        {
            string[] rangeStartingTime;
            int rangeStartingSecond;
            int rangeStartingMillis;

            string[] rangeEndingTime;
            int rangeEndingSecond;
            int rangeEndingMillis;

            rangeStartingTime = rangeStartingTimeString.Split(colon);

            if ((rangeStartingTime.Length < 2) || (rangeStartingTime.Length > 4))
            {
                throw new ArgumentException(string.Format(CultureInfo.InvariantCulture, "Invalid time string '{0}'", rangeStartingTimeString));
            }

            int rangeStartingHourOfDay = Convert.ToInt32(rangeStartingTime[0], CultureInfo.InvariantCulture);
            int rangeStartingMinute = Convert.ToInt32(rangeStartingTime[1], CultureInfo.InvariantCulture);

            if (rangeStartingTime.Length > 2)
            {
                rangeStartingSecond = Convert.ToInt32(rangeStartingTime[2], CultureInfo.InvariantCulture);
            }
            else
            {
                rangeStartingSecond = 0;
            }
            if (rangeStartingTime.Length == 4)
            {
                rangeStartingMillis = Convert.ToInt32(rangeStartingTime[3], CultureInfo.InvariantCulture);
            }
            else
            {
                rangeStartingMillis = 0;
            }

            rangeEndingTime = rangeEndingTimeString.Split(colon);

            if ((rangeEndingTime.Length < 2) || (rangeEndingTime.Length > 4))
            {
                throw new ArgumentException(string.Format(CultureInfo.InvariantCulture, "Invalid time string '{0}'", rangeEndingTimeString));
            }

            int rangeEndingHourOfDay = Convert.ToInt32(rangeEndingTime[0], CultureInfo.InvariantCulture);
            int rangeEndingMinute = Convert.ToInt32(rangeEndingTime[1], CultureInfo.InvariantCulture);
            if (rangeEndingTime.Length > 2)
            {
                rangeEndingSecond = Convert.ToInt32(rangeEndingTime[2], CultureInfo.InvariantCulture);
            }
            else
            {
                rangeEndingSecond = 0;
            }
            if (rangeEndingTime.Length == 4)
            {
                rangeEndingMillis = Convert.ToInt32(rangeEndingTime[3], CultureInfo.InvariantCulture);
            }
            else
            {
                rangeEndingMillis = 0;
            }

            SetTimeRange(rangeStartingHourOfDay,
                         rangeStartingMinute,
                         rangeStartingSecond,
                         rangeStartingMillis,
                         rangeEndingHourOfDay,
                         rangeEndingMinute,
                         rangeEndingSecond,
                         rangeEndingMillis);
        }


        /// <summary>
        /// Sets the time range for the <see cref="DailyCalendar" /> to the times
        /// represented in the specified values. 
        /// </summary>
        /// <param name="rangeStartingHourOfDay">The range starting hour of day.</param>
        /// <param name="rangeStartingMinute">The range starting minute.</param>
        /// <param name="rangeStartingSecond">The range starting second.</param>
        /// <param name="rangeStartingMillis">The range starting millis.</param>
        /// <param name="rangeEndingHourOfDay">The range ending hour of day.</param>
        /// <param name="rangeEndingMinute">The range ending minute.</param>
        /// <param name="rangeEndingSecond">The range ending second.</param>
        /// <param name="rangeEndingMillis">The range ending millis.</param>
        public void SetTimeRange(int rangeStartingHourOfDay,
                                  int rangeStartingMinute,
                                  int rangeStartingSecond,
                                  int rangeStartingMillis,
                                  int rangeEndingHourOfDay,
                                  int rangeEndingMinute,
                                  int rangeEndingSecond,
                                  int rangeEndingMillis)
        {
            Validate(rangeStartingHourOfDay,
                     rangeStartingMinute,
                     rangeStartingSecond,
                     rangeStartingMillis);

            Validate(rangeEndingHourOfDay,
                     rangeEndingMinute,
                     rangeEndingSecond,
                     rangeEndingMillis);

            DateTime startCal = DateTime.UtcNow;
            startCal =
                new DateTime(startCal.Year, startCal.Month, startCal.Day, rangeStartingHourOfDay, rangeStartingMinute,
                             rangeStartingSecond, rangeStartingMillis);

            DateTime endCal = DateTime.UtcNow;
            endCal =
                new DateTime(endCal.Year, endCal.Month, endCal.Day, rangeEndingHourOfDay, rangeEndingMinute,
                             rangeEndingSecond, rangeEndingMillis);


            if (! (startCal < endCal))
            {
                throw new ArgumentException(string.Format(CultureInfo.InvariantCulture, "{0}{1}:{2}:{3}:{4}{5}{6}:{7}:{8}:{9}",
                                                          invalidTimeRange, rangeStartingHourOfDay, rangeStartingMinute,
                                                          rangeStartingSecond, rangeStartingMillis, separator,
                                                          rangeEndingHourOfDay, rangeEndingMinute, rangeEndingSecond,
                                                          rangeEndingMillis));
            }

            this.rangeStartingHourOfDay = rangeStartingHourOfDay;
            this.rangeStartingMinute = rangeStartingMinute;
            this.rangeStartingSecond = rangeStartingSecond;
            this.rangeStartingMillis = rangeStartingMillis;
            this.rangeEndingHourOfDay = rangeEndingHourOfDay;
            this.rangeEndingMinute = rangeEndingMinute;
            this.rangeEndingSecond = rangeEndingSecond;
            this.rangeEndingMillis = rangeEndingMillis;
        }

        /// <summary>
        /// Sets the time range for the <see cref="DailyCalendar" /> to the times
        /// represented in the specified <see cref="DateTime" />s. 
        /// </summary>
        /// <param name="rangeStartingCalendarUtc">The range starting calendar.</param>
        /// <param name="rangeEndingCalendarUtc">The range ending calendar.</param>
        public void SetTimeRange(DateTime rangeStartingCalendarUtc,
                                  DateTime rangeEndingCalendarUtc)
        {
            SetTimeRange(
                rangeStartingCalendarUtc.Hour,
                rangeStartingCalendarUtc.Minute,
                rangeStartingCalendarUtc.Second,
                rangeStartingCalendarUtc.Millisecond,
                rangeEndingCalendarUtc.Hour,
                rangeEndingCalendarUtc.Minute,
                rangeEndingCalendarUtc.Second,
                rangeEndingCalendarUtc.Millisecond);
        }

        /// <summary>
        /// Sets the time range for the <see cref="DailyCalendar" /> to the times
        /// represented in the specified values. 
        /// </summary>
        /// <param name="rangeStartingTime">The range starting time.</param>
        /// <param name="rangeEndingTime">The range ending time.</param>
        public void SetTimeRange(long rangeStartingTime,
                                  long rangeEndingTime)
        {
            SetTimeRange(new DateTime(rangeStartingTime), new DateTime(rangeEndingTime));
        }


        /// <summary>
        /// Gets the start of day, practically zeroes time part.
        /// </summary>
        /// <param name="time">The time.</param>
        /// <returns></returns>
        private static DateTime GetStartOfDay(DateTime time)
        {
            return time.Date;
        }

        /// <summary>
        /// Gets the end of day, pratically sets time parts to maximum allowed values.
        /// </summary>
        /// <param name="time">The time.</param>
        /// <returns></returns>
        private static DateTime GetEndOfDay(DateTime time)
        {
            DateTime endOfDay = new DateTime(time.Year, time.Month, time.Day, 23, 59, 59, 999);
            return endOfDay;
        }


        /// <summary>
        /// Checks the specified values for validity as a set of time values.
        /// </summary>
        /// <param name="hourOfDay">The hour of day.</param>
        /// <param name="minute">The minute.</param>
        /// <param name="second">The second.</param>
        /// <param name="millis">The millis.</param>
        private static void Validate(int hourOfDay, int minute, int second, int millis)
        {
            if (hourOfDay < 0 || hourOfDay > 23)
            {
                throw new ArgumentException(invalidHourOfDay + hourOfDay);
            }
            if (minute < 0 || minute > 59)
            {
                throw new ArgumentException(invalidMinute + minute);
            }
            if (second < 0 || second > 59)
            {
                throw new ArgumentException(invalidSecond + second);
            }
            if (millis < 0 || millis > 999)
            {
                throw new ArgumentException(invalidMillis + millis);
            }
        }


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

            return rangeStartingHourOfDay.GetHashCode() + rangeEndingHourOfDay.GetHashCode() +
                   2*(rangeStartingMinute.GetHashCode() + rangeEndingMinute.GetHashCode()) +
                   3*(rangeStartingSecond.GetHashCode() + rangeEndingSecond.GetHashCode()) +
                   4*(rangeStartingMillis.GetHashCode() + rangeEndingMillis.GetHashCode())
                 + 5 * baseHash;
        }

        public bool Equals(DailyCalendar obj)
        {
            if (obj == null)
                return false;
            bool baseEqual = GetBaseCalendar() != null ?
                             GetBaseCalendar().Equals(obj.GetBaseCalendar()) : true;
            
            return baseEqual &&  (InvertTimeRange == obj.InvertTimeRange) &&
                   (rangeStartingHourOfDay == obj.rangeStartingHourOfDay) &&
                   (rangeStartingMinute == obj.rangeStartingMinute) &&
                   (rangeStartingSecond == obj.rangeStartingSecond) &&
                   (rangeStartingMillis == obj.rangeStartingMillis) &&
                   (rangeEndingHourOfDay == obj.rangeEndingHourOfDay) &&
                   (rangeEndingMinute == obj.rangeEndingMinute) &&
                   (rangeEndingSecond == obj.rangeEndingSecond) &&
                   (rangeEndingMillis == obj.rangeEndingMillis);
                    
        }


        public override bool Equals(object obj)
        {
            if ((obj == null) || !(obj is DailyCalendar))
                return false;
            else
                return Equals((DailyCalendar)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.