forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadWriteCache.cs
463 lines (433 loc) · 14.3 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
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by AsyncGenerator.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using NHibernate.Cache.Access;
using NHibernate.Util;
namespace NHibernate.Cache
{
using System.Threading.Tasks;
using System.Threading;
public partial class ReadWriteCache : IBatchableCacheConcurrencyStrategy
{
/// <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 async Task<object> GetAsync(CacheKey key, long txTimestamp, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
using (await (_asyncReaderWriterLock.ReadLockAsync()).ConfigureAwait(false))
{
if (log.IsDebugEnabled())
{
log.Debug("Cache lookup: {0}", key);
}
// commented out in H3.1
/*try
{
cache.Lock( key );*/
var lockable = (ILockable) await (Cache.GetAsync(key, cancellationToken)).ConfigureAwait(false);
return GetValue(txTimestamp, key, lockable);
/*}
finally
{
cache.Unlock( key );
}*/
}
}
public async Task<object[]> GetManyAsync(CacheKey[] keys, long timestamp, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
if (log.IsDebugEnabled())
{
log.Debug("Cache lookup: {0}", string.Join(",", keys.AsEnumerable()));
}
var result = new object[keys.Length];
cancellationToken.ThrowIfCancellationRequested();
using (await (_asyncReaderWriterLock.ReadLockAsync()).ConfigureAwait(false))
{
var lockables = await (_cache.GetManyAsync(keys, cancellationToken)).ConfigureAwait(false);
for (var i = 0; i < lockables.Length; i++)
{
var o = (ILockable) lockables[i];
result[i] = GetValue(timestamp, keys[i], o);
}
}
return result;
}
/// <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 async Task<ISoftLock> LockAsync(CacheKey key, object version, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
using (await (_asyncReaderWriterLock.WriteLockAsync()).ConfigureAwait(false))
{
if (log.IsDebugEnabled())
{
log.Debug("Invalidating: {0}", key);
}
var lockValue = await (_cache.LockAsync(key, cancellationToken)).ConfigureAwait(false);
try
{
ILockable lockable = (ILockable) await (Cache.GetAsync(key, cancellationToken)).ConfigureAwait(false);
long timeout = Cache.NextTimestamp() + Cache.Timeout;
CacheLock @lock = lockable == null ?
CacheLock.Create(timeout, NextLockId(), version) :
lockable.Lock(timeout, NextLockId());
await (Cache.PutAsync(key, @lock, cancellationToken)).ConfigureAwait(false);
return @lock;
}
finally
{
await (_cache.UnlockAsync(key, lockValue, cancellationToken)).ConfigureAwait(false);
}
}
}
/// <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 async Task<bool[]> PutManyAsync(
CacheKey[] keys, object[] values, long timestamp, object[] versions, IComparer[] versionComparers,
bool[] minimalPuts, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
var result = new bool[keys.Length];
if (timestamp == long.MinValue)
{
// MinValue means cache is disabled
return result;
}
cancellationToken.ThrowIfCancellationRequested();
using (await (_asyncReaderWriterLock.WriteLockAsync()).ConfigureAwait(false))
{
if (log.IsDebugEnabled())
{
log.Debug("Caching: {0}", string.Join(",", keys.AsEnumerable()));
}
var lockValue = await (_cache.LockManyAsync(keys, cancellationToken)).ConfigureAwait(false);
try
{
var putBatch = new Dictionary<object, object>();
var lockables = await (_cache.GetManyAsync(keys, cancellationToken)).ConfigureAwait(false);
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)
{
await (_cache.PutManyAsync(putBatch.Keys.ToArray(), putBatch.Values.ToArray(), cancellationToken)).ConfigureAwait(false);
}
}
finally
{
await (_cache.UnlockManyAsync(keys, lockValue, cancellationToken)).ConfigureAwait(false);
}
}
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 async Task<bool> PutAsync(CacheKey key, object value, long txTimestamp, object version, IComparer versionComparator,
bool minimalPut, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
if (txTimestamp == long.MinValue)
{
// MinValue means cache is disabled
return false;
}
cancellationToken.ThrowIfCancellationRequested();
using (await (_asyncReaderWriterLock.WriteLockAsync()).ConfigureAwait(false))
{
if (log.IsDebugEnabled())
{
log.Debug("Caching: {0}", key);
}
var lockValue = await (_cache.LockAsync(key, cancellationToken)).ConfigureAwait(false);
try
{
ILockable lockable = (ILockable) await (Cache.GetAsync(key, cancellationToken)).ConfigureAwait(false);
bool puttable = lockable == null ||
lockable.IsPuttable(txTimestamp, version, versionComparator, minimalPut);
if (puttable)
{
await (Cache.PutAsync(key, CachedItem.Create(value, Cache.NextTimestamp(), version), cancellationToken)).ConfigureAwait(false);
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
{
await (_cache.UnlockAsync(key, lockValue, cancellationToken)).ConfigureAwait(false);
}
}
}
/// <summary>
/// decrement a lock and put it back in the cache
/// </summary>
private Task DecrementLockAsync(object key, CacheLock @lock, CancellationToken cancellationToken)
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
try
{
//decrement the lock
@lock.Unlock(Cache.NextTimestamp());
return Cache.PutAsync(key, @lock, cancellationToken);
}
catch (Exception ex)
{
return Task.FromException<object>(ex);
}
}
public async Task ReleaseAsync(CacheKey key, ISoftLock clientLock, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
using (await (_asyncReaderWriterLock.WriteLockAsync()).ConfigureAwait(false))
{
if (log.IsDebugEnabled())
{
log.Debug("Releasing: {0}", key);
}
var lockValue = await (_cache.LockAsync(key, cancellationToken)).ConfigureAwait(false);
try
{
ILockable lockable = (ILockable) await (Cache.GetAsync(key, cancellationToken)).ConfigureAwait(false);
if (IsUnlockable(clientLock, lockable))
{
await (DecrementLockAsync(key, (CacheLock) lockable, cancellationToken)).ConfigureAwait(false);
}
else
{
await (HandleLockExpiryAsync(key, cancellationToken)).ConfigureAwait(false);
}
}
finally
{
await (_cache.UnlockAsync(key, lockValue, cancellationToken)).ConfigureAwait(false);
}
}
}
internal Task HandleLockExpiryAsync(object key, CancellationToken cancellationToken)
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
try
{
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);
return Cache.PutAsync(key, @lock, cancellationToken);
}
catch (Exception ex)
{
return Task.FromException<object>(ex);
}
}
public Task ClearAsync(CancellationToken cancellationToken)
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return Cache.ClearAsync(cancellationToken);
}
public Task RemoveAsync(CacheKey key, CancellationToken cancellationToken)
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return Cache.RemoveAsync(key, cancellationToken);
}
/// <summary>
/// Re-cache the updated state, if and only if there there are
/// no other concurrent soft locks. Release our lock.
/// </summary>
public async Task<bool> AfterUpdateAsync(CacheKey key, object value, object version, ISoftLock clientLock, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
using (await (_asyncReaderWriterLock.WriteLockAsync()).ConfigureAwait(false))
{
if (log.IsDebugEnabled())
{
log.Debug("Updating: {0}", key);
}
var lockValue = await (_cache.LockAsync(key, cancellationToken)).ConfigureAwait(false);
try
{
ILockable lockable = (ILockable) await (Cache.GetAsync(key, cancellationToken)).ConfigureAwait(false);
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)
await (DecrementLockAsync(key, @lock, cancellationToken)).ConfigureAwait(false);
}
else
{
//recache the updated state
await (Cache.PutAsync(key, CachedItem.Create(value, Cache.NextTimestamp(), version), cancellationToken)).ConfigureAwait(false);
if (log.IsDebugEnabled())
{
log.Debug("Updated: {0}", key);
}
}
return true;
}
else
{
await (HandleLockExpiryAsync(key, cancellationToken)).ConfigureAwait(false);
return false;
}
}
finally
{
await (_cache.UnlockAsync(key, lockValue, cancellationToken)).ConfigureAwait(false);
}
}
}
public async Task<bool> AfterInsertAsync(CacheKey key, object value, object version, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
using (await (_asyncReaderWriterLock.WriteLockAsync()).ConfigureAwait(false))
{
if (log.IsDebugEnabled())
{
log.Debug("Inserting: {0}", key);
}
var lockValue = await (_cache.LockAsync(key, cancellationToken)).ConfigureAwait(false);
try
{
ILockable lockable = (ILockable) await (Cache.GetAsync(key, cancellationToken)).ConfigureAwait(false);
if (lockable == null)
{
await (Cache.PutAsync(key, CachedItem.Create(value, Cache.NextTimestamp(), version), cancellationToken)).ConfigureAwait(false);
if (log.IsDebugEnabled())
{
log.Debug("Inserted: {0}", key);
}
return true;
}
else
{
return false;
}
}
finally
{
await (_cache.UnlockAsync(key, lockValue, cancellationToken)).ConfigureAwait(false);
}
}
}
public Task EvictAsync(CacheKey key, CancellationToken cancellationToken)
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
try
{
Evict(key);
return Task.CompletedTask;
}
catch (Exception ex)
{
return Task.FromException<object>(ex);
}
}
public Task<bool> UpdateAsync(CacheKey key, object value, object currentVersion, object previousVersion, CancellationToken cancellationToken)
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<bool>(cancellationToken);
}
try
{
return Task.FromResult<bool>(Update(key, value, currentVersion, previousVersion));
}
catch (Exception ex)
{
return Task.FromException<bool>(ex);
}
}
}
}