Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XPathCompileException.cs
- PolygonHotSpot.cs
- MessagingDescriptionAttribute.cs
- CheckBoxAutomationPeer.cs
- MappingMetadataHelper.cs
- WsiProfilesElementCollection.cs
- HttpPostedFile.cs
- SessionState.cs
- GeometryHitTestResult.cs
- IsolationInterop.cs
- WebColorConverter.cs
- IODescriptionAttribute.cs
- ColorConvertedBitmapExtension.cs
- RC2.cs
- UdpDiscoveryEndpointElement.cs
- SchemeSettingElement.cs
- LinearQuaternionKeyFrame.cs
- EventTrigger.cs
- CodeIterationStatement.cs
- InkCollectionBehavior.cs
- HandleCollector.cs
- SQLDecimal.cs
- RuleSettingsCollection.cs
- PeerApplicationLaunchInfo.cs
- ContextStaticAttribute.cs
- XamlSerializer.cs
- Track.cs
- SmiEventSink_Default.cs
- ExecutionContext.cs
- OleAutBinder.cs
- XamlReaderHelper.cs
- SQLMembershipProvider.cs
- ListDictionaryInternal.cs
- TextChange.cs
- StructuralObject.cs
- ReferenceService.cs
- DiscardableAttribute.cs
- PropertyItem.cs
- AttributeQuery.cs
- ControlAdapter.cs
- MethodCallTranslator.cs
- ChainedAsyncResult.cs
- OverflowException.cs
- SliderAutomationPeer.cs
- CommentAction.cs
- InstanceDataCollection.cs
- CreateUserWizardAutoFormat.cs
- SyndicationFeed.cs
- ListViewUpdateEventArgs.cs
- CompiledQuery.cs
- StrongTypingException.cs
- DataRow.cs
- DefaultWorkflowSchedulerService.cs
- BCLDebug.cs
- AuthenticationManager.cs
- DispatchOperationRuntime.cs
- GlyphRun.cs
- PropertyStore.cs
- ZipIOLocalFileBlock.cs
- SQLBinaryStorage.cs
- URLString.cs
- BitmapInitialize.cs
- _AutoWebProxyScriptEngine.cs
- SHA256.cs
- SimpleTableProvider.cs
- RoamingStoreFileUtility.cs
- MSHTMLHost.cs
- WindowsImpersonationContext.cs
- SiblingIterators.cs
- InputLangChangeRequestEvent.cs
- HandoffBehavior.cs
- SqlUDTStorage.cs
- SoapFormatter.cs
- InkPresenterAutomationPeer.cs
- MetadataItemCollectionFactory.cs
- EntityViewContainer.cs
- NetStream.cs
- ForwardPositionQuery.cs
- RequestBringIntoViewEventArgs.cs
- StatusBarAutomationPeer.cs
- CngKey.cs
- Border.cs
- HttpContext.cs
- QuotedPairReader.cs
- XmlAnyElementAttribute.cs
- BindingNavigator.cs
- SoapProcessingBehavior.cs
- Menu.cs
- OciEnlistContext.cs
- GlobalizationSection.cs
- DataGridViewCellFormattingEventArgs.cs
- SqlDataSource.cs
- CultureSpecificStringDictionary.cs
- MessageSecurityVersion.cs
- SafeCryptoHandles.cs
- ToolStripGripRenderEventArgs.cs
- _HeaderInfo.cs
- HostVisual.cs
- ObjectToIdCache.cs
- XmlReaderSettings.cs