-
Notifications
You must be signed in to change notification settings - Fork 0
/
WeakCacheGeneric.cs
450 lines (419 loc) · 15.5 KB
/
WeakCacheGeneric.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
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace DNQ.VirtualizedItemsSource
{
/// <summary> Implements a specialized weak cache system based on a key-value pair paradigm where
/// values are stored as weak references. The cache will not prevent items from being
/// reclaimed by the Garbage Collector. </summary>
///
/// <typeparam name="KeyType"> Type of the keys used to reference items in the cache. </typeparam>
/// <typeparam name="TItemType"> Type of the items stored in the cache. </typeparam>
///
/// <seealso cref="T:DNQ.VirtualizedItemsSource.WeakCache"/>
/// <seealso cref="T:System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{KeyType,TItemType}}"/>
public class WeakCache<KeyType, TItemType>
: WeakCache
, IEnumerable<KeyValuePair<KeyType, TItemType>> where TItemType : class
{
private Dictionary<KeyType, WeakReference> cache = new Dictionary<KeyType, WeakReference>();
private ReaderWriterLockSlim _internalLock = new ReaderWriterLockSlim(LockRecursionPolicy.NoRecursion);
internal WeakCache(TimeSpan autoPurgeInterval)
: base(autoPurgeInterval)
{
}
/// <summary> Clears the cache by removing all the items. </summary>
public override void Clear()
{
_internalLock.EnterWriteLock();
try
{
cache.Clear();
}
finally
{
_internalLock.ExitWriteLock();
}
}
/// <summary>
/// Gets the number of elements in the cache (including potentially expired ones).
/// </summary>
///
/// <value> The number of items in the cache (including potentially expired ones). </value>
public override int Count
{
get
{
_internalLock.EnterReadLock();
try
{
return cache.Count;
}
finally
{
_internalLock.ExitReadLock();
}
}
}
/// <summary> The purge timeout internal. May be used only from this class, as paramter
/// to TryEnterWriteLock(TimeSpan timoutInterval) methods. All others muse use
/// the <see cref="PurgeTimeout"/> member.</summary>
private TimeSpan _purgeTimeout_INTERNAL_UNSAFE = TimeSpan.FromMilliseconds(500);
/// <summary> Gets or sets the maximum amount of time to wait to execute a purge command, if blocked. </summary>
///
/// <value> The maximum purge timeout interval. </value>
public TimeSpan PurgeTimeout
{
get
{
_internalLock.EnterReadLock();
try
{
return _purgeTimeout_INTERNAL_UNSAFE;
}
finally
{
_internalLock.ExitReadLock();
}
}
set
{
_internalLock.EnterWriteLock();
try
{
_purgeTimeout_INTERNAL_UNSAFE = value;
}
finally
{
_internalLock.ExitWriteLock();
}
}
}
/// <summary> The time when this cache was last purged. May be used only from this class,
/// within code sections that are synchronized for multi-threaded access. All others
/// muse use the <see cref="LastPurgeTime"/> member.</summary>
private DateTimeOffset _timeLastPurged_INTERNAL_UNSAFE = DateTimeOffset.Now;
/// <summary> Gets the time when this cache was last purged. </summary>
public override DateTimeOffset LastPurgeTime
{
get {
_internalLock.EnterReadLock();
try
{
return _timeLastPurged_INTERNAL_UNSAFE;
}
finally
{
_internalLock.ExitReadLock();
}
}
}
/// <summary> Gets the number of elements in the cache, excluding expired ones. This operation
/// is more expensive than a simple count. </summary>
public override int GetValidCount()
{
_internalLock.EnterReadLock();
try
{
int count = 0;
foreach (var kvp in cache)
{
if (kvp.Value != null && kvp.Value.IsAlive && kvp.Value.Target != null)
count++;
}
return count;
}
finally
{
_internalLock.ExitReadLock();
}
}
/// <summary> Gets the item references by the given, if the item is in the cache and is not expired. </summary>
///
/// <param name="key"> A key of an item to be looked up in the cache. </param>
///
/// <returns> The item if it exists and is not expired, otherwise null. </returns>
public TItemType Get(KeyType key)
{
_internalLock.EnterUpgradeableReadLock();
try
{
if (cache.ContainsKey(key))
{
if (cache[key].IsAlive && cache[key].Target != null)
{
return (TItemType)cache[key].Target;
}
else
{
if (_internalLock.TryEnterWriteLock(_purgeTimeout_INTERNAL_UNSAFE))
{
try
{
cache.Remove(key);
}
finally
{
_internalLock.ExitWriteLock();
}
}
// if we couldn't enter the write lock within the designated timout interval, we can ignore it here..
// another chance will present itself
}
}
return null;
}
finally
{
_internalLock.ExitUpgradeableReadLock();
}
}
/// <summary> Tests whether a non-expired item with the given key exists in the cache.</summary>
///
/// <param name="key"> A key of an item to be looked up in the cache. </param>
///
/// <returns> True if the item exists and is not expired, false otherwise. </returns>
public bool Has(KeyType key)
{
_internalLock.EnterReadLock();
try
{
return (cache.ContainsKey(key) && cache[key].IsAlive && cache[key].Target != null);
}
finally
{
_internalLock.ExitReadLock();
}
}
/// <summary> Puts an items in the cache. If the item already exists it will be overwritten. </summary>
///
/// <param name="key"> A key of an item to be looked up in the cache. </param>
/// <param name="item"> The item to be added to the cache. </param>
public void Put(KeyType key, TItemType item)
{
_internalLock.EnterWriteLock();
try
{
cache[key] = new WeakReference(item);
}
finally
{
_internalLock.ExitWriteLock();
}
}
public TItemType this[KeyType key]
{
get
{
return Get(key);
}
set
{
Put(key, value);
}
}
/// <summary> Purges the expired items from this cache. </summary>
public override PurgeResult Purge()
{
_internalLock.EnterUpgradeableReadLock();
try
{
List<KeyType> keysToRemove = new List<KeyType>();
foreach (KeyType key in cache.Keys)
{
if (cache[key] == null || !cache[key].IsAlive || cache[key].Target == null)
keysToRemove.Add(key);
}
if (_internalLock.TryEnterWriteLock(_purgeTimeout_INTERNAL_UNSAFE))
{
try
{
if (keysToRemove.Count > 0)
{
foreach (KeyType key in keysToRemove)
{
cache.Remove(key);
}
return new PurgeResult(keysToRemove.Count);
}
else
{
return PurgeResult.NotNeeded;
}
}
finally
{
_timeLastPurged_INTERNAL_UNSAFE = DateTimeOffset.Now;
_internalLock.ExitWriteLock();
}
}
else
{
return PurgeResult.ErrorTimedout;
}
}
finally
{
_internalLock.ExitUpgradeableReadLock();
}
}
/// <summary> Gets an enumerator for all non-expired items and their keys and
/// performs a Purge sweep as it enumerates the items. </summary>
/// <returns> The enumerator which allows foreach to be used to enumerate all
/// non-expired items in the cache along with their keys </returns>
public IEnumerator<KeyValuePair<KeyType, TItemType>> GetEnumerator()
{
List<KeyValuePair<KeyType, TItemType>> elements = new List<KeyValuePair<KeyType, TItemType>>();
_internalLock.EnterUpgradeableReadLock();
try
{
List<KeyType> keysToRemove = new List<KeyType>();
foreach (var kvp in cache)
{
if (kvp.Value != null && kvp.Value.IsAlive && kvp.Value.Target != null)
{
elements.Add(new KeyValuePair<KeyType, TItemType>(kvp.Key, (TItemType)kvp.Value.Target));
}
else
{
keysToRemove.Add(kvp.Key);
}
}
if (keysToRemove.Count > 0)
{
if (_internalLock.TryEnterWriteLock(_purgeTimeout_INTERNAL_UNSAFE))
{
try
{
foreach (KeyType key in keysToRemove)
{
cache.Remove(key);
}
}
finally
{
_internalLock.ExitWriteLock();
}
}
else
{
// We couldn't do the purge because we were blocked!
}
}
}
finally
{
_internalLock.ExitUpgradeableReadLock();
}
return elements.GetEnumerator();
}
/// <summary> Gets the internal enumerator, used to provide enumeration capabilities to the base class. </summary>
protected override System.Collections.IEnumerator InternalGetEnumerator()
{
return GetEnumerator();
}
/// <summary> Enumerates the items in the cache and performs a Purge sweep. </summary>
/// <returns>
/// An enumerator that allows foreach to be used to enumerate the non-expired items in the cache.
/// </returns>
public IEnumerable<TItemType> EnumerateValues()
{
List<KeyType> keysToRemove = new List<KeyType>();
List<TItemType> items = new List<TItemType>();
_internalLock.EnterUpgradeableReadLock();
try
{
foreach (var kvp in cache)
{
if (kvp.Value != null && kvp.Value.IsAlive && kvp.Value.Target != null)
{
items.Add((TItemType)kvp.Value.Target);
}
else
{
keysToRemove.Add(kvp.Key);
}
}
if (keysToRemove.Count > 0)
{
if (_internalLock.TryEnterWriteLock(_purgeTimeout_INTERNAL_UNSAFE))
{
try
{
foreach (KeyType key in keysToRemove)
{
cache.Remove(key);
}
}
finally
{
_internalLock.ExitWriteLock();
}
}
else
{
// We couldn't do the purge because we were blocked!
}
}
}
finally
{
_internalLock.ExitUpgradeableReadLock();
}
return (IEnumerable<TItemType>)items;
}
/// <summary> Enumerates the keys in the cache and performs a Purge sweep. </summary>
///
/// <returns>
/// An enumerator that allows foreach to be used to enumerate the keys to non-expired items in the cache.
/// </returns>
public IEnumerable<KeyType> EnumerateKeys()
{
List<KeyType> keysToRemove = new List<KeyType>();
List<KeyType> keys = new List<KeyType>();
_internalLock.EnterUpgradeableReadLock();
try
{
foreach (var kvp in cache)
{
if (kvp.Value != null && kvp.Value.IsAlive && kvp.Value.Target != null)
{
keys.Add(kvp.Key);
}
else
{
keysToRemove.Add(kvp.Key);
}
}
if (keysToRemove.Count > 0)
{
if (_internalLock.TryEnterWriteLock(_purgeTimeout_INTERNAL_UNSAFE))
{
try
{
foreach (KeyType key in keysToRemove)
{
cache.Remove(key);
}
}
finally
{
_internalLock.ExitWriteLock();
}
}
else
{
// We couldn't do the purge because we were blocked!
}
}
}
finally
{
_internalLock.ExitUpgradeableReadLock();
}
return (IEnumerable<KeyType>)keys;
}
}
}