1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.Activities
{
using System;
using System.Activities.Runtime;
using System.Runtime;
using System.Activities.Hosting;
class AsyncOperationContext
{
static AsyncCallback onResumeAsyncCodeActivityBookmark;
ActivityExecutor executor;
ActivityInstance owningActivityInstance;
bool hasCanceled;
bool hasCompleted;
internal AsyncOperationContext(ActivityExecutor executor, ActivityInstance owningActivityInstance)
{
this.executor = executor;
this.owningActivityInstance = owningActivityInstance;
}
internal bool IsStillActive
{
get
{
return !this.hasCanceled && !this.hasCompleted;
}
}
public object UserState
{
get;
set;
}
public bool HasCalledAsyncCodeActivityCancel
{
get;
set;
}
public bool IsAborting
{
get;
set;
}
bool ShouldCancel()
{
return this.IsStillActive;
}
bool ShouldComplete()
{
if (this.hasCanceled)
{
return false;
}
if (this.hasCompleted)
{
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.OperationAlreadyCompleted));
}
return true;
}
internal void CancelOperation()
{
if (ShouldCancel())
{
this.executor.CompleteOperation(this.owningActivityInstance);
}
this.hasCanceled = true;
}
public void CompleteOperation()
{
if (ShouldComplete())
{
this.executor.CompleteOperation(this.owningActivityInstance);
this.hasCompleted = true;
}
}
// used by AsyncCodeActivity to efficiently complete a "true" async operation
internal void CompleteAsyncCodeActivity(CompleteData completeData)
{
Fx.Assert(completeData != null, "caller must validate this is not null");
if (!this.ShouldComplete())
{
// nothing to do here
return;
}
if (onResumeAsyncCodeActivityBookmark == null)
{
onResumeAsyncCodeActivityBookmark = Fx.ThunkCallback(new AsyncCallback(OnResumeAsyncCodeActivityBookmark));
}
try
{
IAsyncResult result = this.executor.BeginResumeBookmark(Bookmark.AsyncOperationCompletionBookmark,
completeData, TimeSpan.MaxValue, onResumeAsyncCodeActivityBookmark, this.executor);
if (result.CompletedSynchronously)
{
this.executor.EndResumeBookmark(result);
}
}
catch (Exception e)
{
if (Fx.IsFatal(e))
{
throw;
}
this.executor.AbortWorkflowInstance(e);
}
}
static void OnResumeAsyncCodeActivityBookmark(IAsyncResult result)
{
if (result.CompletedSynchronously)
{
return;
}
ActivityExecutor executor = (ActivityExecutor)result.AsyncState;
try
{
executor.EndResumeBookmark(result);
}
catch (Exception e)
{
if (Fx.IsFatal(e))
{
throw;
}
executor.AbortWorkflowInstance(e);
}
}
internal abstract class CompleteData
{
AsyncOperationContext context;
bool isCancel;
protected CompleteData(AsyncOperationContext context, bool isCancel)
{
Fx.Assert(context != null, "Cannot have a null context.");
this.context = context;
this.isCancel = isCancel;
}
protected ActivityExecutor Executor
{
get
{
return this.context.executor;
}
}
public ActivityInstance Instance
{
get
{
return this.context.owningActivityInstance;
}
}
protected AsyncOperationContext AsyncContext
{
get
{
return this.context;
}
}
// This method will throw if the complete/cancel is now invalid, it will return
// true if the complete/cancel should proceed, and return false if the complete/cancel
// should be ignored.
bool ShouldCallExecutor()
{
if (this.isCancel)
{
return this.context.ShouldCancel();
}
else
{
return this.context.ShouldComplete();
}
}
// This must be called from a workflow thread
public void CompleteOperation()
{
if (ShouldCallExecutor())
{
OnCallExecutor();
// We only update hasCompleted if we just did the completion work.
// Calling Cancel followed by Complete does not mean you've completed.
if (!this.isCancel)
{
this.context.hasCompleted = true;
}
}
// We update hasCanceled even if we skipped the actual work.
// Calling Complete followed by Cancel does imply that you have canceled.
if (this.isCancel)
{
this.context.hasCanceled = true;
}
}
protected abstract void OnCallExecutor();
}
}
}
|