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
- Error.cs
- ThicknessAnimation.cs
- BaseContextMenu.cs
- WebPartDisplayModeEventArgs.cs
- SqlRemoveConstantOrderBy.cs
- LiteralSubsegment.cs
- DbXmlEnabledProviderManifest.cs
- TypedTableBase.cs
- PolygonHotSpot.cs
- SiteMembershipCondition.cs
- WindowsSidIdentity.cs
- DesignerDataView.cs
- HttpRuntime.cs
- InvalidCastException.cs
- TypeRefElement.cs
- CachedCompositeFamily.cs
- TraceShell.cs
- TraceUtils.cs
- XmlILModule.cs
- PropertyInformationCollection.cs
- CompensatableTransactionScopeActivity.cs
- HelpHtmlBuilder.cs
- AnimatedTypeHelpers.cs
- IntegerFacetDescriptionElement.cs
- ISFClipboardData.cs
- OletxTransactionManager.cs
- MaskedTextProvider.cs
- BezierSegment.cs
- CategoryAttribute.cs
- JobDuplex.cs
- CustomErrorsSection.cs
- DBParameter.cs
- TextViewBase.cs
- XmlDataImplementation.cs
- ApplicationHost.cs
- HttpFileCollectionBase.cs
- ToolboxComponentsCreatingEventArgs.cs
- MethodImplAttribute.cs
- SoapExtensionReflector.cs
- compensatingcollection.cs
- DataGridViewTopRowAccessibleObject.cs
- SecurityKeyType.cs
- TemplateBindingExpressionConverter.cs
- SrgsElementList.cs
- TextHidden.cs
- AvTraceFormat.cs
- ClientCultureInfo.cs
- SoapAttributeOverrides.cs
- GradientSpreadMethodValidation.cs
- SlotInfo.cs
- MenuItemBindingCollection.cs
- XmlNamespaceMappingCollection.cs
- LoadWorkflowByKeyAsyncResult.cs
- RsaSecurityToken.cs
- WindowsScrollBarBits.cs
- DefaultMergeHelper.cs
- RoutingExtension.cs
- ExpressionLexer.cs
- DbMetaDataFactory.cs
- SafeNativeMethods.cs
- Grant.cs
- AsyncOperation.cs
- EntityException.cs
- hresults.cs
- HtmlTextArea.cs
- EventHandlerList.cs
- ConditionalDesigner.cs
- ClientTarget.cs
- CodePageUtils.cs
- Attributes.cs
- DbProviderFactories.cs
- PowerStatus.cs
- ContentOperations.cs
- SafeMILHandle.cs
- InvokeGenerator.cs
- BuildResultCache.cs
- CloseCryptoHandleRequest.cs
- Selection.cs
- CryptoApi.cs
- SafeEventLogReadHandle.cs
- BitmapEffectCollection.cs
- UncommonField.cs
- SmtpCommands.cs
- HyperLinkField.cs
- SpeechUI.cs
- Site.cs
- MethodToken.cs
- EndPoint.cs
- GeneralTransform3DTo2D.cs
- DesignerAutoFormat.cs
- bindurihelper.cs
- EdgeModeValidation.cs
- EntityTypeEmitter.cs
- DCSafeHandle.cs
- CompiledAction.cs
- AuthenticatingEventArgs.cs
- _SSPIWrapper.cs
- XmlArrayItemAttribute.cs
- XPathNode.cs
- LogPolicy.cs