Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Cache / RequestCacheValidator.cs / 1305376 / RequestCacheValidator.cs
/*++ Copyright (c) Microsoft Corporation Module Name: RequestCacheValidator.cs Abstract: The file specifies the contract for plugged cache validation logic. Author: Alexei Vopilov 21-Dec-2002 Revision History: Aug 25 2003 - Moved into a separate file and implemented Whidbey M3 changes Jan 25 2004 - Changed the visibility of the class from public to internal. --*/ namespace System.Net.Cache { using System; using System.Diagnostics; using System.Text; using System.IO; using System.Collections.Specialized; using System.Threading; // // We need Undefined value because sometime a cache entry does not provide a clue when it should expire // not flags! internal enum CacheFreshnessStatus { Undefined = 0, Fresh = 1, Stale = 2 } // // These are valus that can be returned from validation methods. // Most validation methods can only return a subset of below values. // // not flags! internal enum CacheValidationStatus { DoNotUseCache = 0, //Cache is not used for this request and response is not cached. Fail = 1, //Fail this request (allows a protocol to generate own exception) DoNotTakeFromCache = 2, //Don't used caches value for this request RetryResponseFromCache = 3, //Retry cache lookup using changed cache key RetryResponseFromServer = 4, //Retry this request as the result of invalid response received ReturnCachedResponse = 5, //Return cached response to the application CombineCachedAndServerResponse = 6, //Combine cached and live responses for this request CacheResponse = 7, //Replace cache entry with received live response UpdateResponseInformation = 8, //Update Metadata of cache entry using live response headers RemoveFromCache = 9, //Remove cache entry referenced to by a cache key. DoNotUpdateCache = 10, //Do nothing on cache update. Continue = 11 //Proceed to the next protocol stage. } ////// internal abstract class RequestCacheValidator { internal WebRequest _Request; internal WebResponse _Response; internal Stream _CacheStream; private RequestCachePolicy _Policy; private Uri _Uri; private String _CacheKey; private RequestCacheEntry _CacheEntry; private int _ResponseCount; private CacheValidationStatus _ValidationStatus; private CacheFreshnessStatus _CacheFreshnessStatus; private long _CacheStreamOffset; private long _CacheStreamLength; private bool _StrictCacheErrors; private TimeSpan _UnspecifiedMaxAge; /*-------------- public members -------------*/ internal abstract RequestCacheValidator CreateValidator(); /* // Consider removing. protected RequestCacheValidator(): this(false, TimeSpan.FromDays(1)) { } */ protected RequestCacheValidator(bool strictCacheErrors, TimeSpan unspecifiedMaxAge) { _StrictCacheErrors = strictCacheErrors; _UnspecifiedMaxAge = unspecifiedMaxAge; _ValidationStatus = CacheValidationStatus.DoNotUseCache; _CacheFreshnessStatus = CacheFreshnessStatus.Undefined; } //public internal bool StrictCacheErrors { get {return _StrictCacheErrors;} } // // This would help cache validation when the entry does // not have any expiration mechanism defined. //public internal TimeSpan UnspecifiedMaxAge { get {return _UnspecifiedMaxAge;} } /*------------- get-only protected properties -------------*/ protected internal Uri Uri {get {return _Uri;}} protected internal WebRequest Request {get {return _Request; }} protected internal WebResponse Response {get {return _Response; }} protected internal RequestCachePolicy Policy {get {return _Policy; }} protected internal int ResponseCount {get {return _ResponseCount;}} protected internal CacheValidationStatus ValidationStatus {get {return _ValidationStatus;}} protected internal CacheFreshnessStatus CacheFreshnessStatus {get {return _CacheFreshnessStatus;}} protected internal RequestCacheEntry CacheEntry {get {return _CacheEntry;}} /*------------- protected methods and settable protected properties ------------*/ protected internal Stream CacheStream { get {return _CacheStream;} set {_CacheStream = value;} } // protected internal long CacheStreamOffset { get {return _CacheStreamOffset;} set {_CacheStreamOffset = value;} } // protected internal long CacheStreamLength { get {return _CacheStreamLength;} set {_CacheStreamLength = value;} } // protected internal string CacheKey { get {return _CacheKey;} /* // Consider removing. set { // Security: Setting a cache key would allow reading an arbitrary cache location //new RequestCachePermission(RequestCacheActions.CacheReadWrite, value).Demand(); _CacheKey = value; } */ } // /*-------------- protected virtual methods -------------*/ // protected internal abstract CacheValidationStatus ValidateRequest(); // protected internal abstract CacheFreshnessStatus ValidateFreshness(); // protected internal abstract CacheValidationStatus ValidateCache(); // protected internal abstract CacheValidationStatus ValidateResponse(); // protected internal abstract CacheValidationStatus RevalidateCache(); // protected internal abstract CacheValidationStatus UpdateCache(); // protected internal virtual void FailRequest(WebExceptionStatus webStatus) { if(Logging.On)Logging.PrintError(Logging.RequestCache, SR.GetString(SR.net_log_cache_failing_request_with_exception, webStatus.ToString())); if (webStatus == WebExceptionStatus.CacheEntryNotFound) throw ExceptionHelper.CacheEntryNotFoundException; else if (webStatus == WebExceptionStatus.RequestProhibitedByCachePolicy) throw ExceptionHelper.RequestProhibitedByCachePolicyException; throw new WebException(NetRes.GetWebStatusString("net_requestaborted", webStatus), webStatus); } /*-------------- internal members -------------*/ // internal void FetchRequest(Uri uri, WebRequest request) { _Request = request; _Policy = request.CachePolicy; _Response = null; _ResponseCount = 0; _ValidationStatus = CacheValidationStatus.DoNotUseCache; _CacheFreshnessStatus = CacheFreshnessStatus.Undefined; _CacheStream = null; _CacheStreamOffset = 0L; _CacheStreamLength = 0L; if (!uri.Equals(_Uri)) { // it's changed from previous call _CacheKey = uri.GetParts(UriComponents.AbsoluteUri, UriFormat.Unescaped); } _Uri = uri; } // internal void FetchCacheEntry(RequestCacheEntry fetchEntry) { _CacheEntry = fetchEntry; } internal void FetchResponse(WebResponse fetchResponse) { ++_ResponseCount; _Response = fetchResponse; } internal void SetFreshnessStatus(CacheFreshnessStatus status) { _CacheFreshnessStatus = status; } internal void SetValidationStatus(CacheValidationStatus status) { _ValidationStatus = status; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// This class reserves a pattern for all WebRequest related cache validators. /// All exposed protected methods are virtual. /// If a derived class method does not call the base method implementation, /// then the base class context may not be updated so it's recommended suppressing the base /// methods for all subsequent calls on this class. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridViewSelectedColumnCollection.cs
- ColorContextHelper.cs
- ResponseStream.cs
- DbConnectionPoolGroupProviderInfo.cs
- DataBindingHandlerAttribute.cs
- MouseEvent.cs
- _BaseOverlappedAsyncResult.cs
- DataGridViewTextBoxEditingControl.cs
- Vector.cs
- RegionIterator.cs
- ClientConfigPaths.cs
- ListViewInsertEventArgs.cs
- IndexObject.cs
- UITypeEditor.cs
- SrgsOneOf.cs
- DoubleAnimationClockResource.cs
- SqlPersonalizationProvider.cs
- Int64Storage.cs
- Vector3DValueSerializer.cs
- SqlDataSourceCommandEventArgs.cs
- RelationshipEnd.cs
- AmbiguousMatchException.cs
- GlyphElement.cs
- BaseHashHelper.cs
- TextView.cs
- PriorityItem.cs
- OutputCacheProfile.cs
- FormsAuthenticationUserCollection.cs
- TextRunCache.cs
- CompiledRegexRunner.cs
- LogWriteRestartAreaState.cs
- StyleCollection.cs
- FlowLayout.cs
- MailDefinition.cs
- ContentFilePart.cs
- SplitterPanelDesigner.cs
- UnconditionalPolicy.cs
- SQLDateTimeStorage.cs
- Win32.cs
- MemberNameValidator.cs
- GroupBoxAutomationPeer.cs
- InputMethod.cs
- CodeIdentifiers.cs
- Guid.cs
- DynamicControlParameter.cs
- ParseNumbers.cs
- ButtonBaseAutomationPeer.cs
- AncillaryOps.cs
- InternalControlCollection.cs
- UIElementCollection.cs
- Rect.cs
- RijndaelCryptoServiceProvider.cs
- NullableFloatMinMaxAggregationOperator.cs
- ColorTransform.cs
- PrintDocument.cs
- DataGridCheckBoxColumn.cs
- IChannel.cs
- messageonlyhwndwrapper.cs
- XmlElementList.cs
- StylusCollection.cs
- Preprocessor.cs
- NodeInfo.cs
- Image.cs
- HitTestDrawingContextWalker.cs
- TextDecorationUnitValidation.cs
- DBSchemaRow.cs
- RecordsAffectedEventArgs.cs
- HostedHttpRequestAsyncResult.cs
- PropertyChange.cs
- DecimalMinMaxAggregationOperator.cs
- CommandDevice.cs
- FontInfo.cs
- WindowsStatic.cs
- ScalarOps.cs
- MethodToken.cs
- TemplateControlParser.cs
- SearchForVirtualItemEventArgs.cs
- ProfilePropertyMetadata.cs
- HttpUnhandledOperationInvoker.cs
- SqlTrackingQuery.cs
- TableCell.cs
- PathSegmentCollection.cs
- DataControlFieldHeaderCell.cs
- InternalConfigHost.cs
- TableItemProviderWrapper.cs
- SelectionEditor.cs
- WindowsBrush.cs
- CollectionConverter.cs
- DataGridViewDataErrorEventArgs.cs
- DoubleCollection.cs
- GeneralTransform.cs
- SimpleWorkerRequest.cs
- XmlSchemaDatatype.cs
- VirtualPathProvider.cs
- ContentElement.cs
- DataListCommandEventArgs.cs
- Library.cs
- LinkUtilities.cs
- WindowsListViewScroll.cs
- DataGridViewToolTip.cs