Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Compilation / TimeStampChecker.cs / 1305376 / 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
- EventArgs.cs
- SignHashRequest.cs
- EncryptedData.cs
- WebConfigurationHost.cs
- VirtualizingPanel.cs
- CheckBox.cs
- DataContractSerializerSection.cs
- GlobalizationSection.cs
- CTreeGenerator.cs
- BackStopAuthenticationModule.cs
- ScriptReferenceEventArgs.cs
- LoginView.cs
- MonitorWrapper.cs
- WebPartChrome.cs
- PostBackTrigger.cs
- LinearGradientBrush.cs
- CompilerCollection.cs
- AlphaSortedEnumConverter.cs
- DateTimeOffsetStorage.cs
- ProtocolViolationException.cs
- RegexStringValidatorAttribute.cs
- BamlTreeMap.cs
- PerformanceCounter.cs
- DelimitedListTraceListener.cs
- ISAPIWorkerRequest.cs
- PropertyPath.cs
- DotNetATv1WindowsLogEntrySerializer.cs
- EncodingDataItem.cs
- XmlAttributeAttribute.cs
- Thread.cs
- FixedBufferAttribute.cs
- WindowInteropHelper.cs
- SafeNativeMethods.cs
- newitemfactory.cs
- ApplicationId.cs
- FileDataSourceCache.cs
- SystemIPv4InterfaceProperties.cs
- HttpDebugHandler.cs
- EntitySetBaseCollection.cs
- FactorySettingsElement.cs
- SemanticBasicElement.cs
- CategoryNameCollection.cs
- ColorConverter.cs
- DataContractAttribute.cs
- MarginCollapsingState.cs
- TaskHelper.cs
- PageRequestManager.cs
- CodeLabeledStatement.cs
- CodeSnippetExpression.cs
- DebugView.cs
- EditorZone.cs
- ManifestResourceInfo.cs
- BaseResourcesBuildProvider.cs
- RectAnimation.cs
- ComponentResourceKeyConverter.cs
- GeometryValueSerializer.cs
- UpdatePanel.cs
- DataListItemCollection.cs
- WebPartEditorOkVerb.cs
- LassoHelper.cs
- Empty.cs
- ElementProxy.cs
- EntityContainerEmitter.cs
- StringExpressionSet.cs
- ListViewCommandEventArgs.cs
- XmlDataSourceNodeDescriptor.cs
- Condition.cs
- ConstraintManager.cs
- Rfc2898DeriveBytes.cs
- ListViewSelectEventArgs.cs
- ObjectSet.cs
- MemberNameValidator.cs
- PostBackOptions.cs
- PartitionerStatic.cs
- DesignerContextDescriptor.cs
- X509CertificateTokenFactoryCredential.cs
- AmbientLight.cs
- DesignerSelectionListAdapter.cs
- DataServiceResponse.cs
- ClientFormsIdentity.cs
- EastAsianLunisolarCalendar.cs
- PageStatePersister.cs
- TdsParserStaticMethods.cs
- SafeViewOfFileHandle.cs
- TransportSecurityProtocolFactory.cs
- SplitterDesigner.cs
- RegistryConfigurationProvider.cs
- TemplatePropertyEntry.cs
- TextAdaptor.cs
- RSAPKCS1SignatureFormatter.cs
- XamlStream.cs
- TextAdaptor.cs
- EventLogStatus.cs
- EntityTransaction.cs
- UncommonField.cs
- CompensableActivity.cs
- ExpressionBuilder.cs
- FullTrustAssembly.cs
- HtmlTableRowCollection.cs
- MimeMapping.cs