-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathReadWriteCache.cs
537 lines (490 loc) · 13.9 KB
/
ReadWriteCache.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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using NHibernate.Cache.Access;
using NHibernate.Util;
namespace NHibernate.Cache
{
public static class LocableExtension
{
//TODO 6.0: Remove after IMinimalPutAwareLockable merge
internal static bool IsPuttable(this ReadWriteCache.ILockable lockable, long txTimestamp, object newVersion, IComparer comparator, bool minimalPut)
{
if (lockable is ReadWriteCache.IMinimalPutAwareLockable l)
{
return l.IsPuttable(txTimestamp, newVersion, comparator, minimalPut);
}
#pragma warning disable CS0618
return lockable.IsPuttable(txTimestamp, newVersion, comparator);
#pragma warning restore CS0618
}
}
/// <summary>
/// Caches data that is sometimes updated while maintaining the semantics of
/// "read committed" isolation level. If the database is set to "repeatable
/// read", this concurrency strategy <em>almost</em> maintains the semantics.
/// Repeatable read isolation is compromised in the case of concurrent writes.
/// This is an "asynchronous" concurrency strategy.
/// </summary>
/// <remarks>
/// If this strategy is used in a cluster, the underlying cache implementation
/// must support distributed hard locks (which are held only momentarily). This
/// strategy also assumes that the underlying cache implementation does not do
/// asynchronous replication and that state has been fully replicated as soon
/// as the lock is released.
/// <seealso cref="NonstrictReadWriteCache"/> for a faster algorithm
/// <seealso cref="ICacheConcurrencyStrategy"/>
/// </remarks>
public partial class ReadWriteCache : IBatchableCacheConcurrencyStrategy
{
//TODO 6.0: Merge with ILockable
internal interface IMinimalPutAwareLockable
{
bool IsPuttable(long txTimestamp, object newVersion, IComparer comparator, bool minimalPut);
}
public interface ILockable
{
CacheLock Lock(long timeout, int id);
bool IsLock { get; }
bool IsGettable(long txTimestamp);
// Since 5.4
[Obsolete("Use overload with minimalPuts parameter")]
bool IsPuttable(long txTimestamp, object newVersion, IComparer comparator);
}
private static readonly INHibernateLogger log = NHibernateLogger.For(typeof(ReadWriteCache));
private CacheBase _cache;
private int _nextLockId;
private readonly ICacheLock _asyncReaderWriterLock;
public ReadWriteCache() : this(new AsyncReaderWriterLock())
{
}
public ReadWriteCache(ICacheLock locker)
{
_asyncReaderWriterLock = locker;
}
/// <summary>
/// Gets the cache region name.
/// </summary>
public string RegionName
{
get { return Cache.RegionName; }
}
// 6.0 TODO: remove
#pragma warning disable 618
public ICache Cache
#pragma warning restore 618
{
get { return _cache; }
set { _cache = value?.AsCacheBase(); }
}
// 6.0 TODO: make implicit and switch to auto-property
CacheBase IBatchableCacheConcurrencyStrategy.Cache
{
get => _cache;
set => _cache = value;
}
/// <summary>
/// Generate an id for a new lock. Uniqueness per cache instance is very
/// desirable but not absolutely critical. Must be called from one of the
/// synchronized methods of this class.
/// </summary>
/// <returns></returns>
private int NextLockId()
{
if (_nextLockId == int.MaxValue)
{
_nextLockId = int.MinValue;
}
return _nextLockId++;
}
/// <summary>
/// Do not return an item whose timestamp is later than the current
/// transaction timestamp. (Otherwise we might compromise repeatable
/// read unnecessarily.) Do not return an item which is soft-locked.
/// Always go straight to the database instead.
/// </summary>
/// <remarks>
/// Note that since reading an item from that cache does not actually
/// go to the database, it is possible to see a kind of phantom read
/// due to the underlying row being updated after we have read it
/// from the cache. This would not be possible in a lock-based
/// implementation of repeatable read isolation. It is also possible
/// to overwrite changes made and committed by another transaction
/// after the current transaction read the item from the cache. This
/// problem would be caught by the update-time version-checking, if
/// the data is versioned or timestamped.
/// </remarks>
public object Get(CacheKey key, long txTimestamp)
{
using (_asyncReaderWriterLock.ReadLock())
{
if (log.IsDebugEnabled())
{
log.Debug("Cache lookup: {0}", key);
}
// commented out in H3.1
/*try
{
cache.Lock( key );*/
var lockable = (ILockable) Cache.Get(key);
return GetValue(txTimestamp, key, lockable);
/*}
finally
{
cache.Unlock( key );
}*/
}
}
public object[] GetMany(CacheKey[] keys, long timestamp)
{
if (log.IsDebugEnabled())
{
log.Debug("Cache lookup: {0}", string.Join(",", keys.AsEnumerable()));
}
var result = new object[keys.Length];
using (_asyncReaderWriterLock.ReadLock())
{
var lockables = _cache.GetMany(keys);
for (var i = 0; i < lockables.Length; i++)
{
var o = (ILockable) lockables[i];
result[i] = GetValue(timestamp, keys[i], o);
}
}
return result;
}
private static object GetValue(long timestamp, CacheKey key, ILockable lockable)
{
var gettable = lockable != null && lockable.IsGettable(timestamp);
if (gettable)
{
if (log.IsDebugEnabled())
{
log.Debug("Cache hit: {0}", key);
}
return ((CachedItem) lockable).Value;
}
if (log.IsDebugEnabled())
{
log.Debug(lockable == null ? "Cache miss: {0}" : "Cached item was locked: {0}", key);
}
return null;
}
/// <summary>
/// Stop any other transactions reading or writing this item to/from
/// the cache. Send them straight to the database instead. (The lock
/// does time out eventually.) This implementation tracks concurrent
/// locks by transactions which simultaneously attempt to write to an
/// item.
/// </summary>
public ISoftLock Lock(CacheKey key, object version)
{
using (_asyncReaderWriterLock.WriteLock())
{
if (log.IsDebugEnabled())
{
log.Debug("Invalidating: {0}", key);
}
var lockValue = _cache.Lock(key);
try
{
ILockable lockable = (ILockable) Cache.Get(key);
long timeout = Cache.NextTimestamp() + Cache.Timeout;
CacheLock @lock = lockable == null ?
CacheLock.Create(timeout, NextLockId(), version) :
lockable.Lock(timeout, NextLockId());
Cache.Put(key, @lock);
return @lock;
}
finally
{
_cache.Unlock(key, lockValue);
}
}
}
/// <summary>
/// Do not add an item to the cache unless the current transaction
/// timestamp is later than the timestamp at which the item was
/// invalidated. (Otherwise, a stale item might be re-added if the
/// database is operating in repeatable read isolation mode.)
/// </summary>
/// <returns>Whether the items were actually put into the cache</returns>
public bool[] PutMany(
CacheKey[] keys, object[] values, long timestamp, object[] versions, IComparer[] versionComparers,
bool[] minimalPuts)
{
var result = new bool[keys.Length];
if (timestamp == long.MinValue)
{
// MinValue means cache is disabled
return result;
}
using (_asyncReaderWriterLock.WriteLock())
{
if (log.IsDebugEnabled())
{
log.Debug("Caching: {0}", string.Join(",", keys.AsEnumerable()));
}
var lockValue = _cache.LockMany(keys);
try
{
var putBatch = new Dictionary<object, object>();
var lockables = _cache.GetMany(keys);
for (var i = 0; i < keys.Length; i++)
{
var key = keys[i];
var version = versions[i];
var lockable = (ILockable) lockables[i];
bool puttable = lockable == null ||
lockable.IsPuttable(timestamp, version, versionComparers[i], minimalPuts[i]);
if (puttable)
{
putBatch.Add(key, CachedItem.Create(values[i], Cache.NextTimestamp(), version));
if (log.IsDebugEnabled())
{
log.Debug("Cached: {0}", key);
}
result[i] = true;
}
else
{
if (log.IsDebugEnabled())
{
log.Debug(
lockable.IsLock ? "Item was locked: {0}" : "Item was already cached: {0}",
key);
}
result[i] = false;
}
}
if (putBatch.Count > 0)
{
_cache.PutMany(putBatch.Keys.ToArray(), putBatch.Values.ToArray());
}
}
finally
{
_cache.UnlockMany(keys, lockValue);
}
}
return result;
}
/// <summary>
/// Do not add an item to the cache unless the current transaction
/// timestamp is later than the timestamp at which the item was
/// invalidated. (Otherwise, a stale item might be re-added if the
/// database is operating in repeatable read isolation mode.)
/// </summary>
/// <returns>Whether the item was actually put into the cache</returns>
public bool Put(CacheKey key, object value, long txTimestamp, object version, IComparer versionComparator,
bool minimalPut)
{
if (txTimestamp == long.MinValue)
{
// MinValue means cache is disabled
return false;
}
using (_asyncReaderWriterLock.WriteLock())
{
if (log.IsDebugEnabled())
{
log.Debug("Caching: {0}", key);
}
var lockValue = _cache.Lock(key);
try
{
ILockable lockable = (ILockable) Cache.Get(key);
bool puttable = lockable == null ||
lockable.IsPuttable(txTimestamp, version, versionComparator, minimalPut);
if (puttable)
{
Cache.Put(key, CachedItem.Create(value, Cache.NextTimestamp(), version));
if (log.IsDebugEnabled())
{
log.Debug("Cached: {0}", key);
}
return true;
}
else
{
if (log.IsDebugEnabled())
{
log.Debug(lockable.IsLock ? "Item was locked: {0}" : "Item was already cached: {0}", key);
}
return false;
}
}
finally
{
_cache.Unlock(key, lockValue);
}
}
}
/// <summary>
/// decrement a lock and put it back in the cache
/// </summary>
private void DecrementLock(object key, CacheLock @lock)
{
//decrement the lock
@lock.Unlock(Cache.NextTimestamp());
Cache.Put(key, @lock);
}
public void Release(CacheKey key, ISoftLock clientLock)
{
using (_asyncReaderWriterLock.WriteLock())
{
if (log.IsDebugEnabled())
{
log.Debug("Releasing: {0}", key);
}
var lockValue = _cache.Lock(key);
try
{
ILockable lockable = (ILockable) Cache.Get(key);
if (IsUnlockable(clientLock, lockable))
{
DecrementLock(key, (CacheLock) lockable);
}
else
{
HandleLockExpiry(key);
}
}
finally
{
_cache.Unlock(key, lockValue);
}
}
}
internal void HandleLockExpiry(object key)
{
log.Warn("An item was expired by the cache while it was locked (increase your cache timeout): {0}", key);
long ts = Cache.NextTimestamp() + Cache.Timeout;
// create new lock that times out immediately
CacheLock @lock = CacheLock.Create(ts, NextLockId(), null);
@lock.Unlock(ts);
Cache.Put(key, @lock);
}
public void Clear()
{
Cache.Clear();
}
public void Remove(CacheKey key)
{
Cache.Remove(key);
}
public void Destroy()
{
// The cache is externally provided and may be shared. Destroying the cache is
// not the responsibility of this class.
Cache = null;
_asyncReaderWriterLock.Dispose();
}
/// <summary>
/// Re-cache the updated state, if and only if there there are
/// no other concurrent soft locks. Release our lock.
/// </summary>
public bool AfterUpdate(CacheKey key, object value, object version, ISoftLock clientLock)
{
using (_asyncReaderWriterLock.WriteLock())
{
if (log.IsDebugEnabled())
{
log.Debug("Updating: {0}", key);
}
var lockValue = _cache.Lock(key);
try
{
ILockable lockable = (ILockable) Cache.Get(key);
if (IsUnlockable(clientLock, lockable))
{
CacheLock @lock = (CacheLock) lockable;
if (@lock.WasLockedConcurrently)
{
// just decrement the lock, don't recache
// (we don't know which transaction won)
DecrementLock(key, @lock);
}
else
{
//recache the updated state
Cache.Put(key, CachedItem.Create(value, Cache.NextTimestamp(), version));
if (log.IsDebugEnabled())
{
log.Debug("Updated: {0}", key);
}
}
return true;
}
else
{
HandleLockExpiry(key);
return false;
}
}
finally
{
_cache.Unlock(key, lockValue);
}
}
}
public bool AfterInsert(CacheKey key, object value, object version)
{
using (_asyncReaderWriterLock.WriteLock())
{
if (log.IsDebugEnabled())
{
log.Debug("Inserting: {0}", key);
}
var lockValue = _cache.Lock(key);
try
{
ILockable lockable = (ILockable) Cache.Get(key);
if (lockable == null)
{
Cache.Put(key, CachedItem.Create(value, Cache.NextTimestamp(), version));
if (log.IsDebugEnabled())
{
log.Debug("Inserted: {0}", key);
}
return true;
}
else
{
return false;
}
}
finally
{
_cache.Unlock(key, lockValue);
}
}
}
public void Evict(CacheKey key)
{
// NOOP
}
public bool Insert(CacheKey key, object value, object currentVersion)
{
return false;
}
public bool Update(CacheKey key, object value, object currentVersion, object previousVersion)
{
return false;
}
/// <summary>
/// Is the client's lock commensurate with the item in the cache?
/// If it is not, we know that the cache expired the original
/// lock.
/// </summary>
private bool IsUnlockable(ISoftLock clientLock, ILockable myLock)
{
//null clientLock is remotely possible but will never happen in practice
return myLock != null &&
myLock.IsLock &&
clientLock != null &&
((CacheLock) clientLock).Id == ((CacheLock) myLock).Id;
}
}
}