-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathRunCommand.cs
225 lines (193 loc) · 10.3 KB
/
RunCommand.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
using System.CommandLine;
using System.CommandLine.Invocation;
using System.ComponentModel.Composition.Hosting;
using Cosmos.DataTransfer.Interfaces;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace Cosmos.DataTransfer.Core
{
public class RunCommand : Command
{
public RunCommand()
: base("run", "Runs data transfer operation using selected source and sink")
{
AddRunOptions(this);
AddAlias("<default>");
TreatUnmatchedTokensAsErrors = false;
// TODO: load extensions to use in completions
//sourceOption.AddCompletions(ExtensionLoader.GetExtensionSourceNames());
//sinkOption.AddCompletions(ExtensionLoader.GetExtensionSinkNames());
}
public static void AddRunOptions(Command command)
{
var sourceOption = new Option<string?>(
aliases: new[] { "--source", "-from" },
description: "The extension to read data.");
var sinkOption = new Option<string?>(
aliases: new[] { "--sink", "-to" },
description: "The extension to write data.");
var settingsOption = new Option<FileInfo?>(
aliases: new[] { "--settings" },
description: "The settings file. (default: migrationsettings.json)");
command.AddOption(sourceOption);
command.AddOption(sinkOption);
command.AddOption(settingsOption);
}
public class CommandHandler : ICommandHandler
{
private readonly ILogger<CommandHandler> _logger;
private readonly IExtensionLoader _extensionLoader;
private readonly IConfiguration _configuration;
private readonly ILoggerFactory _loggerFactory;
public string? Source { get; set; }
public string? Sink { get; set; }
public FileInfo? Settings { get; set; }
public CommandHandler(IExtensionLoader extensionLoader, IConfiguration configuration, ILoggerFactory loggerFactory)
{
_logger = loggerFactory.CreateLogger<CommandHandler>();
_extensionLoader = extensionLoader;
_configuration = configuration;
_loggerFactory = loggerFactory;
}
public int Invoke(InvocationContext context)
{
return InvokeAsync(context).GetAwaiter().GetResult();
}
public async Task<int> InvokeAsync(InvocationContext context)
{
CancellationToken cancellationToken = context.GetCancellationToken();
var configuredOptions = _configuration.Get<DataTransferOptions>() ?? new DataTransferOptions();
var combinedConfig = BuildSettingsConfiguration(_configuration,
Settings?.FullName ?? configuredOptions.SettingsPath,
string.IsNullOrEmpty(Source ?? configuredOptions.Source) && string.IsNullOrEmpty(Sink ?? configuredOptions.Sink),
cancellationToken);
var options = combinedConfig.Get<DataTransferOptions>();
string extensionsPath = _extensionLoader.GetExtensionFolderPath();
CompositionContainer container = _extensionLoader.BuildExtensionCatalog(extensionsPath);
var sources = _extensionLoader.LoadExtensions<IDataSourceExtension>(container);
var sinks = _extensionLoader.LoadExtensions<IDataSinkExtension>(container);
cancellationToken.ThrowIfCancellationRequested();
var source = GetExtensionSelection(Source ?? options.Source, sources, "Source", cancellationToken);
cancellationToken.ThrowIfCancellationRequested();
var sink = GetExtensionSelection(Sink ?? options.Sink, sinks, "Sink", cancellationToken);
cancellationToken.ThrowIfCancellationRequested();
var sourceConfig = combinedConfig.GetSection("SourceSettings");
var sinkConfig = combinedConfig.GetSection("SinkSettings");
var operationConfigs = combinedConfig.GetSection("Operations");
var operations = operationConfigs?.GetChildren().ToList();
if (operations?.Any() == true)
{
foreach (var operationConfig in operations)
{
var operationSource = operationConfig.GetSection("SourceSettings");
var sourceBuilder = new ConfigurationBuilder().AddConfiguration(sourceConfig);
if (operationSource.Exists())
{
sourceBuilder.AddConfiguration(operationSource);
}
var operationSink = operationConfig.GetSection("SinkSettings");
var sinkBuilder = new ConfigurationBuilder().AddConfiguration(sinkConfig);
if (operationSink.Exists())
{
sinkBuilder.AddConfiguration(operationSink);
}
await ExecuteDataTransferOperation(source,
sourceBuilder.Build(),
sink,
sinkBuilder.Build(),
cancellationToken);
}
}
else
{
await ExecuteDataTransferOperation(source, sourceConfig, sink, sinkConfig, cancellationToken);
}
return 0;
}
private async Task ExecuteDataTransferOperation(IDataSourceExtension source, IConfiguration sourceConfig, IDataSinkExtension sink, IConfiguration sinkConfig, CancellationToken cancellationToken)
{
_logger.LogDebug("Loaded {SettingCount} settings for source {SourceName}:\n\t\t{SettingList}",
sourceConfig.AsEnumerable().Count(),
source.DisplayName,
string.Join("\n\t\t", sourceConfig.AsEnumerable().Select(kvp => kvp.Key)));
_logger.LogDebug("Loaded {SettingCount} settings for sink {SinkName}:\n\t\t{SettingsList}",
sinkConfig.AsEnumerable().Count(),
sink.DisplayName,
string.Join("\n\t\t", sinkConfig.AsEnumerable().Select(kvp => kvp.Key)));
cancellationToken.ThrowIfCancellationRequested();
try
{
var data = source.ReadAsync(sourceConfig, _loggerFactory.CreateLogger(source.GetType().Name), cancellationToken);
await sink.WriteAsync(data, sinkConfig, source, _loggerFactory.CreateLogger(sink.GetType().Name), cancellationToken);
_logger.LogInformation("Data transfer complete");
}
catch (Exception ex)
{
_logger.LogError(ex, "Data transfer failed");
}
}
private static T GetExtensionSelection<T>(string? selectionName, List<T> extensions, string inputPrompt, CancellationToken cancellationToken)
where T : class, IDataTransferExtension
{
if (!string.IsNullOrWhiteSpace(selectionName))
{
var extension = extensions.FirstOrDefault(s => selectionName.Equals(s.DisplayName, StringComparison.OrdinalIgnoreCase));
if (extension != null)
{
Console.WriteLine($"Using {extension.DisplayName} {inputPrompt}");
return extension;
}
}
Console.WriteLine($"Select {inputPrompt}");
for (var index = 0; index < extensions.Count; index++)
{
var extension = extensions[index];
Console.WriteLine($"{index + 1}:{extension.DisplayName}");
}
string? selection = "";
int input;
while (!int.TryParse(selection, out input) || input > extensions.Count)
{
cancellationToken.ThrowIfCancellationRequested();
selection = Console.ReadLine();
}
T selected = extensions[input - 1];
Console.WriteLine($"Using {selected.DisplayName} {inputPrompt}");
return selected;
}
private IConfiguration BuildSettingsConfiguration(IConfiguration configuration, string? settingsPath, bool promptForFile, CancellationToken cancellationToken)
{
IConfigurationBuilder configurationBuilder = new ConfigurationBuilder();
if (!string.IsNullOrEmpty(settingsPath) && File.Exists(settingsPath))
{
var fullFilePath = Path.GetFullPath(settingsPath);
_logger.LogInformation("Settings loading from file at configured path '{FilePath}'.", fullFilePath);
configurationBuilder = configurationBuilder.AddJsonFile(fullFilePath);
}
else if (promptForFile)
{
Console.Write("Path to settings file? (leave empty to skip): ");
var path = Console.ReadLine();
cancellationToken.ThrowIfCancellationRequested();
if (!string.IsNullOrWhiteSpace(path))
{
var fullFilePath = Path.GetFullPath(path);
_logger.LogInformation("Settings loading from file at entered path '{FilePath}'.", fullFilePath);
configurationBuilder = configurationBuilder.AddJsonFile(fullFilePath);
}
}
return configurationBuilder
.AddConfiguration(configuration)
.Build();
}
private static bool IsYesResponse(string? response)
{
if (response?.Equals("y", StringComparison.CurrentCultureIgnoreCase) == true)
return true;
if (response?.Equals("yes", StringComparison.CurrentCultureIgnoreCase) == true)
return true;
return false;
}
}
}
}