Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Compilation / TimeStampChecker.cs / 1 / TimeStampChecker.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Compilation { using System; using System.Collections; using System.IO; using System.Web; using System.Web.Hosting; using Debug = System.Web.Util.Debug; internal class TimeStampChecker { internal const String CallContextSlotName = "TSC"; private Hashtable _timeStamps = new Hashtable(StringComparer.OrdinalIgnoreCase); private static TimeStampChecker Current { get { TimeStampChecker tsc = (TimeStampChecker)System.Runtime.Remoting.Messaging.CallContext.GetData( CallContextSlotName) as TimeStampChecker; // Create it on demand if (tsc == null) { tsc = new TimeStampChecker(); Debug.Trace("TimeStampChecker", "Creating new TimeStampChecker"); System.Runtime.Remoting.Messaging.CallContext.SetData(CallContextSlotName, tsc); } return tsc; } } internal static void AddFile(string virtualPath, string path) { Current.AddFileInternal(virtualPath, path); } private void AddFileInternal(string virtualPath, string path) { DateTime lastWriteTimeUtc = File.GetLastWriteTimeUtc(path); if (_timeStamps.Contains(virtualPath)) { DateTime storedValue = (DateTime)_timeStamps[virtualPath]; // Already found to have changed before if (storedValue == DateTime.MaxValue) { Debug.Trace("TimeStampChecker", "AddFileInternal: Same time stamp (" + path + ")"); return; } // If it's different, set it to MaxValue as marker of being invalid if (storedValue != lastWriteTimeUtc) { _timeStamps[virtualPath] = DateTime.MaxValue; Debug.Trace("TimeStampChecker", "AddFileInternal: Changed time stamp (" + path + ")"); } } else { // New path: just add it _timeStamps[virtualPath] = lastWriteTimeUtc; Debug.Trace("TimeStampChecker", "AddFileInternal: New path (" + path + ")"); } } internal static bool CheckFilesStillValid(string key, ICollection virtualPaths) { if (virtualPaths == null) return true; return Current.CheckFilesStillValidInternal(key, virtualPaths); } private bool CheckFilesStillValidInternal(string key, ICollection virtualPaths) { Debug.Trace("TimeStampChecker", "CheckFilesStillValidInternal (" + key + ")"); foreach (string virtualPath in virtualPaths) { if (!_timeStamps.Contains(virtualPath)) continue; string path = HostingEnvironment.MapPath(virtualPath); DateTime lastWriteTimeUtc = File.GetLastWriteTimeUtc(path); DateTime storedValue = (DateTime)_timeStamps[virtualPath]; // If it changed, then it's not valid if (lastWriteTimeUtc != storedValue) { Debug.Trace("TimeStampChecker", "CheckFilesStillValidInternal: File (" + path + ") has changed!"); return false; } } Debug.Trace("TimeStampChecker", "CheckFilesStillValidInternal (" + key + ") is still valid"); return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Compilation { using System; using System.Collections; using System.IO; using System.Web; using System.Web.Hosting; using Debug = System.Web.Util.Debug; internal class TimeStampChecker { internal const String CallContextSlotName = "TSC"; private Hashtable _timeStamps = new Hashtable(StringComparer.OrdinalIgnoreCase); private static TimeStampChecker Current { get { TimeStampChecker tsc = (TimeStampChecker)System.Runtime.Remoting.Messaging.CallContext.GetData( CallContextSlotName) as TimeStampChecker; // Create it on demand if (tsc == null) { tsc = new TimeStampChecker(); Debug.Trace("TimeStampChecker", "Creating new TimeStampChecker"); System.Runtime.Remoting.Messaging.CallContext.SetData(CallContextSlotName, tsc); } return tsc; } } internal static void AddFile(string virtualPath, string path) { Current.AddFileInternal(virtualPath, path); } private void AddFileInternal(string virtualPath, string path) { DateTime lastWriteTimeUtc = File.GetLastWriteTimeUtc(path); if (_timeStamps.Contains(virtualPath)) { DateTime storedValue = (DateTime)_timeStamps[virtualPath]; // Already found to have changed before if (storedValue == DateTime.MaxValue) { Debug.Trace("TimeStampChecker", "AddFileInternal: Same time stamp (" + path + ")"); return; } // If it's different, set it to MaxValue as marker of being invalid if (storedValue != lastWriteTimeUtc) { _timeStamps[virtualPath] = DateTime.MaxValue; Debug.Trace("TimeStampChecker", "AddFileInternal: Changed time stamp (" + path + ")"); } } else { // New path: just add it _timeStamps[virtualPath] = lastWriteTimeUtc; Debug.Trace("TimeStampChecker", "AddFileInternal: New path (" + path + ")"); } } internal static bool CheckFilesStillValid(string key, ICollection virtualPaths) { if (virtualPaths == null) return true; return Current.CheckFilesStillValidInternal(key, virtualPaths); } private bool CheckFilesStillValidInternal(string key, ICollection virtualPaths) { Debug.Trace("TimeStampChecker", "CheckFilesStillValidInternal (" + key + ")"); foreach (string virtualPath in virtualPaths) { if (!_timeStamps.Contains(virtualPath)) continue; string path = HostingEnvironment.MapPath(virtualPath); DateTime lastWriteTimeUtc = File.GetLastWriteTimeUtc(path); DateTime storedValue = (DateTime)_timeStamps[virtualPath]; // If it changed, then it's not valid if (lastWriteTimeUtc != storedValue) { Debug.Trace("TimeStampChecker", "CheckFilesStillValidInternal: File (" + path + ") has changed!"); return false; } } Debug.Trace("TimeStampChecker", "CheckFilesStillValidInternal (" + key + ") is still valid"); return true; } } } // 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
- VBCodeProvider.cs
- ServicesUtilities.cs
- KeyNotFoundException.cs
- WindowsListViewItemStartMenu.cs
- DeclarativeConditionsCollection.cs
- DSGeneratorProblem.cs
- VisualTreeUtils.cs
- WeakRefEnumerator.cs
- ObjectQueryState.cs
- PreviewPageInfo.cs
- WorkflowServiceInstance.cs
- XmlTextReaderImpl.cs
- NumberSubstitution.cs
- HashStream.cs
- Send.cs
- ToolstripProfessionalRenderer.cs
- Point3DAnimation.cs
- ImageField.cs
- MenuItemStyleCollection.cs
- HuffModule.cs
- AlignmentXValidation.cs
- TextPointer.cs
- XmlDocumentType.cs
- autovalidator.cs
- LineGeometry.cs
- EntityClientCacheKey.cs
- TextDecorationCollection.cs
- SQLInt16Storage.cs
- ObjectRef.cs
- QueryOptionExpression.cs
- ConsoleKeyInfo.cs
- WindowVisualStateTracker.cs
- BatchParser.cs
- HierarchicalDataTemplate.cs
- Stream.cs
- UserControl.cs
- SingleSelectRootGridEntry.cs
- SqlBuilder.cs
- RowUpdatedEventArgs.cs
- AbandonedMutexException.cs
- StateManagedCollection.cs
- _Rfc2616CacheValidators.cs
- DataGridItemCollection.cs
- FilteredAttributeCollection.cs
- BezierSegment.cs
- DeviceSpecificDialogCachedState.cs
- WindowsImpersonationContext.cs
- AstNode.cs
- Point4DConverter.cs
- FormatControl.cs
- FormsAuthenticationConfiguration.cs
- SystemIcmpV4Statistics.cs
- DesignerRegionCollection.cs
- CaseInsensitiveOrdinalStringComparer.cs
- DockPanel.cs
- SQLBytes.cs
- RefreshEventArgs.cs
- KeySplineConverter.cs
- SqlCommandSet.cs
- OdbcConnection.cs
- TableLayoutPanelCellPosition.cs
- ParallelEnumerable.cs
- BooleanProjectedSlot.cs
- DataGridViewAutoSizeModeEventArgs.cs
- MemberExpressionHelper.cs
- ServiceHttpModule.cs
- HttpResponseHeader.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- PaperSize.cs
- CmsInterop.cs
- Image.cs
- HierarchicalDataSourceControl.cs
- KeyConverter.cs
- ModuleBuilderData.cs
- DecoderFallbackWithFailureFlag.cs
- ExeContext.cs
- WinEventWrap.cs
- SqlWebEventProvider.cs
- NullableConverter.cs
- LiteralControl.cs
- MapPathBasedVirtualPathProvider.cs
- BrowserInteropHelper.cs
- DropTarget.cs
- IpcChannelHelper.cs
- CompositeTypefaceMetrics.cs
- OdbcParameter.cs
- AdvancedBindingPropertyDescriptor.cs
- TextTreeTextBlock.cs
- MethodBuilder.cs
- CompositionDesigner.cs
- FrameDimension.cs
- XmlException.cs
- TypeUsage.cs
- EntityCommandExecutionException.cs
- AccessibleObject.cs
- CodeLinePragma.cs
- FloaterBaseParaClient.cs
- SiteMapNodeItemEventArgs.cs
- ResourceAttributes.cs
- LocalValueEnumerator.cs