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
- TypeLibConverter.cs
- ListMarkerLine.cs
- Font.cs
- ObjectPersistData.cs
- JsonDataContract.cs
- PointIndependentAnimationStorage.cs
- RegexBoyerMoore.cs
- PartialArray.cs
- NCryptNative.cs
- XmlAttributeOverrides.cs
- InvalidOperationException.cs
- TemplateContainer.cs
- TextMarkerSource.cs
- EnumerableRowCollection.cs
- NamedPipeHostedTransportConfiguration.cs
- DataContractAttribute.cs
- MDIWindowDialog.cs
- CFGGrammar.cs
- SingleObjectCollection.cs
- InProcStateClientManager.cs
- UniqueID.cs
- ValidatingPropertiesEventArgs.cs
- SecurityHelper.cs
- GroupBoxRenderer.cs
- TextTreeRootNode.cs
- ScalarOps.cs
- ReliableSession.cs
- StorageEntitySetMapping.cs
- ExpressionBinding.cs
- NameSpaceExtractor.cs
- TransactionalPackage.cs
- SRGSCompiler.cs
- StdValidatorsAndConverters.cs
- CommandLineParser.cs
- CompilerResults.cs
- RegexRunner.cs
- ComplexTypeEmitter.cs
- ColorConvertedBitmap.cs
- DetailsViewDeletedEventArgs.cs
- Vector3D.cs
- ClientRoleProvider.cs
- MetadataItemSerializer.cs
- SqlFactory.cs
- StateMachineSubscription.cs
- DynamicILGenerator.cs
- ProfileEventArgs.cs
- DataGridViewBindingCompleteEventArgs.cs
- XmlSchemaException.cs
- DataServiceProviderMethods.cs
- UInt16Storage.cs
- AssemblySettingAttributes.cs
- IndentedWriter.cs
- UpdateProgress.cs
- IgnoreSectionHandler.cs
- NetworkInformationException.cs
- DeferredTextReference.cs
- XPathChildIterator.cs
- AsyncStreamReader.cs
- TypeDescriptionProvider.cs
- DPCustomTypeDescriptor.cs
- FormsAuthenticationCredentials.cs
- UpdateProgress.cs
- CLRBindingWorker.cs
- CfgParser.cs
- EntityDataSourceContextDisposingEventArgs.cs
- StatusBar.cs
- UIElementPropertyUndoUnit.cs
- ButtonPopupAdapter.cs
- ActivityScheduledRecord.cs
- DomainLiteralReader.cs
- DES.cs
- PolicyManager.cs
- UpdateTranslator.cs
- CookieParameter.cs
- CommonProperties.cs
- OSFeature.cs
- XmlElement.cs
- ClrPerspective.cs
- SqlDataRecord.cs
- CalculatedColumn.cs
- BooleanSwitch.cs
- GenerateTemporaryAssemblyTask.cs
- IndexedString.cs
- TextSimpleMarkerProperties.cs
- QilList.cs
- DocumentEventArgs.cs
- XsltQilFactory.cs
- ReadOnlyObservableCollection.cs
- BitVector32.cs
- CollectionConverter.cs
- BitmapInitialize.cs
- TextEncodedRawTextWriter.cs
- OracleLob.cs
- SingleStorage.cs
- SendReply.cs
- SessionStateUtil.cs
- CodeTypeDeclaration.cs
- TableDetailsRow.cs
- Metafile.cs
- DataColumnPropertyDescriptor.cs