| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063 |
- //
- // Task.cs
- //
- // Authors:
- // Marek Safar <[email protected]>
- //
- // Copyright (c) 2008 Jérémie "Garuma" Laval
- // Copyright 2011 Xamarin Inc (http://www.xamarin.com).
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- //
- #if NET_4_0 || MOBILE
- using System;
- using System.Threading;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Runtime.CompilerServices;
- namespace System.Threading.Tasks
- {
- [System.Diagnostics.DebuggerDisplay ("Id = {Id}, Status = {Status}")]
- [System.Diagnostics.DebuggerTypeProxy (typeof (TaskDebuggerView))]
- public class Task : IDisposable, IAsyncResult
- {
- // With this attribute each thread has its own value so that it's correct for our Schedule code
- // and for Parent property.
- [System.ThreadStatic]
- static Task current;
- [System.ThreadStatic]
- static Action<Task> childWorkAdder;
-
- Task parent;
-
- static int id = -1;
- static readonly TaskFactory defaultFactory = new TaskFactory ();
- static readonly Watch watch = Watch.StartNew ();
- CountdownEvent childTasks;
-
- int taskId;
- TaskCreationOptions taskCreationOptions;
-
- TaskScheduler scheduler;
- volatile AggregateException exception;
- volatile bool exceptionObserved;
- ConcurrentQueue<AggregateException> childExceptions;
- TaskStatus status;
-
- Action<object> action;
- Action simpleAction;
- object state;
- AtomicBooleanValue executing;
- TaskCompletionQueue<Task> completed;
- TaskCompletionQueue<ManualResetEventSlim> registeredEvts;
- // If this task is a continuation, this stuff gets filled
- CompletionSlot Slot;
- CancellationToken token;
- CancellationTokenRegistration? cancellationRegistration;
- internal const TaskCreationOptions WorkerTaskNotSupportedOptions = TaskCreationOptions.LongRunning | TaskCreationOptions.PreferFairness;
- const TaskCreationOptions MaxTaskCreationOptions =
- #if NET_4_5
- TaskCreationOptions.DenyChildAttach | TaskCreationOptions.HideScheduler |
- #endif
- TaskCreationOptions.PreferFairness | TaskCreationOptions.LongRunning | TaskCreationOptions.AttachedToParent;
- public Task (Action action) : this (action, TaskCreationOptions.None)
- {
-
- }
-
- public Task (Action action, TaskCreationOptions creationOptions) : this (action, CancellationToken.None, creationOptions)
- {
-
- }
-
- public Task (Action action, CancellationToken cancellationToken) : this (action, cancellationToken, TaskCreationOptions.None)
- {
-
- }
-
- public Task (Action action, CancellationToken cancellationToken, TaskCreationOptions creationOptions)
- : this (null, null, cancellationToken, creationOptions, current)
- {
- if (action == null)
- throw new ArgumentNullException ("action");
- if (creationOptions > MaxTaskCreationOptions || creationOptions < TaskCreationOptions.None)
- throw new ArgumentOutOfRangeException ("creationOptions");
- this.simpleAction = action;
- }
-
- public Task (Action<object> action, object state) : this (action, state, TaskCreationOptions.None)
- {
- }
-
- public Task (Action<object> action, object state, TaskCreationOptions creationOptions)
- : this (action, state, CancellationToken.None, creationOptions)
- {
- }
-
- public Task (Action<object> action, object state, CancellationToken cancellationToken)
- : this (action, state, cancellationToken, TaskCreationOptions.None)
- {
- }
- public Task (Action<object> action, object state, CancellationToken cancellationToken, TaskCreationOptions creationOptions)
- : this (action, state, cancellationToken, creationOptions, current)
- {
- if (action == null)
- throw new ArgumentNullException ("action");
- if (creationOptions > MaxTaskCreationOptions || creationOptions < TaskCreationOptions.None)
- throw new ArgumentOutOfRangeException ("creationOptions");
- }
- internal Task (Action<object> action,
- object state,
- CancellationToken cancellationToken,
- TaskCreationOptions creationOptions,
- Task parent)
- {
- this.taskCreationOptions = creationOptions;
- this.action = action;
- this.state = state;
- this.taskId = Interlocked.Increment (ref id);
- this.status = cancellationToken.IsCancellationRequested ? TaskStatus.Canceled : TaskStatus.Created;
- this.token = cancellationToken;
- this.parent = parent;
- // Process taskCreationOptions
- if (CheckTaskOptions (taskCreationOptions, TaskCreationOptions.AttachedToParent) && parent != null)
- parent.AddChild ();
- if (token.CanBeCanceled)
- cancellationRegistration = token.Register (l => ((Task) l).CancelReal (), this);
- }
- ~Task ()
- {
- if (exception != null && !exceptionObserved)
- throw exception;
- }
- bool CheckTaskOptions (TaskCreationOptions opt, TaskCreationOptions member)
- {
- return (opt & member) == member;
- }
- #region Start
- public void Start ()
- {
- Start (TaskScheduler.Current);
- }
-
- public void Start (TaskScheduler scheduler)
- {
- if (scheduler == null)
- throw new ArgumentNullException ("scheduler");
- if (status >= TaskStatus.WaitingToRun)
- throw new InvalidOperationException ("The Task is not in a valid state to be started.");
- if (Slot.Initialized)
- throw new InvalidOperationException ("Start may not be called on a continuation task");
- SetupScheduler (scheduler);
- Schedule ();
- }
- internal void SetupScheduler (TaskScheduler scheduler)
- {
- this.scheduler = scheduler;
- status = TaskStatus.WaitingForActivation;
- }
-
- public void RunSynchronously ()
- {
- RunSynchronously (TaskScheduler.Current);
- }
-
- public void RunSynchronously (TaskScheduler scheduler)
- {
- if (scheduler == null)
- throw new ArgumentNullException ("scheduler");
- if (Status > TaskStatus.WaitingForActivation)
- throw new InvalidOperationException ("The task is not in a valid state to be started");
- SetupScheduler (scheduler);
- var saveStatus = status;
- status = TaskStatus.WaitingToRun;
- try {
- if (scheduler.RunInline (this))
- return;
- } catch (Exception inner) {
- throw new TaskSchedulerException (inner);
- }
- status = saveStatus;
- Start (scheduler);
- Wait ();
- }
- #endregion
-
- #region ContinueWith
- public Task ContinueWith (Action<Task> continuationAction)
- {
- return ContinueWith (continuationAction, TaskContinuationOptions.None);
- }
-
- public Task ContinueWith (Action<Task> continuationAction, TaskContinuationOptions continuationOptions)
- {
- return ContinueWith (continuationAction, CancellationToken.None, continuationOptions, TaskScheduler.Current);
- }
-
- public Task ContinueWith (Action<Task> continuationAction, CancellationToken cancellationToken)
- {
- return ContinueWith (continuationAction, cancellationToken, TaskContinuationOptions.None, TaskScheduler.Current);
- }
-
- public Task ContinueWith (Action<Task> continuationAction, TaskScheduler scheduler)
- {
- return ContinueWith (continuationAction, CancellationToken.None, TaskContinuationOptions.None, scheduler);
- }
-
- public Task ContinueWith (Action<Task> continuationAction, CancellationToken cancellationToken, TaskContinuationOptions continuationOptions, TaskScheduler scheduler)
- {
- if (continuationAction == null)
- throw new ArgumentNullException ("continuationAction");
- if (scheduler == null)
- throw new ArgumentNullException ("scheduler");
- Task continuation = new Task (l => continuationAction ((Task)l),
- this,
- cancellationToken,
- GetCreationOptions (continuationOptions),
- this);
- ContinueWithCore (continuation, continuationOptions, scheduler);
- return continuation;
- }
-
- public Task<TResult> ContinueWith<TResult> (Func<Task, TResult> continuationFunction)
- {
- return ContinueWith<TResult> (continuationFunction, TaskContinuationOptions.None);
- }
-
- public Task<TResult> ContinueWith<TResult> (Func<Task, TResult> continuationFunction, TaskContinuationOptions continuationOptions)
- {
- return ContinueWith<TResult> (continuationFunction, CancellationToken.None, continuationOptions, TaskScheduler.Current);
- }
-
- public Task<TResult> ContinueWith<TResult> (Func<Task, TResult> continuationFunction, CancellationToken cancellationToken)
- {
- return ContinueWith<TResult> (continuationFunction, cancellationToken, TaskContinuationOptions.None, TaskScheduler.Current);
- }
-
- public Task<TResult> ContinueWith<TResult> (Func<Task, TResult> continuationFunction, TaskScheduler scheduler)
- {
- return ContinueWith<TResult> (continuationFunction, CancellationToken.None, TaskContinuationOptions.None, scheduler);
- }
-
- public Task<TResult> ContinueWith<TResult> (Func<Task, TResult> continuationFunction, CancellationToken cancellationToken,
- TaskContinuationOptions continuationOptions, TaskScheduler scheduler)
- {
- if (continuationFunction == null)
- throw new ArgumentNullException ("continuationFunction");
- if (scheduler == null)
- throw new ArgumentNullException ("scheduler");
- Task<TResult> t = new Task<TResult> ((o) => continuationFunction ((Task)o),
- this,
- cancellationToken,
- GetCreationOptions (continuationOptions),
- this);
-
- ContinueWithCore (t, continuationOptions, scheduler);
-
- return t;
- }
-
- internal void ContinueWithCore (Task continuation, TaskContinuationOptions continuationOptions, TaskScheduler scheduler)
- {
- ContinueWithCore (continuation, continuationOptions, scheduler, null);
- }
-
- internal void ContinueWithCore (Task continuation, TaskContinuationOptions kind,
- TaskScheduler scheduler, Func<bool> predicate)
- {
- // Already set the scheduler so that user can call Wait and that sort of stuff
- continuation.scheduler = scheduler;
- continuation.status = TaskStatus.WaitingForActivation;
- continuation.Slot = new CompletionSlot (kind, predicate);
- if (IsCompleted) {
- CompletionExecutor (continuation);
- return;
- }
-
- completed.Add (continuation);
-
- // Retry in case completion was achieved but event adding was too late
- if (IsCompleted)
- CompletionExecutor (continuation);
- }
- bool ContinuationStatusCheck (TaskContinuationOptions kind)
- {
- if (kind == TaskContinuationOptions.None)
- return true;
-
- int kindCode = (int)kind;
-
- if (kindCode >= ((int)TaskContinuationOptions.NotOnRanToCompletion)) {
- // Remove other options
- kind &= ~(TaskContinuationOptions.PreferFairness
- | TaskContinuationOptions.LongRunning
- | TaskContinuationOptions.AttachedToParent
- | TaskContinuationOptions.ExecuteSynchronously);
- if (status == TaskStatus.Canceled) {
- if (kind == TaskContinuationOptions.NotOnCanceled)
- return false;
- if (kind == TaskContinuationOptions.OnlyOnFaulted)
- return false;
- if (kind == TaskContinuationOptions.OnlyOnRanToCompletion)
- return false;
- } else if (status == TaskStatus.Faulted) {
- if (kind == TaskContinuationOptions.NotOnFaulted)
- return false;
- if (kind == TaskContinuationOptions.OnlyOnCanceled)
- return false;
- if (kind == TaskContinuationOptions.OnlyOnRanToCompletion)
- return false;
- } else if (status == TaskStatus.RanToCompletion) {
- if (kind == TaskContinuationOptions.NotOnRanToCompletion)
- return false;
- if (kind == TaskContinuationOptions.OnlyOnFaulted)
- return false;
- if (kind == TaskContinuationOptions.OnlyOnCanceled)
- return false;
- }
- }
-
- return true;
- }
-
- static internal TaskCreationOptions GetCreationOptions (TaskContinuationOptions kind)
- {
- TaskCreationOptions options = TaskCreationOptions.None;
- if ((kind & TaskContinuationOptions.AttachedToParent) > 0)
- options |= TaskCreationOptions.AttachedToParent;
- if ((kind & TaskContinuationOptions.PreferFairness) > 0)
- options |= TaskCreationOptions.PreferFairness;
- if ((kind & TaskContinuationOptions.LongRunning) > 0)
- options |= TaskCreationOptions.LongRunning;
-
- return options;
- }
- internal void RegisterWaitEvent (ManualResetEventSlim evt)
- {
- if (IsCompleted) {
- evt.Set ();
- return;
- }
- registeredEvts.Add (evt);
- if (IsCompleted)
- evt.Set ();
- }
- #endregion
-
- #region Internal and protected thingies
- internal void Schedule ()
- {
- status = TaskStatus.WaitingToRun;
-
- // If worker is null it means it is a local one, revert to the old behavior
- // If TaskScheduler.Current is not being used, the scheduler was explicitly provided, so we must use that
- if (scheduler != TaskScheduler.Current || childWorkAdder == null || CheckTaskOptions (taskCreationOptions, TaskCreationOptions.PreferFairness)) {
- scheduler.QueueTask (this);
- } else {
- /* Like the semantic of the ABP paper describe it, we add ourselves to the bottom
- * of our Parent Task's ThreadWorker deque. It's ok to do that since we are in
- * the correct Thread during the creation
- */
- childWorkAdder (this);
- }
- }
-
- void ThreadStart ()
- {
- /* Allow scheduler to break fairness of deque ordering without
- * breaking its semantic (the task can be executed twice but the
- * second time it will return immediately
- */
- if (!executing.TryRelaxedSet ())
- return;
- // Disable CancellationToken direct cancellation
- if (cancellationRegistration != null) {
- cancellationRegistration.Value.Dispose ();
- cancellationRegistration = null;
- }
- current = this;
- TaskScheduler.Current = scheduler;
-
- if (!token.IsCancellationRequested) {
-
- status = TaskStatus.Running;
-
- try {
- InnerInvoke ();
- } catch (OperationCanceledException oce) {
- if (token != CancellationToken.None && oce.CancellationToken == token)
- CancelReal ();
- else
- HandleGenericException (oce);
- } catch (Exception e) {
- HandleGenericException (e);
- }
- } else {
- CancelReal ();
- }
-
- Finish ();
- }
-
- internal void Execute (Action<Task> childAdder)
- {
- childWorkAdder = childAdder;
- ThreadStart ();
- }
-
- internal void AddChild ()
- {
- if (childTasks == null)
- Interlocked.CompareExchange (ref childTasks, new CountdownEvent (1), null);
- childTasks.AddCount ();
- }
- internal void ChildCompleted (AggregateException childEx)
- {
- if (childEx != null) {
- if (childExceptions == null)
- Interlocked.CompareExchange (ref childExceptions, new ConcurrentQueue<AggregateException> (), null);
- childExceptions.Enqueue (childEx);
- }
- if (childTasks.Signal () && status == TaskStatus.WaitingForChildrenToComplete) {
- status = TaskStatus.RanToCompletion;
- ProcessChildExceptions ();
- ProcessCompleteDelegates ();
- }
- }
- internal virtual void InnerInvoke ()
- {
- if (action == null && simpleAction != null)
- simpleAction ();
- else if (action != null)
- action (state);
- // Set action to null so that the GC can collect the delegate and thus
- // any big object references that the user might have captured in an anonymous method
- action = null;
- simpleAction = null;
- state = null;
- }
-
- internal void Finish ()
- {
- // If there was children created and they all finished, we set the countdown
- if (childTasks != null)
- childTasks.Signal ();
-
- // Don't override Canceled or Faulted
- if (status == TaskStatus.Running) {
- if (childTasks == null || childTasks.IsSet)
- status = TaskStatus.RanToCompletion;
- else
- status = TaskStatus.WaitingForChildrenToComplete;
- }
-
- if (status != TaskStatus.WaitingForChildrenToComplete)
- ProcessCompleteDelegates ();
- // Reset the current thingies
- current = null;
- TaskScheduler.Current = null;
- if (cancellationRegistration.HasValue)
- cancellationRegistration.Value.Dispose ();
-
- // Tell parent that we are finished
- if (CheckTaskOptions (taskCreationOptions, TaskCreationOptions.AttachedToParent) && parent != null) {
- parent.ChildCompleted (this.Exception);
- }
- }
- void CompletionExecutor (Task cont)
- {
- if (cont.Slot.Predicate != null && !cont.Slot.Predicate ())
- return;
- if (!cont.Slot.Launched.TryRelaxedSet ())
- return;
- if (!ContinuationStatusCheck (cont.Slot.Kind)) {
- cont.CancelReal ();
- cont.Dispose ();
- return;
- }
-
- if ((cont.Slot.Kind & TaskContinuationOptions.ExecuteSynchronously) != 0)
- cont.RunSynchronously (cont.scheduler);
- else
- cont.Schedule ();
- }
- void ProcessCompleteDelegates ()
- {
- if (completed.HasElements) {
- Task continuation;
- while (completed.TryGetNextCompletion (out continuation))
- CompletionExecutor (continuation);
- }
- if (registeredEvts.HasElements) {
- ManualResetEventSlim evt;
- while (registeredEvts.TryGetNextCompletion (out evt))
- evt.Set ();
- }
- }
- void ProcessChildExceptions ()
- {
- if (childExceptions == null)
- return;
- if (exception == null)
- exception = new AggregateException ();
- AggregateException childEx;
- while (childExceptions.TryDequeue (out childEx))
- exception.AddChildException (childEx);
- }
- #endregion
-
- #region Cancel and Wait related method
-
- internal void CancelReal ()
- {
- status = TaskStatus.Canceled;
- ProcessCompleteDelegates ();
- }
- internal void HandleGenericException (Exception e)
- {
- HandleGenericException (new AggregateException (e));
- }
- internal void HandleGenericException (AggregateException e)
- {
- exception = e;
- Thread.MemoryBarrier ();
- status = TaskStatus.Faulted;
- if (scheduler != null && scheduler.FireUnobservedEvent (exception).Observed)
- exceptionObserved = true;
- }
-
- public void Wait ()
- {
- Wait (Timeout.Infinite, CancellationToken.None);
- }
- public void Wait (CancellationToken cancellationToken)
- {
- Wait (Timeout.Infinite, cancellationToken);
- }
-
- public bool Wait (TimeSpan timeout)
- {
- return Wait (CheckTimeout (timeout), CancellationToken.None);
- }
-
- public bool Wait (int millisecondsTimeout)
- {
- return Wait (millisecondsTimeout, CancellationToken.None);
- }
- public bool Wait (int millisecondsTimeout, CancellationToken cancellationToken)
- {
- if (millisecondsTimeout < -1)
- throw new ArgumentOutOfRangeException ("millisecondsTimeout");
- bool result = true;
- if (!IsCompleted) {
- // If the task is ready to be run and we were supposed to wait on it indefinitely, just run it
- if (Status == TaskStatus.WaitingToRun && millisecondsTimeout == -1 && scheduler != null)
- Execute (null);
- if (!IsCompleted) {
- // Free heavy ressources used by the event automatically but without removing
- // it from the queue since Set () doesn't trigger ObjectDisposedException
- using (var evt = new ManualResetEventSlim ()) {
- RegisterWaitEvent (evt);
- result = evt.Wait (millisecondsTimeout, cancellationToken);
- }
- }
- }
- if (IsCanceled)
- throw new AggregateException (new TaskCanceledException (this));
- if (exception != null)
- throw exception;
- return result;
- }
-
- public static void WaitAll (params Task[] tasks)
- {
- WaitAll (tasks, Timeout.Infinite, CancellationToken.None);
- }
- public static void WaitAll (Task[] tasks, CancellationToken cancellationToken)
- {
- WaitAll (tasks, Timeout.Infinite, cancellationToken);
- }
-
- public static bool WaitAll (Task[] tasks, TimeSpan timeout)
- {
- return WaitAll (tasks, CheckTimeout (timeout), CancellationToken.None);
- }
-
- public static bool WaitAll (Task[] tasks, int millisecondsTimeout)
- {
- return WaitAll (tasks, millisecondsTimeout, CancellationToken.None);
- }
-
- public static bool WaitAll (Task[] tasks, int millisecondsTimeout, CancellationToken cancellationToken)
- {
- if (tasks == null)
- throw new ArgumentNullException ("tasks");
- CheckForNullTasks (tasks);
- bool result = true;
- List<Exception> exceptions = null;
- long start = watch.ElapsedMilliseconds;
- foreach (var t in tasks) {
- try {
- result &= t.Wait (millisecondsTimeout, cancellationToken);
- } catch (AggregateException e) {
- if (exceptions == null)
- exceptions = new List<Exception> ();
- exceptions.AddRange (e.InnerExceptions);
- }
- if (!ComputeTimeout (ref millisecondsTimeout, start, watch))
- result = false;
- if (!result)
- break;
- }
- if (exceptions != null)
- throw new AggregateException (exceptions);
- return result;
- }
-
- public static int WaitAny (params Task[] tasks)
- {
- return WaitAny (tasks, Timeout.Infinite, CancellationToken.None);
- }
- public static int WaitAny (Task[] tasks, TimeSpan timeout)
- {
- return WaitAny (tasks, CheckTimeout (timeout));
- }
-
- public static int WaitAny (Task[] tasks, int millisecondsTimeout)
- {
- return WaitAny (tasks, millisecondsTimeout, CancellationToken.None);
- }
- public static int WaitAny (Task[] tasks, CancellationToken cancellationToken)
- {
- return WaitAny (tasks, Timeout.Infinite, cancellationToken);
- }
- public static int WaitAny (Task[] tasks, int millisecondsTimeout, CancellationToken cancellationToken)
- {
- if (tasks == null)
- throw new ArgumentNullException ("tasks");
- if (millisecondsTimeout < -1)
- throw new ArgumentOutOfRangeException ("millisecondsTimeout");
- CheckForNullTasks (tasks);
- if (tasks.Length > 0) {
- using (var evt = new ManualResetEventSlim ()) {
- for (int i = 0; i < tasks.Length; i++) {
- var t = tasks[i];
- if (t.IsCompleted)
- return i;
- t.RegisterWaitEvent (evt);
- }
- if (!evt.Wait (millisecondsTimeout, cancellationToken))
- return -1;
- }
- }
- int firstFinished = -1;
- for (int i = 0; i < tasks.Length; i++) {
- var t = tasks[i];
- if (t.IsCompleted) {
- firstFinished = i;
- break;
- }
- }
- return firstFinished;
- }
- static int CheckTimeout (TimeSpan timeout)
- {
- try {
- return checked ((int)timeout.TotalMilliseconds);
- } catch (System.OverflowException) {
- throw new ArgumentOutOfRangeException ("timeout");
- }
- }
- static bool ComputeTimeout (ref int millisecondsTimeout, long start, Watch watch)
- {
- if (millisecondsTimeout == -1)
- return true;
- return (millisecondsTimeout = millisecondsTimeout - (int)(watch.ElapsedMilliseconds - start)) >= 1;
- }
- static void CheckForNullTasks (Task[] tasks)
- {
- foreach (var t in tasks)
- if (t == null)
- throw new ArgumentNullException ("tasks", "the tasks argument contains a null element");
- }
- #endregion
-
- #region Dispose
- public void Dispose ()
- {
- Dispose (true);
- }
-
- protected virtual void Dispose (bool disposing)
- {
- if (!IsCompleted)
- throw new InvalidOperationException ("A task may only be disposed if it is in a completion state");
- // Set action to null so that the GC can collect the delegate and thus
- // any big object references that the user might have captured in a anonymous method
- if (disposing) {
- action = null;
- state = null;
- if (cancellationRegistration != null)
- cancellationRegistration.Value.Dispose ();
- }
- }
- #endregion
-
- #if NET_4_5
- public ConfiguredTaskAwaitable ConfigureAwait (bool continueOnCapturedContext)
- {
- return new ConfiguredTaskAwaitable (this, continueOnCapturedContext);
- }
- public Task ContinueWith (Action<Task, object> continuationAction, object state)
- {
- return ContinueWith (continuationAction, state, CancellationToken.None, TaskContinuationOptions.None, TaskScheduler.Current);
- }
- public Task ContinueWith (Action<Task, object> continuationAction, object state, CancellationToken cancellationToken)
- {
- return ContinueWith (continuationAction, state, cancellationToken, TaskContinuationOptions.None, TaskScheduler.Current);
- }
- public Task ContinueWith (Action<Task, object> continuationAction, object state, TaskContinuationOptions continuationOptions)
- {
- return ContinueWith (continuationAction, state, CancellationToken.None, continuationOptions, TaskScheduler.Current);
- }
- public Task ContinueWith (Action<Task, object> continuationAction, object state, TaskScheduler scheduler)
- {
- return ContinueWith (continuationAction, state, CancellationToken.None, TaskContinuationOptions.None, scheduler);
- }
- public Task ContinueWith (Action<Task, object> continuationAction, object state, CancellationToken cancellationToken,
- TaskContinuationOptions continuationOptions, TaskScheduler scheduler)
- {
- if (continuationAction == null)
- throw new ArgumentNullException ("continuationAction");
- if (scheduler == null)
- throw new ArgumentNullException ("scheduler");
- Task continuation = new Task (l => continuationAction (this, l), state,
- cancellationToken,
- GetCreationOptions (continuationOptions),
- this);
- ContinueWithCore (continuation, continuationOptions, scheduler);
- return continuation;
- }
- public Task<TResult> ContinueWith<TResult> (Func<Task, object, TResult> continuationFunction, object state)
- {
- return ContinueWith<TResult> (continuationFunction, state, CancellationToken.None, TaskContinuationOptions.None, TaskScheduler.Current);
- }
- public Task<TResult> ContinueWith<TResult> (Func<Task, object, TResult> continuationFunction, object state, TaskContinuationOptions continuationOptions)
- {
- return ContinueWith<TResult> (continuationFunction, state, CancellationToken.None, continuationOptions, TaskScheduler.Current);
- }
- public Task<TResult> ContinueWith<TResult> (Func<Task, object, TResult> continuationFunction, object state, CancellationToken cancellationToken)
- {
- return ContinueWith<TResult> (continuationFunction, state, cancellationToken, TaskContinuationOptions.None, TaskScheduler.Current);
- }
- public Task<TResult> ContinueWith<TResult> (Func<Task, object, TResult> continuationFunction, object state, TaskScheduler scheduler)
- {
- return ContinueWith<TResult> (continuationFunction, state, CancellationToken.None, TaskContinuationOptions.None, scheduler);
- }
- public Task<TResult> ContinueWith<TResult> (Func<Task, object, TResult> continuationFunction, object state, CancellationToken cancellationToken,
- TaskContinuationOptions continuationOptions, TaskScheduler scheduler)
- {
- if (continuationFunction == null)
- throw new ArgumentNullException ("continuationFunction");
- if (scheduler == null)
- throw new ArgumentNullException ("scheduler");
- var t = new Task<TResult> (l => continuationFunction (this, l),
- state,
- cancellationToken,
- GetCreationOptions (continuationOptions),
- this);
- ContinueWithCore (t, continuationOptions, scheduler);
- return t;
- }
- public static Task<TResult> FromResult<TResult> (TResult result)
- {
- var tcs = new TaskCompletionSource<TResult> ();
- tcs.SetResult (result);
- return tcs.Task;
- }
- public TaskAwaiter GetAwaiter ()
- {
- return new TaskAwaiter (this);
- }
- public static Task Run (Action action)
- {
- return Run (action, CancellationToken.None);
- }
- public static Task Run (Action action, CancellationToken cancellationToken)
- {
- if (cancellationToken.IsCancellationRequested)
- return TaskConstants.Canceled;
- var t = new Task (action, cancellationToken, TaskCreationOptions.DenyChildAttach);
- t.Start ();
- return t;
- }
- public static Task Run (Func<Task> function)
- {
- return Run (function, CancellationToken.None);
- }
- public static Task Run (Func<Task> function, CancellationToken cancellationToken)
- {
- if (cancellationToken.IsCancellationRequested)
- return TaskConstants.Canceled;
- var t = new Task<Task> (function, cancellationToken);
- t.Start ();
- return t;
- }
- public static Task<TResult> Run<TResult> (Func<TResult> function)
- {
- return Run (function, CancellationToken.None);
- }
- public static Task<TResult> Run<TResult> (Func<TResult> function, CancellationToken cancellationToken)
- {
- if (cancellationToken.IsCancellationRequested)
- return TaskConstants<TResult>.Canceled;
- var t = new Task<TResult> (function, cancellationToken, TaskCreationOptions.DenyChildAttach);
- t.Start ();
- return t;
- }
- public static Task<TResult> Run<TResult> (Func<Task<TResult>> function)
- {
- return Run (function, CancellationToken.None);
- }
- public static Task<TResult> Run<TResult> (Func<Task<TResult>> function, CancellationToken cancellationToken)
- {
- if (cancellationToken.IsCancellationRequested)
- return TaskConstants<TResult>.Canceled;
- var t = Task<Task<TResult>>.Factory.StartNew (function, cancellationToken, TaskCreationOptions.DenyChildAttach, TaskScheduler.Default);
- return GetTaskResult (t);
- }
- async static Task<TResult> GetTaskResult<TResult> (Task<Task<TResult>> task)
- {
- var r = await task.ConfigureAwait (false);
- return r.Result;
- }
-
- public static YieldAwaitable Yield ()
- {
- return new YieldAwaitable ();
- }
- #endif
- #region Properties
- public static TaskFactory Factory {
- get {
- return defaultFactory;
- }
- }
-
- public static int? CurrentId {
- get {
- Task t = current;
- return t == null ? (int?)null : t.Id;
- }
- }
-
- public AggregateException Exception {
- get {
- exceptionObserved = true;
-
- return exception;
- }
- internal set {
- exception = value;
- }
- }
-
- public bool IsCanceled {
- get {
- return status == TaskStatus.Canceled;
- }
- }
- public bool IsCompleted {
- get {
- return status >= TaskStatus.RanToCompletion;
- }
- }
-
- public bool IsFaulted {
- get {
- return status == TaskStatus.Faulted;
- }
- }
- public TaskCreationOptions CreationOptions {
- get {
- return taskCreationOptions;
- }
- }
-
- public TaskStatus Status {
- get {
- return status;
- }
- internal set {
- status = value;
- }
- }
- public object AsyncState {
- get {
- return state;
- }
- }
-
- bool IAsyncResult.CompletedSynchronously {
- get {
- return true;
- }
- }
- WaitHandle IAsyncResult.AsyncWaitHandle {
- get {
- return null;
- }
- }
-
- public int Id {
- get {
- return taskId;
- }
- }
- internal Task Parent {
- get {
- return parent;
- }
- }
-
- internal string DisplayActionMethod {
- get {
- Delegate d = simpleAction ?? (Delegate) action;
- return d == null ? "<none>" : d.Method.ToString ();
- }
- }
-
- #endregion
- }
- }
- #endif
|