forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSchemaExport.cs
538 lines (502 loc) · 21.1 KB
/
SchemaExport.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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by AsyncGenerator.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.IO;
using NHibernate.AdoNet.Util;
using NHibernate.Cfg;
using NHibernate.Connection;
using NHibernate.MultiTenancy;
using NHibernate.Util;
using Environment=NHibernate.Cfg.Environment;
namespace NHibernate.Tool.hbm2ddl
{
using System.Threading.Tasks;
using System.Threading;
public partial class SchemaExport
{
private async Task InitializeAsync(CancellationToken cancellationToken = default(CancellationToken))
{
cancellationToken.ThrowIfCancellationRequested();
if(wasInitialized)
{
return;
}
dialect = Dialect.Dialect.GetDialect(configProperties);
string autoKeyWordsImport = PropertiesHelper.GetString(Environment.Hbm2ddlKeyWords, configProperties, "not-defined");
if (autoKeyWordsImport == Hbm2DDLKeyWords.AutoQuote)
{
await (SchemaMetadataUpdater.UpdateAsync(cfg, dialect, cancellationToken)).ConfigureAwait(false);
SchemaMetadataUpdater.QuoteTableAndColumns(cfg, dialect);
}
dropSQL = cfg.GenerateDropSchemaScript(dialect);
createSQL = cfg.GenerateSchemaCreationScript(dialect);
formatter = (PropertiesHelper.GetBoolean(Environment.FormatSql, configProperties, true) ? FormatStyle.Ddl : FormatStyle.None).Formatter;
_requireTenantConnection = PropertiesHelper.GetEnum(Environment.MultiTenancy, configProperties, MultiTenancyStrategy.None) == MultiTenancyStrategy.Database;
wasInitialized = true;
}
//TODO 6.0: Remove (replaced by method with optional connection parameter)
/// <summary>
/// Run the schema creation script
/// </summary>
/// <param name="useStdOut"><see langword="true" /> if the ddl should be outputted in the Console.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This is a convenience method that calls <see cref="ExecuteAsync(bool, bool, bool,CancellationToken)"/> and sets
/// the justDrop parameter to false.
/// </remarks>
public Task CreateAsync(bool useStdOut, bool execute, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return CreateAsync(useStdOut, execute, null, cancellationToken);
}
//TODO 6.0: Make connection parameter optional: DbConnection connection = null
/// <summary>
/// Run the schema creation script
/// </summary>
/// <param name="useStdOut"><see langword="true" /> if the ddl should be outputted in the Console.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="connection"> Optional explicit connection. Required for multi-tenancy.
/// Must be an opened connection. The method doesn't close the connection. </param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This is a convenience method that calls <see cref="ExecuteAsync(bool, bool, bool,CancellationToken)"/> and sets
/// the justDrop parameter to false.
/// </remarks>
public Task CreateAsync(bool useStdOut, bool execute, DbConnection connection, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
try
{
return InitConnectionAndExecuteAsync(GetAction(useStdOut), execute, false, connection, null, cancellationToken);
}
catch (Exception ex)
{
return Task.FromException<object>(ex);
}
}
//TODO 6.0: Remove (replaced by method with optional connection parameter)
/// <summary>
/// Run the schema creation script
/// </summary>
/// <param name="scriptAction"> an action that will be called for each line of the generated ddl.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This is a convenience method that calls <see cref="ExecuteAsync(bool, bool, bool,CancellationToken)"/> and sets
/// the justDrop parameter to false.
/// </remarks>
public Task CreateAsync(Action<string> scriptAction, bool execute, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return CreateAsync(scriptAction, execute, null, cancellationToken);
}
//TODO 6.0: Make connection parameter optional: DbConnection connection = null
/// <summary>
/// Run the schema creation script
/// </summary>
/// <param name="scriptAction"> an action that will be called for each line of the generated ddl.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="connection"> Optional explicit connection. Required for multi-tenancy.
/// Must be an opened connection. The method doesn't close the connection. </param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This is a convenience method that calls <see cref="ExecuteAsync(bool, bool, bool,CancellationToken)"/> and sets
/// the justDrop parameter to false.
/// </remarks>
public Task CreateAsync(Action<string> scriptAction, bool execute, DbConnection connection, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return InitConnectionAndExecuteAsync(scriptAction, execute, false, connection, null, cancellationToken);
}
//TODO 6.0: Remove (replaced by method with optional connection parameter)
/// <summary>
/// Run the schema creation script
/// </summary>
/// <param name="exportOutput"> if non-null, the ddl will be written to this TextWriter.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This is a convenience method that calls <see cref="ExecuteAsync(bool, bool, bool,CancellationToken)"/> and sets
/// the justDrop parameter to false.
/// </remarks>
public Task CreateAsync(TextWriter exportOutput, bool execute, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return CreateAsync(exportOutput, execute, null, cancellationToken);
}
//TODO 6.0: Make connection parameter optional: DbConnection connection = null
/// <summary>
/// Run the schema creation script
/// </summary>
/// <param name="exportOutput"> if non-null, the ddl will be written to this TextWriter.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="connection"> Optional explicit connection. Required for multi-tenancy.
/// Must be an opened connection. The method doesn't close the connection. </param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This is a convenience method that calls <see cref="ExecuteAsync(bool, bool, bool,CancellationToken)"/> and sets
/// the justDrop parameter to false.
/// </remarks>
public Task CreateAsync(TextWriter exportOutput, bool execute, DbConnection connection, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return InitConnectionAndExecuteAsync(null, execute, false, connection, exportOutput, cancellationToken);
}
//TODO 6.0: Remove (replaced by method with optional connection parameter)
/// <summary>
/// Run the drop schema script
/// </summary>
/// <param name="useStdOut"><see langword="true" /> if the ddl should be outputted in the Console.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This is a convenience method that calls <see cref="ExecuteAsync(bool, bool, bool,CancellationToken)"/> and sets
/// the justDrop parameter to true.
/// </remarks>
public Task DropAsync(bool useStdOut, bool execute, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return DropAsync(useStdOut, execute, null, cancellationToken);
}
//TODO 6.0: Make connection parameter optional: DbConnection connection = null
/// <summary>
/// Run the drop schema script
/// </summary>
/// <param name="useStdOut"><see langword="true" /> if the ddl should be outputted in the Console.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="connection"> Optional explicit connection. Required for multi-tenancy.
/// Must be an opened connection. The method doesn't close the connection. </param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This is a convenience method that calls <see cref="ExecuteAsync(bool, bool, bool,CancellationToken)"/> and sets
/// the justDrop parameter to true.
/// </remarks>
public Task DropAsync(bool useStdOut, bool execute, DbConnection connection, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
try
{
return InitConnectionAndExecuteAsync(GetAction(useStdOut), execute, true, connection, null, cancellationToken);
}
catch (Exception ex)
{
return Task.FromException<object>(ex);
}
}
//TODO 6.0: Remove (replaced by method with optional connection parameter)
/// <summary>
/// Run the drop schema script
/// </summary>
/// <param name="exportOutput"> if non-null, the ddl will be written to this TextWriter.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This is a convenience method that calls <see cref="ExecuteAsync(Action<string>, bool, bool, TextWriter,CancellationToken)"/> and sets
/// the justDrop parameter to true.
/// </remarks>
public Task DropAsync(TextWriter exportOutput, bool execute, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return DropAsync(exportOutput, execute, null, cancellationToken);
}
//TODO 6.0: Make connection parameter optional: DbConnection connection = null
/// <summary>
/// Run the drop schema script
/// </summary>
/// <param name="exportOutput"> if non-null, the ddl will be written to this TextWriter.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="connection"> Optional explicit connection. Required for multi-tenancy.
/// Must be an opened connection. The method doesn't close the connection. </param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This is a convenience method that calls <see cref="ExecuteAsync(Action<string>, bool, bool, TextWriter,CancellationToken)"/> and sets
/// the justDrop parameter to true.
/// </remarks>
public Task DropAsync(TextWriter exportOutput, bool execute, DbConnection connection, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return InitConnectionAndExecuteAsync(null, execute, true, connection, exportOutput, cancellationToken);
}
private async Task ExecuteInitializedAsync(Action<string> scriptAction, bool execute, bool throwOnError, TextWriter exportOutput,
DbCommand statement, string sql, CancellationToken cancellationToken = default(CancellationToken))
{
cancellationToken.ThrowIfCancellationRequested();
try
{
string formatted = formatter.Format(sql);
if (delimiter != null)
{
formatted += delimiter;
}
if (scriptAction != null)
{
scriptAction(formatted);
}
log.Debug(formatted);
if (exportOutput != null)
{
exportOutput.WriteLine(formatted);
}
if (execute)
{
await (ExecuteSqlAsync(statement, sql, cancellationToken)).ConfigureAwait(false);
}
}
catch (OperationCanceledException) { throw; }
catch (Exception e)
{
log.Warn(e, "Unsuccessful: {0}", sql);
if (throwOnError)
{
throw;
}
}
}
private async Task ExecuteSqlAsync(DbCommand cmd, string sql, CancellationToken cancellationToken = default(CancellationToken))
{
cancellationToken.ThrowIfCancellationRequested();
if (dialect.SupportsSqlBatches)
{
foreach (var stmt in new ScriptSplitter(sql))
{
log.Debug("SQL Batch: {0}", stmt);
cmd.CommandText = stmt;
cmd.CommandType = CommandType.Text;
await (cmd.ExecuteNonQueryAsync(cancellationToken)).ConfigureAwait(false);
}
}
else
{
cmd.CommandText = sql;
cmd.CommandType = CommandType.Text;
await (cmd.ExecuteNonQueryAsync(cancellationToken)).ConfigureAwait(false);
}
}
/// <summary>
/// Executes the Export of the Schema in the given connection
/// </summary>
/// <param name="useStdOut"><see langword="true" /> if the ddl should be outputted in the Console.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="justDrop"><see langword="true" /> if only the ddl to drop the Database objects should be executed.</param>
/// <param name="connection">
/// The connection to use when executing the commands when export is <see langword="true" />.
/// Must be an opened connection. The method doesn't close the connection.
/// </param>
/// <param name="exportOutput">The writer used to output the generated schema</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This method allows for both the drop and create ddl script to be executed.
/// This overload is provided mainly to enable use of in memory databases.
/// It does NOT close the given connection!
/// </remarks>
public Task ExecuteAsync(bool useStdOut, bool execute, bool justDrop, DbConnection connection,
TextWriter exportOutput, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
try
{
return ExecuteAsync(GetAction(useStdOut), execute, justDrop, connection, exportOutput, cancellationToken);
}
catch (Exception ex)
{
return Task.FromException<object>(ex);
}
}
public async Task ExecuteAsync(Action<string> scriptAction, bool execute, bool justDrop, DbConnection connection,
TextWriter exportOutput, CancellationToken cancellationToken = default(CancellationToken))
{
cancellationToken.ThrowIfCancellationRequested();
await (InitializeAsync(cancellationToken)).ConfigureAwait(false);
DbCommand statement = null;
if (execute && connection == null)
{
throw new ArgumentNullException("connection", "When export is set to true, you need to pass a non null connection");
}
if (execute)
{
statement = connection.CreateCommand();
}
try
{
for (int i = 0; i < dropSQL.Length; i++)
{
await (ExecuteInitializedAsync(scriptAction, execute, false, exportOutput, statement, dropSQL[i], cancellationToken)).ConfigureAwait(false);
}
if (!justDrop)
{
for (int j = 0; j < createSQL.Length; j++)
{
await (ExecuteInitializedAsync(scriptAction, execute, true, exportOutput, statement, createSQL[j], cancellationToken)).ConfigureAwait(false);
}
}
}
finally
{
try
{
if (statement != null)
{
statement.Dispose();
}
}
catch (Exception e)
{
log.Error(e, "Could not close connection: {0}", e.Message);
}
if (exportOutput != null)
{
try
{
exportOutput.Close();
}
catch (Exception ioe)
{
log.Error(ioe, "Error closing output file {0}: {1}", outputFile, ioe.Message);
}
}
}
}
/// <summary>
/// Executes the Export of the Schema.
/// </summary>
/// <param name="useStdOut"><see langword="true" /> if the ddl should be outputted in the Console.</param>
/// <param name="execute"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <param name="justDrop"><see langword="true" /> if only the ddl to drop the Database objects should be executed.</param>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
/// <remarks>
/// This method allows for both the drop and create ddl script to be executed.
/// </remarks>
public Task ExecuteAsync(bool useStdOut, bool execute, bool justDrop, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
try
{
return InitConnectionAndExecuteAsync(GetAction(useStdOut), execute, justDrop, null, null, cancellationToken);
}
catch (Exception ex)
{
return Task.FromException<object>(ex);
}
}
public Task ExecuteAsync(Action<string> scriptAction, bool execute, bool justDrop, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return ExecuteAsync(scriptAction, execute, justDrop, null, cancellationToken);
}
public Task ExecuteAsync(Action<string> scriptAction, bool execute, bool justDrop, TextWriter exportOutput, CancellationToken cancellationToken = default(CancellationToken))
{
if (cancellationToken.IsCancellationRequested)
{
return Task.FromCanceled<object>(cancellationToken);
}
return InitConnectionAndExecuteAsync(scriptAction, execute, justDrop, null, exportOutput, cancellationToken);
}
private async Task InitConnectionAndExecuteAsync(Action<string> scriptAction, bool execute, bool justDrop, DbConnection connection, TextWriter exportOutput, CancellationToken cancellationToken = default(CancellationToken))
{
cancellationToken.ThrowIfCancellationRequested();
await (InitializeAsync(cancellationToken)).ConfigureAwait(false);
TextWriter fileOutput = exportOutput;
IConnectionProvider connectionProvider = null;
try
{
if (fileOutput == null && outputFile != null)
{
fileOutput = new StreamWriter(outputFile);
}
if (execute && connection == null)
{
if (_requireTenantConnection)
{
throw new ArgumentException("When Database multi-tenancy is enabled you need to provide explicit connection. Please use overload with connection parameter.");
}
var props = new Dictionary<string, string>();
foreach (var de in dialect.DefaultProperties)
{
props[de.Key] = de.Value;
}
if (configProperties != null)
{
foreach (var de in configProperties)
{
props[de.Key] = de.Value;
}
}
connectionProvider = ConnectionProviderFactory.NewConnectionProvider(props);
connection = await (connectionProvider.GetConnectionAsync(cancellationToken)).ConfigureAwait(false);
}
await (ExecuteAsync(scriptAction, execute, justDrop, connection, fileOutput, cancellationToken)).ConfigureAwait(false);
}
catch (OperationCanceledException) { throw; }
catch (HibernateException)
{
// So that we don't wrap HibernateExceptions in HibernateExceptions
throw;
}
catch (Exception e)
{
log.Error(e, e.Message);
throw new HibernateException(e.Message, e);
}
finally
{
if (connectionProvider != null)
{
if (connection != null)
{
connectionProvider.CloseConnection(connection);
}
connectionProvider.Dispose();
}
}
}
}
}