1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
//------------------------------------------------------------------------------
// <copyright file="HttpCacheVary.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
* Cache Vary class. Wraps Vary header
*
* Copyright (c) 1998 Microsoft Corporation
*/
namespace System.Web {
using System.Text;
using System.Runtime.InteropServices;
using System.Web.Util;
using System.Security.Permissions;
/// <devdoc>
/// <para>Indicates that a cache should contain multiple
/// representations for a particular Uri. This class is an encapsulation that
/// provides a rich, type-safe way to set the Vary header.</para>
/// </devdoc>
public sealed class HttpCacheVaryByHeaders {
bool _isModified;
bool _varyStar;
HttpDictionary _headers;
public HttpCacheVaryByHeaders() {
Reset();
}
internal void Reset() {
_isModified = false;
_varyStar = false;
_headers = null;
}
/// <summary>
/// Set the Headers in Cache Vary
/// </summary>
/// <param name="headers"></param>
public void SetHeaders(string[] headers) {
int i, n;
if (headers == null) {
_isModified = false;
_varyStar = false;
_headers = null;
}
else {
_isModified = true;
if (headers[0].Equals("*")) {
Debug.Assert(headers.Length == 1, "headers.Length == 1");
_varyStar = true;
_headers = null;
}
else {
_varyStar = false;
_headers = new HttpDictionary();
for (i = 0, n = headers.Length; i < n; i++) {
_headers.SetValue(headers[i], headers[i]);
}
}
}
}
internal bool IsModified() {
return _isModified;
}
/*
* Construct header value string
*/
internal String ToHeaderString() {
StringBuilder s;
Object item;
int i, n;
if (_varyStar) {
return "*";
}
else if (_headers != null) {
s = new StringBuilder();
for (i = 0, n = _headers.Size; i < n; i++) {
item = _headers.GetValue(i);
if (item != null) {
HttpCachePolicy.AppendValueToHeader(s, (String)item);
}
}
if (s.Length > 0)
return s.ToString();
}
return null;
}
/// <summary>
/// Get the Headers in Cache Vary
/// </summary>
/// <returns></returns>
public string[] GetHeaders() {
string[] s = null;
Object item;
int i, j, c, n;
if (_varyStar) {
return new string[1] {"*"};
}
else if (_headers != null) {
n = _headers.Size;
c = 0;
for (i = 0; i < n; i++) {
item = _headers.GetValue(i);
if (item != null) {
c++;
}
}
if (c > 0) {
s = new string[c];
j = 0;
for (i = 0; i < n; i++) {
item = _headers.GetValue(i);
if (item != null) {
s[j] = (string) item;
j++;
}
}
Debug.Assert(j == c, "j == c");
}
}
return s;
}
//
// Public methods and properties
//
/// <devdoc>
/// <para>Sets the "Vary: *" header and causes all other Vary:
/// header information to be dropped.</para>
/// </devdoc>
public void VaryByUnspecifiedParameters() {
_isModified = true;
_varyStar = true;
_headers = null;
}
internal bool GetVaryByUnspecifiedParameters() {
return _varyStar;
}
/*
* Vary by accept types
*/
/// <devdoc>
/// <para>Retrieves or assigns a value indicating whether the cache should vary by Accept types. This causes the
/// Vary: header to include an Accept field.</para>
/// </devdoc>
public bool AcceptTypes {
get {
return this["Accept"];
}
set {
_isModified = true;
this["Accept"] = value;
}
}
/*
* Vary by accept language
*/
/// <devdoc>
/// <para> Retrieves or assigns a Boolean value indicating whether
/// the cache should vary by user language.</para>
/// </devdoc>
public bool UserLanguage {
get {
return this["Accept-Language"];
}
set {
_isModified = true;
this["Accept-Language"] = value;
}
}
/*
* Vary by user agent
*/
/// <devdoc>
/// <para> Retrieves or assigns a Boolean value indicating whether
/// the cache should vary by user agent.</para>
/// </devdoc>
public bool UserAgent {
get {
return this["User-Agent"];
}
set {
_isModified = true;
this["User-Agent"] = value;
}
}
/*
* Vary by charset
*/
/// <devdoc>
/// <para> Retrieves or assigns a value indicating whether the
/// cache should vary by browser character set.</para>
/// </devdoc>
public bool UserCharSet {
get {
return this["Accept-Charset"];
}
set {
_isModified = true;
this["Accept-Charset"] = value;
}
}
/*
* Vary by a given header
*/
/// <devdoc>
/// <para> Default property.
/// Indexed property indicating that a cache should (or should not) vary according
/// to a custom header.</para>
/// </devdoc>
public bool this[String header]
{
get {
if (header == null) {
throw new ArgumentNullException("header");
}
if (header.Equals("*")) {
return _varyStar;
}
else {
return (_headers != null && _headers.GetValue(header) != null);
}
}
set {
if (header == null) {
throw new ArgumentNullException("header");
}
/*
* Since adding a Vary header is more restrictive, we don't
* want components to be able to set a Vary header to false
* if another component has set it to true.
*/
if (value == false) {
return;
}
_isModified = true;
if (header.Equals("*")) {
VaryByUnspecifiedParameters();
}
else {
// set value to header if true or null if false
if (!_varyStar) {
if (_headers == null) {
_headers = new HttpDictionary();
}
_headers.SetValue(header, header);
}
}
}
}
}
}
|