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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
//------------------------------------------------------------------------------
// <copyright file="httpapplicationstate.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
* Application State Dictionary class
*
* Copyright (c) 1999 Microsoft Corporation
*/
namespace System.Web {
using System.Threading;
using System.Runtime.InteropServices;
using System.Security.Permissions;
using System.Collections;
using System.Collections.Specialized;
using System.Web;
using System.Web.Util;
//
// Application state collection
//
/// <devdoc>
/// <para>
/// The HttpApplicationState class enables developers to
/// share global information across multiple requests, sessions, and pipelines
/// within an ASP.NET application. (An ASP.NET application is the sum of all files, pages,
/// handlers, modules, and code
/// within the scope of a virtual directory and its
/// subdirectories on a single web server).
/// </para>
/// </devdoc>
public sealed class HttpApplicationState : NameObjectCollectionBase {
// app lock with auto-unlock feature
private HttpApplicationStateLock _lock = new HttpApplicationStateLock();
// static object collections
private HttpStaticObjectsCollection _applicationStaticObjects;
private HttpStaticObjectsCollection _sessionStaticObjects;
internal HttpApplicationState() : this(null, null) {
}
internal HttpApplicationState(HttpStaticObjectsCollection applicationStaticObjects,
HttpStaticObjectsCollection sessionStaticObjects)
: base(Misc.CaseInsensitiveInvariantKeyComparer) {
_applicationStaticObjects = applicationStaticObjects;
if (_applicationStaticObjects == null)
_applicationStaticObjects = new HttpStaticObjectsCollection();
_sessionStaticObjects = sessionStaticObjects;
if (_sessionStaticObjects == null)
_sessionStaticObjects = new HttpStaticObjectsCollection();
}
//
// Internal accessor to session static objects collection
//
internal HttpStaticObjectsCollection SessionStaticObjects {
get { return _sessionStaticObjects;}
}
//
// Implementation of standard collection stuff
//
/// <devdoc>
/// <para>Gets
/// the number of item objects in the application state collection.</para>
/// </devdoc>
public override int Count {
get {
int c = 0;
_lock.AcquireRead();
try {
c = base.Count;
}
finally {
_lock.ReleaseRead();
}
return c;
}
}
// modifying methods
/// <devdoc>
/// <para>
/// Adds
/// a new state object to the application state collection.
/// </para>
/// </devdoc>
public void Add(String name, Object value) {
_lock.AcquireWrite();
try {
BaseAdd(name, value);
}
finally {
_lock.ReleaseWrite();
}
}
/// <devdoc>
/// <para>Updates an HttpApplicationState value within the collection.</para>
/// </devdoc>
public void Set(String name, Object value) {
_lock.AcquireWrite();
try {
BaseSet(name, value);
}
finally {
_lock.ReleaseWrite();
}
}
/// <devdoc>
/// <para>Removes
/// an
/// object from the application state collection by name.</para>
/// </devdoc>
public void Remove(String name) {
_lock.AcquireWrite();
try {
BaseRemove(name);
}
finally {
_lock.ReleaseWrite();
}
}
/// <devdoc>
/// <para>Removes
/// an
/// object from the application state collection by name.</para>
/// </devdoc>
public void RemoveAt(int index) {
_lock.AcquireWrite();
try {
BaseRemoveAt(index);
}
finally {
_lock.ReleaseWrite();
}
}
/// <devdoc>
/// <para>
/// Removes
/// all objects from the application state collection.
/// </para>
/// </devdoc>
public void Clear() {
_lock.AcquireWrite();
try {
BaseClear();
}
finally {
_lock.ReleaseWrite();
}
}
/// <devdoc>
/// <para>
/// Removes
/// all objects from the application state collection.
/// </para>
/// </devdoc>
public void RemoveAll() {
Clear();
}
// access by key
/// <devdoc>
/// <para>
/// Enables user to retrieve application state object by name.
/// </para>
/// </devdoc>
public Object Get(String name) {
Object obj = null;
_lock.AcquireRead();
try {
obj = BaseGet(name);
}
finally {
_lock.ReleaseRead();
}
return obj;
}
/// <devdoc>
/// <para>Enables
/// a user to add/remove/update a single application state object.</para>
/// </devdoc>
public Object this[String name]
{
get { return Get(name);}
set { Set(name, value);}
}
// access by index
/// <devdoc>
/// <para>
/// Enables user
/// to retrieve a single application state object by index.
/// </para>
/// </devdoc>
public Object Get(int index) {
Object obj = null;
_lock.AcquireRead();
try {
obj = BaseGet(index);
}
finally {
_lock.ReleaseRead();
}
return obj;
}
/// <devdoc>
/// <para>
/// Enables user to retrieve an application state object name by index.
/// </para>
/// </devdoc>
public String GetKey(int index) {
String s = null;
_lock.AcquireRead();
try {
s = BaseGetKey(index);
}
finally {
_lock.ReleaseRead();
}
return s;
}
/// <devdoc>
/// <para>
/// Enables
/// user to retrieve an application state object by index.
/// </para>
/// </devdoc>
public Object this[int index]
{
get { return Get(index);}
}
// access to keys and values as arrays
/// <devdoc>
/// <para>
/// Enables user
/// to retrieve all application state object names in collection.
/// </para>
/// </devdoc>
public String[] AllKeys {
get {
String [] allKeys = null;
_lock.AcquireRead();
try {
allKeys = BaseGetAllKeys();
}
finally {
_lock.ReleaseRead();
}
return allKeys;
}
}
//
// Public properties
//
/// <devdoc>
/// <para>
/// Returns "this". Provided for legacy ASP compatibility.
/// </para>
/// </devdoc>
public HttpApplicationState Contents {
get { return this;}
}
/// <devdoc>
/// <para>
/// Exposes all objects declared via an <object
/// runat=server></object> tag within the ASP.NET application file.
/// </para>
/// </devdoc>
public HttpStaticObjectsCollection StaticObjects {
get { return _applicationStaticObjects;}
}
//
// Locking support
//
/// <devdoc>
/// <para>
/// Locks
/// access to all application state variables. Facilitates access
/// synchronization.
/// </para>
/// </devdoc>
public void Lock() {
_lock.AcquireWrite();
}
/// <devdoc>
/// <para>
/// Unocks access to all application state variables. Facilitates access
/// synchronization.
/// </para>
/// </devdoc>
public void UnLock() {
_lock.ReleaseWrite();
}
internal void EnsureUnLock() {
_lock.EnsureReleaseWrite();
}
}
//
// Recursive read-write lock that allows removing of all
// outstanding write locks from the current thread at once
//
internal class HttpApplicationStateLock : ReadWriteObjectLock {
private int _recursionCount;
private int _threadId;
internal HttpApplicationStateLock() {
}
internal override void AcquireRead() {
int currentThreadId = SafeNativeMethods.GetCurrentThreadId();
if (_threadId != currentThreadId)
base.AcquireRead(); // only if no write lock
}
internal override void ReleaseRead() {
int currentThreadId = SafeNativeMethods.GetCurrentThreadId();
if (_threadId != currentThreadId)
base.ReleaseRead(); // only if no write lock
}
internal override void AcquireWrite() {
int currentThreadId = SafeNativeMethods.GetCurrentThreadId();
if (_threadId == currentThreadId) {
_recursionCount++;
}
else {
base.AcquireWrite();
_threadId = currentThreadId;
_recursionCount = 1;
}
}
internal override void ReleaseWrite() {
int currentThreadId = SafeNativeMethods.GetCurrentThreadId();
if (_threadId == currentThreadId) {
if (--_recursionCount == 0) {
_threadId = 0;
base.ReleaseWrite();
}
}
}
//
// release all write locks held by the current thread
//
internal void EnsureReleaseWrite() {
int currentThreadId = SafeNativeMethods.GetCurrentThreadId();
if (_threadId == currentThreadId) {
_threadId = 0;
_recursionCount = 0;
base.ReleaseWrite();
}
}
}
}
|