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
264 lines (235 loc) · 10.5 KB
/
Copy pathProgram.cs
File metadata and controls
264 lines (235 loc) · 10.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
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#if ASPNET50 || ASPNETCORE50
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using JetBrains.Annotations;
using Microsoft.Data.Entity.Utilities;
using Microsoft.Data.Entity.Commands.Utilities;
using Microsoft.Data.Entity.Relational.Migrations.Utilities;
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 MigrationTool _migrationTool;
private CommandLineApplication _app;
public Program([NotNull] IApplicationEnvironment appEnv)
{
Check.NotNull(appEnv, "appEnv");
_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);
}
public virtual int Main([NotNull] string[] args)
{
Check.NotNull(args, "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(() => ShowHelp(context.Name));
},
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);
add.HelpOption("-h|--help");
add.OnExecute(() => AddMigration(name.Value, context.Value()));
},
addHelpCommand: false);
migration.Command(
"apply",
apply =>
{
apply.Description = "Apply migrations to the database";
var migrationName = apply.Argument("[migration]", "The migration to apply");
var context = apply.Option(
"-c|--context <context>",
"The context class to use",
CommandOptionType.SingleValue);
apply.HelpOption("-h|--help");
apply.OnExecute(() => ApplyMigration(migrationName.Value, context.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);
list.HelpOption("-h|--help");
list.OnExecute(() => ListMigrations(context.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 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);
script.HelpOption("-h|--help");
script.OnExecute(() => ScriptMigration(from.Value, to.Value, idempotent.HasValue(), context.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);
remove.HelpOption("-h|--help");
remove.OnExecute(() => RemoveMigration(context.Value()));
},
addHelpCommand: false);
migration.OnExecute(() => ShowHelp(migration.Name));
},
addHelpCommand: false);
_app.Command(
"help",
help =>
{
help.Description = "Show help information";
var command = help.Argument("[command]", "Command that help information explains");
help.OnExecute(() => ShowHelp(command.Value));
},
addHelpCommand: false);
_app.OnExecute(() => ShowHelp(command: null));
return _app.Execute(args);
}
public virtual int ListContexts()
{
var contexts = _migrationTool.GetContextTypes();
var any = false;
foreach (var context in contexts)
{
// TODO: Show simple names
Console.WriteLine(context.FullName);
any = true;
}
if (!any)
{
Console.WriteLine("No DbContext was found.");
}
return 0;
}
public virtual int AddMigration([NotNull] string name, [CanBeNull] string context)
{
Check.NotEmpty(name, "name");
_migrationTool.AddMigration(name, context, _rootNamespace, _projectDir).ToArray();
return 0;
}
public virtual int ApplyMigration([CanBeNull] string migration, [CanBeNull] string context)
{
_migrationTool.ApplyMigration(migration, context);
return 0;
}
public virtual int ListMigrations([CanBeNull] string context)
{
var migrations = _migrationTool.GetMigrations(context);
var any = false;
foreach (var migration in migrations)
{
// TODO: Show simple names
Console.WriteLine(migration.GetMigrationId());
any = true;
}
if (!any)
{
Console.WriteLine("No migrations were found.");
}
return 0;
}
public virtual int ScriptMigration(
[CanBeNull] string from,
[CanBeNull] string to,
bool idempotent,
[CanBeNull] string context)
{
var sql = _migrationTool.ScriptMigration(from, to, idempotent, context);
// TODO: Write to file?
Console.WriteLine(sql);
return 0;
}
public virtual int RemoveMigration([CanBeNull] string context)
{
var filesToDelete = _migrationTool.RemoveMigration(context, _rootNamespace, _projectDir);
foreach (var file in filesToDelete)
{
File.Delete(file);
}
return 0;
}
public virtual int ShowHelp([CanBeNull] string command)
{
// TODO: Enable multiple parameters in escape sequences
AnsiConsole.Output.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(command);
return 0;
}
}
}
#endif