forked from mongodb/mongo-csharp-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClientSessionHandle.cs
183 lines (155 loc) · 6.84 KB
/
ClientSessionHandle.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
/* Copyright 2017-present MongoDB Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Threading;
using System.Threading.Tasks;
using MongoDB.Bson;
using MongoDB.Driver.Core.Bindings;
using MongoDB.Driver.Core.Misc;
namespace MongoDB.Driver
{
/// <summary>
/// A client session handle.
/// </summary>
/// <seealso cref="MongoDB.Driver.IClientSessionHandle" />
internal sealed class ClientSessionHandle : IClientSessionHandle
{
// private fields
private readonly IMongoClient _client;
private readonly IClock _clock;
private readonly ICoreSessionHandle _coreSession;
private bool _disposed;
private readonly ClientSessionOptions _options;
private IServerSession _serverSession;
// constructors
/// <summary>
/// Initializes a new instance of the <see cref="ClientSessionHandle" /> class.
/// </summary>
/// <param name="client">The client.</param>
/// <param name="options">The options.</param>
/// <param name="coreSession">The wrapped session.</param>
public ClientSessionHandle(IMongoClient client, ClientSessionOptions options, ICoreSessionHandle coreSession)
: this(client, options, coreSession, SystemClock.Instance)
{
}
internal ClientSessionHandle(IMongoClient client, ClientSessionOptions options, ICoreSessionHandle coreSession, IClock clock)
{
_client = client;
_options = options;
_coreSession = coreSession;
_clock = clock;
}
// public properties
/// <inheritdoc />
public IMongoClient Client => _client;
/// <inheritdoc />
public BsonDocument ClusterTime => _coreSession.ClusterTime;
/// <inheritdoc />
public bool IsImplicit => _coreSession.IsImplicit;
/// <inheritdoc />
public bool IsInTransaction => _coreSession.IsInTransaction;
/// <inheritdoc />
public BsonTimestamp OperationTime => _coreSession.OperationTime;
/// <inheritdoc />
public ClientSessionOptions Options => _options;
/// <inheritdoc />
public IServerSession ServerSession
{
get
{
if (_serverSession == null)
{
_serverSession = new ServerSession(_coreSession.ServerSession);
}
return _serverSession;
}
}
/// <inheritdoc />
public ICoreSessionHandle WrappedCoreSession => _coreSession;
// public methods
/// <inheritdoc />
public void AbortTransaction(CancellationToken cancellationToken = default(CancellationToken))
{
_coreSession.AbortTransaction(cancellationToken);
}
/// <inheritdoc />
public Task AbortTransactionAsync(CancellationToken cancellationToken = default(CancellationToken))
{
return _coreSession.AbortTransactionAsync(cancellationToken);
}
/// <inheritdoc />
public void AdvanceClusterTime(BsonDocument newClusterTime)
{
_coreSession.AdvanceClusterTime(newClusterTime);
}
/// <inheritdoc />
public void AdvanceOperationTime(BsonTimestamp newOperationTime)
{
_coreSession.AdvanceOperationTime(newOperationTime);
}
/// <inheritdoc />
public void CommitTransaction(CancellationToken cancellationToken = default(CancellationToken))
{
_coreSession.CommitTransaction(cancellationToken);
}
/// <inheritdoc />
public Task CommitTransactionAsync(CancellationToken cancellationToken = default(CancellationToken))
{
return _coreSession.CommitTransactionAsync(cancellationToken);
}
/// <inheritdoc />
public void Dispose()
{
if (!_disposed)
{
_coreSession.Dispose();
_serverSession?.Dispose();
_disposed = true;
}
}
/// <inheritdoc />
public IClientSessionHandle Fork()
{
return new ClientSessionHandle(_client, _options, _coreSession.Fork());
}
/// <inheritdoc />
public void StartTransaction(TransactionOptions transactionOptions = null)
{
var effectiveTransactionOptions = GetEffectiveTransactionOptions(transactionOptions);
_coreSession.StartTransaction(effectiveTransactionOptions);
}
/// <inheritdoc />
public TResult WithTransaction<TResult>(Func<IClientSessionHandle, CancellationToken, TResult> callback, TransactionOptions transactionOptions = null, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(callback, nameof(callback));
return TransactionExecutor.ExecuteWithRetries(this, callback, transactionOptions, _clock, cancellationToken);
}
/// <inheritdoc />
public Task<TResult> WithTransactionAsync<TResult>(Func<IClientSessionHandle, CancellationToken, Task<TResult>> callbackAsync, TransactionOptions transactionOptions = null, CancellationToken cancellationToken = default(CancellationToken))
{
Ensure.IsNotNull(callbackAsync, nameof(callbackAsync));
return TransactionExecutor.ExecuteWithRetriesAsync(this, callbackAsync, transactionOptions, _clock, cancellationToken);
}
private TransactionOptions GetEffectiveTransactionOptions(TransactionOptions transactionOptions)
{
var defaultTransactionOptions = _options?.DefaultTransactionOptions;
var readConcern = transactionOptions?.ReadConcern ?? defaultTransactionOptions?.ReadConcern ?? _client.Settings?.ReadConcern ?? ReadConcern.Default;
var readPreference = transactionOptions?.ReadPreference ?? defaultTransactionOptions?.ReadPreference ?? _client.Settings?.ReadPreference ?? ReadPreference.Primary;
var writeConcern = transactionOptions?.WriteConcern ?? defaultTransactionOptions?.WriteConcern ?? _client.Settings?.WriteConcern ?? new WriteConcern();
var maxCommitTime = transactionOptions?.MaxCommitTime ?? defaultTransactionOptions?.MaxCommitTime;
return new TransactionOptions(readConcern, readPreference, writeConcern, maxCommitTime);
}
}
}