Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / Compilation / ThemeDirectoryCompiler.cs / 3 / ThemeDirectoryCompiler.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Compilation { using System; using System.IO; using System.Collections; using System.Globalization; using System.CodeDom.Compiler; using System.Configuration; using System.Security.Permissions; using System.Web.Hosting; using System.Web.Util; using System.Web.UI; internal static class ThemeDirectoryCompiler { internal const string skinExtension = ".skin"; internal static VirtualPath GetAppThemeVirtualDir(string themeName) { return HttpRuntime.AppDomainAppVirtualPathObject.SimpleCombineWithDir(HttpRuntime.ThemesDirectoryName + "/" + themeName); } internal static VirtualPath GetGlobalThemeVirtualDir(string themeName) { return BuildManager.ScriptVirtualDir.SimpleCombineWithDir(HttpRuntime.GlobalThemesDirectoryName + "/" + themeName); } // We need to Assert here since there could be user code on the stack ( [PermissionSet(SecurityAction.Assert, Unrestricted=true)] internal static BuildResultCompiledType GetThemeBuildResultType(HttpContext context, string themeName) { using (new ApplicationImpersonationContext()) { return GetThemeBuildResultType(themeName); } } private static BuildResultCompiledType GetThemeBuildResultType(string themeName) { string appThemeCacheKey, globalThemeCacheKey = null; // First, appThemeCacheKey = "Theme_" + Util.MakeValidTypeNameFromString(themeName); BuildResultCompiledType result = (BuildResultCompiledType) BuildManager.GetBuildResultFromCache(appThemeCacheKey); if (result == null) { // Then, globalThemeCacheKey = "GlobalTheme_" + themeName; result = (BuildResultCompiledType) BuildManager.GetBuildResultFromCache( globalThemeCacheKey); } // If we found a theme buildresulttype, return it if (result != null) return result; bool gotLock = false; try { // Grab the compilation mutex CompilationLock.GetLock(ref gotLock); // Check the cache again now that we have the mutex result = (BuildResultCompiledType)BuildManager.GetBuildResultFromCache(appThemeCacheKey); if (result == null) { result = (BuildResultCompiledType)BuildManager.GetBuildResultFromCache( globalThemeCacheKey); } if (result != null) return result; // Theme was not found in the caches; VirtualPath appVirtualDir, globalVirtualDir = null; appVirtualDir = GetAppThemeVirtualDir(themeName); PageThemeBuildProvider themeBuildProvider = null; VirtualPath virtualDir = appVirtualDir; string cacheKey = appThemeCacheKey; // If the theme directories do not exist, simply throw if (appVirtualDir.DirectoryExists()) { themeBuildProvider = new PageThemeBuildProvider(appVirtualDir); } else { globalVirtualDir = GetGlobalThemeVirtualDir(themeName); if (!globalVirtualDir.DirectoryExists()) { throw new HttpException(SR.GetString(SR.Page_theme_not_found, themeName)); } virtualDir = globalVirtualDir; cacheKey = globalThemeCacheKey; themeBuildProvider = new GlobalPageThemeBuildProvider(globalVirtualDir); } // The directory exists (either app or global), so compile it DateTime utcStart = DateTime.UtcNow; VirtualDirectory vdir = virtualDir.GetDirectory(); // Add all the .skin files to it AddThemeFilesToBuildProvider(vdir, themeBuildProvider, true); // Use predictable fixed names for theme assemblies. BuildProvidersCompiler bpc = new BuildProvidersCompiler(virtualDir, themeBuildProvider.AssemblyNamePrefix + BuildManager.GenerateRandomAssemblyName(themeName)); // Add the single build provider to the BuildProvidersCompiler bpc.SetBuildProviders(new SingleObjectCollection(themeBuildProvider)); // Compile it CompilerResults results = bpc.PerformBuild(); // Get the Type we care about from the BuildProvider result = (BuildResultCompiledType) themeBuildProvider.GetBuildResult(results); // Cache it for next time BuildManager.CacheBuildResult(cacheKey, result, utcStart); } finally { // Always release the mutex if we had taken it if (gotLock) { CompilationLock.ReleaseLock(); } } return result; } private static void AddThemeFilesToBuildProvider(VirtualDirectory vdir, PageThemeBuildProvider themeBuildProvider, bool topLevel) { // Go through all the files in the directory foreach (VirtualFileBase child in vdir.Children) { // Recursive into subdirectories. if (child.IsDirectory) { AddThemeFilesToBuildProvider(child as VirtualDirectory, themeBuildProvider, false); continue; } // We only process .skin and .css files string extension = Path.GetExtension(child.Name); if ((StringUtil.EqualsIgnoreCase(extension, skinExtension)) && topLevel) { themeBuildProvider.AddSkinFile(child.VirtualPathObject); continue; } if (StringUtil.EqualsIgnoreCase(extension, ".css")) { themeBuildProvider.AddCssFile(child.VirtualPathObject); continue; } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ColorConvertedBitmap.cs
- figurelengthconverter.cs
- SendingRequestEventArgs.cs
- CompiledQuery.cs
- Part.cs
- WebPartChrome.cs
- OLEDB_Util.cs
- ComponentConverter.cs
- SqlGenerator.cs
- XmlSchemaSimpleContentRestriction.cs
- KeySpline.cs
- SortFieldComparer.cs
- ThrowHelper.cs
- MessageLogger.cs
- HttpRuntime.cs
- TemplateField.cs
- cookiecontainer.cs
- WebPartsSection.cs
- BypassElementCollection.cs
- TraceListener.cs
- WebEventTraceProvider.cs
- BackStopAuthenticationModule.cs
- ToolStripDropDownClosedEventArgs.cs
- DataListItem.cs
- PropertyDescriptorComparer.cs
- XmlSchemaException.cs
- UncommonField.cs
- Preprocessor.cs
- CodeTypeMember.cs
- RegexStringValidator.cs
- assertwrapper.cs
- Button.cs
- XPathExpr.cs
- MediaElementAutomationPeer.cs
- SynchronizedInputProviderWrapper.cs
- SessionPageStatePersister.cs
- CaseInsensitiveComparer.cs
- RootAction.cs
- ListViewDataItem.cs
- BitmapEffectvisualstate.cs
- FrameworkElement.cs
- GridViewAutomationPeer.cs
- CompilerParameters.cs
- DifferencingCollection.cs
- RequestNavigateEventArgs.cs
- ImpersonateTokenRef.cs
- TableLayoutStyleCollection.cs
- TypeHelpers.cs
- WorkflowTraceTransfer.cs
- BuildProvider.cs
- storepermissionattribute.cs
- ZipIOExtraField.cs
- DataGridViewCellPaintingEventArgs.cs
- SqlStatistics.cs
- SafeNativeMethodsMilCoreApi.cs
- SpecialFolderEnumConverter.cs
- TimeZone.cs
- HistoryEventArgs.cs
- MaskDesignerDialog.cs
- WindowsFormsSectionHandler.cs
- PageAdapter.cs
- SessionStateUtil.cs
- SystemFonts.cs
- HwndProxyElementProvider.cs
- BamlResourceSerializer.cs
- DataBindingList.cs
- ParserOptions.cs
- NamespaceEmitter.cs
- Inline.cs
- SqlDataSourceStatusEventArgs.cs
- InstanceLockQueryResult.cs
- XmlSchemaExternal.cs
- Context.cs
- XmlAnyElementAttributes.cs
- ResourcePermissionBaseEntry.cs
- XmlSchemaIdentityConstraint.cs
- ContextMenuAutomationPeer.cs
- TraceHwndHost.cs
- FormsIdentity.cs
- UtilityExtension.cs
- WindowsFormsSectionHandler.cs
- DataServices.cs
- ToolboxComponentsCreatedEventArgs.cs
- WebPartManager.cs
- Point3D.cs
- ThicknessKeyFrameCollection.cs
- TraceInternal.cs
- PolicyReader.cs
- DockPattern.cs
- MaterialGroup.cs
- SynchronizationLockException.cs
- RectValueSerializer.cs
- EmptyQuery.cs
- XmlWriterTraceListener.cs
- SortedDictionary.cs
- CultureInfoConverter.cs
- PathSegment.cs
- ScriptComponentDescriptor.cs
- BitmapSource.cs
- ErrorLog.cs