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
|
/* frmActivityWindow.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace Handbrake
{
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading;
using System.Windows.Forms;
using HandBrake.Framework.Services;
using HandBrake.Framework.Services.Interfaces;
using HandBrake.ApplicationServices.Services.Interfaces;
using Model;
using Timer = System.Threading.Timer;
/// <summary>
/// The Activity Log Window
/// </summary>
public partial class frmActivityWindow : Form
{
/* Private Variables */
/// <summary>
/// The Encode Object
/// </summary>
private readonly IQueue encode;
/// <summary>
/// The Scan Object
/// </summary>
private readonly IScan scan;
/// <summary>
/// The Error service
/// </summary>
private readonly IErrorService errorService = new ErrorService();
/// <summary>
/// The current position in the log file
/// </summary>
private int position;
/// <summary>
/// A Timer for this window
/// </summary>
private Timer windowTimer;
/// <summary>
/// The Type of log that the window is currently dealing with
/// </summary>
private ActivityLogMode mode;
/* Constructor */
/// <summary>
/// Initializes a new instance of the <see cref="frmActivityWindow"/> class.
/// </summary>
/// <param name="encode">
/// The encode.
/// </param>
/// <param name="scan">
/// The scan.
/// </param>
public frmActivityWindow(IQueue encode, IScan scan)
{
InitializeComponent();
this.encode = encode;
this.scan = scan;
this.position = 0;
// Listen for Scan and Encode Starting Events
scan.ScanStared += scan_ScanStared;
encode.EncodeStarted += encode_EncodeStarted;
}
/* Delegates */
/// <summary>
/// A callback function for updating the ui
/// </summary>
/// <param name="text">
/// The text.
/// </param>
private delegate void SetTextCallback(StringBuilder text);
/// <summary>
/// Clear text callback
/// </summary>
private delegate void SetTextClearCallback();
/// <summary>
/// Set mode callback
/// </summary>
/// <param name="setMode">
/// The set mode.
/// </param>
private delegate void SetModeCallback(ActivityLogMode setMode);
/* Private Methods */
/// <summary>
/// Set the window to scan mode
/// </summary>
/// <param name="setMode">
/// The set Mode.
/// </param>
private void SetMode(ActivityLogMode setMode)
{
if (IsHandleCreated)
{
if (rtf_actLog.InvokeRequired)
{
IAsyncResult invoked = BeginInvoke(new SetModeCallback(SetMode), new object[] { setMode });
EndInvoke(invoked);
}
else
{
Reset();
this.mode = setMode;
Array values = Enum.GetValues(typeof(ActivityLogMode));
Properties.Settings.Default.ActivityWindowLastMode = (int)values.GetValue(Convert.ToInt32(setMode));
Properties.Settings.Default.Save();
this.Text = mode == ActivityLogMode.Scan
? "Activity Window (Scan Log)"
: "Activity Window (Encode Log)";
if (mode == ActivityLogMode.Scan)
{
scan.ScanCompleted += stopWindowRefresh;
encode.EncodeEnded -= stopWindowRefresh;
}
else
{
scan.ScanCompleted -= stopWindowRefresh;
encode.EncodeEnded += stopWindowRefresh;
}
// Start a fresh window timer
windowTimer = new Timer(new TimerCallback(LogMonitor), null, 1000, 1000);
}
}
}
/// <summary>
/// On Window load, start a new timer
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The EventArgs.
/// </param>
private void ActivityWindowLoad(object sender, EventArgs e)
{
try
{
// Set the inital log file.
if (encode.IsEncoding)
{
this.logSelector.SelectedIndex = 1;
}
else if (scan.IsScanning)
{
this.logSelector.SelectedIndex = 0;
}
else
{
// Otherwise, use the last mode the window was in.
ActivityLogMode activitLogMode = (ActivityLogMode)Enum.ToObject(typeof(ActivityLogMode), Properties.Settings.Default.ActivityWindowLastMode);
this.logSelector.SelectedIndex = activitLogMode == ActivityLogMode.Scan ? 0 : 1;
}
}
catch (Exception exc)
{
errorService.ShowError("Error during load.", exc.ToString());
}
}
/// <summary>
/// Set the Log window to encode mode when an encode starts.
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void encode_EncodeStarted(object sender, EventArgs e)
{
SetMode(ActivityLogMode.Encode);
}
/// <summary>
/// Set the log widow to scan mode when a scan starts
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void scan_ScanStared(object sender, EventArgs e)
{
SetMode(ActivityLogMode.Scan);
}
/// <summary>
/// Stop refreshing the window when no scanning or encoding is happening.
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void stopWindowRefresh(object sender, EventArgs e)
{
windowTimer.Dispose();
Reset();
LogMonitor(null);
}
/// <summary>
/// Append new text to the window
/// </summary>
/// <param name="n">
/// The n.
/// </param>
private void LogMonitor(object n)
{
AppendWindowText(GetLog());
}
/// <summary>
/// New Code for getting the Activity log from the Services rather than reading a file.
/// </summary>
/// <returns>
/// The StringBuilder containing a log
/// </returns>
private StringBuilder GetLog()
{
StringBuilder appendText = new StringBuilder();
try
{
if (this.mode == ActivityLogMode.Scan)
{
if (scan == null || scan.ActivityLog == string.Empty)
{
appendText.AppendFormat("Waiting for the log to be generated ...\n");
position = 0;
ClearWindowText();
return appendText;
}
using (StringReader reader = new StringReader(scan.ActivityLog))
{
LogReader(reader, appendText);
}
}
else
{
if (encode == null || encode.ActivityLog == string.Empty)
{
appendText.AppendFormat("Waiting for the log to be generated ...\n");
position = 0;
ClearWindowText();
return appendText;
}
using (StringReader reader = new StringReader(encode.ActivityLog))
{
LogReader(reader, appendText);
}
}
}
catch (Exception exc)
{
windowTimer.Dispose();
errorService.ShowError("GetLog() Error", exc.ToString());
}
return appendText;
}
/// <summary>
/// Reads the log data from a Scan or Encode object
/// </summary>
/// <param name="reader">
/// The reader.
/// </param>
/// <param name="appendText">
/// The append text.
/// </param>
private void LogReader(StringReader reader, StringBuilder appendText)
{
string line;
int i = 1;
while ((line = reader.ReadLine()) != null)
{
if (i > position)
{
appendText.AppendLine(line);
position++;
}
i++;
}
}
/// <summary>
/// Append text to the RTF box
/// </summary>
/// <param name="text">
/// The text.
/// </param>
private void AppendWindowText(StringBuilder text)
{
try
{
if (IsHandleCreated)
{
if (rtf_actLog.InvokeRequired)
{
IAsyncResult invoked = BeginInvoke(new SetTextCallback(AppendWindowText), new object[] { text });
EndInvoke(invoked);
}
else
lock (rtf_actLog)
rtf_actLog.AppendText(text.ToString());
// Stop the refresh process if log has finished.
if (text.ToString().Contains("HandBrake has Exited"))
{
windowTimer.Dispose();
}
}
}
catch (Exception)
{
return;
}
}
/// <summary>
/// Clear the contents of the log window
/// </summary>
private void ClearWindowText()
{
try
{
if (IsHandleCreated)
{
if (rtf_actLog.InvokeRequired)
{
IAsyncResult invoked = BeginInvoke(new SetTextClearCallback(ClearWindowText));
EndInvoke(invoked);
}
else
lock (rtf_actLog)
rtf_actLog.Clear();
}
}
catch (Exception)
{
return;
}
}
/// <summary>
/// Reset Everything
/// </summary>
private void Reset()
{
if (windowTimer != null)
windowTimer.Dispose();
position = 0;
ClearWindowText();
windowTimer = new Timer(new TimerCallback(LogMonitor), null, 1000, 1000);
}
/* Menus and Buttons */
/// <summary>
/// Copy log to clipboard
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void MnuCopyLogClick(object sender, EventArgs e)
{
Clipboard.SetDataObject(rtf_actLog.SelectedText != string.Empty ? rtf_actLog.SelectedText : rtf_actLog.Text, true);
}
/// <summary>
/// Open the log folder
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void MnuOpenLogFolderClick(object sender, EventArgs e)
{
string logDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\logs";
string windir = Environment.GetEnvironmentVariable("WINDIR");
Process prc = new Process
{
StartInfo =
{
FileName = windir + @"\explorer.exe",
Arguments = logDir
}
};
prc.Start();
}
/// <summary>
/// Copy the log
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void BtnCopyClick(object sender, EventArgs e)
{
Clipboard.SetDataObject(rtf_actLog.SelectedText != string.Empty ? rtf_actLog.SelectedText : rtf_actLog.Text, true);
}
/// <summary>
/// Change the Log file in the viewer
/// </summary>
/// <param name="sender">The Sender </param>
/// <param name="e">The EventArgs</param>
private void LogSelectorClick(object sender, EventArgs e)
{
this.SetMode((string)this.logSelector.SelectedItem == "Scan Log" ? ActivityLogMode.Scan : ActivityLogMode.Encode);
}
/* Overrides */
/// <summary>
/// override onclosing
/// </summary>
/// <param name="e">
/// The e.
/// </param>
protected override void OnClosing(CancelEventArgs e)
{
scan.ScanStared -= scan_ScanStared;
encode.EncodeStarted -= encode_EncodeStarted;
scan.ScanCompleted -= stopWindowRefresh;
encode.EncodeEnded -= stopWindowRefresh;
windowTimer.Dispose();
e.Cancel = true;
this.Dispose();
base.OnClosing(e);
}
}
}
|