-
Notifications
You must be signed in to change notification settings - Fork 0
/
FrmEnumGenerator.cs
242 lines (192 loc) · 8.08 KB
/
FrmEnumGenerator.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
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Text.RegularExpressions;
using System.Windows.Forms;
namespace EnumGenerator
{
public partial class FrmEnumGenerator : Form
{
private SqlConnection _Connection;
private List<string> _Columns;
public FrmEnumGenerator()
{
InitializeComponent();
InitCboServer();
}
private void InitCboServer()
{
var servers = new List<string>();
var instances = System.Data.Sql.SqlDataSourceEnumerator.Instance.GetDataSources();
foreach (System.Data.DataRow instance in instances.Rows)
{
servers.Add(instance[instances.Columns["ServerName"]].ToString() + @"\" + instance[instances.Columns["InstanceName"]].ToString());
}
CboServers.DataSource = servers;
}
private void LoadCboDatabase()
{
CboDatabase.DataSource = GetListOnSelect("EXEC sp_databases", "DATABASE_NAME");
}
private void LoadCboTable()
{
CboTable.DataSource = GetListOnSelect("SELECT [TABLE_NAME] FROM [" + CboDatabase.SelectedValue + "].INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE'", "TABLE_NAME");
}
private void LoadColumnCbos()
{
_Columns = GetListOnSelect("SELECT * FROM [" + CboDatabase.SelectedValue + "].INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '" + CboTable.SelectedValue + "'", "COLUMN_NAME");
var columnsKey = new List<string>();
var columnsValue = new List<string>();
columnsKey.AddRange(_Columns);
columnsValue.AddRange(_Columns);
CboKey.DataSource = columnsKey;
CboValue.DataSource = columnsValue;
}
private void BtnGenerate_Click(object sender, EventArgs e)
{
if (CboKey.SelectedValue == CboValue.SelectedValue)
{
MessageBox.Show("Please choose different columns for Key and Value!");
return;
}
if (string.IsNullOrEmpty((string)CboDatabase.SelectedValue) || string.IsNullOrEmpty((string)CboTable.SelectedValue) ||
string.IsNullOrEmpty((string)CboKey.SelectedValue) || string.IsNullOrEmpty((string)CboValue.SelectedValue))
{
MessageBox.Show("Please select something in every dropdown!");
return;
}
if (!IsDatatypesCorrect())
{
MessageBox.Show("The datatypes of the selected columns are not correct! ID = int; Value = string");
return;
}
TxtOutput.Text = "";
WriteOutput(
GetDictOnSelect("Select [" + CboValue.SelectedValue + "], [" + CboKey.SelectedValue + "] from [" + CboTable.SelectedValue + "]",
(string)CboKey.SelectedValue, (string)CboValue.SelectedValue)
);
}
private bool IsDatatypesCorrect()
{
var keyType = GetDatatype((string)CboKey.SelectedValue);
var valueType = GetDatatype((string)CboValue.SelectedValue);
if (keyType != "int" || !(valueType == "varchar" || valueType == "nchar" || valueType == "ntext" || valueType == "char" || valueType == "nvarchar" || valueType == "text"))
{
return false;
}
return true;
}
private void WriteOutput(Dictionary<int, string> dictionary)
{
TxtOutput.Text = "enum Permissions" + Environment.NewLine +
"{" + Environment.NewLine;
foreach(var item in dictionary)
{
TxtOutput.Text += "\t" + Regex.Replace(item.Value, "[.,@;\\/:*?\"<>|&']", "_") + " = " + item.Key + "," + Environment.NewLine;
}
TxtOutput.Text += "}";
TxtOutput.Focus();
Clipboard.SetText(TxtOutput.Text);
}
private void CboDatabase_ValueChanged(object sender, EventArgs e)
{
_Connection = new SqlConnection(@"Server=" + CboServers.SelectedValue + "; Integrated Security=true; Database = " + CboDatabase.SelectedValue + ";");
LoadCboTable();
}
private void CboTable_SelectedValueChanged(object sender, EventArgs e)
{
LoadColumnCbos();
}
private List<string> GetListOnSelect(string select, string fieldName)
{
try
{
_Connection.Open();
var command = new SqlCommand(select, _Connection);
var databases = new List<string>();
using (var reader = command.ExecuteReader())
{
while (reader.Read())
{
var item = reader[fieldName];
if (!Convert.IsDBNull(item))
{
databases.Add((string)item);
}
}
}
_Connection.Close();
return databases;
}
catch (Exception ex)
{
MessageBox.Show("Failed to load data! " + Environment.NewLine + ex.Message);
_Connection.Close();
return null;
}
}
private Dictionary<int, string> GetDictOnSelect(string select, string fieldNameKey, string fieldNameValue)
{
try
{
_Connection.Open();
var command = new SqlCommand(select, _Connection);
var enumDict = new Dictionary<int, string>();
using (var reader = command.ExecuteReader())
{
while (reader.Read())
{
var key = reader[fieldNameKey];
var value = reader[fieldNameValue];
if (!Convert.IsDBNull(key) && !Convert.IsDBNull(value))
{
enumDict.Add((int)key, (string)value);
}
}
}
_Connection.Close();
return enumDict;
}
catch (Exception ex)
{
MessageBox.Show("Failed to load data! " + Environment.NewLine + ex.Message);
_Connection.Close();
return null;
}
}
private string GetDatatype(string fieldName)
{
try
{
_Connection.Open();
var command = new SqlCommand("SELECT DATA_TYPE FROM [" + CboDatabase.SelectedValue + "].INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '"
+ CboTable.SelectedValue + "' AND COLUMN_NAME = '" + fieldName + "'", _Connection);
var datatype = "";
using (var reader = command.ExecuteReader())
{
if (reader.Read())
{
var datatypeTemp = reader["DATA_TYPE"];
if (!Convert.IsDBNull(datatypeTemp))
{
datatype = (string)datatypeTemp;
}
}
}
_Connection.Close();
return datatype;
}
catch (Exception ex)
{
MessageBox.Show("Failed to load data! " + Environment.NewLine + ex.Message);
_Connection.Close();
return null;
}
}
private void CboServers_SelectedValueChanged(object sender, EventArgs e)
{
_Connection = new SqlConnection(@"Server=" + CboServers.SelectedValue + "; Integrated Security=true;");
LoadCboDatabase();
}
}
}