Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / Xaml / DesignTimeXamlWriter.cs / 1305376 / DesignTimeXamlWriter.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.Activities.Presentation.Xaml { using System.Collections.Generic; using System.Globalization; using System.IO; using System.Xaml; using System.Xml; class DesignTimeXamlWriter : XamlXmlWriter { //namespaces to ignore (don't load assembilies for) at root node HashSetnamespacesToIgnore; //namespaces we've seen at root level, we use this to figure out appropriate alias for MC namespace HashSet rootLevelNamespaces; // for duplicate namespace filtering (happens if we're using the local assembly to compile itself) HashSet emittedNamespacesInLocalAssembly; //For namespace defined in local assembly with assembly info in namespace declaration, we'll strip out the assembly info //and hold the namespace temporarily. Before writing the start object, we'll check whether the short version gets written //as a separate declaration, if not, we write it out. List localNamespacesWithAssemblyInfo; bool hasWrittenObject; WorkflowDesignerXamlSchemaContext schemaContext; public DesignTimeXamlWriter(TextWriter textWriter, WorkflowDesignerXamlSchemaContext context) : base(XmlWriter.Create(textWriter, new XmlWriterSettings { Indent = true, OmitXmlDeclaration = true }), context, // Setting AssumeValidInput to true allows to save a document even if it has duplicate members new XamlXmlWriterSettings { AssumeValidInput = true }) { this.namespacesToIgnore = new HashSet (); this.rootLevelNamespaces = new HashSet (); this.schemaContext = context; } public override void WriteNamespace(NamespaceDeclaration namespaceDeclaration) { if (!this.hasWrittenObject) { //we need to track every namespace alias appeared in root element to figure out right alias for MC namespace this.rootLevelNamespaces.Add(namespaceDeclaration.Prefix); //Remember namespaces needed to be ignored at top level so we will add ignore attribute for them when we write start object if (NameSpaces.ShouldIgnore(namespaceDeclaration.Namespace)) { this.namespacesToIgnore.Add(namespaceDeclaration.Prefix); } } EmitNamespace(namespaceDeclaration); } void EmitNamespace(NamespaceDeclaration namespaceDeclaration) { // Write the namespace, filtering for duplicates in the local assembly because VS might be using it to compile itself. if (schemaContext.IsClrNamespaceWithNoAssembly(namespaceDeclaration.Namespace)) { // Might still need to trim a semicolon, even though it shouldn't strictly be there. string nonassemblyQualifedNamespace = namespaceDeclaration.Namespace; if (nonassemblyQualifedNamespace[nonassemblyQualifedNamespace.Length - 1] == ';') { nonassemblyQualifedNamespace = nonassemblyQualifedNamespace.Substring(0, nonassemblyQualifedNamespace.Length - 1); namespaceDeclaration = new NamespaceDeclaration(nonassemblyQualifedNamespace, namespaceDeclaration.Prefix); } EmitLocalNamespace(namespaceDeclaration); } else if (schemaContext.IsClrNamespaceInLocalAssembly(namespaceDeclaration.Namespace)) { string nonassemblyQualifedNamespace = schemaContext.TrimLocalAssembly(namespaceDeclaration.Namespace); namespaceDeclaration = new NamespaceDeclaration(nonassemblyQualifedNamespace, namespaceDeclaration.Prefix); if (this.localNamespacesWithAssemblyInfo == null) { this.localNamespacesWithAssemblyInfo = new List (); } this.localNamespacesWithAssemblyInfo.Add(namespaceDeclaration); } else { base.WriteNamespace(namespaceDeclaration); } } void EmitLocalNamespace(NamespaceDeclaration namespaceDeclaration) { if (this.emittedNamespacesInLocalAssembly == null) // lazy initialization { this.emittedNamespacesInLocalAssembly = new HashSet (); } // Write the namespace only once. Add() returns false if it was already there. if (this.emittedNamespacesInLocalAssembly.Add(namespaceDeclaration.Namespace)) { base.WriteNamespace(namespaceDeclaration); } } public override void WriteStartObject(XamlType type) { // this is the top-level object if (!this.hasWrittenObject) { // we need to write MC namespace if any namespaces need to be ignored if (this.namespacesToIgnore.Count > 0) { string mcNamespaceAlias = GenerateNamespaceAlias(NameSpaces.McPrefix); this.WriteNamespace(new NamespaceDeclaration(NameSpaces.Mc, mcNamespaceAlias)); } if (this.localNamespacesWithAssemblyInfo != null) { foreach (NamespaceDeclaration xamlNamespace in this.localNamespacesWithAssemblyInfo) { if ((this.emittedNamespacesInLocalAssembly == null) || (!this.emittedNamespacesInLocalAssembly.Contains(xamlNamespace.Namespace))) { base.WriteNamespace(xamlNamespace); } } } } base.WriteStartObject(type); if (!this.hasWrittenObject) { // we need to add Ignore attribute for all namespaces which we don't want to load assemblies for // this has to be done after WriteStartObject if (this.namespacesToIgnore.Count > 0) { foreach (string ns in this.namespacesToIgnore) { XamlDirective ignorable = new XamlDirective(NameSpaces.Mc, "Ignorable"); base.WriteStartMember(ignorable); base.WriteValue(ns); base.WriteEndMember(); } this.namespacesToIgnore.Clear(); } this.hasWrittenObject = true; } } string GenerateNamespaceAlias(string prefix) { string aliasPostfix = string.Empty; //try "mc"~"mc1000" first for (int i = 1; i <= 1000; i++) { string mcAlias = prefix + aliasPostfix; if (!this.rootLevelNamespaces.Contains(mcAlias)) { return mcAlias; } aliasPostfix = i.ToString(CultureInfo.InvariantCulture); } //roll the dice return prefix + Guid.NewGuid().ToString(); } } } // 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
- EntityRecordInfo.cs
- BrowserDefinition.cs
- ConfigXmlDocument.cs
- DispatcherObject.cs
- SecurityRuntime.cs
- Cursor.cs
- RightsManagementEncryptionTransform.cs
- IndentedWriter.cs
- Closure.cs
- IIS7ConfigurationLoader.cs
- PersonalizableTypeEntry.cs
- TextRangeEditLists.cs
- OperationContractGenerationContext.cs
- Subtree.cs
- FixedFindEngine.cs
- EventMappingSettingsCollection.cs
- ThicknessAnimationBase.cs
- MessageEnumerator.cs
- PeerUnsafeNativeCryptMethods.cs
- SoapReflectionImporter.cs
- TextOutput.cs
- ActivityDesigner.cs
- Restrictions.cs
- GridSplitter.cs
- CryptoApi.cs
- Color.cs
- TypeUtils.cs
- Part.cs
- ListViewDataItem.cs
- Figure.cs
- MimeObjectFactory.cs
- XmlQualifiedName.cs
- X509ChainElement.cs
- LinearQuaternionKeyFrame.cs
- RewritingPass.cs
- ViewRendering.cs
- EmptyEnumerator.cs
- Vector3DAnimationBase.cs
- ApplicationBuildProvider.cs
- ContextBase.cs
- XmlSchemaComplexContent.cs
- MenuBindingsEditorForm.cs
- CompositeScriptReference.cs
- Binding.cs
- TextTreeTextBlock.cs
- DataSet.cs
- WebControlsSection.cs
- DocumentApplication.cs
- CodeNamespaceImport.cs
- WebHttpBindingElement.cs
- ScriptMethodAttribute.cs
- TabControl.cs
- LicenseContext.cs
- PathSegment.cs
- SpotLight.cs
- EntityContainerRelationshipSet.cs
- PageParser.cs
- ActivityTypeCodeDomSerializer.cs
- CanonicalizationDriver.cs
- SerializerWriterEventHandlers.cs
- ZipIOCentralDirectoryBlock.cs
- IntegerValidator.cs
- AttachedPropertyBrowsableAttribute.cs
- RequestCachingSection.cs
- DirtyTextRange.cs
- StickyNoteContentControl.cs
- DataException.cs
- PriorityBinding.cs
- HashHelper.cs
- ValueOfAction.cs
- InkCollectionBehavior.cs
- ChannelTraceRecord.cs
- XmlNodeList.cs
- CodeCatchClause.cs
- AuthenticationModulesSection.cs
- ConfigurationLocation.cs
- BitmapDecoder.cs
- DynamicResourceExtension.cs
- GridViewSortEventArgs.cs
- Transform3D.cs
- DbConnectionPoolGroupProviderInfo.cs
- DataGridViewBand.cs
- Attribute.cs
- ScriptControl.cs
- GetPageCompletedEventArgs.cs
- Column.cs
- RotateTransform.cs
- PropertyMappingExceptionEventArgs.cs
- FilteredDataSetHelper.cs
- DataKeyCollection.cs
- TimeSpanOrInfiniteConverter.cs
- ScrollEventArgs.cs
- CodeNamespace.cs
- assertwrapper.cs
- FormViewModeEventArgs.cs
- XmlILStorageConverter.cs
- ObjectDataSource.cs
- QilValidationVisitor.cs
- WebPartZoneBase.cs
- HostedHttpContext.cs