Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / DynamicData / DynamicData / Util / TemplateFactory.cs / 1305376 / TemplateFactory.cs
using System.Collections; using System.Diagnostics; using System.Globalization; using System.Web.Compilation; using System.Web.Hosting; using System.Web.Resources; namespace System.Web.DynamicData { internal class TemplateFactory { // Use Hashtable instead of Dictionary<,> because it is more thread safe private Hashtable _fieldTemplateVirtualPathCache = new Hashtable(); private string _defaultLocation; private string _templateFolderVirtualPath; internal MetaModel Model { get; set; } private bool _needToResolveVirtualPath; private bool _trackFolderChanges; private bool _registeredForChangeNotifications; private VirtualPathProvider _vpp; private bool _usingCustomVpp; internal TemplateFactory(string defaultLocation) : this(defaultLocation, true) { } internal TemplateFactory(string defaultLocation, bool trackFolderChanges) { Debug.Assert(!String.IsNullOrEmpty(defaultLocation)); _defaultLocation = defaultLocation; _trackFolderChanges = trackFolderChanges; } internal string TemplateFolderVirtualPath { get { if (_templateFolderVirtualPath == null) { // If not set, set its default location TemplateFolderVirtualPath = _defaultLocation; } if (_needToResolveVirtualPath) { // Make sure it ends with a slash _templateFolderVirtualPath = VirtualPathUtility.AppendTrailingSlash(_templateFolderVirtualPath); // If it's relative, make it relative to the Model's path // Note can be null under Unit Testing if (Model != null) { _templateFolderVirtualPath = VirtualPathUtility.Combine(Model.DynamicDataFolderVirtualPath, _templateFolderVirtualPath); } _needToResolveVirtualPath = false; } return _templateFolderVirtualPath; } set { _templateFolderVirtualPath = value; // Make sure we register for change notifications, since we just got a new path _registeredForChangeNotifications = false; // It may be relative and need resolution, but let's not do it until we need it _needToResolveVirtualPath = true; } } internal VirtualPathProvider VirtualPathProvider { get { if (_vpp == null) { _vpp = HostingEnvironment.VirtualPathProvider; } return _vpp; } set { _vpp = value; _usingCustomVpp = value != null; } } internal string GetTemplatePath(long cacheKey, FunctemplatePathFactoryFunction) { // Check if we already have it cached string virtualPath = this[cacheKey]; // null is a valid value, so we also need to check whether the key exists if (virtualPath == null && !ContainsKey(cacheKey)) { // It's not cached, so compute it and cache it. Make sure multiple writers are serialized virtualPath = templatePathFactoryFunction(); this[cacheKey] = virtualPath; } return virtualPath; } private string this[long cacheKey] { get { EnsureRegisteredForChangeNotifications(); return (string)_fieldTemplateVirtualPathCache[cacheKey]; } set { EnsureRegisteredForChangeNotifications(); lock (_fieldTemplateVirtualPathCache) { _fieldTemplateVirtualPathCache[cacheKey] = value; } } } private bool ContainsKey(long cacheKey) { EnsureRegisteredForChangeNotifications(); return _fieldTemplateVirtualPathCache.ContainsKey(cacheKey); } private void EnsureRegisteredForChangeNotifications() { if (!_trackFolderChanges) { return; } if (!_registeredForChangeNotifications) { lock (this) { if (!_registeredForChangeNotifications) { // Make sure the folder exists if (!VirtualPathProvider.DirectoryExists(TemplateFolderVirtualPath)) { throw new InvalidOperationException(String.Format( CultureInfo.CurrentCulture, DynamicDataResources.FieldTemplateFactory_FolderNotFound, TemplateFolderVirtualPath)); } // Register for notifications if anything in that folder changes FileChangeNotifier.Register(TemplateFolderVirtualPath, delegate(string path) { // Something has changed, so clear our cache lock (_fieldTemplateVirtualPathCache) { _fieldTemplateVirtualPathCache.Clear(); } }); _registeredForChangeNotifications = true; } } } } internal bool FileExists(string virtualPath) { #if ORYX_VNEXT // Checking file existence is tricky, because in non-updatable precompiled apps, the ascx files are not // there at all. In that case, it's still possible to check existence by calling BuildManager.GetCompiledType // and seeing if it throws, but this can cause a lot of first chance exceptions, which affect the debugging experience. // As a compromise, we only use the BuildManager.GetCompiledType code path if we're in the non-updatable precomp case. // if (!Misc.IsNonUpdatablePrecompiledApp()) return VirtualPathProvider.FileExists(virtualPath); try { BuildManager.GetCompiledType(virtualPath); } catch { return false; } return true; #else if (_usingCustomVpp) { // for unit testing return VirtualPathProvider.FileExists(virtualPath); } else { // Use GetObjectFactory instead of GetCompiledType because it will not throw, which improves the debugging experience return BuildManager.GetObjectFactory(virtualPath, /* throwIfNotFound */ false) != null; } #endif } } } // 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
- InternalResources.cs
- KeyConverter.cs
- LinqDataSourceValidationException.cs
- DataComponentMethodGenerator.cs
- CqlParser.cs
- QilInvokeEarlyBound.cs
- _ProxyChain.cs
- LoginUtil.cs
- ADMembershipProvider.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- FixedSOMTableRow.cs
- NativeCompoundFileAPIs.cs
- TemplateControlParser.cs
- AttributeProviderAttribute.cs
- CreateInstanceBinder.cs
- DbConnectionStringCommon.cs
- DataGridCell.cs
- CollectionEditVerbManager.cs
- EdmToObjectNamespaceMap.cs
- SinglePageViewer.cs
- SkinBuilder.cs
- DataGridTablesFactory.cs
- XmlChoiceIdentifierAttribute.cs
- StreamSecurityUpgradeAcceptorBase.cs
- Rotation3DAnimation.cs
- CellRelation.cs
- COM2Properties.cs
- GridViewSortEventArgs.cs
- CoreSwitches.cs
- TextTreePropertyUndoUnit.cs
- ImportContext.cs
- SqlRowUpdatedEvent.cs
- EpmTargetTree.cs
- ExtendedProperty.cs
- XmlChildEnumerator.cs
- Delegate.cs
- ModelMemberCollection.cs
- GroupBoxAutomationPeer.cs
- EventLogTraceListener.cs
- CommandHelpers.cs
- XmlSchemaNotation.cs
- ItemCheckEvent.cs
- ApplicationTrust.cs
- IDataContractSurrogate.cs
- EventListenerClientSide.cs
- StylusDevice.cs
- GroupStyle.cs
- GroupBoxAutomationPeer.cs
- TextEffect.cs
- DBCSCodePageEncoding.cs
- QilCloneVisitor.cs
- EnvironmentPermission.cs
- InternalBase.cs
- MessagePropertyDescriptionCollection.cs
- NavigationCommands.cs
- Visitor.cs
- EntityDataSourceSelectedEventArgs.cs
- StringUtil.cs
- DataGridViewComboBoxColumn.cs
- HttpRawResponse.cs
- MsmqVerifier.cs
- AuthenticationService.cs
- ClientSettingsProvider.cs
- CriticalFinalizerObject.cs
- TemplateColumn.cs
- webproxy.cs
- TextInfo.cs
- DragDrop.cs
- DataGridViewDataConnection.cs
- RegistryKey.cs
- GridViewColumnHeader.cs
- XmlSubtreeReader.cs
- TextTreeText.cs
- EventHandlerList.cs
- WebPartMenuStyle.cs
- SocketManager.cs
- PageFunction.cs
- DrawTreeNodeEventArgs.cs
- LightweightCodeGenerator.cs
- UriTemplateCompoundPathSegment.cs
- DBBindings.cs
- EventBuilder.cs
- RemotingService.cs
- DownloadProgressEventArgs.cs
- Size.cs
- ReaderContextStackData.cs
- ValidationEventArgs.cs
- CountAggregationOperator.cs
- DbDataSourceEnumerator.cs
- PowerStatus.cs
- TagMapInfo.cs
- WebPartCloseVerb.cs
- StylusCaptureWithinProperty.cs
- SqlConnectionFactory.cs
- ContentElement.cs
- DocumentationServerProtocol.cs
- ProviderConnectionPoint.cs
- DrawTreeNodeEventArgs.cs
- TouchPoint.cs
- WebFormDesignerActionService.cs