forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdoTransaction.cs
502 lines (451 loc) · 12.9 KB
/
AdoTransaction.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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using NHibernate.Driver;
using NHibernate.Engine;
using NHibernate.Impl;
namespace NHibernate.Transaction
{
/// <summary>
/// Wraps an ADO.NET <see cref="DbTransaction"/> to implement
/// the <see cref="ITransaction" /> interface.
/// </summary>
public partial class AdoTransaction : ITransaction
{
private static readonly INHibernateLogger log = NHibernateLogger.For(typeof(AdoTransaction));
private ISessionImplementor session;
private DbTransaction trans;
private bool begun;
private bool committed;
private bool rolledBack;
private bool commitFailed;
// Since v5.2
[Obsolete]
private List<ISynchronization> synchronizations;
private List<ITransactionCompletionSynchronization> _completionSynchronizations;
/// <summary>
/// Initializes a new instance of the <see cref="AdoTransaction"/> class.
/// </summary>
/// <param name="session">The <see cref="ISessionImplementor"/> the Transaction is for.</param>
public AdoTransaction(ISessionImplementor session)
{
this.session = session;
sessionId = this.session.SessionId;
}
/// <summary>
/// Enlist the <see cref="DbCommand"/> in the current <see cref="ITransaction"/>.
/// </summary>
/// <param name="command">The <see cref="DbCommand"/> to enlist in this Transaction.</param>
/// <remarks>
/// <para>
/// This takes care of making sure the <see cref="DbCommand"/>'s Transaction property
/// contains the correct <see cref="DbTransaction"/> or <see langword="null" /> if there is no
/// Transaction for the ISession - ie <c>BeginTransaction()</c> not called.
/// </para>
/// <para>
/// This method may be called even when the transaction is disposed.
/// </para>
/// </remarks>
public void Enlist(DbCommand command)
{
if (trans == null)
{
if (log.IsWarnEnabled())
{
if (command.Transaction != null)
{
log.Warn("set a nonnull DbCommand.Transaction to null because the Session had no Transaction");
}
}
command.Transaction = null;
return;
}
else
{
if (log.IsWarnEnabled())
{
// got into here because the command was being initialized and had a null Transaction - probably
// don't need to be confused by that - just a normal part of initialization...
if (command.Transaction != null && command.Transaction != trans)
{
log.Warn("The DbCommand had a different Transaction than the Session. This can occur when " +
"Disconnecting and Reconnecting Sessions because the PreparedCommand Cache is Session specific.");
}
}
log.Debug("Enlist Command");
// If you try to assign a disposed transaction to a command with MSSQL, it will leave the command's
// transaction as null and not throw an error. With SQLite, for example, it will throw an exception
// here instead. Because of this, we set the trans field to null in when Dispose is called.
command.Transaction = trans;
}
}
// Since 5.2
[Obsolete("Use RegisterSynchronization(ITransactionCompletionSynchronization) instead")]
public void RegisterSynchronization(ISynchronization sync)
{
if (sync == null) throw new ArgumentNullException("sync");
if (synchronizations == null)
{
synchronizations = new List<ISynchronization>();
}
synchronizations.Add(sync);
}
public void RegisterSynchronization(ITransactionCompletionSynchronization synchronization)
{
if (synchronization == null)
throw new ArgumentNullException(nameof(synchronization));
// It is tempting to use the session ActionQueue instead, but stateless sessions do not have one.
if (_completionSynchronizations == null)
{
_completionSynchronizations = new List<ITransactionCompletionSynchronization>();
}
_completionSynchronizations.Add(synchronization);
}
public void Begin()
{
Begin(IsolationLevel.Unspecified);
}
/// <summary>
/// Begins the <see cref="DbTransaction"/> on the <see cref="DbConnection"/>
/// used by the <see cref="ISession"/>.
/// </summary>
/// <exception cref="TransactionException">
/// Thrown if there is any problems encountered while trying to create
/// the <see cref="DbTransaction"/>.
/// </exception>
public void Begin(IsolationLevel isolationLevel)
{
using (session.BeginProcess())
{
if (begun)
{
return;
}
if (commitFailed)
{
throw new TransactionException("Cannot restart transaction after failed commit");
}
if (isolationLevel == IsolationLevel.Unspecified)
{
isolationLevel = session.Factory.Settings.IsolationLevel;
}
log.Debug("Begin ({0})", isolationLevel);
try
{
trans = session.Factory.ConnectionProvider.Driver.BeginTransaction(isolationLevel, session.Connection);
}
catch (HibernateException)
{
// Don't wrap HibernateExceptions
throw;
}
catch (Exception e)
{
log.Error(e, "Begin transaction failed");
throw new TransactionException("Begin failed with SQL exception", e);
}
begun = true;
committed = false;
rolledBack = false;
session.AfterTransactionBegin(this);
foreach (var dependentSession in session.ConnectionManager.DependentSessions)
dependentSession.AfterTransactionBegin(this);
}
}
private void AfterTransactionCompletion(bool successful)
{
session.ConnectionManager.AfterTransaction();
session.AfterTransactionCompletion(successful, this);
NotifyLocalSynchsAfterTransactionCompletion(successful);
foreach (var dependentSession in session.ConnectionManager.DependentSessions)
dependentSession.AfterTransactionCompletion(successful, this);
session = null;
begun = false;
}
/// <summary>
/// Commits the <see cref="ITransaction"/> by flushing the <see cref="ISession"/>
/// and committing the <see cref="DbTransaction"/>.
/// </summary>
/// <exception cref="TransactionException">
/// Thrown if there is any exception while trying to call <c>Commit()</c> on
/// the underlying <see cref="DbTransaction"/>.
/// </exception>
public void Commit()
{
using (session.BeginProcess())
{
CheckNotDisposed();
CheckBegun();
CheckNotZombied();
log.Debug("Start Commit");
session.BeforeTransactionCompletion(this);
NotifyLocalSynchsBeforeTransactionCompletion();
foreach (var dependentSession in session.ConnectionManager.DependentSessions)
dependentSession.BeforeTransactionCompletion(this);
try
{
trans.Commit();
log.Debug("DbTransaction Committed");
committed = true;
AfterTransactionCompletion(true);
Dispose();
}
catch (HibernateException e)
{
log.Error(e, "Commit failed");
AfterTransactionCompletion(false);
commitFailed = true;
// Don't wrap HibernateExceptions
throw;
}
catch (Exception e)
{
log.Error(e, "Commit failed");
AfterTransactionCompletion(false);
commitFailed = true;
throw new TransactionException("Commit failed with SQL exception", e);
}
finally
{
CloseIfRequired();
}
}
}
/// <summary>
/// Rolls back the <see cref="ITransaction"/> by calling the method <c>Rollback</c>
/// on the underlying <see cref="DbTransaction"/>.
/// </summary>
/// <exception cref="TransactionException">
/// Thrown if there is any exception while trying to call <c>Rollback()</c> on
/// the underlying <see cref="DbTransaction"/>.
/// </exception>
public void Rollback()
{
using (SessionIdLoggingContext.CreateOrNull(sessionId))
{
CheckNotDisposed();
CheckBegun();
CheckNotZombied();
log.Debug("Rollback");
if (!commitFailed)
{
try
{
trans.Rollback();
log.Debug("DbTransaction RolledBack");
rolledBack = true;
Dispose();
}
catch (HibernateException e)
{
log.Error(e, "Rollback failed");
// Don't wrap HibernateExceptions
throw;
}
catch (Exception e)
{
log.Error(e, "Rollback failed");
throw new TransactionException("Rollback failed with SQL Exception", e);
}
finally
{
AfterTransactionCompletion(false);
CloseIfRequired();
}
}
}
}
/// <summary>
/// Gets a <see cref="Boolean"/> indicating if the transaction was rolled back.
/// </summary>
/// <value>
/// <see langword="true" /> if the <see cref="DbTransaction"/> had <c>Rollback</c> called
/// without any exceptions.
/// </value>
public bool WasRolledBack
{
get { return rolledBack; }
}
/// <summary>
/// Gets a <see cref="Boolean"/> indicating if the transaction was committed.
/// </summary>
/// <value>
/// <see langword="true" /> if the <see cref="DbTransaction"/> had <c>Commit</c> called
/// without any exceptions.
/// </value>
public bool WasCommitted
{
get { return committed; }
}
public bool IsActive
{
get { return begun && !rolledBack && !committed; }
}
public IsolationLevel IsolationLevel
{
get { return trans.IsolationLevel; }
}
void CloseIfRequired()
{
//bool close = session.ShouldAutoClose() && !transactionContext.isClosed();
//if (close)
//{
// transactionContext.managedClose();
//}
}
#region System.IDisposable Members
/// <summary>
/// A flag to indicate if <c>Disose()</c> has been called.
/// </summary>
private bool _isAlreadyDisposed;
private Guid sessionId;
/// <summary>
/// Finalizer that ensures the object is correctly disposed of.
/// </summary>
~AdoTransaction()
{
Dispose(false);
}
/// <summary>
/// Takes care of freeing the managed and unmanaged resources that
/// this class is responsible for.
/// </summary>
public void Dispose()
{
Dispose(true);
}
/// <summary>
/// Takes care of freeing the managed and unmanaged resources that
/// this class is responsible for.
/// </summary>
/// <param name="isDisposing">Indicates if this AdoTransaction is being Disposed of or Finalized.</param>
/// <remarks>
/// If this AdoTransaction is being Finalized (<c>isDisposing==false</c>) then make sure not
/// to call any methods that could potentially bring this AdoTransaction back to life.
/// </remarks>
protected virtual void Dispose(bool isDisposing)
{
using (SessionIdLoggingContext.CreateOrNull(sessionId))
{
if (_isAlreadyDisposed)
{
// don't dispose of multiple times.
return;
}
_isAlreadyDisposed = true;
// free managed resources that are being managed by the AdoTransaction if we
// know this call came through Dispose()
if (isDisposing)
{
try
{
if (trans != null)
{
trans.Dispose();
trans = null;
log.Debug("DbTransaction disposed.");
}
if (IsActive)
{
// Assume we are rolled back
rolledBack = true;
if (session != null)
AfterTransactionCompletion(false);
}
// nothing for Finalizer to do - so tell the GC to ignore it
GC.SuppressFinalize(this);
}
finally
{
// Do not leave the object in an inconsistent state in case of disposal failure: we should assume
// the DbTransaction is either no more ongoing or unrecoverable.
begun = false;
}
}
// free unmanaged resources here
}
}
#endregion
private void CheckNotDisposed()
{
if (_isAlreadyDisposed)
{
throw new ObjectDisposedException("AdoTransaction");
}
}
private void CheckBegun()
{
if (!begun)
{
throw new TransactionException("Transaction not successfully started");
}
}
private void CheckNotZombied()
{
if (trans != null && trans.Connection == null)
{
throw new TransactionException("Transaction not connected, or was disconnected");
}
}
private void NotifyLocalSynchsBeforeTransactionCompletion()
{
#pragma warning disable 612
if (synchronizations != null)
{
foreach (var sync in synchronizations)
#pragma warning restore 612
{
try
{
sync.BeforeCompletion();
}
catch (Exception e)
{
log.Error(e, "exception calling user Synchronization");
throw;
}
}
}
if (_completionSynchronizations == null)
return;
foreach (var sync in _completionSynchronizations)
{
sync.ExecuteBeforeTransactionCompletion();
}
}
private void NotifyLocalSynchsAfterTransactionCompletion(bool success)
{
begun = false;
#pragma warning disable 612
if (synchronizations != null)
{
foreach (var sync in synchronizations)
#pragma warning restore 612
{
try
{
sync.AfterCompletion(success);
}
catch (Exception e)
{
log.Error(e, "exception calling user Synchronization");
}
}
}
if (_completionSynchronizations == null)
return;
foreach (var sync in _completionSynchronizations)
{
try
{
sync.ExecuteAfterTransactionCompletion(success);
}
catch (Exception e)
{
log.Error(e, "exception calling user Synchronization");
}
}
}
}
}