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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.Activities.Runtime
{
using System;
using System.Activities.DynamicUpdate;
using System.Collections.ObjectModel;
using System.Runtime;
using System.Runtime.Serialization;
using System.Security;
// can't add FuncCompletionCallbackWrapper<T> since we don't know what to close the generic with
[KnownType(typeof(ActivityCompletionCallbackWrapper))]
[KnownType(typeof(DelegateCompletionCallbackWrapper))]
[DataContract]
abstract class CompletionCallbackWrapper : CallbackWrapper
{
static Type completionCallbackType = typeof(CompletionCallback);
static Type[] completionCallbackParameters = new Type[] { typeof(NativeActivityContext), typeof(ActivityInstance) };
bool checkForCancelation;
bool needsToGatherOutputs;
protected CompletionCallbackWrapper(Delegate callback, ActivityInstance owningInstance)
: base(callback, owningInstance)
{
}
protected bool NeedsToGatherOutputs
{
get
{
return this.needsToGatherOutputs;
}
set
{
this.needsToGatherOutputs = value;
}
}
[DataMember(EmitDefaultValue = false, Name = "checkForCancelation")]
internal bool SerializedCheckForCancelation
{
get { return this.checkForCancelation; }
set { this.checkForCancelation = value; }
}
[DataMember(EmitDefaultValue = false, Name = "needsToGatherOutputs")]
internal bool SerializedNeedsToGatherOutputs
{
get { return this.needsToGatherOutputs; }
set { this.needsToGatherOutputs = value; }
}
public void CheckForCancelation()
{
this.checkForCancelation = true;
}
protected virtual void GatherOutputs(ActivityInstance completedInstance)
{
// No-op in the base class
}
internal WorkItem CreateWorkItem(ActivityInstance completedInstance, ActivityExecutor executor)
{
// We use the property to guard against the virtual method call
// since we don't need it in the common case
if (this.NeedsToGatherOutputs)
{
this.GatherOutputs(completedInstance);
}
CompletionWorkItem workItem;
if (this.checkForCancelation)
{
workItem = new CompletionWithCancelationCheckWorkItem(this, completedInstance);
}
else
{
workItem = executor.CompletionWorkItemPool.Acquire();
workItem.Initialize(this, completedInstance);
}
if (completedInstance.InstanceMap != null)
{
completedInstance.InstanceMap.AddEntry(workItem);
}
return workItem;
}
[Fx.Tag.SecurityNote(Critical = "Because any implementation will be calling EnsureCallback",
Safe = "Safe because the method needs to be part of an Activity and we are casting to the callback type and it has a very specific signature. The author of the callback is buying into being invoked from PT.")]
[SecuritySafeCritical]
protected internal abstract void Invoke(NativeActivityContext context, ActivityInstance completedInstance);
[DataContract]
public class CompletionWorkItem : ActivityExecutionWorkItem, ActivityInstanceMap.IActivityReference
{
CompletionCallbackWrapper callbackWrapper;
ActivityInstance completedInstance;
// Called by the Pool.
public CompletionWorkItem()
{
this.IsPooled = true;
}
// Only used by non-pooled base classes.
protected CompletionWorkItem(CompletionCallbackWrapper callbackWrapper, ActivityInstance completedInstance)
: base(callbackWrapper.ActivityInstance)
{
this.callbackWrapper = callbackWrapper;
this.completedInstance = completedInstance;
}
protected ActivityInstance CompletedInstance
{
get
{
return this.completedInstance;
}
}
[DataMember(Name = "callbackWrapper")]
internal CompletionCallbackWrapper SerializedCallbackWrapper
{
get { return this.callbackWrapper; }
set { this.callbackWrapper = value; }
}
[DataMember(Name = "completedInstance")]
internal ActivityInstance SerializedCompletedInstance
{
get { return this.completedInstance; }
set { this.completedInstance = value; }
}
public void Initialize(CompletionCallbackWrapper callbackWrapper, ActivityInstance completedInstance)
{
base.Reinitialize(callbackWrapper.ActivityInstance);
this.callbackWrapper = callbackWrapper;
this.completedInstance = completedInstance;
}
protected override void ReleaseToPool(ActivityExecutor executor)
{
base.ClearForReuse();
this.callbackWrapper = null;
this.completedInstance = null;
executor.CompletionWorkItemPool.Release(this);
}
public override void TraceCompleted()
{
if (TD.CompleteCompletionWorkItemIsEnabled())
{
TD.CompleteCompletionWorkItem(this.ActivityInstance.Activity.GetType().ToString(), this.ActivityInstance.Activity.DisplayName, this.ActivityInstance.Id, this.completedInstance.Activity.GetType().ToString(), this.completedInstance.Activity.DisplayName, this.completedInstance.Id);
}
}
public override void TraceScheduled()
{
if (TD.ScheduleCompletionWorkItemIsEnabled())
{
TD.ScheduleCompletionWorkItem(this.ActivityInstance.Activity.GetType().ToString(), this.ActivityInstance.Activity.DisplayName, this.ActivityInstance.Id, this.completedInstance.Activity.GetType().ToString(), this.completedInstance.Activity.DisplayName, this.completedInstance.Id);
}
}
public override void TraceStarting()
{
if (TD.StartCompletionWorkItemIsEnabled())
{
TD.StartCompletionWorkItem(this.ActivityInstance.Activity.GetType().ToString(), this.ActivityInstance.Activity.DisplayName, this.ActivityInstance.Id, this.completedInstance.Activity.GetType().ToString(), this.completedInstance.Activity.DisplayName, this.completedInstance.Id);
}
}
public override bool Execute(ActivityExecutor executor, BookmarkManager bookmarkManager)
{
NativeActivityContext context = executor.NativeActivityContextPool.Acquire();
Fx.Assert(this.completedInstance.Activity != null, "Activity definition should always be associated with an activity instance.");
try
{
context.Initialize(this.ActivityInstance, executor, bookmarkManager);
this.callbackWrapper.Invoke(context, this.completedInstance);
}
catch (Exception e)
{
if (Fx.IsFatal(e))
{
throw;
}
this.ExceptionToPropagate = e;
}
finally
{
context.Dispose();
executor.NativeActivityContextPool.Release(context);
if (this.ActivityInstance.InstanceMap != null)
{
this.ActivityInstance.InstanceMap.RemoveEntry(this);
}
}
return true;
}
Activity ActivityInstanceMap.IActivityReference.Activity
{
get
{
return this.completedInstance.Activity;
}
}
void ActivityInstanceMap.IActivityReference.Load(Activity activity, ActivityInstanceMap instanceMap)
{
if (this.completedInstance.Activity == null)
{
((ActivityInstanceMap.IActivityReference)this.completedInstance).Load(activity, instanceMap);
}
}
}
[DataContract]
class CompletionWithCancelationCheckWorkItem : CompletionWorkItem
{
public CompletionWithCancelationCheckWorkItem(CompletionCallbackWrapper callbackWrapper, ActivityInstance completedInstance)
: base(callbackWrapper, completedInstance)
{
}
public override bool Execute(ActivityExecutor executor, BookmarkManager bookmarkManager)
{
if (this.CompletedInstance.State != ActivityInstanceState.Closed && this.ActivityInstance.IsPerformingDefaultCancelation)
{
this.ActivityInstance.MarkCanceled();
}
return base.Execute(executor, bookmarkManager);
}
}
}
}
|