forked from ThatRendle/Simple.Data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdoAdapter.cs
More file actions
396 lines (340 loc) · 16.6 KB
/
AdoAdapter.cs
File metadata and controls
396 lines (340 loc) · 16.6 KB
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
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.Data;
using System.Linq;
using Simple.Data.Ado.Schema;
namespace Simple.Data.Ado
{
using Extensions;
[Export("Ado", typeof (Adapter))]
public partial class AdoAdapter : Adapter, ICloneable
{
private readonly AdoAdapterFinder _finder;
private readonly ProviderHelper _providerHelper = new ProviderHelper();
private CommandOptimizer _commandOptimizer = new CommandOptimizer();
private IConnectionProvider _connectionProvider;
private Lazy<AdoAdapterRelatedFinder> _relatedFinder;
private DatabaseSchema _schema;
private IDbConnection _sharedConnection;
private Func<IDbConnection, IDbConnection> _connectionModifier = connection => connection;
public AdoAdapter()
{
_finder = new AdoAdapterFinder(this);
}
internal AdoAdapter(IConnectionProvider connectionProvider) : this()
{
_connectionProvider = connectionProvider;
_schema = DatabaseSchema.Get(_connectionProvider, _providerHelper);
_relatedFinder = new Lazy<AdoAdapterRelatedFinder>(CreateRelatedFinder);
_commandOptimizer = ProviderHelper.GetCustomProvider<CommandOptimizer>(_connectionProvider) ??
new CommandOptimizer();
}
private AdoAdapter(IConnectionProvider connectionProvider, AdoAdapterFinder finder, ProviderHelper providerHelper,
Lazy<AdoAdapterRelatedFinder> relatedFinder, DatabaseSchema schema)
{
_connectionProvider = connectionProvider;
_finder = finder;
_providerHelper = providerHelper;
_relatedFinder = relatedFinder;
_schema = schema;
}
public AdoOptions AdoOptions
{
get { return Options as AdoOptions; }
}
public CommandOptimizer CommandOptimizer
{
get { return _commandOptimizer; }
}
public ProviderHelper ProviderHelper
{
get { return _providerHelper; }
}
public IConnectionProvider ConnectionProvider
{
get { return _connectionProvider; }
}
internal AdoAdapterFinder Finder
{
get { return _finder; }
}
public bool ProviderSupportsCompoundStatements
{
get { return _connectionProvider.SupportsCompoundStatements; }
}
public ISchemaProvider SchemaProvider
{
get { return _connectionProvider.GetSchemaProvider(); }
}
public override IDictionary<string, object> GetKey(string tableName, IDictionary<string, object> record)
{
var homogenizedRecord = new Dictionary<string, object>(record, HomogenizedEqualityComparer.DefaultInstance);
return GetKeyNames(tableName)
.Select(k => k.Homogenize())
.Where(homogenizedRecord.ContainsKey)
.ToDictionary(key => key, key => homogenizedRecord[key]);
}
#region ICloneable Members
public object Clone()
{
return new AdoAdapter(_connectionProvider) {_connectionModifier = _connectionModifier};
}
#endregion
protected override void OnSetup()
{
ICollection<string> settingsKeys = ((IDictionary<string, object>) Settings).Keys;
if (settingsKeys.Contains("ConnectionString"))
{
if (settingsKeys.Contains("ProviderName"))
{
if(settingsKeys.Contains("SchemaName"))
{
_connectionProvider = ProviderHelper.GetProviderByConnectionString(Settings.ConnectionString
, Settings.ProviderName
, Settings.SchemaName);
}
else
{
_connectionProvider = ProviderHelper.GetProviderByConnectionString(Settings.ConnectionString,
Settings.ProviderName);
}
}
else
{
_connectionProvider = ProviderHelper.GetProviderByConnectionString(Settings.ConnectionString);
}
}
else if (settingsKeys.Contains("Filename"))
{
_connectionProvider = ProviderHelper.GetProviderByFilename(Settings.Filename);
}
else if (settingsKeys.Contains("ConnectionName"))
{
if (settingsKeys.Contains("SchemaName"))
{
_connectionProvider = ProviderHelper.GetProviderByConnectionName(Settings.ConnectionName, Settings.SchemaName);
}
else
{
_connectionProvider = ProviderHelper.GetProviderByConnectionName(Settings.ConnectionName);
}
}
_schema = DatabaseSchema.Get(_connectionProvider, _providerHelper);
_relatedFinder = new Lazy<AdoAdapterRelatedFinder>(CreateRelatedFinder);
_commandOptimizer = ProviderHelper.GetCustomProvider<CommandOptimizer>(_connectionProvider) ??
new CommandOptimizer();
}
private AdoAdapterRelatedFinder CreateRelatedFinder()
{
return new AdoAdapterRelatedFinder(this);
}
public override IDictionary<string, object> Get(string tableName, params object[] keyValues)
{
// We don't need to implement Get because we provide a delegate for this operation...
throw new NotImplementedException();
}
public override IDictionary<string, object> FindOne(string tableName, SimpleExpression criteria)
{
return _finder.FindOne(tableName, criteria);
}
public override Func<object[], IDictionary<string, object>> CreateFindOneDelegate(string tableName,
SimpleExpression criteria)
{
return _finder.CreateFindOneDelegate(tableName, criteria);
}
public override IEnumerable<IDictionary<string, object>> Find(string tableName, SimpleExpression criteria)
{
return _finder.Find(tableName, criteria);
}
public override IEnumerable<IDictionary<string, object>> RunQuery(SimpleQuery query,
out IEnumerable<SimpleQueryClauseBase>
unhandledClauses)
{
return new AdoAdapterQueryRunner(this).RunQuery(query, out unhandledClauses);
}
public override IEnumerable<IEnumerable<IDictionary<string, object>>> RunQueries(SimpleQuery[] queries,
List
<
IEnumerable
<SimpleQueryClauseBase>>
unhandledClauses)
{
return new AdoAdapterQueryRunner(this).RunQueries(queries, unhandledClauses);
}
public override bool IsExpressionFunction(string functionName, params object[] args)
{
return FunctionIsLikeOrNotLike(functionName, args);
}
private static bool FunctionIsLikeOrNotLike(string functionName, object[] args)
{
return ((functionName.Equals("like", StringComparison.OrdinalIgnoreCase)
|| functionName.Equals("notlike", StringComparison.OrdinalIgnoreCase))
&& args.Length == 1
&& args[0] is string);
}
public override IObservable<IDictionary<string, object>> RunQueryAsObservable(SimpleQuery query,
out
IEnumerable
<SimpleQueryClauseBase>
unhandledClauses)
{
return new AdoAdapterQueryRunner(this).RunQueryAsObservable(query, out unhandledClauses);
}
public override IDictionary<string, object> Insert(string tableName, IDictionary<string, object> data, bool resultRequired)
{
return new AdoAdapterInserter(this).Insert(tableName, data, resultRequired);
}
public override IEnumerable<IDictionary<string, object>> InsertMany(string tableName,
IEnumerable<IDictionary<string, object>>
data, Func<IDictionary<string,object>, Exception, bool> onError, bool resultRequired)
{
return new AdoAdapterInserter(this).InsertMany(tableName, data, onError, resultRequired);
}
public override int UpdateMany(string tableName, IEnumerable<IDictionary<string, object>> data,
IEnumerable<string> criteriaFieldNames)
{
IBulkUpdater bulkUpdater = ProviderHelper.GetCustomProvider<IBulkUpdater>(ConnectionProvider) ??
new BulkUpdater();
return bulkUpdater.Update(this, tableName, data.ToList(), criteriaFieldNames, null);
}
public override int UpdateMany(string tableName, IEnumerable<IDictionary<string, object>> data)
{
IBulkUpdater bulkUpdater = ProviderHelper.GetCustomProvider<IBulkUpdater>(ConnectionProvider) ??
new BulkUpdater();
return bulkUpdater.Update(this, tableName, data.ToList(), null);
}
public override int Update(string tableName, IDictionary<string, object> data, SimpleExpression criteria)
{
ICommandBuilder commandBuilder = new UpdateHelper(_schema).GetUpdateCommand(tableName, data, criteria);
return Execute(commandBuilder);
}
/// <summary>
/// Deletes from the specified table.
/// </summary>
/// <param name="tableName">Name of the table.</param>
/// <param name="criteria">The expression to use as criteria for the delete operation.</param>
/// <returns>The number of records which were deleted.</returns>
public override int Delete(string tableName, SimpleExpression criteria)
{
ICommandBuilder commandBuilder = new DeleteHelper(_schema).GetDeleteCommand(tableName, criteria);
return Execute(commandBuilder);
}
/// <summary>
/// Gets the names of the fields which comprise the unique identifier for the specified table.
/// </summary>
/// <param name="tableName">Name of the table.</param>
/// <returns>A list of field names; an empty list if no key is defined.</returns>
public override IList<string> GetKeyNames(string tableName)
{
return _schema.FindTable(tableName).PrimaryKey.AsEnumerable().ToList();
}
public void SetConnectionModifier(Func<IDbConnection, IDbConnection> connectionModifer)
{
_connectionModifier = connectionModifer;
}
public void ClearConnectionModifier()
{
_connectionModifier = connection => connection;
}
private int Execute(ICommandBuilder commandBuilder)
{
IDbConnection connection = CreateConnection();
using (connection.MaybeDisposable())
{
using (IDbCommand command = commandBuilder.GetCommand(connection, AdoOptions))
{
connection.OpenIfClosed();
return command.TryExecuteNonQuery();
}
}
}
internal int Execute(ICommandBuilder commandBuilder, IDbConnection connection)
{
using (connection.MaybeDisposable())
{
using (IDbCommand command = commandBuilder.GetCommand(connection, AdoOptions))
{
connection.OpenIfClosed();
return command.TryExecuteNonQuery();
}
}
}
internal int Execute(ICommandBuilder commandBuilder, IAdapterTransaction transaction)
{
IDbTransaction dbTransaction = ((AdoAdapterTransaction) transaction).DbTransaction;
return Execute(commandBuilder, dbTransaction);
}
internal int Execute(ICommandBuilder commandBuilder, IDbTransaction dbTransaction)
{
using (IDbCommand command = commandBuilder.GetCommand(dbTransaction.Connection, AdoOptions))
{
command.Transaction = dbTransaction;
return command.TryExecuteNonQuery();
}
}
public void UseSharedConnection(IDbConnection connection)
{
_sharedConnection = connection;
}
public void StopUsingSharedConnection()
{
_sharedConnection = null;
}
public IDbConnection CreateConnection()
{
if (_sharedConnection != null) return _sharedConnection;
var connection = _connectionModifier(_connectionProvider.CreateConnection());
var args = ConnectionCreated.Raise(this, () => new ConnectionCreatedEventArgs(connection));
if (args != null && args.OverriddenConnection != null)
{
return args.OverriddenConnection;
}
return connection;
}
public DatabaseSchema GetSchema()
{
return _schema ?? (_schema = DatabaseSchema.Get(_connectionProvider, _providerHelper));
}
public override IDictionary<string, object> Upsert(string tableName, IDictionary<string, object> data, SimpleExpression criteria, bool resultRequired)
{
return new AdoAdapterUpserter(this).Upsert(tableName, data, criteria, resultRequired);
}
public override IEnumerable<IDictionary<string, object>> UpsertMany(string tableName, IList<IDictionary<string, object>> list, bool isResultRequired, Func<IDictionary<string, object>, Exception, bool> errorCallback)
{
var upserter = new AdoAdapterUpserter(this);
return upserter.UpsertMany(tableName, list, isResultRequired, errorCallback);
}
public override IEnumerable<IDictionary<string, object>> UpsertMany(string tableName, IList<IDictionary<string, object>> list, IEnumerable<string> keyFieldNames, bool isResultRequired, Func<IDictionary<string, object>, Exception, bool> errorCallback)
{
return new AdoAdapterUpserter(this).UpsertMany(tableName, list, keyFieldNames.ToArray(), isResultRequired, errorCallback);
}
public string GetIdentityFunction()
{
return _connectionProvider.GetIdentityFunction();
}
protected override void OnReset()
{
DatabaseSchema.ClearCache();
_schema = DatabaseSchema.Get(_connectionProvider, _providerHelper);
}
public static event EventHandler<ConnectionCreatedEventArgs> ConnectionCreated;
}
public class ConnectionCreatedEventArgs : EventArgs
{
private readonly IDbConnection _connection;
public ConnectionCreatedEventArgs(IDbConnection connection)
{
_connection = connection;
}
public IDbConnection Connection
{
get { return _connection; }
}
internal IDbConnection OverriddenConnection { get; private set; }
public void OverrideConnection(IDbConnection overridingConnection)
{
OverriddenConnection = overridingConnection;
}
}
}