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
|
/* Encode.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.ApplicationServices.Services
{
using System;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading;
using System.Windows.Forms;
using HandBrake.ApplicationServices.Functions;
using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Parsing;
using HandBrake.ApplicationServices.Services.Interfaces;
/// <summary>
/// Class which handles the CLI
/// </summary>
public class Encode : IEncode
{
#region Private Variables
/// <summary>
/// The Log Buffer
/// </summary>
private StringBuilder logBuffer;
/// <summary>
/// The Log file writer
/// </summary>
private StreamWriter fileWriter;
/// <summary>
/// Gets The Process Handle
/// </summary>
private IntPtr processHandle;
/// <summary>
/// Gets the Process ID
/// </summary>
private int processID;
/// <summary>
/// Windows 7 API Pack wrapper
/// </summary>
private Win7 windowsSeven = new Win7();
#endregion
/* Constructor */
/// <summary>
/// Initializes a new instance of the <see cref="Encode"/> class.
/// </summary>
public Encode()
{
this.EncodeStarted += Encode_EncodeStarted;
}
#region Delegates and Event Handlers
/// <summary>
/// Encode Progess Status
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The EncodeProgressEventArgs.
/// </param>
public delegate void EncodeProgessStatus(object sender, EncodeProgressEventArgs e);
/* Event Handlers */
/// <summary>
/// Fires when a new CLI Job starts
/// </summary>
public event EventHandler EncodeStarted;
/// <summary>
/// Fires when a CLI job finishes.
/// </summary>
public event EventHandler EncodeEnded;
/// <summary>
/// Encode process has progressed
/// </summary>
public event EncodeProgessStatus EncodeStatusChanged;
#endregion
/* Properties */
/// <summary>
/// Gets or sets The HB Process
/// </summary>
protected Process HbProcess { get; set; }
/// <summary>
/// Gets a value indicating whether IsEncoding.
/// </summary>
public bool IsEncoding { get; private set; }
/// <summary>
/// Gets ActivityLog.
/// </summary>
public string ActivityLog
{
get
{
if (this.IsEncoding == false)
{
ReadFile(); // Read the last log file back in if it exists
}
return string.IsNullOrEmpty(this.logBuffer.ToString()) ? "No log data available..." : this.logBuffer.ToString();
}
}
/* Public Methods */
/// <summary>
/// Create a preview sample video
/// </summary>
/// <param name="query">
/// The CLI Query
/// </param>
public void CreatePreviewSample(string query)
{
this.Run(new Job { Query = query }, false);
}
/// <summary>
/// Execute a HandBrakeCLI process.
/// </summary>
/// <param name="encJob">
/// The enc Job.
/// </param>
/// <param name="enableLogging">
/// Enable Logging. When Disabled we onlt parse Standard Ouput for progress info. Standard Error log data is ignored.
/// </param>
protected void Run(Job encJob, bool enableLogging)
{
try
{
IsEncoding = true;
if (enableLogging)
SetupLogging(encJob);
if (Init.PreventSleep)
{
Win32.PreventSleep();
}
string handbrakeCLIPath = Path.Combine(Application.StartupPath, "HandBrakeCLI.exe");
ProcessStartInfo cliStart = new ProcessStartInfo(handbrakeCLIPath, encJob.Query)
{
RedirectStandardOutput = true,
RedirectStandardError = enableLogging ? true : false,
UseShellExecute = false,
CreateNoWindow = !Init.ShowCliForInGuiEncodeStatus ? true : false
};
this.HbProcess = Process.Start(cliStart);
if (enableLogging)
{
this.HbProcess.ErrorDataReceived += HbProcErrorDataReceived;
this.HbProcess.BeginErrorReadLine();
}
this.processID = HbProcess.Id;
this.processHandle = HbProcess.Handle;
// Set the process Priority
if (this.processID != -1)
{
this.HbProcess.EnableRaisingEvents = true;
this.HbProcess.Exited += HbProcess_Exited;
}
// Set the Process Priority
switch (Init.ProcessPriority)
{
case "Realtime":
this.HbProcess.PriorityClass = ProcessPriorityClass.RealTime;
break;
case "High":
this.HbProcess.PriorityClass = ProcessPriorityClass.High;
break;
case "Above Normal":
this.HbProcess.PriorityClass = ProcessPriorityClass.AboveNormal;
break;
case "Normal":
this.HbProcess.PriorityClass = ProcessPriorityClass.Normal;
break;
case "Low":
this.HbProcess.PriorityClass = ProcessPriorityClass.Idle;
break;
default:
this.HbProcess.PriorityClass = ProcessPriorityClass.BelowNormal;
break;
}
// Fire the Encode Started Event
if (this.EncodeStarted != null)
this.EncodeStarted(this, new EventArgs());
}
catch (Exception exc)
{
Main.ShowExceptiowWindow("It would appear that HandBrakeCLI has not started correctly." +
"You should take a look at the Activity log as it may indicate the reason why.\n\nDetailed Error Information: error occured in runCli()",
exc.ToString());
}
}
/// <summary>
/// Kill the CLI process
/// </summary>
public void Stop()
{
try
{
if (this.HbProcess != null) this.HbProcess.Kill();
}
catch (Exception exc)
{
Main.ShowExceptiowWindow("Unable to stop HandBrakeCLI. It may not be running.", exc.ToString());
}
if (this.EncodeEnded != null)
this.EncodeEnded(this, new EventArgs());
}
/// <summary>
/// Attempt to Safely kill a DirectRun() CLI
/// NOTE: This will not work with a MinGW CLI
/// Note: http://www.cygwin.com/ml/cygwin/2006-03/msg00330.html
/// </summary>
public void SafelyClose()
{
if ((int)this.processHandle == 0)
return;
// Allow the CLI to exit cleanly
Win32.SetForegroundWindow((int)this.processHandle);
SendKeys.Send("^C");
SendKeys.Flush();
/*//if (HbProcess != null)
//{
// HbProcess.StandardInput.AutoFlush = true;
// HbProcess.StandardInput.WriteLine("^c^z");
//}*/
}
/* Helpers */
/// <summary>
/// Save a copy of the log to the users desired location or a default location
/// if this feature is enabled in options.
/// </summary>
/// <param name="destination">
/// The Destination File Path
/// </param>
protected void CopyLog(string destination)
{
try
{
string logDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) +
"\\HandBrake\\logs";
string tempLogFile = Path.Combine(logDir, string.Format("last_encode_log{0}.txt", Init.InstanceId));
string encodeDestinationPath = Path.GetDirectoryName(destination);
string destinationFile = Path.GetFileName(destination);
string encodeLogFile = destinationFile + " " +
DateTime.Now.ToString().Replace("/", "-").Replace(":", "-") + ".txt";
// Make sure the log directory exists.
if (!Directory.Exists(logDir))
Directory.CreateDirectory(logDir);
// Copy the Log to HandBrakes log folder in the users applciation data folder.
File.Copy(tempLogFile, Path.Combine(logDir, encodeLogFile));
// Save a copy of the log file in the same location as the enocde.
if (Init.SaveLogWithVideo)
File.Copy(tempLogFile, Path.Combine(encodeDestinationPath, encodeLogFile));
// Save a copy of the log file to a user specified location
if (Directory.Exists(Init.SaveLogPath))
if (Init.SaveLogPath != String.Empty && Init.SaveLogToSpecifiedPath)
File.Copy(tempLogFile, Path.Combine(Init.SaveLogPath, encodeLogFile));
}
catch (Exception exc)
{
Main.ShowExceptiowWindow("Unable to make a copy of the log file", exc.ToString());
}
}
/// <summary>
/// The HandBrakeCLI process has exited.
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The EventArgs.
/// </param>
private void HbProcess_Exited(object sender, EventArgs e)
{
IsEncoding = false;
if (this.EncodeEnded != null)
this.EncodeEnded(this, new EventArgs());
if (windowsSeven.IsWindowsSeven)
{
windowsSeven.SetTaskBarProgressToNoProgress();
}
if (Init.PreventSleep)
{
Win32.AllowSleep();
}
try
{
if (fileWriter != null)
fileWriter.Close();
}
catch (Exception exc)
{
Main.ShowExceptiowWindow("Unable to close the log file wrtier", exc.ToString());
}
}
/// <summary>
/// Read the log file
/// </summary>
private void ReadFile()
{
logBuffer = new StringBuilder();
lock (logBuffer)
{
// last_encode_log.txt is the primary log file. Since .NET can't read this file whilst the CLI is outputing to it (Not even in read only mode),
// we'll need to make a copy of it.
string logDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\logs";
string logFile = Path.Combine(logDir, string.Format("last_encode_log{0}.txt", Init.InstanceId));
string logFile2 = Path.Combine(logDir, string.Format("tmp_appReadable_log{0}.txt", Init.InstanceId));
int logFilePosition = 0;
try
{
// Make sure the application readable log file does not already exist. FileCopy fill fail if it does.
if (File.Exists(logFile2))
File.Delete(logFile2);
// Copy the log file.
if (File.Exists(logFile))
File.Copy(logFile, logFile2, true);
else
return;
// Start the Reader
// Only use text which continues on from the last read line
StreamReader sr = new StreamReader(logFile2);
string line;
int i = 1;
while ((line = sr.ReadLine()) != null)
{
if (i > logFilePosition)
{
logBuffer.AppendLine(line);
logFilePosition++;
}
i++;
}
sr.Close();
sr.Dispose();
}
catch (Exception exc)
{
Main.ShowExceptiowWindow("Unable to read log file", exc.ToString());
}
}
}
/// <summary>
/// Setup the logging.
/// </summary>
/// <param name="encodeJob">The Encode Job Object</param>
private void SetupLogging(Job encodeJob)
{
string logDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\logs";
string logFile = Path.Combine(logDir, string.Format("last_encode_log{0}.txt", Init.InstanceId));
string logFile2 = Path.Combine(logDir, string.Format("tmp_appReadable_log{0}.txt", Init.InstanceId));
try
{
logBuffer = new StringBuilder();
// Clear the current Encode Logs
if (File.Exists(logFile)) File.Delete(logFile);
if (File.Exists(logFile2)) File.Delete(logFile2);
fileWriter = new StreamWriter(logFile) { AutoFlush = true };
fileWriter.WriteLine(Logging.CreateCliLogHeader(encodeJob));
logBuffer.AppendLine(Logging.CreateCliLogHeader(encodeJob));
}
catch (Exception exc)
{
if (fileWriter != null)
fileWriter.Close();
Main.ShowExceptiowWindow("Error", exc.ToString());
}
}
/// <summary>
/// Recieve the Standard Error information and process it
/// </summary>
/// <param name="sender">
/// The Sender Object
/// </param>
/// <param name="e">
/// DataReceived EventArgs
/// </param>
private void HbProcErrorDataReceived(object sender, DataReceivedEventArgs e)
{
if (!String.IsNullOrEmpty(e.Data))
{
lock (logBuffer)
logBuffer.AppendLine(e.Data);
try
{
if (fileWriter != null)
fileWriter.WriteLine(e.Data);
}
catch (Exception exc)
{
Main.ShowExceptiowWindow("Unable to write log data...", exc.ToString());
}
}
}
#region Encode Status from Standard Output
/// <summary>
/// Encode Started
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The EventArgs.
/// </param>
private void Encode_EncodeStarted(object sender, EventArgs e)
{
Thread monitor = new Thread(EncodeMonitor);
monitor.Start();
}
/// <summary>
/// Monitor the Job
/// </summary>
private void EncodeMonitor()
{
try
{
Parser encode = new Parser(HbProcess.StandardOutput.BaseStream);
encode.OnEncodeProgress += EncodeOnEncodeProgress;
while (!encode.EndOfStream)
encode.ReadEncodeStatus();
}
catch (Exception exc)
{
Main.ShowExceptiowWindow("An Unknown Error has occured", exc.ToString());
}
}
/// <summary>
/// Displays the Encode status in the GUI
/// </summary>
/// <param name="sender">The sender</param>
/// <param name="currentTask">The current task</param>
/// <param name="taskCount">Number of tasks</param>
/// <param name="percentComplete">Percent complete</param>
/// <param name="currentFps">Current encode speed in fps</param>
/// <param name="avg">Avg encode speed</param>
/// <param name="timeRemaining">Time Left</param>
private void EncodeOnEncodeProgress(object sender, int currentTask, int taskCount, float percentComplete, float currentFps, float avg, TimeSpan timeRemaining)
{
EncodeProgressEventArgs eventArgs = new EncodeProgressEventArgs
{
AverageFrameRate = avg,
CurrentFrameRate = currentFps,
EstimatedTimeLeft = timeRemaining,
PercentComplete = percentComplete,
Task = currentTask,
TaskCount = taskCount
};
if (this.EncodeStatusChanged != null)
this.EncodeStatusChanged(this, eventArgs);
if (windowsSeven.IsWindowsSeven)
{
int percent;
int.TryParse(Math.Round(percentComplete).ToString(), out percent);
windowsSeven.SetTaskBarProgress(percent);
}
}
#endregion
}
}
|