Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Common / AuthoringOM / Behaviors / ExceptionHandlers.cs / 1305376 / ExceptionHandlers.cs
namespace System.Workflow.ComponentModel { #region Imports using System; using System.Diagnostics; using System.Reflection; using System.Drawing; using System.Collections; using System.CodeDom; using System.Globalization; using System.ComponentModel; using System.ComponentModel.Design; using System.Workflow.ComponentModel; using System.Workflow.ComponentModel.Design; using System.Workflow.ComponentModel.Compiler; using System.Collections.Generic; #endregion [ToolboxItem(false)] [Designer(typeof(FaultHandlersActivityDesigner), typeof(IDesigner))] [ToolboxBitmap(typeof(FaultHandlersActivity), "Resources.Exceptions.png")] [ActivityValidator(typeof(FaultHandlersActivityValidator))] [AlternateFlowActivity] [SRCategory(SR.Standard)] public sealed class FaultHandlersActivity : CompositeActivity, IActivityEventListener{ public FaultHandlersActivity() { } public FaultHandlersActivity(string name) : base(name) { } protected internal override void Initialize(IServiceProvider provider) { if (this.Parent == null) throw new InvalidOperationException(SR.GetString(SR.Error_MustHaveParent)); base.Initialize(provider); } protected internal override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext) { if (executionContext == null) throw new ArgumentNullException("executionContext"); Debug.Assert(this.Parent.GetValue(ActivityExecutionContext.CurrentExceptionProperty) != null, "No Exception contained by parent"); Exception excep = this.Parent.GetValue(ActivityExecutionContext.CurrentExceptionProperty) as Exception; if (excep != null) { Type exceptionType = excep.GetType(); foreach (FaultHandlerActivity exceptionHandler in this.EnabledActivities) { if (CanHandleException(exceptionHandler, exceptionType)) { // remove exception from here, I ate it this.Parent.RemoveProperty(ActivityExecutionContext.CurrentExceptionProperty); exceptionHandler.SetException(excep); exceptionHandler.RegisterForStatusChange(Activity.ClosedEvent, this); executionContext.ExecuteActivity(exceptionHandler); return ActivityExecutionStatus.Executing; } } } return ActivityExecutionStatus.Closed; } protected internal override ActivityExecutionStatus Cancel(ActivityExecutionContext executionContext) { if (executionContext == null) throw new ArgumentNullException("executionContext"); for (int i = 0; i < this.EnabledActivities.Count; ++i) { Activity childActivity = this.EnabledActivities[i]; if (childActivity.ExecutionStatus == ActivityExecutionStatus.Executing) executionContext.CancelActivity(childActivity); if (childActivity.ExecutionStatus == ActivityExecutionStatus.Canceling || childActivity.ExecutionStatus == ActivityExecutionStatus.Faulting) return this.ExecutionStatus; } return ActivityExecutionStatus.Closed; } #region IActivityEventListener Members void IActivityEventListener .OnEvent(object sender, ActivityExecutionStatusChangedEventArgs e) { if (sender == null) throw new ArgumentNullException("sender"); if (e == null) throw new ArgumentNullException("e"); ActivityExecutionContext context = sender as ActivityExecutionContext; if (context == null) throw new ArgumentException(SR.Error_SenderMustBeActivityExecutionContext, "sender"); e.Activity.UnregisterForStatusChange(Activity.ClosedEvent, this); context.CloseActivity(); } [NonSerialized] bool activeChildRemoved = false; protected internal override void OnActivityChangeRemove(ActivityExecutionContext executionContext, Activity removedActivity) { if (removedActivity == null) throw new ArgumentNullException("removedActivity"); if (executionContext == null) throw new ArgumentNullException("executionContext"); if (removedActivity.ExecutionStatus == ActivityExecutionStatus.Closed && this.ExecutionStatus != ActivityExecutionStatus.Closed) activeChildRemoved = true; base.OnActivityChangeRemove(executionContext, removedActivity); } protected internal override void OnWorkflowChangesCompleted(ActivityExecutionContext executionContext) { if (executionContext == null) throw new ArgumentNullException("executionContext"); if (activeChildRemoved) { executionContext.CloseActivity(); activeChildRemoved = false; } base.OnWorkflowChangesCompleted(executionContext); } protected override void OnClosed(IServiceProvider provider) { } #endregion private bool CanHandleException(FaultHandlerActivity exceptionHandler, Type et) { Type canHandleType = exceptionHandler.FaultType; return (et == canHandleType || et.IsSubclassOf(canHandleType)); } } internal sealed class FaultHandlersActivityValidator : CompositeActivityValidator { public override ValidationErrorCollection Validate(ValidationManager manager, object obj) { ValidationErrorCollection validationErrors = base.Validate(manager, obj); FaultHandlersActivity exceptionHandlers = obj as FaultHandlersActivity; if (exceptionHandlers == null) throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(FaultHandlersActivity).FullName), "obj"); Hashtable exceptionTypes = new Hashtable(); ArrayList previousExceptionTypes = new ArrayList(); bool bFoundNotFaultHandlerActivity = false; foreach (Activity activity in exceptionHandlers.EnabledActivities) { // All child activities must be FaultHandlerActivity if (!(activity is FaultHandlerActivity)) { if (!bFoundNotFaultHandlerActivity) { validationErrors.Add(new ValidationError(SR.GetString(SR.Error_FaultHandlersActivityDeclNotAllFaultHandlerActivityDecl), ErrorNumbers.Error_FaultHandlersActivityDeclNotAllFaultHandlerActivityDecl)); bFoundNotFaultHandlerActivity = true; } } else { FaultHandlerActivity exceptionHandler = (FaultHandlerActivity)activity; Type catchType = exceptionHandler.FaultType; if (catchType != null) { if (exceptionTypes[catchType] == null) { exceptionTypes[catchType] = 1; previousExceptionTypes.Add(catchType); } else if ((int)exceptionTypes[catchType] == 1) { /*if (catchType == typeof(System.Exception)) validationErrors.Add(new ValidationError(SR.GetString(SR.Error_ScopeDuplicateFaultHandlerActivityForAll, exceptionHandlers.EnclosingDataContextActivity.GetType().Name), ErrorNumbers.Error_ScopeDuplicateFaultHandlerActivityForAll)); else*/ validationErrors.Add(new ValidationError(string.Format(CultureInfo.CurrentCulture, SR.GetString(SR.Error_ScopeDuplicateFaultHandlerActivityFor), new object[] { Helpers.GetEnclosingActivity(exceptionHandlers).GetType().Name, catchType.FullName }), ErrorNumbers.Error_ScopeDuplicateFaultHandlerActivityFor)); exceptionTypes[catchType] = 2; } foreach (Type previousType in previousExceptionTypes) { if (previousType != catchType && previousType.IsAssignableFrom(catchType)) validationErrors.Add(new ValidationError(SR.GetString(SR.Error_FaultHandlerActivityWrongOrder, catchType.Name, previousType.Name), ErrorNumbers.Error_FaultHandlerActivityWrongOrder)); } } } } // fault handlers can not contain fault handlers, compensation handler and cancellation handler if (((ISupportAlternateFlow)exceptionHandlers).AlternateFlowActivities.Count > 0) validationErrors.Add(new ValidationError(SR.GetString(SR.Error_ModelingConstructsCanNotContainModelingConstructs), ErrorNumbers.Error_ModelingConstructsCanNotContainModelingConstructs)); return validationErrors; } } } // 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
- XmlSchemaAttribute.cs
- ControlPaint.cs
- HiddenFieldPageStatePersister.cs
- NullableFloatSumAggregationOperator.cs
- TextEditorDragDrop.cs
- ReadOnlyDataSourceView.cs
- ConfigurationPropertyAttribute.cs
- HtmlInputText.cs
- ReferentialConstraint.cs
- ToolStripControlHost.cs
- UnsafeNativeMethods.cs
- ClientData.cs
- ConfigXmlComment.cs
- ILGenerator.cs
- MatrixCamera.cs
- MethodImplAttribute.cs
- StoreUtilities.cs
- AccessKeyManager.cs
- FlowLayoutPanel.cs
- EventLogTraceListener.cs
- SapiGrammar.cs
- DataListComponentEditor.cs
- VirtualDirectoryMappingCollection.cs
- QilTypeChecker.cs
- ListMarkerSourceInfo.cs
- AnimationStorage.cs
- FrameworkContextData.cs
- DetailsViewCommandEventArgs.cs
- PointCollection.cs
- EventManager.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- CriticalExceptions.cs
- DbQueryCommandTree.cs
- ListMarkerLine.cs
- IMembershipProvider.cs
- VersionUtil.cs
- AssociationProvider.cs
- AspCompat.cs
- PipeStream.cs
- DiscoveryViaBehavior.cs
- Table.cs
- LogArchiveSnapshot.cs
- ToolStripGrip.cs
- ConfigurationManagerInternalFactory.cs
- MyContact.cs
- GroupByQueryOperator.cs
- HttpModulesSection.cs
- TableLayoutPanel.cs
- ReflectPropertyDescriptor.cs
- UserControlBuildProvider.cs
- EncoderParameter.cs
- CodeGeneratorAttribute.cs
- PickBranch.cs
- WebPartEditVerb.cs
- BamlCollectionHolder.cs
- PackWebResponse.cs
- QueryOperationResponseOfT.cs
- XPathException.cs
- LocalizationParserHooks.cs
- XPathMessageFilterElementCollection.cs
- ListViewHitTestInfo.cs
- ContainerTracking.cs
- MimeTypeAttribute.cs
- StrokeNode.cs
- DataGridViewImageColumn.cs
- KnowledgeBase.cs
- OneWayChannelFactory.cs
- FreeFormDesigner.cs
- CodeTryCatchFinallyStatement.cs
- XslAstAnalyzer.cs
- DecimalStorage.cs
- ListControl.cs
- ConfigPathUtility.cs
- StreamReader.cs
- MarkupWriter.cs
- Pair.cs
- PackWebRequestFactory.cs
- TouchFrameEventArgs.cs
- ThicknessAnimationBase.cs
- OrderByBuilder.cs
- DefaultBinder.cs
- DelegateBodyWriter.cs
- ObsoleteAttribute.cs
- ResXDataNode.cs
- OrderByQueryOptionExpression.cs
- Int32Storage.cs
- TreeWalker.cs
- BamlBinaryReader.cs
- FileLevelControlBuilderAttribute.cs
- OleDbConnectionFactory.cs
- BoolExpression.cs
- WeakRefEnumerator.cs
- IdentitySection.cs
- StdRegProviderWrapper.cs
- NativeMethods.cs
- AttributeProviderAttribute.cs
- MDIClient.cs
- DataGridTextBox.cs
- ToolboxItemAttribute.cs
- _LocalDataStore.cs