| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.using System.Collections.Generic;using System.Reactive.Disposables;namespace System.Reactive.Concurrency{    /// <summary>    /// Abstract base class for scheduled work items.    /// </summary>    /// <typeparam name="TAbsolute">Absolute time representation type.</typeparam>    public abstract class ScheduledItem<TAbsolute> : IScheduledItem<TAbsolute>, IComparable<ScheduledItem<TAbsolute>>        where TAbsolute : IComparable<TAbsolute>    {        private readonly SingleAssignmentDisposable _disposable = new SingleAssignmentDisposable();        private readonly TAbsolute _dueTime;        private readonly IComparer<TAbsolute> _comparer;        /// <summary>        /// Creates a new scheduled work item to run at the specified time.        /// </summary>        /// <param name="dueTime">Absolute time at which the work item has to be executed.</param>        /// <param name="comparer">Comparer used to compare work items based on their scheduled time.</param>        /// <exception cref="ArgumentNullException"><paramref name="comparer"/> is null.</exception>        protected ScheduledItem(TAbsolute dueTime, IComparer<TAbsolute> comparer)        {            if (comparer == null)                throw new ArgumentNullException("comparer");            _dueTime = dueTime;            _comparer = comparer;        }        /// <summary>        /// Gets the absolute time at which the item is due for invocation.        /// </summary>        public TAbsolute DueTime        {            get { return _dueTime; }        }        /// <summary>        /// Invokes the work item.        /// </summary>        public void Invoke()        {            if (!_disposable.IsDisposed)                _disposable.Disposable = InvokeCore();        }        /// <summary>        /// Implement this method to perform the work item invocation, returning a disposable object for deep cancellation.        /// </summary>        /// <returns>Disposable object used to cancel the work item and/or derived work items.</returns>        protected abstract IDisposable InvokeCore();        #region Inequality        /// <summary>        /// Compares the work item with another work item based on absolute time values.        /// </summary>        /// <param name="other">Work item to compare the current work item to.</param>        /// <returns>Relative ordering between this and the specified work item.</returns>        /// <remarks>The inequality operators are overloaded to provide results consistent with the IComparable implementation. Equality operators implement traditional reference equality semantics.</remarks>        public int CompareTo(ScheduledItem<TAbsolute> other)        {            // MSDN: By definition, any object compares greater than null, and two null references compare equal to each other.             if (object.ReferenceEquals(other, null))                return 1;            return _comparer.Compare(DueTime, other.DueTime);        }        /// <summary>        /// Determines whether one specified ScheduledItem<TAbsolute> object is due before a second specified ScheduledItem<TAbsolute> object.        /// </summary>        /// <param name="left">The first object to compare.</param>        /// <param name="right">The second object to compare.</param>        /// <returns>true if the DueTime value of left is earlier than the DueTime value of right; otherwise, false.</returns>        /// <remarks>This operator provides results consistent with the IComparable implementation.</remarks>        public static bool operator <(ScheduledItem<TAbsolute> left, ScheduledItem<TAbsolute> right)        {            return Comparer<ScheduledItem<TAbsolute>>.Default.Compare(left, right) < 0;        }        /// <summary>        /// Determines whether one specified ScheduledItem<TAbsolute> object is due before or at the same of a second specified ScheduledItem<TAbsolute> object.        /// </summary>        /// <param name="left">The first object to compare.</param>        /// <param name="right">The second object to compare.</param>        /// <returns>true if the DueTime value of left is earlier than or simultaneous with the DueTime value of right; otherwise, false.</returns>        /// <remarks>This operator provides results consistent with the IComparable implementation.</remarks>        public static bool operator <=(ScheduledItem<TAbsolute> left, ScheduledItem<TAbsolute> right)        {            return Comparer<ScheduledItem<TAbsolute>>.Default.Compare(left, right) <= 0;        }        /// <summary>        /// Determines whether one specified ScheduledItem<TAbsolute> object is due after a second specified ScheduledItem<TAbsolute> object.        /// </summary>        /// <param name="left">The first object to compare.</param>        /// <param name="right">The second object to compare.</param>        /// <returns>true if the DueTime value of left is later than the DueTime value of right; otherwise, false.</returns>        /// <remarks>This operator provides results consistent with the IComparable implementation.</remarks>        public static bool operator >(ScheduledItem<TAbsolute> left, ScheduledItem<TAbsolute> right)        {            return Comparer<ScheduledItem<TAbsolute>>.Default.Compare(left, right) > 0;        }        /// <summary>        /// Determines whether one specified ScheduledItem<TAbsolute> object is due after or at the same time of a second specified ScheduledItem<TAbsolute> object.        /// </summary>        /// <param name="left">The first object to compare.</param>        /// <param name="right">The second object to compare.</param>        /// <returns>true if the DueTime value of left is later than or simultaneous with the DueTime value of right; otherwise, false.</returns>        /// <remarks>This operator provides results consistent with the IComparable implementation.</remarks>        public static bool operator >=(ScheduledItem<TAbsolute> left, ScheduledItem<TAbsolute> right)        {            return Comparer<ScheduledItem<TAbsolute>>.Default.Compare(left, right) >= 0;        }        #endregion        #region Equality        /// <summary>        /// Determines whether two specified ScheduledItem<TAbsolute, TValue> objects are equal.        /// </summary>        /// <param name="left">The first object to compare.</param>        /// <param name="right">The second object to compare.</param>        /// <returns>true if both ScheduledItem<TAbsolute, TValue> are equal; otherwise, false.</returns>        /// <remarks>This operator does not provide results consistent with the IComparable implementation. Instead, it implements reference equality.</remarks>        public static bool operator ==(ScheduledItem<TAbsolute> left, ScheduledItem<TAbsolute> right)        {            return object.ReferenceEquals(left, right);        }        /// <summary>        /// Determines whether two specified ScheduledItem<TAbsolute, TValue> objects are inequal.        /// </summary>        /// <param name="left">The first object to compare.</param>        /// <param name="right">The second object to compare.</param>        /// <returns>true if both ScheduledItem<TAbsolute, TValue> are inequal; otherwise, false.</returns>        /// <remarks>This operator does not provide results consistent with the IComparable implementation. Instead, it implements reference equality.</remarks>        public static bool operator !=(ScheduledItem<TAbsolute> left, ScheduledItem<TAbsolute> right)        {            return !(left == right);        }        /// <summary>        /// Determines whether a ScheduledItem<TAbsolute> object is equal to the specified object.        /// </summary>        /// <param name="obj">The object to compare to the current ScheduledItem<TAbsolute> object.</param>        /// <returns>true if the obj parameter is a ScheduledItem<TAbsolute> object and is equal to the current ScheduledItem<TAbsolute> object; otherwise, false.</returns>        public override bool Equals(object obj)        {            return object.ReferenceEquals(this, obj);        }        /// <summary>        /// Returns the hash code for the current ScheduledItem<TAbsolute> object.        /// </summary>        /// <returns>A 32-bit signed integer hash code.</returns>        public override int GetHashCode()        {            return base.GetHashCode();        }        #endregion        /// <summary>        /// Cancels the work item by disposing the resource returned by InvokeCore as soon as possible.        /// </summary>        public void Cancel()        {            _disposable.Dispose();        }        /// <summary>        /// Gets whether the work item has received a cancellation request.        /// </summary>        public bool IsCanceled        {            get { return _disposable.IsDisposed; }        }    }    /// <summary>    /// Represents a scheduled work item based on the materialization of an IScheduler.Schedule method call.    /// </summary>    /// <typeparam name="TAbsolute">Absolute time representation type.</typeparam>    /// <typeparam name="TValue">Type of the state passed to the scheduled action.</typeparam>    public sealed class ScheduledItem<TAbsolute, TValue> : ScheduledItem<TAbsolute>        where TAbsolute : IComparable<TAbsolute>    {        private readonly IScheduler _scheduler;        private readonly TValue _state;        private readonly Func<IScheduler, TValue, IDisposable> _action;        /// <summary>        /// Creates a materialized work item.        /// </summary>        /// <param name="scheduler">Recursive scheduler to invoke the scheduled action with.</param>        /// <param name="state">State to pass to the scheduled action.</param>        /// <param name="action">Scheduled action.</param>        /// <param name="dueTime">Time at which to run the scheduled action.</param>        /// <param name="comparer">Comparer used to compare work items based on their scheduled time.</param>        /// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> or <paramref name="comparer"/> is null.</exception>        public ScheduledItem(IScheduler scheduler, TValue state, Func<IScheduler, TValue, IDisposable> action, TAbsolute dueTime, IComparer<TAbsolute> comparer)            : base(dueTime, comparer)        {            if (scheduler == null)                throw new ArgumentNullException("scheduler");            if (action == null)                throw new ArgumentNullException("action");            _scheduler = scheduler;            _state = state;            _action = action;        }        /// <summary>        /// Creates a materialized work item.        /// </summary>        /// <param name="scheduler">Recursive scheduler to invoke the scheduled action with.</param>        /// <param name="state">State to pass to the scheduled action.</param>        /// <param name="action">Scheduled action.</param>        /// <param name="dueTime">Time at which to run the scheduled action.</param>        /// <exception cref="ArgumentNullException"><paramref name="scheduler"/> or <paramref name="action"/> is null.</exception>        public ScheduledItem(IScheduler scheduler, TValue state, Func<IScheduler, TValue, IDisposable> action, TAbsolute dueTime)            : this(scheduler, state, action, dueTime, Comparer<TAbsolute>.Default)        {        }        /// <summary>        /// Invokes the scheduled action with the supplied recursive scheduler and state.        /// </summary>        /// <returns>Cancellation resource returned by the scheduled action.</returns>        protected override IDisposable InvokeCore()        {            return _action(_scheduler, _state);        }    }}
 |