forked from huysentruitw/SapNwRfc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSapConnectionPool.cs
177 lines (157 loc) · 7.75 KB
/
SapConnectionPool.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
using System;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Threading;
namespace SapNwRfc.Pooling
{
/// <summary>
/// The SAP Connection pool class.
/// </summary>
public sealed class SapConnectionPool : ISapConnectionPool
{
private readonly SapConnectionParameters _connectionParameters;
private readonly int _poolSize;
private readonly Func<SapConnectionParameters, ISapConnection> _connectionFactory;
private readonly TimeSpan _connectionIdleTimeout;
private readonly object _syncRoot = new object();
private readonly ConcurrentQueue<(ISapConnection Connection, DateTime ExpiresAtUtc)> _idleConnections = new ConcurrentQueue<(ISapConnection Connection, DateTime ExpiresAtUtc)>();
private readonly SemaphoreSlim _idleConnectionSemaphore = new SemaphoreSlim(0);
private readonly Timer _timer;
private int _openConnectionCount = 0;
/// <summary>
/// Initializes a new instance of the <see cref="SapConnectionPool"/> class.
/// </summary>
/// <param name="connectionString">The connection string.</param>
/// <param name="poolSize">The size of the pool.</param>
/// <param name="connectionIdleTimeout">The idle timeout after which unused open connections are disposed. Defaults to 30 seconds.</param>
/// <param name="idleDetectionInterval">The interval at which to look for idling connections. Defaults to 1 second.</param>
[ExcludeFromCodeCoverage]
[SuppressMessage("ReSharper", "RedundantOverload.Global", Justification = "Public constructor should not expose connection factory")]
public SapConnectionPool(
string connectionString,
int poolSize = 5,
TimeSpan? connectionIdleTimeout = null,
TimeSpan? idleDetectionInterval = null)
: this(SapConnectionParameters.Parse(connectionString), poolSize, connectionIdleTimeout, idleDetectionInterval, null)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="SapConnectionPool"/> class.
/// </summary>
/// <param name="connectionParameters">The connection parameters.</param>
/// <param name="poolSize">The size of the pool.</param>
/// <param name="connectionIdleTimeout">The idle timeout after which unused open connections are disposed. Defaults to 30 seconds.</param>
/// <param name="idleDetectionInterval">The interval at which to look for idling connections. Defaults to 1 second.</param>
[ExcludeFromCodeCoverage]
public SapConnectionPool(
SapConnectionParameters connectionParameters,
int poolSize = 5,
TimeSpan? connectionIdleTimeout = null,
TimeSpan? idleDetectionInterval = null)
: this(connectionParameters, poolSize, connectionIdleTimeout, idleDetectionInterval, null)
{
}
internal SapConnectionPool(
SapConnectionParameters connectionParameters,
int poolSize = 5,
TimeSpan? connectionIdleTimeout = null,
TimeSpan? idleDetectionInterval = null,
Func<SapConnectionParameters, ISapConnection> connectionFactory = null)
{
_connectionParameters = connectionParameters;
_poolSize = poolSize;
_connectionIdleTimeout = connectionIdleTimeout ?? TimeSpan.FromSeconds(30);
_connectionFactory = connectionFactory ?? (parameters => new SapConnection(parameters));
_timer = new Timer(
callback: _ => DisposeIdleConnections(),
state: null,
dueTime: idleDetectionInterval ?? TimeSpan.FromSeconds(1),
period: idleDetectionInterval ?? TimeSpan.FromSeconds(1));
}
/// <summary>
/// Disposes the SAP Connection pool and all idling connections.
/// </summary>
public void Dispose()
{
_timer.Dispose();
while (_idleConnections.TryDequeue(out (ISapConnection Connection, DateTime ExpiresAtUtc) idleConnection))
idleConnection.Connection.Dispose();
}
/// <inheritdoc cref="ISapConnectionPool"/>
[SuppressMessage("ReSharper", "InvertIf", Justification = "Don't change double-checked lock")]
public ISapConnection GetConnection(CancellationToken cancellationToken = default)
{
// See if there is an idling connection available, but don't wait for it
if (_idleConnectionSemaphore.Wait(TimeSpan.Zero, cancellationToken))
{
lock (_syncRoot)
if (_idleConnections.TryDequeue(out (ISapConnection Connection, DateTime ExpiresAtUtc) idleConnection))
return idleConnection.Connection;
}
while (true)
{
if (_openConnectionCount < _poolSize)
{
ISapConnection connection = null;
lock (_syncRoot)
{
if (_openConnectionCount < _poolSize)
{
_openConnectionCount++;
connection = _connectionFactory(_connectionParameters);
}
}
if (connection != null)
{
connection.Connect();
return connection;
}
}
_idleConnectionSemaphore.Wait(cancellationToken);
lock (_syncRoot)
if (_idleConnections.TryDequeue(out (ISapConnection Connection, DateTime ExpiresAtUtc) idleConnection))
return idleConnection.Connection;
}
}
/// <inheritdoc cref="ISapConnectionPool"/>
public void ReturnConnection(ISapConnection connection)
{
DateTime expiresAtUtc = DateTime.UtcNow + _connectionIdleTimeout;
_idleConnections.Enqueue((Connection: connection, ExpiresAtUtc: expiresAtUtc));
_idleConnectionSemaphore.Release();
}
/// <inheritdoc cref="ISapConnectionPool"/>
public void ForgetConnection(ISapConnection connection)
{
connection.Dispose();
lock (_syncRoot) _openConnectionCount--;
_idleConnectionSemaphore.Release();
}
[SuppressMessage("ReSharper", "InvertIf", Justification = "Don't change double-checked lock")]
private void DisposeIdleConnections()
{
while (true)
{
// The first connection in the queue is the one that has been idling the longest.
// So, when the first connection did not expire, the rest didn't expire too.
if (!_idleConnections.TryPeek(out (ISapConnection Connection, DateTime ExpiresAtUtc) idleConnection) ||
idleConnection.ExpiresAtUtc > DateTime.UtcNow)
break;
lock (_syncRoot)
{
if (!_idleConnections.TryPeek(out idleConnection) || idleConnection.ExpiresAtUtc > DateTime.UtcNow)
break;
// Remove idling connection from queue
_idleConnections.TryDequeue(out _);
// Decrease semaphore count as we removed an idling connection
_idleConnectionSemaphore.Wait();
// Dispose the idling connection
idleConnection.Connection.Dispose();
Debug.Assert(_openConnectionCount > 0, "Open connection count must be greater than 0");
_openConnectionCount--;
}
}
}
}
}