Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / ExclusiveHandle.cs / 1305376 / ExclusiveHandle.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities { using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Runtime.Serialization; using System.Activities.Runtime; using System.Runtime; using System.Diagnostics.CodeAnalysis; [DataContract] public class ExclusiveHandle : Handle { ReadOnlyCollectionreadOnlyBookmarkScopeCollection; [DataMember(EmitDefaultValue = false)] List bookmarkScopes; [DataMember] ActivityInstance owningInstance; [DataMember(EmitDefaultValue = false)] ActivityExecutor executor; [DataMember(EmitDefaultValue = false)] ExclusiveHandleBookmarkList importantBookmarks; [DataMember(EmitDefaultValue = false)] ExclusiveHandleBookmarkList unimportantBookmarks; [DataMember(EmitDefaultValue = false)] bool bookmarkScopesListIsDefault; public ExclusiveHandle() { this.CanBeRemovedWithExecutingChildren = true; } public ReadOnlyCollection RegisteredBookmarkScopes { get { if (this.bookmarkScopes == null) { return new ReadOnlyCollection (new List ()); } if (this.readOnlyBookmarkScopeCollection == null) { this.readOnlyBookmarkScopeCollection = new ReadOnlyCollection (this.bookmarkScopes); } return this.readOnlyBookmarkScopeCollection; } } [SuppressMessage(FxCop.Category.Design, FxCop.Rule.ConsiderPassingBaseTypesAsParameters, Justification = "We are restricting the activities that can call this API.")] public void RegisterBookmarkScope(NativeActivityContext context, BookmarkScopeHandle bookmarkScopeHandle) { if (context == null) { throw FxTrace.Exception.ArgumentNull("context"); } context.ThrowIfDisposed(); if (bookmarkScopeHandle == null) { throw FxTrace.Exception.ArgumentNull("bookmarkScopeHandle"); } if ( (this.ImportantBookmarks != null && this.ImportantBookmarks.Count != 0) || (this.UnimportantBookmarks != null && this.UnimportantBookmarks.Count != 0)) { throw FxTrace.Exception.AsError(new InvalidOperationException(SR.ExclusiveHandleRegisterBookmarkScopeFailed)); } if (this.bookmarkScopesListIsDefault) { this.bookmarkScopesListIsDefault = false; this.bookmarkScopes.Clear(); } this.bookmarkScopes.Add(bookmarkScopeHandle); this.readOnlyBookmarkScopeCollection = null; } [SuppressMessage(FxCop.Category.Design, FxCop.Rule.ConsiderPassingBaseTypesAsParameters, Justification = "We are restricting the activities that can call this API.")] public void Reinitialize(NativeActivityContext context) { if (context == null) { throw FxTrace.Exception.ArgumentNull("context"); } context.ThrowIfDisposed(); if ((this.ImportantBookmarks != null && this.ImportantBookmarks.Count != 0) || (this.UnimportantBookmarks != null && this.UnimportantBookmarks.Count != 0)) { throw FxTrace.Exception.AsError(new InvalidOperationException(SR.ExclusiveHandleReinitializeFailed)); } this.bookmarkScopes.Clear(); this.readOnlyBookmarkScopeCollection = null; this.PerformDefaultRegistration(); } protected override void OnInitialize(HandleInitializationContext context) { this.owningInstance = context.OwningActivityInstance; this.executor = context.Executor; PerformDefaultRegistration(); } internal ExclusiveHandleBookmarkList ImportantBookmarks { get { return this.importantBookmarks; } set { this.importantBookmarks = value; } } internal ExclusiveHandleBookmarkList UnimportantBookmarks { get { return this.unimportantBookmarks; } set { this.unimportantBookmarks = value; } } internal void AddToImportantBookmarks(Bookmark bookmark) { if (this.ImportantBookmarks == null) { this.ImportantBookmarks = new ExclusiveHandleBookmarkList(); } Fx.Assert(!this.ImportantBookmarks.Contains(bookmark), "We shouldnt be here. We attempted to add the same bookmark"); this.ImportantBookmarks.Add(bookmark); if (bookmark.ExclusiveHandles == null) { bookmark.ExclusiveHandles = new ExclusiveHandleList(); } Fx.Assert(!bookmark.ExclusiveHandles.Contains(this), "We shouldnt be here. We attempted to add the bookmark to this exclusive handle already"); bookmark.ExclusiveHandles.Add(this); } internal void AddToUnimportantBookmarks(Bookmark bookmark) { if (this.UnimportantBookmarks == null) { this.UnimportantBookmarks = new ExclusiveHandleBookmarkList(); } Fx.Assert(!this.UnimportantBookmarks.Contains(bookmark), "We shouldnt be here. We attempted to add the same bookmark"); this.UnimportantBookmarks.Add(bookmark); if (bookmark.ExclusiveHandles == null) { bookmark.ExclusiveHandles = new ExclusiveHandleList(); } Fx.Assert(!bookmark.ExclusiveHandles.Contains(this), "We shouldnt be here. We attempted to add the bookmark to this exclusive handle already"); bookmark.ExclusiveHandles.Add(this); } internal void RemoveBookmark(Bookmark bookmark) { Fx.Assert((this.ImportantBookmarks != null && this.ImportantBookmarks.Contains(bookmark)) || (this.UnimportantBookmarks != null && this.UnimportantBookmarks.Contains(bookmark)),"Internal error"); if (this.ImportantBookmarks != null) { if (this.ImportantBookmarks.Contains(bookmark)) { this.ImportantBookmarks.Remove(bookmark); return; } } if (this.UnimportantBookmarks != null) { if (this.UnimportantBookmarks.Contains(bookmark)) { this.UnimportantBookmarks.Remove(bookmark); } } } void PerformDefaultRegistration() { if (this.bookmarkScopes == null) { this.bookmarkScopes = new List (); } //First register the default subinstance this.bookmarkScopes.Add(BookmarkScopeHandle.Default); // Note that we are starting the LocationEnvironment traversal from the current environment's Parent. We don't // want to include any BookmarkScopeHandles that are at the same scope level as the ExclusiveHandle. The ExclusiveHandle // should only be dependent on BookmarkScopeHandles that are higher in the scope tree. LocationEnvironment current = this.owningInstance.Environment; if (current != null) { for (current = current.Parent; current != null; current = current.Parent) { //don't bother continuing if at this level there are no handles if (!current.HasHandles) { continue; } // Look at the contained handles for the environment. List handles = current.Handles; if (handles != null) { int count = handles.Count; for (int i = 0; i < count; i++) { BookmarkScopeHandle scopeHandle = handles[i] as BookmarkScopeHandle; if (scopeHandle != null) { this.bookmarkScopes.Add(scopeHandle); } } } } } // Also need to look in the Executor for handles that may have been created without an environment. List executorHandles = this.executor.Handles; if (executorHandles != null) { int count = executorHandles.Count; for (int i = 0; i < count; i++) { BookmarkScopeHandle scopeHandle = executorHandles[i] as BookmarkScopeHandle; if (scopeHandle != null) { this.bookmarkScopes.Add(scopeHandle); } } } this.bookmarkScopesListIsDefault = true; } // Exclusive handle needs to track bookmarks such that it can tell the difference between two bookmarks in // different bookmark scopes with the same name. Since we always deal in terms of the internal bookmark // reference that we have, we can do an object.ReferenceEquals comparison to determine distinct bookmarks // without having to add some sort of "containing scope" property to Bookmark. [DataContract] internal class ExclusiveHandleBookmarkList { [DataMember] List bookmarks; public ExclusiveHandleBookmarkList() : base() { this.bookmarks = new List (); } public int Count { get { return this.bookmarks.Count; } } public void Add(Bookmark bookmark) { Fx.Assert(bookmark != null, "A valid bookmark is expected."); this.bookmarks.Add(bookmark); } public void Remove(Bookmark bookmark) { Fx.Assert(bookmark != null, "A valid bookmark is expected."); for (int i = 0; i < this.bookmarks.Count; i++) { if (object.ReferenceEquals(this.bookmarks[i], bookmark)) { this.bookmarks.RemoveAt(i); return; } } } public bool Contains(Bookmark bookmark) { Fx.Assert(bookmark != null, "A valid bookmark is expected."); for (int i = 0; i < this.bookmarks.Count; i++) { if (object.ReferenceEquals(this.bookmarks[i], bookmark)) { return true; } } return false; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ScaleTransform3D.cs
- SchemaElementDecl.cs
- ToolStripGrip.cs
- ServiceDescription.cs
- UTF32Encoding.cs
- HwndHost.cs
- AssemblyCache.cs
- XmlExpressionDumper.cs
- ExpressionBuilder.cs
- CombinedGeometry.cs
- CounterSetInstance.cs
- WebResponse.cs
- WindowsContainer.cs
- ServiceModelSectionGroup.cs
- DesigntimeLicenseContext.cs
- WindowsToolbar.cs
- SqlTypeConverter.cs
- LayoutUtils.cs
- SecurityCriticalDataForSet.cs
- XmlSchemaType.cs
- _NetworkingPerfCounters.cs
- ListViewInsertEventArgs.cs
- EdmMember.cs
- UidPropertyAttribute.cs
- SecUtil.cs
- TrustManager.cs
- PropertyEntry.cs
- TraceSection.cs
- AsyncPostBackTrigger.cs
- XMLUtil.cs
- InstanceKeyCollisionException.cs
- InitializerFacet.cs
- PropertyValueEditor.cs
- ProviderUtil.cs
- XmlQueryCardinality.cs
- RectConverter.cs
- RequestCacheManager.cs
- DataControlLinkButton.cs
- PackageProperties.cs
- SqlExpressionNullability.cs
- LookupNode.cs
- NetworkInterface.cs
- EventSchemaTraceListener.cs
- FontEditor.cs
- MatrixAnimationUsingPath.cs
- DataSourceView.cs
- ClosureBinding.cs
- MarkupExtensionReturnTypeAttribute.cs
- ContentElementAutomationPeer.cs
- MDIControlStrip.cs
- ExpressionBuilder.cs
- HMACSHA1.cs
- ChannelServices.cs
- IdentityHolder.cs
- Signature.cs
- ServiceDebugElement.cs
- Base64Decoder.cs
- PropertyEmitterBase.cs
- ComplexType.cs
- DbExpressionRules.cs
- CellCreator.cs
- HtmlEncodedRawTextWriter.cs
- RayHitTestParameters.cs
- InvokePatternIdentifiers.cs
- UnionExpr.cs
- ProgressBar.cs
- CustomAttribute.cs
- WindowsStatusBar.cs
- DesignerDataParameter.cs
- LingerOption.cs
- ProcessStartInfo.cs
- Logging.cs
- RuleCache.cs
- ExtensionFile.cs
- KeySpline.cs
- MethodBody.cs
- VariantWrapper.cs
- SamlEvidence.cs
- HtmlButton.cs
- SafeMarshalContext.cs
- WebPartMinimizeVerb.cs
- SamlAuthenticationStatement.cs
- QuaternionRotation3D.cs
- WebPartCancelEventArgs.cs
- HierarchicalDataSourceIDConverter.cs
- DocumentViewer.cs
- XmlKeywords.cs
- MouseBinding.cs
- TransactionException.cs
- MailBnfHelper.cs
- DrawingContextWalker.cs
- ObjectSpanRewriter.cs
- RegexMatchCollection.cs
- ByteStack.cs
- InputMethodStateChangeEventArgs.cs
- dbenumerator.cs
- SHA384.cs
- IdleTimeoutMonitor.cs
- RelationshipEndMember.cs
- NameTable.cs