-
Notifications
You must be signed in to change notification settings - Fork 935
/
Copy pathMySqlClientBatchingBatcher.cs
152 lines (135 loc) · 4.13 KB
/
MySqlClientBatchingBatcher.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
using System;
using System.Data.Common;
using System.Text;
using NHibernate.AdoNet.Util;
using NHibernate.Driver;
using NHibernate.Exceptions;
namespace NHibernate.AdoNet
{
public partial class MySqlClientBatchingBatcher : AbstractBatcher
{
private int batchSize;
private int totalExpectedRowsAffected;
private MySqlClientSqlCommandSet currentBatch;
private StringBuilder currentBatchCommandsLog;
public MySqlClientBatchingBatcher(ConnectionManager connectionManager, IInterceptor interceptor)
: base(connectionManager, interceptor)
{
batchSize = Factory.Settings.AdoBatchSize;
currentBatch = CreateConfiguredBatch();
//we always create this, because we need to deal with a scenario in which
//the user change the logging configuration at runtime. Trying to put this
//behind an if(log.IsDebugEnabled) will cause a null reference exception
//at that point.
currentBatchCommandsLog = new StringBuilder().AppendLine("Batch commands:");
}
public override int BatchSize
{
get { return batchSize; }
set { batchSize = value; }
}
protected override int CountOfStatementsInCurrentBatch
{
get { return currentBatch.CountOfCommands; }
}
public override void AddToBatch(IExpectation expectation)
{
// MySql batcher cannot be initiated if a data reader is still open: check them.
if (CountOfStatementsInCurrentBatch == 0)
CheckReaders();
totalExpectedRowsAffected += expectation.ExpectedRowCount;
var batchUpdate = CurrentCommand;
Prepare(batchUpdate);
Driver.AdjustCommand(batchUpdate);
string lineWithParameters = null;
var sqlStatementLogger = Factory.Settings.SqlStatementLogger;
if (sqlStatementLogger.IsDebugEnabled || Log.IsDebugEnabled())
{
lineWithParameters = sqlStatementLogger.GetCommandLineWithParameters(batchUpdate);
var formatStyle = sqlStatementLogger.DetermineActualStyle(FormatStyle.Basic);
lineWithParameters = formatStyle.Formatter.Format(lineWithParameters);
currentBatchCommandsLog.Append("command ")
.Append(currentBatch.CountOfCommands)
.Append(":")
.AppendLine(lineWithParameters);
}
if (Log.IsDebugEnabled())
{
Log.Debug("Adding to batch:{0}", lineWithParameters);
}
currentBatch.Append(Driver.UnwrapDbCommand(batchUpdate));
if (currentBatch.CountOfCommands >= batchSize)
{
DoExecuteBatch(batchUpdate);
}
}
protected override void DoExecuteBatch(DbCommand ps)
{
try
{
Log.Debug("Executing batch");
CheckReaders();
if (Factory.Settings.SqlStatementLogger.IsDebugEnabled)
{
Factory.Settings.SqlStatementLogger.LogBatchCommand(currentBatchCommandsLog.ToString());
}
int rowsAffected;
try
{
rowsAffected = currentBatch.ExecuteNonQuery();
}
catch (DbException e)
{
throw ADOExceptionHelper.Convert(Factory.SQLExceptionConverter, e, "could not execute batch command.");
}
Expectations.VerifyOutcomeBatched(totalExpectedRowsAffected, rowsAffected, ps);
}
finally
{
ClearCurrentBatch();
}
}
private MySqlClientSqlCommandSet CreateConfiguredBatch()
{
return new MySqlClientSqlCommandSet(batchSize);
}
private void ClearCurrentBatch()
{
currentBatch.Dispose();
totalExpectedRowsAffected = 0;
currentBatch = CreateConfiguredBatch();
if (Factory.Settings.SqlStatementLogger.IsDebugEnabled)
{
currentBatchCommandsLog = new StringBuilder().AppendLine("Batch commands:");
}
}
public override void CloseCommands()
{
base.CloseCommands();
try
{
ClearCurrentBatch();
}
catch (Exception e)
{
// Prevent exceptions when clearing the batch from hiding any original exception
// (We do not know here if this batch closing occurs after a failure or not.)
Log.Warn(e, "Exception clearing batch");
}
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
// Prevent exceptions when closing the batch from hiding any original exception
// (We do not know here if this batch closing occurs after a failure or not.)
try
{
currentBatch.Dispose();
}
catch (Exception e)
{
Log.Warn(e, "Exception closing batcher");
}
}
}
}