| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /* 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.Threading;
- using System.Threading.Tasks;
- using MongoDB.Bson;
- using MongoDB.Driver.Core.Bindings;
- 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 ICoreSessionHandle _coreSession;
- private bool _disposed;
- private readonly ClientSessionOptions _options;
- private readonly 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)
- {
- _client = client;
- _options = options;
- _coreSession = coreSession;
- _serverSession = new ServerSession(coreSession.ServerSession);
- }
- // 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 => _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);
- }
- // private methods
- 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();
- return new TransactionOptions(readConcern, readPreference, writeConcern);
- }
- }
- }
|