Code:
/ DotNET / DotNET / 8.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
- ElementUtil.cs
- XmlSchemaAnnotation.cs
- ProfileSection.cs
- HashHelper.cs
- BehaviorEditorPart.cs
- TabControlCancelEvent.cs
- WebPartVerb.cs
- _TimerThread.cs
- DataSourceProvider.cs
- InternalResources.cs
- RSATokenProvider.cs
- ComponentRenameEvent.cs
- Configuration.cs
- MediaCommands.cs
- webbrowsersite.cs
- ObjectTag.cs
- TypeValidationEventArgs.cs
- PropertyInfoSet.cs
- QilVisitor.cs
- DesignerActionGlyph.cs
- DataSourceProvider.cs
- ZipPackage.cs
- BasicKeyConstraint.cs
- AutoScrollHelper.cs
- NativeMethods.cs
- CodeTypeOfExpression.cs
- URLString.cs
- UserControlBuildProvider.cs
- PublisherMembershipCondition.cs
- SessionStateSection.cs
- WindowsListViewGroup.cs
- DataRelationPropertyDescriptor.cs
- Timer.cs
- BaseCollection.cs
- DBDataPermission.cs
- Point3DKeyFrameCollection.cs
- XmlSchemaSimpleContentExtension.cs
- ResourceDescriptionAttribute.cs
- HwndSubclass.cs
- Publisher.cs
- mediaeventshelper.cs
- PersonalizablePropertyEntry.cs
- ScopedKnownTypes.cs
- PropertiesTab.cs
- AxisAngleRotation3D.cs
- Exception.cs
- MimeObjectFactory.cs
- FullTextLine.cs
- ControlAdapter.cs
- IdentityModelStringsVersion1.cs
- FocusChangedEventArgs.cs
- UserPreferenceChangingEventArgs.cs
- TargetInvocationException.cs
- FunctionImportMapping.cs
- HtmlDocument.cs
- UnicodeEncoding.cs
- MergablePropertyAttribute.cs
- DbConnectionPool.cs
- RuleElement.cs
- ArithmeticException.cs
- SoapSchemaExporter.cs
- COM2ColorConverter.cs
- XmlSchemaExporter.cs
- BmpBitmapDecoder.cs
- BatchParser.cs
- ServiceDescriptions.cs
- Hyperlink.cs
- DataBindingExpressionBuilder.cs
- DateTimeOffsetConverter.cs
- ToolStripMenuItem.cs
- TabControl.cs
- WebPartEventArgs.cs
- DataBoundControl.cs
- MetadataItemCollectionFactory.cs
- StructuralObject.cs
- SizeAnimation.cs
- CounterSample.cs
- UserMapPath.cs
- BrushMappingModeValidation.cs
- DocumentSchemaValidator.cs
- SafeNativeMethods.cs
- TraceProvider.cs
- HttpListenerResponse.cs
- Span.cs
- OdbcEnvironment.cs
- BitmapPalette.cs
- DeferredElementTreeState.cs
- MemoryFailPoint.cs
- PropertyInfo.cs
- SendingRequestEventArgs.cs
- TableItemProviderWrapper.cs
- ElementMarkupObject.cs
- PathFigureCollection.cs
- RangeValidator.cs
- SettingsPropertyNotFoundException.cs
- ContentDisposition.cs
- ServiceChannelFactory.cs
- querybuilder.cs
- LongCountAggregationOperator.cs
- StrongNameKeyPair.cs