-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathAddWindow.xaml.cs
More file actions
454 lines (304 loc) · 9.27 KB
/
Copy pathAddWindow.xaml.cs
File metadata and controls
454 lines (304 loc) · 9.27 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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
using IPAM_NOTE.DatabaseOperation;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data.SqlClient;
using System.Data.SQLite;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Web.Hosting;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace IPAM_NOTE
{
/// <summary>
/// AddWindow.xaml 的交互逻辑
/// </summary>
public partial class AddWindow : Window
{
public AddWindow()
{
InitializeComponent();
}
private DbClass dbClass;
private void AddWindow_OnLoaded(object sender, RoutedEventArgs e)
{
LoadStatus=true;
if (DataBrige.AddStatus==0)
{
this.Title = "添加网段";
}
else
{
this.Title = "编辑网段信息";
IpTextBox.Text = DataBrige.TempAddress.Network;
MaskText.Text = DataBrige.TempAddress.NetMask;
IpDescription.Text = DataBrige.TempAddress.Description;
CalculateNetMaskLocated();
IpTextBox.IsEnabled = false;
MaskText.IsEnabled = false;
MaskSlider.IsEnabled=false;
UpdateIPCalculations();
}
string dbFilePath = AppDomain.CurrentDomain.BaseDirectory + @"db\";
string dbName = "Address_database.db";
dbFilePath = dbFilePath + dbName;
dbClass = new DbClass(dbFilePath);
dbClass.OpenConnection();
}
/// <summary>
/// 保存新建的网段
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void SaveButton_Click(object sender, RoutedEventArgs e)
{
//添加网段
if (DataBrige.AddStatus == 0)
{
//判断是不是瞎几把写的IP地址
if (IsValidIp(IpTextBox.Text) == true)
{
//计算IP
UpdateIPCalculations();
//网段地址
string ip = Network.Text;
string netMask = MaskText.Text;
if (IpDescription.Text != "")
{
string tableName;
string sqlTemp = string.Format("SELECT COUNT(*) FROM Network WHERE `Network` = '{0}' AND `Netmask` = '{1}'", ip, netMask);
int num = dbClass.ExecuteScalarTableNum(sqlTemp, dbClass.connection);
//IP地址段已存在
if (num > 0)
{
string msg = string.Format("已存在同配置网段{0}个,是否继续添加同配置网段?", num.ToString());
MessageBoxResult result = MessageBox.Show(msg, "确认", MessageBoxButton.YesNo,
MessageBoxImage.Information);
if (result == MessageBoxResult.Yes)
{
// 用户点击了"是"按钮,执行相关操作
tableName = CreateTableName(ip,netMask) + "_" + (num + 1).ToString();
Console.WriteLine(tableName);
//插入网段信息总表的数据
string sql = string.Format(
"INSERT INTO Network (TableName,Network,Netmask,Description,Del) VALUES ('{0}','{1}','{2}','{3}','{4}')",
tableName, ip, netMask, IpDescription.Text, 0);
dbClass.ExecuteQuery(sql);
//创建表
CreateTable(tableName);
//装载初始化数据
InitializedData(tableName);
this.DialogResult = true;
this.Close();
}
else if (result == MessageBoxResult.No)
{
// 用户点击了"否"按钮,取消操作或进行其他处理
}
}
else
{
tableName = CreateTableName(ip, netMask) + "_1";
Console.WriteLine(tableName);
//插入网段信息总表的数据
string sql = string.Format(
"INSERT INTO Network (TableName,Network,Netmask,Description,Del) VALUES ('{0}','{1}','{2}','{3}','{4}')",
tableName, ip, netMask, IpDescription.Text, 0);
dbClass.ExecuteQuery(sql);
//插入网段信息总表的数据
//创建表
CreateTable(tableName);
//装载初始化数据
InitializedData(tableName);
this.DialogResult = true;
this.Close();
}
}
else
{
MessageBox.Show("为了便于后期管理,必须填写网段说明!", "确定", MessageBoxButton.OK, MessageBoxImage.Information);
}
}
else
{
MessageBox.Show("IP地址不合法,请检查IP地址是否正确!", "确定", MessageBoxButton.OK, MessageBoxImage.Information);
}
}
else//编辑网段
{
if (IpDescription.Text!="")
{
string tableName = DataBrige.TempAddress.TableName;
string sqlTemp = string.Format("UPDATE \"Network\" SET \"Description\" = '{0}' WHERE TableName = '{1}'", IpDescription.Text, tableName);
Console.WriteLine(sqlTemp);
dbClass.ExecuteQuery(sqlTemp);
this.Close();
}
}
}
/// <summary>
/// 判断是否是合法IP
/// </summary>
/// <param name="ipAddress"></param>
/// <returns></returns>
static bool IsValidIp(string ipAddress)
{
IPAddress address;
return IPAddress.TryParse(ipAddress, out address);
}
/// <summary>
/// 生成表名
/// </summary>
/// <returns></returns>
private string CreateTableName(string address,string netmask)
{
string name = Network.Text + "_" + MaskText.Text;
name = "tb_" + name.Replace(".", "_");
return name;
}
/// <summary>
/// 创建一张数据表
/// </summary>
/// <param name="sql"></param>
/// <returns></returns>
private void CreateTable(string tableName)
{
string sql = string.Format(
"CREATE TABLE IF NOT EXISTS {0} (Address INTEGER NOT NULL ,AddressStatus INTEGER , User VARCHAR ( 16 ),Description VARCHAR ( 80 ),HostName VARCHAR ( 64 ),MacAddress VARCHAR ( 20 ))",
tableName);
dbClass.ExecuteQuery(sql);
}
/// <summary>
/// 填充网段表单初始数据
/// </summary>
private void InitializedData(string tableName)
{
string[] parts = Network.Text.Split('.');
//取出第一个IP
int firstIp =Convert.ToInt32( parts[3]);
parts = Broadcast.Text.Split('.');
//取出最后一个IP,广播IP
int LastIp = Convert.ToInt32(parts[3]);
int x = Convert.ToInt32(NumBox.Text);
for (int i = 0; i < x; i++)
{
//IP地址锁定状态:0不可用IP,1可用IP
int addressStatus = 0;
int ip = firstIp + i;
List<string> lockip = new List<string>();
if (ip == firstIp)
{
addressStatus = 0;
}
else
{
if (ip == LastIp )
{
addressStatus = 3;
}
else
{
addressStatus = 1;
}
}
string sql = string.Format("INSERT INTO `{0}` (`Address`, `AddressStatus`) VALUES ({1}, {2})",
tableName, ip, addressStatus);
//Console.WriteLine(sql);
//异步执行
dbClass.ExecuteQuery(sql);
}
}
/// <summary>
/// 传递窗口关闭信息
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void AddWindow_OnClosing(object sender, CancelEventArgs e)
{
this.DialogResult = true;
}
/// <summary>
/// 页面加载状态(页面未完成加载时不计算IP)
/// </summary>
public bool LoadStatus = false;
/// <summary>
/// 拖动滑条调整子网掩码
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void MaskSlider_OnValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
if (LoadStatus == true)
{
//判断是不是瞎几把写的IP地址
if (IsValidIp(IpTextBox.Text) == true)
{
UpdateIPCalculations();
}
else
{
IpTextBox.Text = "";
MessageBox.Show("IP地址不合法,请检查IP地址是否正确!", "确定", MessageBoxButton.OK, MessageBoxImage.Information);
}
}
}
/// <summary>
/// 计算子网掩码位数
/// </summary>
/// <param name="num"></param>
private void CalculateNetMaskLocated()
{
string ipStr = MaskText.Text;
int index = ipStr.LastIndexOf(".") + 1;
string strTemp = ipStr.Substring(index, ipStr.Length - index);
if (strTemp == "0")
{
strTemp = "256";
}
string str = Convert.ToString(Convert.ToInt32(strTemp), 2);
index = str.IndexOf("0");
string str2 = str.Substring(index, str.Length - index);
// MessageBox.Show(str2);
MaskSlider.Value = 32 - str2.Length;
}
/// <summary>
/// IP地址计算
/// </summary>
private void UpdateIPCalculations()
{
try
{
IPAddress ip;
if (IPAddress.TryParse(IpTextBox.Text, out ip))
{
int maskLength = (int)MaskSlider.Value;
IPAddress mask = IPAddressCalculations.SubnetMaskFromPrefixLength(maskLength);
MaskText.Text = mask.ToString();
IPAddress networkAddress = ip.GetNetworkAddress(mask);
Network.Text = networkAddress.ToString();
IPAddress firstAddress = networkAddress.GetFirstUsable(ip.AddressFamily);
First.Text = firstAddress.ToString();
IPAddress lastAddress = networkAddress.GetLastUsable(ip.AddressFamily, maskLength);
Last.Text = lastAddress.ToString();
IPAddress broadcastAddress = networkAddress.GetBroadcastAddress(maskLength);
Broadcast.Text = broadcastAddress.ToString();
long addressCount = IPAddressCalculations.AddressCount(maskLength);
NumBox.Text = addressCount.ToString();
}
}
catch (Exception ex)
{
MessageBox.Show($"An error occurred: {ex.Message}", "Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
}
}