Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Markup / XmlnsCache.cs / 1 / XmlnsCache.cs
//---------------------------------------------------------------------------- // // File: XmlnsCache.cs // // Description: // Handles local caching operations on the XmlnsCache file used for parsing // // // History: // 5/10/05: [....] Created // // Copyright (C) 2005 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Reflection; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Text; using MS.Internal; using MS.Utility; using Microsoft.Win32; using System.Globalization; #if PBTCOMPILER using MS.Internal.PresentationBuildTasks; #else using MS.Win32.Compile; using MS.Internal.PresentationFramework; using MS.Internal.Utility; // AssemblyCacheEnum #endif // Since we disable PreSharp warnings in this file, we first need to disable warnings about unknown message numbers and unknown pragmas. #pragma warning disable 1634, 1691 #if PBTCOMPILER namespace MS.Internal.Markup #else namespace System.Windows.Markup #endif { internal class XmlnsCache { #if PBTCOMPILER static XmlnsCache() { // if the value of any assembly key entry in _assemblyHasCacheInfo is // false - don't look for xmlnsdefinitionAttribute in that assembly. // if it is true or there is no entry then we need to reflect for this // custom attribute. _assemblyHasCacheInfo["WINDOWSBASE"] = true; _assemblyHasCacheInfo["SYSTEM"] = false; _assemblyHasCacheInfo["SYSTEM.DATA"] = false; _assemblyHasCacheInfo["SYSTEM.XML"] = false; _assemblyHasCacheInfo["UIAUTOMATIONPROVIDER"] = false; _assemblyHasCacheInfo["UIAUTOMATIONTYPES"] = false; _assemblyHasCacheInfo["PRESENTATIONCORE"] = true; _assemblyHasCacheInfo["PRESENTATIONFRAMEWORK"] = true; } // Create a new instance of the namespace / assembly cache. // Use only the assemblies that are contained in the passed table, // where keys are assembly names, and values are paths. internal XmlnsCache(HybridDictionary assemblyPathTable) { InitializeWithReferencedAssemblies(assemblyPathTable); } private void InitializeWithReferencedAssemblies(HybridDictionary assemblyPathTable) { _compatTable = new StringDictionary(); _compatTableReverse = new StringDictionary(); _cacheTable = new HybridDictionary(); _assemblyPathTable = assemblyPathTable; AddReferencedAssemblies(); } // Table where key is assembly name and value is the file path where it should be found private HybridDictionary _assemblyPathTable = null; // Table where key is assembly name and value indicates if assembly contains any XmlnsDefinitionAttributes private static Hashtable _assemblyHasCacheInfo = new Hashtable(8); // Reflect on any assemblies that can be found in the passed table and look for // XmlnsDefinitionAttributes. Add these to the cache table. private void AddReferencedAssemblies() { if (_assemblyPathTable == null || _assemblyPathTable.Count == 0) { return; } ListinterestingAssemblies = new List (); // Load all the assemblies into a list. foreach(string assemblyName in _assemblyPathTable.Keys) { bool hasCacheInfo = true; Assembly assy; if (_assemblyHasCacheInfo[assemblyName] != null) { hasCacheInfo = (bool)_assemblyHasCacheInfo[assemblyName]; } if (!hasCacheInfo) { continue; } assy = ReflectionHelper.GetAlreadyReflectionOnlyLoadedAssembly(assemblyName); if (assy == null) { string assemblyFullPath = _assemblyPathTable[assemblyName] as string; // // The assembly path set from Compiler must be a full file path, which includes // directory, file name and extension. // Don't need to try different file extensions here. // if (!String.IsNullOrEmpty(assemblyFullPath) && File.Exists(assemblyFullPath)) { assy = ReflectionHelper.LoadAssembly(assemblyName, assemblyFullPath); } } if (assy != null) { interestingAssemblies.Add(assy); } } Assembly[] asmList = interestingAssemblies.ToArray(); LoadClrnsToAssemblyNameMappingCache(asmList); ProcessXmlnsCompatibleWithAttributes(asmList); } #else internal XmlnsCache() { _compatTable = new StringDictionary(); _compatTableReverse = new StringDictionary(); _cacheTable = new HybridDictionary(); _uriToAssemblyNameTable = new HybridDictionary(); } #endif #if PBTCOMPILER // In the COmpiler everything is taken care of up front (all the // assemblies are listed in the PROJ file). So the cache will be // fully populated and ready. internal List GetMappingArray(string xmlns) { return _cacheTable[xmlns] as List ; } #else // At runtime the cache is lazily populated as XmlNs URI's are // encounted in the BAML. If the cache line is loaded return what // you find, other wise go load the cache. internal List GetMappingArray(string xmlns) { List clrNsMapping =null; lock(this) { clrNsMapping = _cacheTable[xmlns] as List ; if (clrNsMapping == null) { if (_uriToAssemblyNameTable[xmlns] != null) { // // if the xmlns maps to a list of assembly names which are saved in the baml records, // try to get the mapping from those assemblies. // string[] asmNameList = _uriToAssemblyNameTable[xmlns] as string[]; Assembly[] asmList = new Assembly[asmNameList.Length]; for (int i = 0; i < asmNameList.Length; i++) { asmList[i] = ReflectionHelper.LoadAssembly(asmNameList[i], null); } _cacheTable[xmlns] = GetClrnsToAssemblyNameMappingList(asmList, xmlns); } else { // // The xmlns uri doesn't map to a list of assemblies, this might be for // regular xaml loading. // // Get the xmlns - clrns mapping from the currently loaded assemblies. // Assembly[] asmList = AppDomain.CurrentDomain.GetAssemblies(); _cacheTable[xmlns] = GetClrnsToAssemblyNameMappingList(asmList, xmlns); ProcessXmlnsCompatibleWithAttributes(asmList); } clrNsMapping = _cacheTable[xmlns] as List ; } } return clrNsMapping; } internal void SetUriToAssemblyNameMapping(string namespaceUri, string [] asmNameList) { _uriToAssemblyNameTable[namespaceUri] = asmNameList; } #endif // Return the new compatible namespace, given an old namespace internal string GetNewXmlnamespace(string oldXmlnamespace) { return _compatTable[oldXmlnamespace]; } #if PBTCOMPILER private CustomAttributeData[] GetAttributes(Assembly asm, string fullClrName) { IList allAttributes = CustomAttributeData.GetCustomAttributes(asm); List foundAttributes = new List (); for(int i=0; i constructorArguments = data.ConstructorArguments; for (int i = 0; i constructorArguments = data.ConstructorArguments; for (int i=0; i pairList; // For each assembly, enmerate all the XmlnsDefinition attributes. for(int asmIdx=0; asmIdx (); } pairList = _cacheTable[xmlns] as List ; pairList.Add(new ClrNamespaceAssemblyPair(clrns, assemblyName)); } } } #else // Get a list of (clrNs, asmName) pairs for a given XmlNs from a // given list of Assemblies. This returns a list that the caller // Will add to the _cacheTable. At runtime the needed assemblies // appear with various XmlNs namespaces one at a time as we read the BAML private List GetClrnsToAssemblyNameMappingList( Assembly[] asmList, string xmlnsRequested ) { List pairList = new List (); // For each assembly, enmerate all the XmlnsDefinition attributes. for(int asmIdx=0; asmIdx
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DeobfuscatingStream.cs
- DesignTimeTemplateParser.cs
- MsmqIntegrationProcessProtocolHandler.cs
- WebBrowser.cs
- Matrix3D.cs
- SoapClientMessage.cs
- oledbmetadatacollectionnames.cs
- RelationshipSet.cs
- odbcmetadatafactory.cs
- WebBaseEventKeyComparer.cs
- PictureBox.cs
- Duration.cs
- EntityCommand.cs
- GrammarBuilderRuleRef.cs
- arabicshape.cs
- ProcessModelSection.cs
- xmlsaver.cs
- contentDescriptor.cs
- CmsInterop.cs
- IconConverter.cs
- KeyValueConfigurationCollection.cs
- ReadWriteControlDesigner.cs
- PresentationAppDomainManager.cs
- DataRow.cs
- StringSource.cs
- BCLDebug.cs
- DockProviderWrapper.cs
- SaveFileDialog.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- LogPolicy.cs
- ScrollProperties.cs
- DetailsViewDeleteEventArgs.cs
- WaveHeader.cs
- AsynchronousChannel.cs
- RadioButtonPopupAdapter.cs
- InfiniteIntConverter.cs
- AnnotationResourceChangedEventArgs.cs
- GPPOINT.cs
- SqlFormatter.cs
- SettingsSection.cs
- PenCursorManager.cs
- Environment.cs
- thaishape.cs
- LoginUtil.cs
- SqlTypesSchemaImporter.cs
- SectionInformation.cs
- OrthographicCamera.cs
- DataGridViewMethods.cs
- SoapSchemaMember.cs
- ExceptionNotification.cs
- XmlDomTextWriter.cs
- ExportOptions.cs
- VirtualizedItemPattern.cs
- DataKey.cs
- ObjectPersistData.cs
- Cursor.cs
- XmlUrlResolver.cs
- DetailsViewDeletedEventArgs.cs
- ResourceContainer.cs
- TypeGeneratedEventArgs.cs
- ConstNode.cs
- WebPartDisplayModeEventArgs.cs
- TransformerInfoCollection.cs
- XPathChildIterator.cs
- DataGridViewTopLeftHeaderCell.cs
- HtmlElementEventArgs.cs
- TimeoutValidationAttribute.cs
- AlternationConverter.cs
- XamlTypeMapper.cs
- BatchWriter.cs
- EntityDataSourceChangedEventArgs.cs
- WSHttpBindingCollectionElement.cs
- HMACMD5.cs
- Point4DConverter.cs
- WsatTransactionHeader.cs
- RuntimeCompatibilityAttribute.cs
- TraceSource.cs
- Point3DCollectionValueSerializer.cs
- SchemaType.cs
- XmlValidatingReader.cs
- TextDecorations.cs
- XamlStackWriter.cs
- DateTimeParse.cs
- PropertyEmitterBase.cs
- TreeBuilder.cs
- DataRowChangeEvent.cs
- ClosureBinding.cs
- CommittableTransaction.cs
- WebReferencesBuildProvider.cs
- ContentControl.cs
- HttpBrowserCapabilitiesWrapper.cs
- UpdateExpressionVisitor.cs
- FilterException.cs
- BoolExpression.cs
- DataGridCellItemAutomationPeer.cs
- WorkflowControlEndpoint.cs
- CodeLabeledStatement.cs
- _BaseOverlappedAsyncResult.cs
- AQNBuilder.cs
- DockPanel.cs