Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / RunTime / AmbientEnvironment.cs / 1305376 / AmbientEnvironment.cs
#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 { ////// Indicates that the value of a static field is unique for each thread /// CLR Perf suggests using this attribute over the slot approach. /// [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 } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. #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 { ////// Indicates that the value of a static field is unique for each thread /// CLR Perf suggests using this attribute over the slot approach. /// [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 } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MultiDataTrigger.cs
- MeasureData.cs
- BaseAsyncResult.cs
- ValueQuery.cs
- ImpersonationContext.cs
- StateManagedCollection.cs
- MULTI_QI.cs
- ReadOnlyHierarchicalDataSourceView.cs
- TransformerInfoCollection.cs
- COM2PictureConverter.cs
- DataGridViewButtonCell.cs
- __ComObject.cs
- HandleCollector.cs
- AccessDataSourceWizardForm.cs
- ToolStripTextBox.cs
- ThicknessKeyFrameCollection.cs
- OpenFileDialog.cs
- NonDualMessageSecurityOverHttpElement.cs
- DataRowComparer.cs
- UnitySerializationHolder.cs
- MultiBinding.cs
- Package.cs
- EditorAttribute.cs
- BrowserCapabilitiesCompiler.cs
- DocumentPageViewAutomationPeer.cs
- LOSFormatter.cs
- SudsParser.cs
- DataGridItemCollection.cs
- ChildrenQuery.cs
- XmlSchemaChoice.cs
- EntityPropertyMappingAttribute.cs
- FlowPosition.cs
- NamespaceExpr.cs
- ISAPIWorkerRequest.cs
- FontFamily.cs
- ListViewSortEventArgs.cs
- AndCondition.cs
- MediaElement.cs
- ToolboxBitmapAttribute.cs
- SafeLibraryHandle.cs
- FormViewInsertEventArgs.cs
- EarlyBoundInfo.cs
- ListViewHitTestInfo.cs
- DiagnosticsConfigurationHandler.cs
- XmlRawWriterWrapper.cs
- DESCryptoServiceProvider.cs
- GC.cs
- OrderPreservingSpoolingTask.cs
- ModelPropertyCollectionImpl.cs
- FontNamesConverter.cs
- COM2PropertyBuilderUITypeEditor.cs
- BindingEntityInfo.cs
- WmlImageAdapter.cs
- ContextConfiguration.cs
- RemoteCryptoSignHashRequest.cs
- NotConverter.cs
- MarkupCompilePass1.cs
- StylusLogic.cs
- DataTemplateSelector.cs
- DataGridViewColumnConverter.cs
- OleDbRowUpdatedEvent.cs
- UserControlParser.cs
- DrawListViewSubItemEventArgs.cs
- xamlnodes.cs
- DatatypeImplementation.cs
- DbBuffer.cs
- CodeDelegateInvokeExpression.cs
- FirstMatchCodeGroup.cs
- OdbcStatementHandle.cs
- RoutedEventHandlerInfo.cs
- PagesChangedEventArgs.cs
- NotifyInputEventArgs.cs
- CheckBox.cs
- AnonymousIdentificationModule.cs
- ComPlusInstanceProvider.cs
- MenuBindingsEditor.cs
- XmlProcessingInstruction.cs
- SqlCacheDependency.cs
- HttpListenerResponse.cs
- Helper.cs
- StreamWriter.cs
- ToolStripButton.cs
- PropertyCollection.cs
- SqlWebEventProvider.cs
- XmlNodeWriter.cs
- HttpStreamMessage.cs
- CapacityStreamGeometryContext.cs
- FixedSOMElement.cs
- CatalogZoneBase.cs
- CollectionViewGroupInternal.cs
- TargetFrameworkAttribute.cs
- ProgressBarHighlightConverter.cs
- WebEncodingValidatorAttribute.cs
- FilteredReadOnlyMetadataCollection.cs
- SequentialUshortCollection.cs
- DataGridHelper.cs
- HttpResponse.cs
- HebrewCalendar.cs
- WpfWebRequestHelper.cs
- IndexedEnumerable.cs