-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathICacheConcurrencyStrategy.cs
189 lines (173 loc) · 9.15 KB
/
ICacheConcurrencyStrategy.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
//------------------------------------------------------------------------------
// <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.Collections;
using NHibernate.Cache.Access;
using NHibernate.Cache.Entry;
using NHibernate.Util;
namespace NHibernate.Cache
{
using System.Threading.Tasks;
using System.Threading;
public partial interface ICacheConcurrencyStrategy
{
/// <summary>
/// Attempt to retrieve an object from the Cache
/// </summary>
/// <param name="key">The key (id) of the object to get out of the Cache.</param>
/// <param name="txTimestamp">A timestamp prior to the transaction start time</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <returns>The cached object or <see langword="null" /></returns>
/// <exception cref="CacheException"></exception>
Task<object> GetAsync(CacheKey key, long txTimestamp, CancellationToken cancellationToken);
/// <summary>
/// Attempt to cache an object, after loading from the database
/// </summary>
/// <param name="key">The key (id) of the object to put in the Cache.</param>
/// <param name="value">The value</param>
/// <param name="txTimestamp">A timestamp prior to the transaction start time</param>
/// <param name="version">the version number of the object we are putting</param>
/// <param name="versionComparer">a Comparer to be used to compare version numbers</param>
/// <param name="minimalPut">indicates that the cache should avoid a put if the item is already cached</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <returns><see langword="true" /> if the object was successfully cached</returns>
/// <exception cref="CacheException"></exception>
Task<bool> PutAsync(CacheKey key, object value, long txTimestamp, object version, IComparer versionComparer, bool minimalPut, CancellationToken cancellationToken);
/// <summary>
/// We are going to attempt to update/delete the keyed object
/// </summary>
/// <param name="key">The key</param>
/// <param name="version"></param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <exception cref="CacheException"></exception>
/// <remarks>This method is used by "asynchronous" concurrency strategies.</remarks>
Task<ISoftLock> LockAsync(CacheKey key, object version, CancellationToken cancellationToken);
/// <summary>
/// Called after an item has become stale (before the transaction completes).
/// </summary>
/// <param name="key"></param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <exception cref="CacheException"></exception>
/// <remarks>This method is used by "synchronous" concurrency strategies.</remarks>
Task EvictAsync(CacheKey key, CancellationToken cancellationToken);
/// <summary>
/// Called after an item has been updated (before the transaction completes),
/// instead of calling Evict().
/// </summary>
/// <param name="key"></param>
/// <param name="value"></param>
/// <param name="currentVersion"></param>
/// <param name="previousVersion"></param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>This method is used by "synchronous" concurrency strategies.</remarks>
Task<bool> UpdateAsync(CacheKey key, object value, object currentVersion, object previousVersion, CancellationToken cancellationToken);
/// <summary>
/// Called when we have finished the attempted update/delete (which may or
/// may not have been successful), after transaction completion.
/// </summary>
/// <param name="key">The key</param>
/// <param name="lock">The soft lock</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <exception cref="CacheException"></exception>
/// <remarks>This method is used by "asynchronous" concurrency strategies.</remarks>
Task ReleaseAsync(CacheKey key, ISoftLock @lock, CancellationToken cancellationToken);
/// <summary>
/// Called after an item has been updated (after the transaction completes),
/// instead of calling Release().
/// </summary>
/// <param name="key"></param>
/// <param name="value"></param>
/// <param name="version"></param>
/// <param name="lock"></param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>This method is used by "asynchronous" concurrency strategies.</remarks>
Task<bool> AfterUpdateAsync(CacheKey key, object value, object version, ISoftLock @lock, CancellationToken cancellationToken);
/// <summary>
/// Called after an item has been inserted (after the transaction completes), instead of calling release().
/// </summary>
/// <param name="key"></param>
/// <param name="value"></param>
/// <param name="version"></param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>This method is used by "asynchronous" concurrency strategies.</remarks>
Task<bool> AfterInsertAsync(CacheKey key, object value, object version, CancellationToken cancellationToken);
/// <summary>
/// Evict an item from the cache immediately (without regard for transaction isolation).
/// </summary>
/// <param name="key"></param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <exception cref="CacheException"></exception>
Task RemoveAsync(CacheKey key, CancellationToken cancellationToken);
/// <summary>
/// Evict all items from the cache immediately.
/// </summary>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <exception cref="CacheException"></exception>
Task ClearAsync(CancellationToken cancellationToken);
#pragma warning restore 618
}
internal static partial class CacheConcurrencyStrategyExtensions
{
/// <summary>
/// Attempt to retrieve multiple objects from the Cache
/// </summary>
/// <param name="cache">The cache concurrency strategy.</param>
/// <param name="keys">The keys (id) of the objects to get out of the Cache.</param>
/// <param name="timestamp">A timestamp prior to the transaction start time</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <returns>An array of cached objects or <see langword="null" /></returns>
/// <exception cref="CacheException"></exception>
public static Task<object[]> GetManyAsync(this ICacheConcurrencyStrategy cache, CacheKey[] keys, long timestamp, CancellationToken cancellationToken)
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object[]>(cancellationToken);
}
try
{
// PreferMultipleGet yields false if !IBatchableCacheConcurrencyStrategy, no GetMany call should be done
// in such case.
return ReflectHelper
.CastOrThrow<IBatchableCacheConcurrencyStrategy>(cache, "batching")
.GetManyAsync(keys, timestamp, cancellationToken);
}
catch (System.Exception ex)
{
return Task.FromException<object[]>(ex);
}
}
/// <summary>
/// Attempt to cache objects, after loading them from the database.
/// </summary>
/// <param name="cache">The cache concurrency strategy.</param>
/// <param name="keys">The keys (id) of the objects to put in the Cache.</param>
/// <param name="values">The objects to put in the cache.</param>
/// <param name="timestamp">A timestamp prior to the transaction start time.</param>
/// <param name="versions">The version numbers of the objects we are putting.</param>
/// <param name="versionComparers">The comparers to be used to compare version numbers</param>
/// <param name="minimalPuts">Indicates that the cache should avoid a put if the item is already cached.</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <returns><see langword="true" /> if the objects were successfully cached.</returns>
/// <exception cref="CacheException"></exception>
public static async Task<bool[]> PutManyAsync(this ICacheConcurrencyStrategy cache, CacheKey[] keys, object[] values, long timestamp,
object[] versions, IComparer[] versionComparers, bool[] minimalPuts, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
if (cache is IBatchableCacheConcurrencyStrategy batchableCache)
{
return await (batchableCache.PutManyAsync(keys, values, timestamp, versions, versionComparers, minimalPuts, cancellationToken)).ConfigureAwait(false);
}
var result = new bool[keys.Length];
for (var i = 0; i < keys.Length; i++)
{
result[i] = await (cache.PutAsync(keys[i], values[i], timestamp, versions[i], versionComparers[i], minimalPuts[i], cancellationToken)).ConfigureAwait(false);
}
return result;
}
}
}