-
Notifications
You must be signed in to change notification settings - Fork 1
/
Program.cs
323 lines (274 loc) · 7.93 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
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using Timer = System.Timers.Timer;
namespace HDD_Ping
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new HDDPing());
}
}
internal class HDDPing : Form
{
private NotifyIcon trayIcon;
private ContextMenu trayMenu;
private HDDPing_Settings settings;
private Timer timer;
public HDDPing()
{
trayMenu = new ContextMenu();
trayIcon = new NotifyIcon();
trayIcon.Text = "HDD-Ping";
trayIcon.Icon = Properties.Resources.disabled;
// Add menu to tray icon and show it.
trayIcon.ContextMenu = trayMenu;
trayIcon.Visible = true;
settings = HDDPing_Settings.GetSettings();
this.CreateTrayOptions();
trayMenu.MenuItems.Add("-");
trayMenu.MenuItems.Add("Exit", OnExit);
this.timer = this.InitializeTimer(settings.Interval);
this.SetStateIcon();
}
protected Timer InitializeTimer(TimeSpan interval)
{
var timer = new Timer(interval.TotalMilliseconds);
timer.Elapsed += (s, e) =>
{
this.PingDrives();
};
timer.Start();
return timer;
}
private void PingDrives()
{
if (settings.DriveSettings.Any(ds => ds.Ping))
{
this.SwitchToWorkingIcon();
}
foreach (var ds in settings.DriveSettings.Where(ds => ds.Ping))
{
var guid = Guid.NewGuid().ToString();
try
{
File.WriteAllText(ds.DriveInfo.Name + guid, guid);
File.Delete(ds.DriveInfo.Name + guid);
}
catch { }
}
}
protected void CreateTrayOptions()
{
var pingNowItem = new MenuItem("Ping now");
pingNowItem.Click += (s, e) =>
{
this.PingDrives();
};
trayMenu.MenuItems.Add(pingNowItem);
trayMenu.MenuItems.Add("-");
var drivesMenu = new MenuItem("Ping Drives");
var drives = DriveInfo.GetDrives();
foreach (var d in drives)
{
try
{
if (d.DriveType != DriveType.Fixed && d.DriveType != DriveType.Network
&& d.DriveType != DriveType.Removable && d.DriveType != DriveType.Ram)
{
continue;
}
var driveSetting = settings.DriveSettings.SingleOrDefault(setting =>
setting.DriveInfo.Name == d.Name);
var mi = new MenuItem(d.Name)
{
Checked = driveSetting is DriveSetting && driveSetting.Ping
};
mi.Click += (s, e) =>
{
mi.Checked = !mi.Checked;
this.AddOrUpdateDriveSetting(d, mi.Checked);
};
drivesMenu.MenuItems.Add(mi);
}
catch { }
}
trayIcon.ContextMenu.MenuItems.Add(drivesMenu);
var timerMenu = new MenuItem("Interval");
var timerItems = new Dictionary<MenuItem, int>();
int[] seconds = { 1, 2, 5, 10, 15, 20, 30, 45, 60, 90, 120, 300 };
foreach (var i in seconds)
{
var tSec = new MenuItem(String.Format("{0} {1}", i < 60 ? i : (float)i / 60.0F, i == 1 ? "Second" : i < 60 ? "Seconds" : i < 120 ? "Minute" : "Minutes"))
{
Checked = (int)settings.Interval.TotalSeconds == i
};
tSec.Click += (s, e) =>
{
var interval = timerItems[s as MenuItem];
settings.Interval = TimeSpan.FromSeconds(interval);
this.timer.Interval = settings.Interval.TotalMilliseconds;
foreach (var ti in timerItems)
{
ti.Key.Checked = false;
}
(s as MenuItem).Checked = true;
};
timerItems.Add(tSec, i);
timerMenu.MenuItems.Add(tSec);
}
trayIcon.ContextMenu.MenuItems.Add(timerMenu);
}
protected void AddOrUpdateDriveSetting(DriveInfo di, bool ping)
{
if (!settings.DriveSettings.Any(ds =>
{
if (ds.DriveInfo.Name == di.Name)
{
ds.Ping = ping;
return true;
}
return false;
}))
{
settings.DriveSettings.Add(new DriveSetting(di, ping));
}
this.SetStateIcon();
}
protected void SwitchToWorkingIcon()
{
trayIcon.Icon = Properties.Resources.working;
Task.Delay(Math.Min((int)settings.Interval.TotalMilliseconds / 3, 5000)).ContinueWith(finishedTask =>
{
this.SetStateIcon();
});
}
protected void SetStateIcon()
{
try
{
trayIcon.Icon = settings.DriveSettings.Any(ds => ds.Ping) ?
Properties.Resources.enabled : Properties.Resources.disabled;
} catch { }
}
protected override void OnLoad(EventArgs e)
{
Visible = false; // Hide form window.
ShowInTaskbar = false; // Remove from taskbar.
base.OnLoad(e);
}
private void OnExit(object sender, EventArgs e)
{
HDDPing_Settings.TryWriteSettings(settings);
Application.Exit();
}
protected override void Dispose(bool isDisposing)
{
if (isDisposing)
{
trayIcon.Dispose();
timer.Dispose();
if (Properties.Resources.disabled is Icon)
{
Properties.Resources.disabled.Dispose();
}
if (Properties.Resources.enabled is Icon)
{
Properties.Resources.enabled.Dispose();
}
if (Properties.Resources.working is Icon)
{
Properties.Resources.working.Dispose();
}
}
base.Dispose(isDisposing);
}
}
[Serializable]
internal class HDDPing_Settings
{
public const string ConfigFile = ".settings.ser";
public static readonly TimeSpan DefaultTimeout = TimeSpan.FromSeconds(30);
public TimeSpan Interval { get; set; }
public IList<DriveSetting> DriveSettings { get; private set; }
public HDDPing_Settings(TimeSpan interval, IList<DriveSetting> driveSettings)
{
this.Interval = interval;
this.DriveSettings = driveSettings;
}
public static HDDPing_Settings GetSettings()
{
if (File.Exists(ConfigFile))
{
var bf = new BinaryFormatter();
using (var stream = File.Open(ConfigFile, FileMode.Open))
{
try
{
var drives = DriveInfo.GetDrives();
var setting = bf.Deserialize(stream) as HDDPing_Settings;
setting.DriveSettings = setting.DriveSettings.Where(ds =>
{
return drives.Any(di => di.Name == ds.DriveInfo.Name);
// filter non-existent drives
}).ToList();
return setting;
}
catch
{
return new HDDPing_Settings(
HDDPing_Settings.DefaultTimeout, Enumerable.Empty<DriveSetting>().ToList());
}
}
}
else
{
return new HDDPing_Settings(
HDDPing_Settings.DefaultTimeout, Enumerable.Empty<DriveSetting>().ToList());
}
}
public static bool TryWriteSettings(HDDPing_Settings settings)
{
var bf = new BinaryFormatter();
settings.DriveSettings = settings.DriveSettings.Where(ds => ds.Ping).ToList();
using (var stream = File.Open(ConfigFile, FileMode.Create))
{
try
{
bf.Serialize(stream, settings);
return true;
}
catch
{
return false;
}
}
}
}
[Serializable]
internal class DriveSetting
{
public DriveInfo DriveInfo { get; private set; }
public bool Ping { get; set; }
public DriveSetting(DriveInfo di, bool ping)
{
this.DriveInfo = di;
this.Ping = ping;
}
}
}