-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathProgram.cs
582 lines (533 loc) · 22.3 KB
/
Program.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
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
using Spectre.Console;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.Net;
using System.Net.NetworkInformation;
using System.Text;
using System.Threading.Channels;
namespace Pings
{
public class ObservableQueue<T> : IDisposable
{
public bool IsBounded { get; init; } = false;
private readonly Channel<T> _channel;
private bool _disposed;
public ObservableQueue(ChannelOptions? options = null, int? capacity = null)
{
if (options is null && capacity is null)
{
_channel = Channel.CreateUnbounded<T>();
return;
}
if (options is null && capacity is not null && capacity > 0)
{
_channel = Channel.CreateBounded<T>((int)capacity);
IsBounded = true;
return;
}
if (options is null && capacity is not null && capacity < 0)
throw new ArgumentException("Queue type is bounded, but the capacity parameter less than zero.", nameof(capacity));
if (options is BoundedChannelOptions boundedOptions)
{
_channel = Channel.CreateBounded<T>(boundedOptions);
IsBounded = true;
}
else if (options is UnboundedChannelOptions unboundedOptions)
{
_channel = Channel.CreateUnbounded<T>(unboundedOptions);
}
else
{
throw new ArgumentNullException(nameof(options), "Unable to confirm queue type.");
}
}
public ObservableQueue() : this(null, null) { }
public ObservableQueue(int capacity) : this(null, capacity) { }
public ObservableQueue(ChannelOptions options) : this(options, null) { }
public event Action<T>? Enqueued;
public event Action<T>? Dequeued;
public async Task EnqueueAsync(T item)
{
ObjectDisposedException.ThrowIf(_disposed, nameof(ObservableQueue<T>));
await _channel.Writer.WriteAsync(item);
Enqueued?.Invoke(item);
}
public async Task<T> DequeueAsync()
{
ObjectDisposedException.ThrowIf(_disposed, nameof(ObservableQueue<T>));
T item = await _channel.Reader.ReadAsync();
Dequeued?.Invoke(item);
return item;
}
public int Count => _channel.Reader.Count;
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (!_disposed)
{
if (disposing)
{
_channel.Writer.Complete();
}
_disposed = true;
}
}
}
public static class IPStatusExtensions
{
public static string ToChineseString(this IPStatus status)
{
return status switch
{
IPStatus.BadDestination => "目标地址错误",
IPStatus.BadHeader => "头部无效",
IPStatus.BadOption => "选项无效",
IPStatus.BadRoute => "路由无效",
IPStatus.DestinationHostUnreachable => "目标主机不可达",
IPStatus.DestinationNetworkUnreachable => "目标网络不可达",
IPStatus.DestinationPortUnreachable => "目标端口不可达",
IPStatus.DestinationProhibited => "目标禁止访问",
IPStatus.DestinationScopeMismatch => "目标范围不匹配",
IPStatus.DestinationUnreachable => "目标不可达",
IPStatus.HardwareError => "硬件错误",
IPStatus.IcmpError => "ICMP协议错误",
IPStatus.NoResources => "网络资源不足",
IPStatus.PacketTooBig => "数据包过大",
IPStatus.ParameterProblem => "参数问题",
IPStatus.SourceQuench => "数据包被放弃",
IPStatus.Success => "通讯正常",
IPStatus.TimedOut => "请求超时",
IPStatus.TimeExceeded => "生存时间过期",
IPStatus.TtlExpired => "TTL值过期",
IPStatus.TtlReassemblyTimeExceeded => "重组超时",
IPStatus.Unknown => "未知状态",
IPStatus.UnrecognizedNextHeader => "下一标头无法识别",
_ => "未知错误",
};
}
}
class ICMPMonitor
{
private CancellationTokenSource CancellationTokenSource { get; set; }
private Logging? Logging { get; set; }
private Dictionary<string, int> TaskMap { get; set; }
public Table TasksTable { get; set; }
public List<ICMPTestTask> Tasks { get; set; }
public ICMPMonitor(CancellationTokenSource cancellationTokenSource, Logging? logging = null)
{
CancellationTokenSource = cancellationTokenSource;
Logging = logging;
Tasks = [];
TaskMap = [];
TasksTable = new() { Caption = new TableTitle("确认警告(C) / 退出(Q)") };
TasksTable.AddColumns("名称", "IP/域名", "状态", "延迟", "警告/日志");
TasksTable.Centered();
}
public void AddHost(ICMPTestTask newTask)
{
TaskMap.Add(newTask.IP, TasksTable.Rows.Add([new Text(newTask.Name), new Text(newTask.IP), new Text(newTask.State.ToChineseString()), new Text($"{newTask.Delay.TotalMilliseconds}ms"), new Text(newTask.LastLog)]));
newTask.LastLogChanged += (task) =>
{
if (!task.IsWarning)
{
TasksTable.Rows.Update(TaskMap[task.IP], 4, new Text(task.LastLog));
}
};
newTask.DelayChanged += (task) =>
{
TasksTable.Rows.Update(TaskMap[task.IP], 3, new Text($"{(int)task.Delay.TotalMilliseconds}ms"));
};
newTask.OpenWarning += async (task) =>
{
Logging?.Log($"{task.Name}({task.IP}) 触发警告 当前状态:{task.State.ToChineseString()}");
TasksTable.Rows.Update(TaskMap[task.IP], 4, new Text(await task.Warnings.DequeueAsync(), new Style(Color.Yellow, Color.Red, Decoration.Bold)));
};
newTask.ConfirmWarning += async (task) =>
{
if (!task.IsWarning)
{
Logging?.Log($"{task.Name}({task.IP}) 解除警告 当前状态:{task.State.ToChineseString()}");
TasksTable.Rows.Update(TaskMap[task.IP], 4, new Text(task.LastLog));
}
else
{
TasksTable.Rows.Update(TaskMap[task.IP], 4, new Text(await task.Warnings.DequeueAsync(), new Style(Color.Yellow, Color.Red, Decoration.Bold)));
}
};
newTask.StatusChanged += async (task) =>
{
Logging?.Log($"{task.Name}({task.IP}) {task.State.ToChineseString()} {(int)task.Delay.TotalMilliseconds}ms");
TasksTable.Rows.Update(TaskMap[task.IP], 2, task.State == IPStatus.Success ? new Text(task.State.ToChineseString()) : new Text(task.State.ToChineseString(), new Style(Color.Yellow, Color.Red, Decoration.Bold)));
task.LastLog = $"{task.State.ToChineseString()} [{DateTime.Now:yyyy-MM-dd HH:mm:ss}] ";
if (task.State != IPStatus.Success) await task.Warnings.EnqueueAsync($"{task.State.ToChineseString()} [{DateTime.Now:yyyy-MM-dd HH:mm:ss}]");
};
newTask.DelayExceptionOccurred += (task) =>
{
Logging?.Log($"{task.Name}({task.IP}) 延迟波动 {(int)task.PreviousDelay.TotalMilliseconds}ms -> {(int)task.Delay.TotalMilliseconds}ms");
task.LastLog = $"延迟波动 {(int)task.PreviousDelay.TotalMilliseconds}ms -> {(int)task.Delay.TotalMilliseconds}ms";
};
Tasks.Add(newTask);
}
}
public class ICMPTestTask
{
public static readonly TimeSpan DefaultDelay = TimeSpan.FromMilliseconds(-1);
public event Action<ICMPTestTask>? OpenWarning;
public event Action<ICMPTestTask>? ConfirmWarning;
public event Action<ICMPTestTask>? LastLogChanged;
public event Action<ICMPTestTask>? StatusChanged;
public event Action<ICMPTestTask>? DelayChanged;
public event Action<ICMPTestTask>? DelayExceptionOccurred;
public string Name { get; init; }
public string IP { get; init; }
public int MaxRecentPackets { get; init; }
public TimeSpan SignificantDelayThreshold { get; init; }
public TimeSpan PreviousDelay { get; set; } = DefaultDelay;
public ObservableQueue<string> Warnings { get; set; }
private ObservableQueue<IPStatus> RecentPackets { get; set; }
public bool IsWarning => Warnings.Count > 0;
private string? lastLog;
public string LastLog
{
get
{
return lastLog ?? "暂无日志";
}
set
{
if (LastLog != value)
{
lastLog = value;
LastLogChanged?.Invoke(this);
}
}
}
private IPStatus? state;
public IPStatus State
{
get
{
return state ?? IPStatus.Unknown;
}
set
{
if (State != value)
{
state = value;
StatusChanged?.Invoke(this);
}
}
}
private TimeSpan? delay;
public TimeSpan Delay
{
get
{
return delay ?? DefaultDelay;
}
set
{
if (Delay != value)
{
if (value > DefaultDelay) PreviousDelay = Delay;
delay = value;
DelayChanged?.Invoke(this);
if (IsSignificantDelayChange())
{
DelayExceptionOccurred?.Invoke(this);
}
}
}
}
private bool IsSignificantDelayChange()
{
return State == IPStatus.Success
&& Delay > DefaultDelay
&& PreviousDelay > DefaultDelay
&& Delay > PreviousDelay
&& (Delay - PreviousDelay).Duration() > SignificantDelayThreshold;
}
public ICMPTestTask(CancellationTokenSource CTS, string name, string ip, int timeout, int maxRecentPackets, int significantDelayThreshold)
{
Name = name;
IP = ip;
MaxRecentPackets = maxRecentPackets;
SignificantDelayThreshold = TimeSpan.FromMilliseconds(significantDelayThreshold);
Warnings = new();
RecentPackets = new(maxRecentPackets);
Warnings.Enqueued += warning => OpenWarning?.Invoke(this);
Warnings.Dequeued += warning => ConfirmWarning?.Invoke(this);
Task.Run(async () =>
{
int pingCounter = 0;
Stopwatch stopwatch = new();
using Ping ping = new();
while (!CTS.Token.IsCancellationRequested)
{
PingReply? reply = null;
try
{
stopwatch.Restart();
reply = ping.Send(IP, timeout);
stopwatch.Stop();
Delay = State == IPStatus.Success
? TimeSpan.FromMilliseconds(reply.RoundtripTime)
: DefaultDelay;
State = reply.Status;
}
catch
{
Delay = DefaultDelay;
State = IPStatus.Unknown;
}
await RecentPackets.EnqueueAsync(State);
pingCounter++;
if (pingCounter == MaxRecentPackets)
{
pingCounter = 0;
}
var sleep = TimeSpan.FromMilliseconds(timeout) - stopwatch.Elapsed;
await Task.Delay(sleep > TimeSpan.Zero && sleep <= TimeSpan.FromMilliseconds(timeout) ? sleep : TimeSpan.FromMilliseconds(timeout), CTS.Token);
}
}, CTS.Token);
}
public ICMPTestTask(CancellationTokenSource CTS, ICMPTaskConfig config) : this(CTS, config.Name, config.IP, config.Timeout, config.MaxRecentPackets, config.SignificantDelayThreshold) { }
public ICMPTestTask(CancellationTokenSource CTS, string name, string ip, int timeout, int maxRecentPackets) : this(CTS, name, ip, timeout, maxRecentPackets, 20) { }
public ICMPTestTask(CancellationTokenSource CTS, string name, string ip, int timeout) : this(CTS, name, ip, timeout, 255, 20) { }
public ICMPTestTask(CancellationTokenSource CTS, string name, string ip) : this(CTS, name, ip, 1000, 255, 20) { }
public ICMPTestTask(CancellationTokenSource CTS, string name, string ip, int? timeout = 1000, int? maxRecentPackets = 255, int? significantDelayThreshold = 20) : this(CTS, name, ip, timeout ?? 1000, maxRecentPackets ?? 255, significantDelayThreshold ?? 20) { }
public ICMPTestTask(CancellationTokenSource CTS, string name, string ip, int? timeout = 1000, int? maxRecentPackets = 255) : this(CTS, name, ip, timeout ?? 1000, maxRecentPackets ?? 255) { }
public ICMPTestTask(CancellationTokenSource CTS, string name, string ip, int? timeout = 1000) : this(CTS, name, ip, timeout ?? 1000) { }
}
class Logging : IDisposable
{
private bool disposedValue;
private CancellationTokenSource CTS { get; set; }
private StreamWriter OutputFile { get; set; }
private ConcurrentQueue<string>? Logs { get; set; }
private StringBuilder? Builder { get; set; }
public Logging(string output)
{
CTS = new();
Logs = new();
OutputFile = new(Path.GetFullPath(output), true);
Builder = new StringBuilder();
Task.Run(async () =>
{
while (!CTS.Token.IsCancellationRequested)
{
Write();
await Task.Delay(TimeSpan.FromSeconds(1), CTS.Token);
}
}, CTS.Token);
}
private void Write()
{
if (!(Logs?.IsEmpty ?? false))
{
while (Logs?.TryDequeue(out string? item) ?? false)
{
if (item != null) Builder?.AppendLine(item);
}
OutputFile.Write(Builder);
OutputFile.Flush();
Builder?.Clear();
}
}
public void Log(string content)
{
Logs?.Enqueue($"[{DateTime.Now:yyyy-MM-ddTHH:mm:ss}] {content}");
}
protected virtual void Dispose(bool disposing)
{
if (!disposedValue)
{
if (disposing)
{
Write();
CTS.Cancel();
Builder = null;
Logs = null;
OutputFile.Dispose();
CTS.Dispose();
}
disposedValue = true;
}
}
public void Dispose()
{
Dispose(disposing: true);
GC.SuppressFinalize(this);
}
}
public struct ICMPTaskConfig
{
private string name;
private string ip;
private int? timeout;
private int? maxRecentPackets;
private int? significantDelayThreshold;
private double? packetLossDuration;
private int? packetLossCount;
public string Name
{
get => name ?? throw new ArgumentException("Invalid domain name.");
set
{
if (!IsValidDomainName(value))
throw new ArgumentException($"Invalid domain name \"{value}\".");
name = value;
}
}
public string IP
{
get => ip;
set
{
if (!IsValidIP(value))
throw new ArgumentException($"Invalid IP address \"{value}\".");
ip = value;
}
}
public int Timeout
{
get => timeout ?? 1000;
set
{
if (value < 0)
throw new ArgumentOutOfRangeException(nameof(Timeout), "Timeout must be non-negative.");
timeout = value;
}
}
public int MaxRecentPackets
{
get => maxRecentPackets ?? 255;
set
{
if (value < 0)
throw new ArgumentOutOfRangeException(nameof(MaxRecentPackets), "MaxRecentPackets must be non-negative.");
maxRecentPackets = value;
}
}
public int SignificantDelayThreshold
{
get => significantDelayThreshold ?? 20;
set
{
if (value < 0)
throw new ArgumentOutOfRangeException(nameof(SignificantDelayThreshold), "SignificantDelayThreshold must be non-negative.");
significantDelayThreshold = value;
}
}
public TimeSpan PacketLossDuration
{
get => TimeSpan.FromSeconds(packetLossDuration ?? (Timeout / 1000) * 30);
set
{
if (value.TotalMilliseconds < Timeout)
throw new ArgumentOutOfRangeException(nameof(PacketLossDuration), $"PacketLossDuration must be greater than {nameof(Timeout)}.");
packetLossDuration = value.TotalSeconds;
}
}
public int PacketLossCount
{
get => packetLossCount ?? 5;
set
{
if (value < 0)
throw new ArgumentOutOfRangeException(nameof(PacketLossCount), "PacketLossCount must be non-negative.");
packetLossCount = value;
}
}
public ICMPTaskConfig(params string[] raw)
{
if (raw.Length < 1)
throw new ArgumentException("A valid name is required.");
name = raw[0];
if (raw.Length < 2)
throw new ArgumentException("A valid IP is required.");
ip = raw[1];
if (raw.Length > 2 && int.TryParse(raw[2], out int parsedTimeout)) Timeout = parsedTimeout;
if (raw.Length > 3 && int.TryParse(raw[3], out int parsedMaxRecentPackets)) MaxRecentPackets = parsedMaxRecentPackets;
if (raw.Length > 4 && int.TryParse(raw[4], out int parsedSignificantDelayThreshold)) SignificantDelayThreshold = parsedSignificantDelayThreshold;
if (raw.Length > 5 && double.TryParse(raw[5], out double parsedPacketLossDuration)) PacketLossDuration = TimeSpan.FromSeconds(parsedPacketLossDuration);
if (raw.Length > 6 && int.TryParse(raw[6], out int parsedPacketLossCount)) PacketLossCount = parsedPacketLossCount;
}
private static bool IsValidIP(string ip)
{
return IPAddress.TryParse(ip, out _);
}
private static bool IsValidDomainName(string name)
{
return Uri.CheckHostName(name) != UriHostNameType.Unknown;
}
}
internal class Program
{
private static CancellationTokenSource CTS { get; set; } = new();
private static Logging Logging { get; set; } = new("Pings.log");
static void Main(string[] args)
{
string version = FileVersionInfo.GetVersionInfo(Environment.ProcessPath ?? throw new Exception("运行环境异常!")).FileVersion?[..^2] ?? throw new Exception("程序文件异常!");
Console.Title = $"Pings {version}";
string configPath = Path.GetFullPath(args.Length > 0 ? args[0] : "config.txt");
if (!File.Exists(configPath))
{
AnsiConsole.WriteLine($"配置文件 {configPath} 不存在。请创建配置文件后启动!");
if (!AnsiConsole.Confirm($"是否创建默认配置文件?")) return;
File.WriteAllText(configPath, "本机 127.0.0.1");
}
try
{
ICMPMonitor monitor = new(CTS, Logging);
string[] configLines = File.ReadAllLines(configPath).Select(line => line.Trim()).Where(line => line.Split(' ').Length > 1).ToArray();
foreach (var item in configLines.Select(line => new ICMPTaskConfig(line.Split(' '))))
{
monitor.AddHost(new(CTS, item));
}
AnsiConsole.Clear();
AnsiConsole.WriteLine();
Task display = AnsiConsole.Live(monitor.TasksTable).StartAsync(async ctx =>
{
while (!CTS.Token.IsCancellationRequested)
{
monitor.TasksTable.Title = new TableTitle($"{DateTime.Now:yyyy年MM月dd日 HH:mm:ss} 网络监测");
ctx.Refresh();
await Task.Delay(TimeSpan.FromSeconds(1), CTS.Token);
}
});
while (true)
{
var key = Console.ReadKey(true);
if (key.Key == ConsoleKey.Q)
{
CTS.Cancel();
break;
}
if (key.Key == ConsoleKey.C)
{
foreach (var task in monitor.Tasks.FindAll(i => i.IsWarning))
{
_ = task.Warnings.DequeueAsync();
}
}
}
}
catch (TaskCanceledException)
{
return;
}
catch (Exception e)
{
AnsiConsole.WriteException(e);
AnsiConsole.Write("按任意键退出...");
Console.ReadKey(true);
return;
}
}
}
}