-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
375 lines (324 loc) · 13.5 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
using System;
using Microsoft.Win32;
using System.Text.Json;
using System.Diagnostics;
using System.Text.RegularExpressions;
using System.Threading;
using System.Windows.Forms;
namespace PingTester
{
class Program
{
static bool stopPingTest = false;
static NotifyIcon trayIcon;
public static bool settingsChanged = false;
static void Main(string[] args)
{
bool isNewInstance;
using (Mutex mutex = new Mutex(true, "PingTester", out isNewInstance))
{
if (!isNewInstance)
{
// Si ya hay una instancia en ejecución, salir sin mostrar mensaje
return;
}
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var settings = ReadSettings();
SetInitialTooltip(settings);
trayIcon.ContextMenuStrip = new ContextMenuStrip();
trayIcon.ContextMenuStrip.Renderer = new DarkModeRenderer();
trayIcon.ContextMenuStrip.ShowImageMargin = false;
trayIcon.ContextMenuStrip.Items.Add("Settings", null, onSettingsClick);
trayIcon.ContextMenuStrip.Items.Add("Like the app? Buy me a coffee!", null, onCoffeeClick);
trayIcon.ContextMenuStrip.Items.Add(new ToolStripSeparator());
trayIcon.ContextMenuStrip.Items.Add("Exit", null, OnExitClick);
var pingTestThread = new Thread(PingTest)
{
IsBackground = true
};
pingTestThread.Start();
Application.Run();
}
}
static void SetInitialTooltip(Settings settings)
{
int pingCount = settings.PingCount;
double secondsBetweenPings = settings.SecondsBetweenPings;
int maxResponseTime = settings.MaxResponseTime;
string serverToPing = settings.ServerToPing;
double estimatedTestTime = pingCount * secondsBetweenPings;
string tooltip = string.Format(
"[Performing test]\n" +
"To: {0}\n" +
"Pings: {1}\n" +
"Interval: {2:F1}s\n" +
"Timeout: {3}ms\n" +
"Test duration: {4:F1}s",
serverToPing,
pingCount,
secondsBetweenPings,
maxResponseTime,
estimatedTestTime
);
trayIcon = new NotifyIcon
{
Icon = Properties.Resources.Waiting,
Text = tooltip,
Visible = true
};
}
static void PingTest()
{
bool stopPingTest = false;
settingsChanged = true;
int pingCount = 0;
float secondsBetweenPings = 0;
int timeUntilLost = 0;
string serverToPing = "";
int perfectThreshold = 0;
int goodThreshold = 0;
int mediumThreshold = 0;
Regex responseTimePattern = new Regex(@"(\d+(?:\.\d+)?)ms");
while (!stopPingTest)
{
if (settingsChanged)
{
var settings = ReadSettings();
pingCount = settings.PingCount;
secondsBetweenPings = settings.SecondsBetweenPings;
timeUntilLost = settings.MaxResponseTime;
serverToPing = settings.ServerToPing;
perfectThreshold = settings.PerfectThreshold;
goodThreshold = settings.GoodThreshold;
mediumThreshold = settings.MediumThreshold;
settingsChanged = false;
}
int successfulPings = 0;
int packetLoss = 0;
var responseTimes = new List<float>();
for (int i = 0; i < pingCount && !stopPingTest; i++)
{
var process = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = "ping",
Arguments = $"-n 1 -w {timeUntilLost} {serverToPing}",
RedirectStandardOutput = true,
UseShellExecute = false,
CreateNoWindow = true
}
};
process.Start();
string output = process.StandardOutput.ReadToEnd();
process.WaitForExit();
string[] lines = output.Split('\n'); // Dividir la salida en líneas
double totalResponseTime = 0;
int responseCount = 0;
foreach (string line in lines)
{
if (line.Contains("time="))
{
int timeIndex = line.IndexOf("time=") + 5;
int msIndex = line.IndexOf("ms");
string responseTimeString = line.Substring(timeIndex, msIndex - timeIndex).Trim();
double responseTime = double.Parse(responseTimeString); // Convierte el tiempo de respuesta a double
totalResponseTime += responseTime;
responseCount++;
double averageResponseTime = totalResponseTime / responseCount; // Calcula el promedio
Console.WriteLine($"To: {serverToPing} Response time: {responseTime}ms");
}
else if (line.Contains("Request timed out"))
{
Console.WriteLine($"Packet lost, request timed out.");
}
}
var match = responseTimePattern.Match(output);
if (match.Success)
{
successfulPings++;
float responseTime = float.Parse(match.Groups[1].Value);
responseTimes.Add(responseTime);
}
else
{
packetLoss++;
}
Thread.Sleep((int)(secondsBetweenPings * 1000));
}
float packetLossPercentage = (float)packetLoss / pingCount * 100;
if (packetLossPercentage < perfectThreshold)
{
// Console.WriteLine("Perfect connectivity");
trayIcon.Icon = Properties.Resources.Perfect;
}
else if (packetLossPercentage < goodThreshold)
{
// Console.WriteLine("Good connectivity");
trayIcon.Icon = Properties.Resources.Good;
}
else if (packetLossPercentage < mediumThreshold)
{
// Console.WriteLine("Medium connectivity");
trayIcon.Icon = Properties.Resources.Medium;
}
else
{
trayIcon.Icon = Properties.Resources.Bad;
}
UpdateStatistics(successfulPings, packetLoss, responseTimes, serverToPing);
}
}
public static Settings ReadSettings()
{
string registryPath = @"Software\PingTester";
var defaultSettings = new Settings
{
PingCount = 10,
SecondsBetweenPings = 1,
MaxResponseTime = 150,
ServerToPing = "google.com",
PerfectThreshold = 9,
GoodThreshold = 18,
MediumThreshold = 28
};
try
{
using (var registryKey = Registry.CurrentUser.OpenSubKey(registryPath))
{
if (registryKey != null)
{
string settingsStr = registryKey.GetValue("Parameters")?.ToString();
if (!string.IsNullOrEmpty(settingsStr))
{
return JsonSerializer.Deserialize<Settings>(settingsStr);
}
}
}
SaveSettings(defaultSettings);
}
catch (Exception)
{
Console.WriteLine("Registry entry not found or invalid. Using default settings.");
}
return defaultSettings;
}
public static void SaveSettings(Settings settings)
{
string registryPath = @"Software\PingTester";
string settingsStr = JsonSerializer.Serialize(settings);
using (var registryKey = Registry.CurrentUser.CreateSubKey(registryPath))
{
registryKey.SetValue("Parameters", settingsStr);
}
}
static void onSettingsClick(object sender, EventArgs e)
{
// Create an instance of the Settings form
SettingsWindow.Settings settingsForm = new SettingsWindow.Settings();
// Show the Settings form as a dialog
settingsForm.ShowDialog();
}
static void onCoffeeClick(object sender, EventArgs e)
{
string url = "https://ko-fi.com/gdsdev";
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo
{
FileName = url,
UseShellExecute = true
});
}
static void OnExitClick(object sender, EventArgs e)
{
stopPingTest = true;
Application.Exit();
}
static void UpdateStatistics(int successfulPings, int packetLoss, List<float> responseTimes, string serverToPing)
{
float averageResponseTime = 0;
float minResponseTime = 0;
float maxResponseTime = 0;
if (successfulPings > 0)
{
averageResponseTime = responseTimes.Sum() / successfulPings;
minResponseTime = responseTimes.Min();
maxResponseTime = responseTimes.Max();
}
float packetLossPercentage = (float)packetLoss / (successfulPings + packetLoss) * 100;
string tooltip = string.Format(
"[Packet statistics]\n" +
"Sent: {0}\n" +
"Lost: {1} ({2:F2}%)\n" +
"To: {3}\n" +
"Avg. RTT: {4:F2}ms\n" +
"Min. RTT: {5:F2}ms\n" +
"Max. RTT: {6:F2}ms",
successfulPings + packetLoss,
packetLoss,
packetLossPercentage,
serverToPing,
averageResponseTime,
minResponseTime,
maxResponseTime
);
trayIcon.Text = tooltip;
}
}
class Settings
{
public int PingCount { get; set; }
public float SecondsBetweenPings { get; set; }
public int MaxResponseTime { get; set; }
public string ServerToPing { get; set; }
public int PerfectThreshold { get; set; }
public int GoodThreshold { get; set; }
public int MediumThreshold { get; set; }
}
class DarkModeRenderer : ToolStripProfessionalRenderer
{
protected override void OnRenderMenuItemBackground(ToolStripItemRenderEventArgs e)
{
if (e.Item.Selected)
{
e.Graphics.FillRectangle(new SolidBrush(ColorTranslator.FromHtml("#4b4b4b")), e.Item.ContentRectangle);
}
else
{
e.Graphics.FillRectangle(new SolidBrush(ColorTranslator.FromHtml("#2b2b2b")), e.Item.ContentRectangle);
}
}
protected override void OnRenderItemText(ToolStripItemTextRenderEventArgs e)
{
e.TextColor = Color.White;
base.OnRenderItemText(e);
}
protected override void OnRenderArrow(ToolStripArrowRenderEventArgs e)
{
e.ArrowColor = Color.White;
base.OnRenderArrow(e);
}
protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e)
{
// No dibujar el borde predeterminado
}
protected override void OnRenderToolStripBackground(ToolStripRenderEventArgs e)
{
e.Graphics.FillRectangle(new SolidBrush(ColorTranslator.FromHtml("#2b2b2b")), e.AffectedBounds);
}
protected override void OnRenderImageMargin(ToolStripRenderEventArgs e)
{
e.Graphics.FillRectangle(new SolidBrush(ColorTranslator.FromHtml("#2b2b2b")), e.AffectedBounds);
}
protected override void OnRenderSeparator(ToolStripSeparatorRenderEventArgs e)
{
int separatorThickness = 1; // Thickness of the separator line in pixels
int separatorMargin = 6; // Margin on the left and right of the separator line
int x1 = e.Item.ContentRectangle.Left + separatorMargin;
int x2 = e.Item.ContentRectangle.Right - separatorMargin;
int y = e.Item.ContentRectangle.Top + (e.Item.ContentRectangle.Height - separatorThickness) / 2;
e.Graphics.FillRectangle(new SolidBrush(ColorTranslator.FromHtml("#6b6b6b")), x1, y, x2 - x1, separatorThickness);
}
}
}