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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="LibEncode.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// LibHB Implementation of IEncode
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Services
{
using System;
using System.Diagnostics;
using Caliburn.Micro;
using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Services.Base;
using HandBrake.ApplicationServices.Services.Interfaces;
using HandBrake.ApplicationServices.Utilities;
using HandBrake.Interop;
using HandBrake.Interop.Interfaces;
using HandBrake.Interop.Model;
using EncodeCompletedEventArgs = HandBrake.ApplicationServices.EventArgs.EncodeCompletedEventArgs;
using EncodeProgressEventArgs = HandBrake.ApplicationServices.EventArgs.EncodeProgressEventArgs;
/// <summary>
/// LibHB Implementation of IEncode
/// </summary>
public class LibEncode : EncodeBase, IEncode
{
#region Private Variables
/// <summary>
/// Lock for the log file
/// </summary>
private static readonly object logLock = new object();
/// <summary>
/// The User Setting Service
/// </summary>
private readonly IUserSettingService userSettingService;
/// <summary>
/// The Start time of the current Encode;
/// </summary>
private DateTime startTime;
/// <summary>
/// An Instance of the HandBrake Interop Library
/// </summary>
private IHandBrakeInstance instance;
/// <summary>
/// A flag to indicate if logging is enabled or not.
/// </summary>
private bool loggingEnabled;
#endregion
/// <summary>
/// Initializes a new instance of the <see cref="LibEncode"/> class.
/// </summary>
/// <param name="userSettingService">
/// The user Setting Service.
/// </param>
public LibEncode(IUserSettingService userSettingService)
: base(userSettingService)
{
this.userSettingService = userSettingService;
// Setup the HandBrake Instance
this.instance = IoC.Get<IHandBrakeInstance>();
this.instance.EncodeCompleted += this.InstanceEncodeCompleted;
this.instance.EncodeProgress += this.InstanceEncodeProgress;
HandBrakeUtils.MessageLogged += this.HandBrakeInstanceMessageLogged;
HandBrakeUtils.ErrorLogged += this.HandBrakeInstanceErrorLogged;
GrowlCommunicator.Register();
}
/// <summary>
/// Start with a LibHb EncodeJob Object
/// </summary>
/// <param name="job">
/// The job.
/// </param>
/// <param name="enableLogging">
/// The enable Logging.
/// </param>
public void Start(QueueTask job, bool enableLogging)
{
this.startTime = DateTime.Now;
this.loggingEnabled = enableLogging;
try
{
// Sanity Checking and Setup
if (this.IsEncoding)
{
throw new Exception("HandBrake is already encoding.");
}
this.IsEncoding = true;
// Get an EncodeJob object for the Interop Library
EncodeJob encodeJob = InteropModelCreator.GetEncodeJob(job);
// Enable logging if required.
if (enableLogging)
{
try
{
this.SetupLogging(job);
}
catch (Exception)
{
this.IsEncoding = false;
throw;
}
}
// Prvent the system from sleeping if the user asks
if (this.userSettingService.GetUserSetting<bool>(ASUserSettingConstants.PreventSleep) )
{
Win32.PreventSleep();
}
// Verify the Destination Path Exists, and if not, create it.
this.VerifyEncodeDestinationPath(job);
// Start the Encode
this.instance.StartEncode(encodeJob);
// Set the Process Priority
switch (this.userSettingService.GetUserSetting<string>(ASUserSettingConstants.ProcessPriority))
{
case "Realtime":
Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.RealTime;
break;
case "High":
Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.High;
break;
case "Above Normal":
Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.AboveNormal;
break;
case "Normal":
Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.Normal;
break;
case "Low":
Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.Idle;
break;
default:
Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.BelowNormal;
break;
}
// Fire the Encode Started Event
this.Invoke_encodeStarted(EventArgs.Empty);
}
catch (Exception exc)
{
this.Invoke_encodeCompleted(new EncodeCompletedEventArgs(false, exc, "An Error has occured in EncodeService.Run()"));
}
}
/// <summary>
/// Kill the CLI process
/// </summary>
public void Stop()
{
this.Stop(null);
}
/// <summary>
/// Kill the CLI process
/// </summary>
/// <param name="exc">
/// The Exception that has occured.
/// This will get bubbled up through the EncodeCompletedEventArgs
/// </param>
public override void Stop(Exception exc)
{
this.instance.StopEncode();
this.Invoke_encodeCompleted(
exc == null
? new EncodeCompletedEventArgs(true, null, string.Empty)
: new EncodeCompletedEventArgs(false, exc, "An Error has occured."));
}
/// <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 SafelyStop()
{
throw new NotImplementedException("This Method is not used in the LibEncode service. You should use the Stop() method instead! ");
}
#region HandBrakeInstance Event Handlers.
/// <summary>
/// Log a message
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The MessageLoggedEventArgs.
/// </param>
private void HandBrakeInstanceErrorLogged(object sender, MessageLoggedEventArgs e)
{
if (this.loggingEnabled)
{
lock (logLock)
{
this.ProcessLogMessage(e.Message);
}
}
}
/// <summary>
/// Log a message
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The MessageLoggedEventArgs.
/// </param>
private void HandBrakeInstanceMessageLogged(object sender, MessageLoggedEventArgs e)
{
if (this.loggingEnabled)
{
lock (logLock)
{
this.ProcessLogMessage(e.Message);
}
}
}
/// <summary>
/// Encode Progress Event Handler
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The Interop.EncodeProgressEventArgs.
/// </param>
private void InstanceEncodeProgress(object sender, Interop.EncodeProgressEventArgs e)
{
EncodeProgressEventArgs args = new EncodeProgressEventArgs
{
AverageFrameRate = e.AverageFrameRate,
CurrentFrameRate = e.CurrentFrameRate,
EstimatedTimeLeft = e.EstimatedTimeLeft,
PercentComplete = e.FractionComplete * 100,
Task = e.Pass,
ElapsedTime = DateTime.Now - this.startTime,
};
this.Invoke_encodeStatusChanged(args);
if (this.WindowsSeven.IsWindowsSeven)
{
int percent;
int.TryParse(Math.Round(e.FractionComplete).ToString(), out percent);
this.WindowsSeven.SetTaskBarProgress(percent);
}
}
/// <summary>
/// Encode Completed Event Handler
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void InstanceEncodeCompleted(object sender, Interop.EncodeCompletedEventArgs e)
{
this.IsEncoding = false;
this.Invoke_encodeCompleted(
e.Error
? new EncodeCompletedEventArgs(false, null, string.Empty)
: new EncodeCompletedEventArgs(true, null, string.Empty));
if (this.WindowsSeven.IsWindowsSeven)
{
this.WindowsSeven.SetTaskBarProgressToNoProgress();
}
if (this.userSettingService.GetUserSetting<bool>(ASUserSettingConstants.PreventSleep))
{
Win32.AllowSleep();
}
this.ShutdownFileWriter();
}
#endregion
}
}
|