forked from sethreno/schemazen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompare.cs
75 lines (68 loc) · 1.79 KB
/
Compare.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
using System;
using System.Diagnostics;
using System.IO;
using ManyConsole;
using Mono.Options;
using SchemaZen.Library.Command;
using SystemConsole = System.Console;
namespace SchemaZen.Console;
internal class Compare : ConsoleCommand {
private bool _debug;
private string _outDiff;
private bool _overwrite;
private string _source;
private string _target;
private bool _verbose;
public Compare() {
IsCommand("Compare", "CreateDiff two databases.");
Options = new OptionSet();
SkipsCommandSummaryBeforeRunning();
HasRequiredOption(
"s|source=",
"Connection string to a database to compare.",
o => _source = o);
HasRequiredOption(
"t|target=",
"Connection string to a database to compare.",
o => _target = o);
HasOption(
"outFile=",
"Create a sql diff file in the specified path.",
o => _outDiff = o);
HasOption(
"o|overwrite",
"Overwrite existing target without prompt.",
o => _overwrite = o != null);
HasOption(
"v|verbose",
"Enable verbose mode (show detailed changes).",
o => _verbose = o != null);
HasOption(
"debug",
"Launch the debugger",
o => _debug = o != null);
}
public override int Run(string[] remainingArguments) {
if (_debug) Debugger.Launch();
if (!string.IsNullOrEmpty(_outDiff)) {
SystemConsole.WriteLine();
if (!_overwrite && File.Exists(_outDiff)) {
var question = $"{_outDiff} already exists - do you want to replace it";
if (!ConsoleQuestion.AskYN(question)) return 1;
_overwrite = true;
}
}
var compareCommand = new CompareCommand {
Source = _source,
Target = _target,
Verbose = _verbose,
OutDiff = _outDiff,
Overwrite = _overwrite
};
try {
return compareCommand.Execute() ? 1 : 0;
} catch (Exception ex) {
throw new ConsoleHelpAsException(ex.Message);
}
}
}