-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessWatcherApp.cs
261 lines (222 loc) · 7.53 KB
/
ProcessWatcherApp.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
namespace ProcessWatcher
{
using System;
using System.Windows.Forms;
using Microsoft.Win32;
using ProcessWatcher.Properties;
using Timer = System.Windows.Forms.Timer;
/// <summary>
/// The main app form.
/// </summary>
public partial class ProcessWatcherApp : Form, ILogger
{
#region Fields
/// <summary>
/// The process watcher.
/// </summary>
private ProcessWatcherCore processWatcher;
/// <summary>
/// The timer.
/// </summary>
private Timer timer;
/// <summary>
/// The number of ticks remaining.
/// </summary>
private int numTicksRemaining;
/// <summary>
/// Whether we're shutting down.
/// </summary>
private bool shuttingDown;
/// <summary>
/// Whether shutdown is complete.
/// </summary>
private bool shutdownComplete;
#endregion
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="ProcessWatcherApp"/> class.
/// </summary>
/// <param name="path">The process path.</param>
/// <param name="arguments">The process arguments.</param>
public ProcessWatcherApp(string path, string arguments)
{
this.processWatcher = new ProcessWatcherCore(path, arguments);
this.processWatcher.Exited += this.OnProcessWatcherExited;
this.processWatcher.Logger = this;
this.timer = new Timer();
this.timer.Interval = 1000;
this.timer.Tick += this.OnTimerTick;
this.FormClosing += this.OnFormClosing;
this.Shown += this.OnFormShown;
if (OperatingSystem.IsWindows())
{
SystemEvents.PowerModeChanged += this.OnPowerModeChanged;
}
this.InitializeComponent();
}
#endregion
#region Public Methods
/// <summary>
/// Logs a message.
/// </summary>
/// <param name="message">The log message.</param>
public void Log(string message)
{
this.BeginInvoke(new Action(delegate
{
this.UpdateStatus(message);
}));
}
#endregion
#region Private Methods
/// <summary>
/// Launches the application.
/// </summary>
private void LaunchApplication()
{
this.processWatcher.Launch();
}
/// <summary>
/// Closes the application.
/// </summary>
private void CloseApplication()
{
if (this.timer.Enabled)
{
this.timer.Stop();
}
this.processWatcher.Close(Settings.Default.CloseTimeout);
}
/// <summary>
/// Update the countdown.
/// </summary>
private void UpdateCountdown()
{
this.UpdateStatus(string.Format("Restarting in {0} seconds...", this.numTicksRemaining));
}
/// <summary>
/// Update the status.
/// </summary>
/// <param name="text">The status text.</param>
private void UpdateStatus(string text)
{
this.statusLabel.Text = text;
this.WriteLog(DateTime.Now.ToString("u") + ": " + text);
}
/// <summary>
/// Writes a log message.
/// </summary>
/// <param name="text">The log message.</param>
private void WriteLog(string text)
{
this.textBox1.Text = text + Environment.NewLine + this.textBox1.Text;
}
#endregion
#region Private Event Handlers
/// <summary>
/// Handles the timer tick.
/// </summary>
/// <param name="sender">The sender object.</param>
/// <param name="e">The event arguments.</param>
private void OnTimerTick(object sender, EventArgs e)
{
this.numTicksRemaining--;
if (this.numTicksRemaining > 0)
{
this.UpdateCountdown();
}
else
{
this.timer.Stop();
this.LaunchApplication();
}
}
/// <summary>
/// Handles the process watcher exited event.
/// </summary>
/// <param name="sender">The sender object.</param>
/// <param name="e">The event arguments.</param>
private void OnProcessWatcherExited(object sender, EventArgs e)
{
this.BeginInvoke(new Action(() =>
{
this.Activate();
if (!this.shuttingDown)
{
this.numTicksRemaining = Settings.Default.CountdownTimer;
this.UpdateCountdown();
this.timer.Start();
}
else
{
this.shutdownComplete = true;
this.processWatcher.Dispose();
this.Close();
}
}));
}
/// <summary>
/// Handles the quit button click.
/// </summary>
/// <param name="sender">The sender object.</param>
/// <param name="e">The event arguments.</param>
private void OnQuitButtonClicked(object sender, EventArgs e)
{
this.Close();
}
/// <summary>
/// Handles the form's initial display.
/// </summary>
/// <param name="sender">The sender object.</param>
/// <param name="e">The event arguments.</param>
private void OnFormShown(object sender, EventArgs e)
{
this.LaunchApplication();
}
/// <summary>
/// Handles the form's closing.
/// </summary>
/// <param name="sender">The sender object.</param>
/// <param name="e">The event arguments.</param>
private void OnFormClosing(object sender, FormClosingEventArgs e)
{
if (!this.shuttingDown)
{
this.shuttingDown = true;
this.quitButton.Enabled = false;
if (OperatingSystem.IsWindows())
{
SystemEvents.PowerModeChanged -= this.OnPowerModeChanged;
}
if (this.processWatcher.IsRunning)
{
this.CloseApplication();
// Cancel close until the application finishes closing.
e.Cancel = true;
}
}
else if (!this.shutdownComplete)
{
e.Cancel = true;
}
}
/// <summary>
/// Handles the power mode change.
/// </summary>
/// <param name="sender">The sender object.</param>
/// <param name="e">The event arguments.</param>
private void OnPowerModeChanged(object sender, PowerModeChangedEventArgs e)
{
if (OperatingSystem.IsWindows())
{
switch (e.Mode)
{
case PowerModes.Resume:
this.CloseApplication();
break;
}
}
}
#endregion
}
}