Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- XPathSelectionIterator.cs
- Baml2006KnownTypes.cs
- MeasureItemEvent.cs
- CodeExporter.cs
- ExpressionBuilderCollection.cs
- SeekableReadStream.cs
- PrintEvent.cs
- WebBrowsableAttribute.cs
- XmlDataLoader.cs
- InheritanceRules.cs
- RemotingConfigParser.cs
- ValidatorCompatibilityHelper.cs
- Splitter.cs
- AmbiguousMatchException.cs
- KnownColorTable.cs
- ColumnCollection.cs
- SerializableTypeCodeDomSerializer.cs
- LayoutTable.cs
- DeviceSpecificChoice.cs
- ZipIOBlockManager.cs
- StackSpiller.Generated.cs
- DbDataReader.cs
- SynthesizerStateChangedEventArgs.cs
- PtsCache.cs
- ByteAnimationUsingKeyFrames.cs
- TargetConverter.cs
- Bind.cs
- ConfigurationSectionGroup.cs
- EventWaitHandle.cs
- CustomExpressionEventArgs.cs
- WebControl.cs
- ConstructorBuilder.cs
- InputScopeAttribute.cs
- DbConnectionInternal.cs
- BindableAttribute.cs
- ZoneLinkButton.cs
- httpstaticobjectscollection.cs
- ContentType.cs
- DataSourceView.cs
- PathNode.cs
- CounterCreationDataCollection.cs
- PropertyDescriptorCollection.cs
- DataTemplate.cs
- KeyGestureConverter.cs
- ItemContainerGenerator.cs
- PartitionerQueryOperator.cs
- XmlCharType.cs
- CommandPlan.cs
- Binding.cs
- AsyncContentLoadedEventArgs.cs
- metadatamappinghashervisitor.cs
- TileModeValidation.cs
- ActiveDocumentEvent.cs
- UndoEngine.cs
- VideoDrawing.cs
- DatatypeImplementation.cs
- RSACryptoServiceProvider.cs
- MediaSystem.cs
- sqlstateclientmanager.cs
- PreviewPageInfo.cs
- StringFreezingAttribute.cs
- DataGridSortCommandEventArgs.cs
- FeatureSupport.cs
- DbParameterCollectionHelper.cs
- TransportDefaults.cs
- CollectionsUtil.cs
- CodeLabeledStatement.cs
- TimeEnumHelper.cs
- ToolStripItemEventArgs.cs
- _HTTPDateParse.cs
- ElementNotEnabledException.cs
- UpdateEventArgs.cs
- SqlTrackingWorkflowInstance.cs
- ExtensionSimplifierMarkupObject.cs
- DataGridViewCellFormattingEventArgs.cs
- EventListenerClientSide.cs
- XsdDateTime.cs
- PropertyManager.cs
- HttpResponse.cs
- HtmlImage.cs
- RenderingBiasValidation.cs
- SchemaInfo.cs
- SelectedDatesCollection.cs
- InertiaRotationBehavior.cs
- InitializerFacet.cs
- SpellerInterop.cs
- MultitargetUtil.cs
- ContextInformation.cs
- SerializationAttributes.cs
- DispatcherEventArgs.cs
- XPathNodeList.cs
- WebPartDisplayMode.cs
- ToolStripProgressBar.cs
- Evidence.cs
- PeerEndPoint.cs
- CheckBoxRenderer.cs
- ThreadPool.cs
- UInt16Storage.cs
- TakeQueryOptionExpression.cs
- TCEAdapterGenerator.cs