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
|
#region Imports
using System;
using System.Xml;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Threading;
using System.Transactions;
using System.Reflection;
using System.Workflow.ComponentModel;
using System.Workflow.Runtime.Hosting;
using System.Diagnostics;
#endregion
namespace System.Workflow.Runtime
{
#region Class AmbientEnvironment
internal abstract class AmbientEnvironment : IDisposable
{
/// <summary>
/// Indicates that the value of a static field is unique for each thread
/// CLR Perf suggests using this attribute over the slot approach.
/// </summary>
[ThreadStatic()]
static EnvWrapper threadData;
readonly object _prevEnv;
readonly int _prevRC;
protected AmbientEnvironment(object env)
{
if (threadData == null)
{
//Setting TLS for the first time
threadData = new EnvWrapper();
}
threadData.Push(env, out _prevEnv, out _prevRC);
}
void IDisposable.Dispose()
{
Debug.Assert(null != threadData);
threadData.Pop(_prevEnv, _prevRC);
if (_prevRC == 0)
{
threadData = null;
}
}
internal static object Retrieve()
{
if (threadData != null)
return threadData.Retrieve();
else
return null;
}
private class EnvWrapper
{
int _rc;
object _currEnv;
internal void Push(object env, out object prevEnv, out int prevRc)
{
Debug.Assert(_rc >= 0);
prevEnv = _currEnv;
prevRc = _rc;
_rc++;
_currEnv = env;
}
internal void Pop(object prevEnv, int prevRC)
{
Debug.Assert(_rc > 0);
_rc--;
_currEnv = prevEnv;
if (_rc != prevRC)
{
Debug.Assert(false);
//
}
}
internal object Retrieve()
{
Debug.Assert(_rc > 0);
return _currEnv;
}
}
}
#endregion
#region Class ServiceEnvironment
// This class presents the transactional view of a WF instance:
// mainly the current batch in transaction, and NOT the runtime view
// of currently executing activity.
internal sealed class ServiceEnvironment : AmbientEnvironment
{
internal static readonly Guid debuggerThreadGuid = new Guid("54D747AE-5CC6-4171-95C8-0A8C40443915");
internal ServiceEnvironment(Activity currentActivity)
: base(currentActivity)
{
GC.SuppressFinalize(this);
}
internal static IWorkBatch WorkBatch
{
get
{
Activity currentActivity = ServiceEnvironment.CurrentActivity;
if (currentActivity == null)
return null;
else
return (IWorkBatch)currentActivity.GetValue(WorkflowExecutor.TransientBatchProperty);
}
}
internal static Guid WorkflowInstanceId
{
get
{
Activity currentActivity = ServiceEnvironment.CurrentActivity;
if (currentActivity == null)
return Guid.Empty;
return ((Guid)ContextActivityUtils.RootContextActivity(currentActivity).GetValue(WorkflowExecutor.WorkflowInstanceIdProperty));
}
}
internal static WorkflowQueuingService QueuingService
{
get
{
Activity currentActivity = ServiceEnvironment.CurrentActivity;
// fetch workflow executor
IWorkflowCoreRuntime workflowExecutor = null;
if (currentActivity != null)
workflowExecutor = ContextActivityUtils.RetrieveWorkflowExecutor(currentActivity);
while (currentActivity != null)
{
if (currentActivity == workflowExecutor.CurrentAtomicActivity)
{
TransactionalProperties transactionalProperties = (TransactionalProperties)currentActivity.GetValue(WorkflowExecutor.TransactionalPropertiesProperty);
if (transactionalProperties != null)
{
if (transactionalProperties.LocalQueuingService != null)
{
WorkflowQueuingService queuingService = transactionalProperties.LocalQueuingService;
return queuingService; // return local queuing service
}
}
}
currentActivity = currentActivity.Parent;
}
return null;
}
}
// DO NOT change this to internal/public
// Technically we only want to store the Batch in the TLS,
// but because we also want the queueing service and instId,
// we are storing the object encapsulating all the info.
// The service environment only represents the transactional view:
// the current batch; and not the current executing view:
// e.g. some caller/caller, send/receive scenarios where
// we want the current batch to be the caller's so this activity
// does not reflect the executing activity (the callee).
private static Activity CurrentActivity
{
get
{
object o = AmbientEnvironment.Retrieve();
return o as Activity;
}
}
internal static bool IsInServiceThread(Guid instanceId)
{
System.Diagnostics.Debug.Assert(instanceId != Guid.Empty, "IsInServiceThread expects valid guid.");
if (WorkflowInstanceId == instanceId)
return true;
return DebuggerThreadMarker.IsInDebuggerThread();
}
}
#endregion
#region Class DebuggerThreadMarker
internal class DebuggerThreadMarker : AmbientEnvironment
{
public DebuggerThreadMarker()
: base(new object())
{
}
internal static bool IsInDebuggerThread()
{
return AmbientEnvironment.Retrieve() != null;
}
}
#endregion
#region Class RuntimeEnvironment
internal class RuntimeEnvironment : IDisposable
{
[ThreadStatic()]
static WorkflowRuntime workflowRuntime;
public RuntimeEnvironment(WorkflowRuntime runtime)
{
workflowRuntime = runtime;
}
internal static WorkflowRuntime CurrentRuntime
{
get
{
return RuntimeEnvironment.workflowRuntime;
}
}
void IDisposable.Dispose()
{
workflowRuntime = null;
}
}
#endregion
}
|