forked from dotnet/efcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
432 lines (384 loc) · 17.5 KB
/
Copy pathProgram.cs
File metadata and controls
432 lines (384 loc) · 17.5 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
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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#if DNX451 || DNXCORE50
using System;
using System.IO;
using System.Reflection;
using JetBrains.Annotations;
using Microsoft.Data.Entity.Commands.Utilities;
using Microsoft.Data.Entity.Utilities;
using Microsoft.Framework.Logging;
using Microsoft.Framework.Runtime;
using Microsoft.Framework.Runtime.Common.CommandLine;
namespace Microsoft.Data.Entity.Commands
{
// TODO: Add verbose option
public class Program
{
private readonly string _projectDir;
private readonly string _rootNamespace;
private readonly ILibraryManager _libraryManager;
private readonly MigrationTool _migrationTool;
private readonly DatabaseTool _databaseTool;
private readonly IRuntimeEnvironment _runtimeEnv;
private CommandLineApplication _app;
private readonly ILogger _logger;
public Program([NotNull] IServiceProvider serviceProvider,
[NotNull] IApplicationEnvironment appEnv, [NotNull] ILibraryManager libraryManager,
[NotNull] IRuntimeEnvironment runtimeEnv)
{
Check.NotNull(serviceProvider, nameof(serviceProvider));
Check.NotNull(appEnv, nameof(appEnv));
Check.NotNull(libraryManager, nameof(libraryManager));
Check.NotNull(runtimeEnv, nameof(runtimeEnv));
_runtimeEnv = runtimeEnv;
_projectDir = appEnv.ApplicationBasePath;
_rootNamespace = appEnv.ApplicationName;
var loggerProvider = new LoggerProvider(name => new ConsoleCommandLogger(name, verbose: true));
var assemblyName = new AssemblyName(appEnv.ApplicationName);
var assembly = Assembly.Load(assemblyName);
_migrationTool = new MigrationTool(loggerProvider, assembly, serviceProvider);
_databaseTool = new DatabaseTool(serviceProvider, loggerProvider);
_libraryManager = libraryManager;
_logger = loggerProvider.CreateLogger(typeof(Program).FullName);
}
public virtual int Main([NotNull] string[] args)
{
Check.NotNull(args, nameof(args));
// TODO: Enable subcommands in help
_app = new CommandLineApplication { Name = "ef" };
_app.VersionOption(
"-v|--version",
typeof(Program).GetTypeInfo().Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()
.InformationalVersion);
_app.HelpOption("-h|--help");
_app.Command(
"context",
context =>
{
context.Description = "Commands to manage your DbContext";
context.HelpOption("-h|--help");
context.Command(
"list",
list =>
{
list.Description = "List the contexts";
list.HelpOption("-h|--help");
list.OnExecute(() => ListContexts());
},
addHelpCommand: false);
context.OnExecute(
() =>
{
_app.ShowHelp(context.Name);
return 0;
});
},
addHelpCommand: false);
_app.Command(
"migration",
migration =>
{
migration.Description = "Commands to manage your Code First Migrations";
migration.HelpOption("-h|--help");
migration.Command(
"add",
add =>
{
add.Description = "Add a new migration";
var name = add.Argument("[name]", "The name of the migration");
var context = add.Option(
"-c|--context <context>",
"The context class to use",
CommandOptionType.SingleValue);
var startupProject = add.Option(
"-s|--startupProject <startupProject>",
"The start-up project to use",
CommandOptionType.SingleValue);
add.HelpOption("-h|--help");
add.OnExecute(
() =>
{
if (name.Value == null)
{
_logger.LogError("Missing required argument '{0}'.", name.Name);
migration.ShowHelp(add.Name);
return 1;
}
return AddMigration(name.Value, context.Value(), startupProject.Value());
});
},
addHelpCommand: false);
migration.Command(
"apply",
apply =>
{
apply.Description = "Apply migrations to the database";
var migrationName = apply.Argument(
"[migration]",
"The migration to apply. Use '0' to unapply all migrations");
var context = apply.Option(
"-c|--context <context>",
"The context class to use",
CommandOptionType.SingleValue);
var startupProject = apply.Option(
"-s|--startupProject <startupProject>",
"The start-up project to use",
CommandOptionType.SingleValue);
apply.HelpOption("-h|--help");
apply.OnExecute(() => ApplyMigration(migrationName.Value, context.Value(), startupProject.Value()));
},
addHelpCommand: false);
migration.Command(
"list",
list =>
{
list.Description = "List the migrations";
var context = list.Option(
"-c|--context <context>",
"The context class to use",
CommandOptionType.SingleValue);
var startupProject = list.Option(
"-s|--startupProject <startupProject>",
"The start-up project to use",
CommandOptionType.SingleValue);
list.HelpOption("-h|--help");
list.OnExecute(() => ListMigrations(context.Value(), startupProject.Value()));
},
addHelpCommand: false);
migration.Command(
"script",
script =>
{
script.Description = "Generate a SQL script from migrations";
var from = script.Argument("[from]", "The starting migration");
var to = script.Argument("[to]", "The ending migration");
var output = script.Option(
"-o|--output <file>",
"The file to write the script to instead of stdout",
CommandOptionType.SingleValue);
var idempotent = script.Option(
"-i|--idempotent",
"Generate an idempotent script",
CommandOptionType.NoValue);
var context = script.Option(
"-c|--context <context>",
"The context class to use",
CommandOptionType.SingleValue);
var startupProject = script.Option(
"-s|--startupProject <startupProject>",
"The start-up project to use",
CommandOptionType.SingleValue);
script.HelpOption("-h|--help");
script.OnExecute(() => ScriptMigration(from.Value, to.Value, output.Value(), idempotent.HasValue(), context.Value(), startupProject.Value()));
},
addHelpCommand: false);
migration.Command(
"remove",
remove =>
{
remove.Description = "Remove the last migration";
var context = remove.Option(
"-c|--context <context>",
"The context class to use",
CommandOptionType.SingleValue);
var startupProject = remove.Option(
"-s|--startupProject <startupProject>",
"The start-up project to use",
CommandOptionType.SingleValue);
remove.HelpOption("-h|--help");
remove.OnExecute(() => RemoveMigration(context.Value(), startupProject.Value()));
},
addHelpCommand: false);
migration.OnExecute(
() =>
{
_app.ShowHelp(migration.Name);
return 0;
});
},
addHelpCommand: false);
_app.Command(
"revEng",
revEng =>
{
revEng.Description = "Command to reverse engineer code from a database";
revEng.HelpOption("-h|--help");
var connectionString = revEng.Argument(
"[connectionString]",
"The connection string of the database");
revEng.OnExecute(() => ReverseEngineer(connectionString.Value));
},
addHelpCommand: false);
_app.Command(
"help",
help =>
{
help.Description = "Show help information";
var command = help.Argument("[command]", "Command that help information explains");
help.OnExecute(
() =>
{
if (command.Value != null)
{
_app.ShowHelp(command.Value);
return 0;
}
return ShowHelp();
});
},
addHelpCommand: false);
_app.OnExecute(() => ShowHelp());
return _app.Execute(args);
}
public virtual int ListContexts()
{
var contexts = _migrationTool.GetContextTypes();
var any = false;
foreach (var context in contexts)
{
// TODO: Show simple names
_logger.LogInformation(context.FullName);
any = true;
}
if (!any)
{
_logger.LogInformation("No DbContext was found.");
}
return 0;
}
public virtual int AddMigration([CanBeNull] string name, [CanBeNull] string context, [CanBeNull] string startupProject)
{
return Execute(
startupProject,
() =>
{
_migrationTool.AddMigration(name, context, startupProject, _rootNamespace, _projectDir);
_logger.LogInformation("Done. To undo this action, use 'ef migration remove'.");
return 0;
});
}
public virtual int ApplyMigration([CanBeNull] string migration, [CanBeNull] string context, [CanBeNull] string startupProject)
{
return Execute(
startupProject,
() =>
{
_migrationTool.ApplyMigration(migration, context, startupProject);
return 0;
});
}
public virtual int ListMigrations([CanBeNull] string context, [CanBeNull] string startupProject)
{
return Execute(
startupProject,
() =>
{
var migrations = _migrationTool.GetMigrations(context, startupProject);
var any = false;
foreach (var migration in migrations)
{
// TODO: Show simple names
_logger.LogInformation(migration.Id);
any = true;
}
if (!any)
{
_logger.LogInformation("No migrations were found.");
}
return 0;
});
}
public virtual int ScriptMigration(
[CanBeNull] string from,
[CanBeNull] string to,
[CanBeNull] string output,
bool idempotent,
[CanBeNull] string context,
[CanBeNull] string startupProject)
{
return Execute(
startupProject,
() =>
{
var sql = _migrationTool.ScriptMigration(from, to, idempotent, context, startupProject);
if (string.IsNullOrEmpty(output))
{
_logger.LogInformation(sql);
}
else
{
_logger.LogVerbose("Writing SQL script to '{0}'.", output);
File.WriteAllText(output, sql);
_logger.LogInformation("Done.");
}
return 0;
});
}
public virtual int RemoveMigration([CanBeNull] string context, [CanBeNull] string startupProject)
{
return Execute(
startupProject,
() =>
{
_migrationTool.RemoveMigration(context, startupProject, _rootNamespace, _projectDir);
return 0;
});
}
public virtual int ReverseEngineer([NotNull] string connectionString)
{
_databaseTool.ReverseEngineer(
DatabaseTool._defaultReverseEngineeringProviderAssembly,
connectionString, _rootNamespace, _projectDir);
_logger.LogInformation("Done.");
return 0;
}
public virtual int ShowHelp()
{
var useConsoleColors = _runtimeEnv.OperatingSystem == "Windows";
// TODO: Enable multiple parameters in escape sequences
AnsiConsole.GetOutput(useConsoleColors).WriteLine(
"\x1b[1m\x1b[37m" + Environment.NewLine +
" _/\\__" + Environment.NewLine +
" ---==/ \\\\" + Environment.NewLine +
" \x1b[22m\x1b[35m ___ ___ \x1b[1m\x1b[37m |\x1b[22m.\x1b[1m \\|\\" + Environment.NewLine +
" \x1b[22m\x1b[35m| __|| __|\x1b[1m\x1b[37m | ) \\\\\\" + Environment.NewLine +
" \x1b[22m\x1b[35m| _| | _| \x1b[1m\x1b[37m \\_/ | //|\\\\" + Environment.NewLine +
" \x1b[22m\x1b[35m|___||_| \x1b[1m\x1b[37m / \\\\\\/\\\\" + Environment.NewLine +
"\x1b[22m\x1b[39m");
_app.ShowHelp();
return 0;
}
private int Execute(string startupProject, Func<int> invoke)
{
var returnDirectory = Directory.GetCurrentDirectory();
try
{
UseStartupProject(startupProject);
return invoke();
}
finally
{
Directory.SetCurrentDirectory(returnDirectory);
}
}
private void UseStartupProject(string startupProject)
{
if (startupProject == null)
{
return;
}
var library = _libraryManager.GetLibraryInformation(startupProject);
if (library == null || library.Type != "Project")
{
_logger.LogVerbose("Unable to resolve start-up project '{0}'.", startupProject);
return;
}
_logger.LogVerbose("Using start-up project '{0}'.", library.Name);
var startupProjectDir = Path.GetDirectoryName(library.Path);
_logger.LogVerbose("Using current directory '{0}'.", startupProjectDir);
Directory.SetCurrentDirectory(startupProjectDir);
}
}
}
#endif