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
- ExpressionEditorAttribute.cs
- SqlDelegatedTransaction.cs
- CodeDirectoryCompiler.cs
- _CommandStream.cs
- UnicodeEncoding.cs
- RelatedImageListAttribute.cs
- PopupEventArgs.cs
- DataServiceQueryProvider.cs
- SHA256.cs
- ProgramPublisher.cs
- CapiSymmetricAlgorithm.cs
- Cursor.cs
- KeyNotFoundException.cs
- SizeConverter.cs
- TypeSchema.cs
- SharedConnectionInfo.cs
- MetaModel.cs
- PagerSettings.cs
- AssemblyName.cs
- WorkflowRuntimeServiceElement.cs
- ColorAnimation.cs
- XmlDataFileEditor.cs
- TransformedBitmap.cs
- GridViewSortEventArgs.cs
- PackagingUtilities.cs
- SearchForVirtualItemEventArgs.cs
- MetadataArtifactLoaderCompositeFile.cs
- EpmSourcePathSegment.cs
- NotifyIcon.cs
- TreeViewHitTestInfo.cs
- DataBindingExpressionBuilder.cs
- Quaternion.cs
- AssemblyCacheEntry.cs
- EndpointDiscoveryBehavior.cs
- ConsumerConnectionPoint.cs
- TypeReference.cs
- InternalMappingException.cs
- DefaultMemberAttribute.cs
- TextElementEditingBehaviorAttribute.cs
- PassportAuthentication.cs
- TimeSpanConverter.cs
- IxmlLineInfo.cs
- PrintDocument.cs
- PathGradientBrush.cs
- Rect.cs
- LeaseManager.cs
- _HelperAsyncResults.cs
- DataGridViewCheckBoxCell.cs
- BitmapImage.cs
- BindingOperations.cs
- TypeContext.cs
- ClassHandlersStore.cs
- EditingCoordinator.cs
- ApplicationHost.cs
- TableRow.cs
- BinaryParser.cs
- Point3DCollectionValueSerializer.cs
- FileAuthorizationModule.cs
- StringFunctions.cs
- TdsRecordBufferSetter.cs
- FunctionImportElement.cs
- CacheAxisQuery.cs
- PerfService.cs
- XmlImplementation.cs
- DateTimeSerializationSection.cs
- DockAndAnchorLayout.cs
- RedBlackList.cs
- InputBuffer.cs
- Helper.cs
- XMLDiffLoader.cs
- OracleBinary.cs
- EventRoute.cs
- Adorner.cs
- CapabilitiesSection.cs
- SynchronizedInputHelper.cs
- SecurityUniqueId.cs
- ParallelTimeline.cs
- RenderDataDrawingContext.cs
- DoubleAnimationClockResource.cs
- mda.cs
- Size.cs
- WinInet.cs
- WmlObjectListAdapter.cs
- OdbcPermission.cs
- UmAlQuraCalendar.cs
- EncodingInfo.cs
- TemplateField.cs
- BamlStream.cs
- webclient.cs
- VerificationException.cs
- DocumentSchemaValidator.cs
- ParallelTimeline.cs
- QueryStringConverter.cs
- SecureEnvironment.cs
- Logging.cs
- Console.cs
- MasterPageParser.cs
- ContextBase.cs
- WinFormsSpinner.cs
- DataGridViewImageColumn.cs