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 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------
namespace System.ServiceModel.Activities
{
using System;
using System.Activities;
using System.Collections.ObjectModel;
using System.Diagnostics.CodeAnalysis;
using System.Runtime;
using System.Runtime.DurableInstancing;
using System.Runtime.Serialization;
[DataContract]
public class CorrelationHandle : Handle
{
internal static readonly string StaticExecutionPropertyName = typeof(CorrelationHandle).FullName;
static readonly Type requestReplyCorrelationInitializerType = typeof(RequestReplyCorrelationInitializer);
// CorrelationHandles to support Context/Durable Duplex
// For processing the CallBackContextMessageProperty
static readonly Type callbackCorrelationInitializerType = typeof(CallbackCorrelationInitializer);
// This is for passing the Context information that we get in the reply message from the Server in the initial handshake
// to the next Sendmessage activity from the client to the server
static readonly Type contextCorrelationInitializerType = typeof(ContextCorrelationInitializer);
//// To get to the same instance on the server side( between SendReply and following Receive) and on the client side( between Send and following send)
//static readonly Type followingContextCorrelationInitializerType = typeof(FollowingContextCorrelationInitializer);
CorrelationCallbackContext callbackContext;
CorrelationContext context;
InstanceKey instanceKey;
// This is never null when it matters because the CorrelationHandle sets this during OnInitialize
NoPersistHandle noPersistHandle;
// This is never null when it matters because the CorrelationHandle sets this during OnInitialize
BookmarkScopeHandle bookmarkScopeHandle;
public CorrelationHandle()
: base()
{
}
[DataMember(Name = "noPersistHandle")]
internal NoPersistHandle SerializedNoPersistHandle
{
get { return this.noPersistHandle; }
set { this.noPersistHandle = value; }
}
[DataMember(Name = "bookmarkScopeHandle")]
internal BookmarkScopeHandle SerializedBookmarkScopeHandle
{
get { return this.bookmarkScopeHandle; }
set { this.bookmarkScopeHandle = value; }
}
[DataMember(EmitDefaultValue = false)]
internal Guid E2ETraceId
{
get;
set;
}
// Used for durable correlation purposes
internal InstanceKey InstanceKey
{
get
{
return this.instanceKey;
}
private set
{
this.instanceKey = value;
}
}
// As a convenience, we let the same correlation handle that is used for durable
// correlations be leveraged for a single outstanding transient (e.g. Request-Reply)
// correlation. This is primarily used in the ambient correlation case, and is
// done this way since we cannot have two Execution Properties (i.e. activityContext.Properties)
// with the same type at a given scope without a patch to the WF Runtime
internal InstanceKey TransientInstanceKey
{
get;
set;
}
[DataMember(Name = "InstanceKey", EmitDefaultValue = false)]
[SuppressMessage(FxCop.Category.Performance, FxCop.Rule.AvoidUncalledPrivateCode, Justification = "Called from Serialization")]
internal SerializableInstanceKey SerializableInstanceKey
{
get
{
if (this.InstanceKey != null)
{
return new SerializableInstanceKey(this.InstanceKey);
}
return null;
}
set
{
this.InstanceKey = value.ToInstanceKey();
}
}
internal CorrelationRequestContext RequestContext
{
get;
private set;
}
internal CorrelationResponseContext ResponseContext
{
get;
private set;
}
[DataMember(EmitDefaultValue = false)]
internal CorrelationCallbackContext CallbackContext
{
get
{
return this.callbackContext;
}
set
{
Fx.Assert(this.callbackContext == null || this.callbackContext == value, "cannot set two different callback contexts");
this.callbackContext = value;
}
}
[DataMember(EmitDefaultValue = false)]
internal CorrelationContext Context
{
get
{
return this.context;
}
set
{
Fx.Assert(this.context == null || this.context == value, "cannot set two different callback contexts");
this.context = value;
}
}
[DataMember(EmitDefaultValue = false)]
internal BookmarkScope Scope
{
get;
set;
}
protected override void OnInitialize(HandleInitializationContext context)
{
this.noPersistHandle = context.CreateAndInitializeHandle<NoPersistHandle>();
this.bookmarkScopeHandle = context.CreateAndInitializeHandle<BookmarkScopeHandle>();
}
protected override void OnUninitialize(HandleInitializationContext context)
{
SendReceiveExtension sendReceiveExtension = context.GetExtension<SendReceiveExtension>();
if (sendReceiveExtension != null)
{
if (this.InstanceKey != null)
{
sendReceiveExtension.OnUninitializeCorrelation(this.InstanceKey);
}
if (this.TransientInstanceKey != null)
{
sendReceiveExtension.OnUninitializeCorrelation(this.TransientInstanceKey);
}
}
context.UninitializeHandle(this.noPersistHandle);
context.UninitializeHandle(this.bookmarkScopeHandle);
}
internal BookmarkScope EnsureBookmarkScope(NativeActivityContext executionContext)
{
if (this.Scope == null)
{
this.Scope = executionContext.DefaultBookmarkScope;
}
return this.Scope;
}
internal bool TryRegisterRequestContext(NativeActivityContext executionContext, CorrelationRequestContext requestContext)
{
Fx.Assert(requestContext != null, "requires a valid requestContext");
if (this.noPersistHandle == null)
{
return false;
}
if (this.RequestContext == null)
{
this.noPersistHandle.Enter(executionContext);
this.RequestContext = requestContext;
return true;
}
return object.ReferenceEquals(this.RequestContext, requestContext);
}
internal bool TryRegisterResponseContext(NativeActivityContext executionContext, CorrelationResponseContext responseContext)
{
Fx.Assert(responseContext != null, "requires a valid responseContext");
if (this.noPersistHandle == null)
{
return false;
}
if (this.ResponseContext == null)
{
this.noPersistHandle.Enter(executionContext);
this.ResponseContext = responseContext;
return true;
}
return object.ReferenceEquals(this.ResponseContext, responseContext);
}
internal bool TryAcquireRequestContext(NativeActivityContext executionContext, out CorrelationRequestContext requestContext)
{
if (this.RequestContext != null)
{
// We have a context, and we should disassociate it from the correlation handle
this.noPersistHandle.Exit(executionContext);
requestContext = this.RequestContext;
this.RequestContext = null;
return true;
}
else
{
requestContext = null;
return false;
}
}
internal bool TryAcquireResponseContext(NativeActivityContext executionContext, out CorrelationResponseContext responseContext)
{
if (this.ResponseContext != null)
{
// We have a context, and we should disassociate it from the correlation handle
this.noPersistHandle.Exit(executionContext);
responseContext = this.ResponseContext;
this.ResponseContext = null;
return true;
}
else
{
responseContext = null;
return false;
}
}
internal void InitializeBookmarkScope(NativeActivityContext context, InstanceKey instanceKey)
{
Fx.Assert(context != null, "executionContext cannot be null");
Fx.Assert(instanceKey != null, "instanceKey cannot be null");
if (context.GetExtension<SendReceiveExtension>() != null)
{
if (this.InstanceKey != null && this.InstanceKey.Value != instanceKey.Value)
{
throw FxTrace.Exception.AsError(
new InvalidOperationException(SR.CorrelationHandleInUse(this.InstanceKey.Value, instanceKey.Value)));
}
this.InstanceKey = instanceKey;
}
else
{
if (this.Scope == null)
{
this.bookmarkScopeHandle.CreateBookmarkScope(context, instanceKey.Value);
this.Scope = this.bookmarkScopeHandle.BookmarkScope;
}
else
{
if (this.Scope.IsInitialized)
{
if (this.Scope.Id != instanceKey.Value)
{
throw FxTrace.Exception.AsError(
new InvalidOperationException(SR.CorrelationHandleInUse(this.Scope.Id, instanceKey.Value)));
}
}
else
{
this.Scope.Initialize(context, instanceKey.Value);
}
}
}
}
internal bool IsInitalized()
{
if (this.Scope != null || this.CallbackContext != null || this.Context != null || this.ResponseContext != null || this.RequestContext != null || (this.InstanceKey != null && this.InstanceKey.IsValid))
{
return true;
}
return false;
}
internal static CorrelationHandle GetAmbientCorrelation(NativeActivityContext context)
{
return context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;
}
internal static CorrelationHandle GetExplicitRequestReplyCorrelation(NativeActivityContext context, Collection<CorrelationInitializer> correlationInitializers)
{
return GetTypedCorrelationHandle(context, correlationInitializers, requestReplyCorrelationInitializerType);
}
internal static CorrelationHandle GetExplicitCallbackCorrelation(NativeActivityContext context, Collection<CorrelationInitializer> correlationInitializers)
{
return GetTypedCorrelationHandle(context, correlationInitializers, callbackCorrelationInitializerType);
}
internal static CorrelationHandle GetExplicitContextCorrelation(NativeActivityContext context, Collection<CorrelationInitializer> correlationInitializers)
{
return GetTypedCorrelationHandle(context, correlationInitializers, contextCorrelationInitializerType);
}
internal static CorrelationHandle GetTypedCorrelationHandle(NativeActivityContext context, Collection<CorrelationInitializer> correlationInitializers, Type correlationInitializerType)
{
CorrelationHandle typedCorrelationHandle = null;
if (correlationInitializers != null && correlationInitializers.Count > 0)
{
foreach (CorrelationInitializer correlation in correlationInitializers)
{
if (correlationInitializerType == correlation.GetType())
{
typedCorrelationHandle = correlation.CorrelationHandle.Get(context);
// We return the first handle we find
break;
}
}
}
return typedCorrelationHandle;
}
}
}
|