forked from microsoft/referencesource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpstaticobjectscollection.cs
336 lines (266 loc) · 9.4 KB
/
httpstaticobjectscollection.cs
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
//------------------------------------------------------------------------------
// <copyright file="httpstaticobjectscollection.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
* Static objects collection for application and session state
* with deferred creation
*/
namespace System.Web {
using System.Runtime.InteropServices;
using System.Collections;
using System.Collections.Specialized;
using System.IO;
using System.Web;
using System.Web.Util;
using System.Security.Permissions;
//
// Static objects collection class
//
/// <devdoc>
/// <para>Provides a static objects collection for the
/// HTTPApplicationState.StaticObjects and TemplateParser.SessionObjects properties.</para>
/// </devdoc>
public sealed class HttpStaticObjectsCollection : ICollection {
private IDictionary _objects = new Hashtable(StringComparer.OrdinalIgnoreCase);
/// <devdoc>
/// <para>
/// Initializes a new instance of the <see cref='System.Web.HttpStaticObjectsCollection'/>
/// class.
/// </para>
/// </devdoc>
public HttpStaticObjectsCollection() {
}
internal void Add(String name, Type t, bool lateBound) {
_objects.Add(name, new HttpStaticObjectsEntry(name, t, lateBound));
}
// Expose the internal dictionary (for codegen purposes)
internal IDictionary Objects {
get { return _objects;}
}
/*
* Create a copy without copying instances (names and types only)
*/
internal HttpStaticObjectsCollection Clone() {
HttpStaticObjectsCollection c = new HttpStaticObjectsCollection();
IDictionaryEnumerator e = _objects.GetEnumerator();
while (e.MoveNext()) {
HttpStaticObjectsEntry entry = (HttpStaticObjectsEntry)e.Value;
c.Add(entry.Name, entry.ObjectType, entry.LateBound);
}
return c;
}
/*
* Get number of real instances created
*/
internal int GetInstanceCount() {
int count = 0;
IDictionaryEnumerator e = _objects.GetEnumerator();
while (e.MoveNext()) {
HttpStaticObjectsEntry entry = (HttpStaticObjectsEntry)e.Value;
if (entry.HasInstance)
count++;
}
return count;
}
/// <devdoc>
/// </devdoc>
public bool NeverAccessed {
get {return (GetInstanceCount() == 0);}
}
//
// Implementation of standard collection stuff
//
/// <devdoc>
/// <para>Gets the object in the collection with the given name (case
/// insensitive). </para>
/// </devdoc>
public Object this[String name]
{
get {
HttpStaticObjectsEntry e = (HttpStaticObjectsEntry)_objects[name];
return(e != null) ? e.Instance : null;
}
}
// Alternative to the default property
/// <devdoc>
/// <para>Gets the object in the collection with the given name
/// (case insensitive). Alternative to the <paramref name="this"/> accessor.</para>
/// </devdoc>
public Object GetObject(String name) {
return this[name];
}
/// <devdoc>
/// <para>Gets the number of objects in the collection.</para>
/// </devdoc>
public int Count {
get {
return _objects.Count;
}
}
/// <devdoc>
/// <para>Returns a dictionary enumerator used for iterating through the key/value
/// pairs contained in the collection.</para>
/// </devdoc>
public IEnumerator GetEnumerator() {
return new HttpStaticObjectsEnumerator((IDictionaryEnumerator)_objects.GetEnumerator());
}
/// <devdoc>
/// <para>Copies members of the collection into an array.</para>
/// </devdoc>
public void CopyTo(Array array, int index) {
for (IEnumerator e = this.GetEnumerator(); e.MoveNext();)
array.SetValue(e.Current, index++);
}
/// <devdoc>
/// <para>Gets an object that can be used to synchronize access to the collection.</para>
/// </devdoc>
public Object SyncRoot {
get { return this;}
}
/// <devdoc>
/// <para>Gets a value indicating whether the collection is read-only.</para>
/// </devdoc>
public bool IsReadOnly {
get { return true;}
}
/// <devdoc>
/// <para>Gets a value indicating whether the collection is synchronized.</para>
/// </devdoc>
public bool IsSynchronized {
get { return false;}
}
public void Serialize(BinaryWriter writer) {
IDictionaryEnumerator e;
HttpStaticObjectsEntry entry;
bool hasInstance;
writer.Write(Count);
e = _objects.GetEnumerator();
while (e.MoveNext()) {
entry = (HttpStaticObjectsEntry)e.Value;
writer.Write(entry.Name);
hasInstance = entry.HasInstance;
writer.Write(hasInstance);
if (hasInstance) {
AltSerialization.WriteValueToStream(entry.Instance, writer);
}
else {
writer.Write(entry.ObjectType.FullName);
writer.Write(entry.LateBound);
}
}
}
static public HttpStaticObjectsCollection Deserialize(BinaryReader reader) {
int count;
string name;
string typename;
bool hasInstance;
Object instance;
HttpStaticObjectsEntry entry;
HttpStaticObjectsCollection col;
col = new HttpStaticObjectsCollection();
count = reader.ReadInt32();
while (count-- > 0) {
name = reader.ReadString();
hasInstance = reader.ReadBoolean();
if (hasInstance) {
instance = AltSerialization.ReadValueFromStream(reader);
entry = new HttpStaticObjectsEntry(name, instance, 0);
}
else {
typename = reader.ReadString();
bool lateBound = reader.ReadBoolean();
entry = new HttpStaticObjectsEntry(name, Type.GetType(typename), lateBound);
}
col._objects.Add(name, entry);
}
return col;
}
}
//
// Dictionary entry class
//
internal class HttpStaticObjectsEntry {
private String _name;
private Type _type;
private bool _lateBound;
private Object _instance;
internal HttpStaticObjectsEntry(String name, Type t, bool lateBound) {
_name = name;
_type = t;
_lateBound = lateBound;
_instance = null;
}
internal HttpStaticObjectsEntry(String name, Object instance, int dummy) {
_name = name;
_type = instance.GetType();
_instance = instance;
}
internal String Name {
get { return _name;}
}
internal Type ObjectType {
get { return _type;}
}
internal bool LateBound {
get { return _lateBound;}
}
internal Type DeclaredType {
get { return _lateBound ? typeof(object) : ObjectType; }
}
internal bool HasInstance {
get { return(_instance != null);}
}
internal Object Instance {
get {
if (_instance == null) {
lock (this) {
if (_instance == null)
_instance = Activator.CreateInstance(_type);
}
}
return _instance;
}
}
}
//
// Enumerator class for static objects collection
//
internal class HttpStaticObjectsEnumerator : IDictionaryEnumerator {
private IDictionaryEnumerator _enum;
internal HttpStaticObjectsEnumerator(IDictionaryEnumerator e) {
_enum = e;
}
// Dictionary enumarator implementation
public void Reset() {
_enum.Reset();
}
public bool MoveNext() {
return _enum.MoveNext();
}
public Object Key {
get {
return _enum.Key;
}
}
public Object Value {
get {
HttpStaticObjectsEntry e = (HttpStaticObjectsEntry)_enum.Value;
if (e == null)
return null;
return e.Instance;
}
}
public Object Current {
get {
return Entry;
}
}
public DictionaryEntry Entry {
get {
return new DictionaryEntry(_enum.Key, this.Value);
}
}
}
}