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
|
// --------------------------------------------------------------------------------------------------------------------
// <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 HandBrakeWPF.Services.Encode
{
using System;
using System.Diagnostics;
using System.IO;
using System.Windows.Forms.VisualStyles;
using HandBrake.Interop.Interop.EventArgs;
using HandBrake.Interop.Interop.Interfaces;
using HandBrake.Interop.Interop.Json.State;
using HandBrake.Interop.Interop.Providers.Interfaces;
using HandBrake.Interop.Model;
using HandBrakeWPF.Exceptions;
using HandBrakeWPF.Properties;
using HandBrakeWPF.Services.Encode.Factories;
using HandBrakeWPF.Services.Interfaces;
using HandBrakeWPF.Services.Logging.Interfaces;
using HandBrakeWPF.Utilities;
using EncodeTask = Model.EncodeTask;
using HandBrakeInstanceManager = Instance.HandBrakeInstanceManager;
using IEncode = Interfaces.IEncode;
using LogService = Logging.LogService;
/// <summary>
/// LibHB Implementation of IEncode
/// </summary>
public class LibEncode : EncodeBase, IEncode
{
private readonly IUserSettingService userSettingService;
private readonly ILogInstanceManager logInstanceManager;
private readonly IHbFunctionsProvider hbFunctionsProvider;
private readonly object portLock = new object();
private IEncodeInstance instance;
private DateTime startTime;
private EncodeTask currentTask;
private HBConfiguration currentConfiguration;
private bool isPreviewInstance;
private bool isLoggingInitialised;
private int encodeCounter;
public LibEncode(IHbFunctionsProvider hbFunctionsProvider, IUserSettingService userSettingService, ILogInstanceManager logInstanceManager, int encodeCounter) : base(userSettingService)
{
this.userSettingService = userSettingService;
this.logInstanceManager = logInstanceManager;
this.hbFunctionsProvider = hbFunctionsProvider;
this.encodeCounter = encodeCounter;
}
public bool IsPasued { get; private set; }
public void Start(EncodeTask task, HBConfiguration configuration, string basePresetName)
{
try
{
// Sanity Checking and Setup
if (this.IsEncoding)
{
throw new GeneralApplicationException(Resources.Queue_AlreadyEncoding, Resources.Queue_AlreadyEncodingSolution, null);
}
// Setup
this.startTime = DateTime.Now;
this.currentTask = task;
this.currentConfiguration = configuration;
if (this.userSettingService.GetUserSetting<bool>(UserSettingConstants.ProcessIsolationEnabled))
{
this.InitLogging(task.IsPreviewEncode);
}
else
{
this.encodeLogService = this.logInstanceManager.MasterLogInstance;
this.encodeLogService.Reset();
}
if (this.instance != null)
{
// Cleanup
try
{
this.instance.EncodeCompleted -= this.InstanceEncodeCompleted;
this.instance.EncodeProgress -= this.InstanceEncodeProgress;
this.instance.Dispose();
this.instance = null;
}
catch (Exception exc)
{
this.ServiceLogMessage("Failed to cleanup previous instance: " + exc);
}
}
this.ServiceLogMessage("Starting Encode ...");
if (!string.IsNullOrEmpty(basePresetName))
{
this.TimedLogMessage(string.Format("base preset: {0}", basePresetName));
}
int verbosity = this.userSettingService.GetUserSetting<int>(UserSettingConstants.Verbosity);
// Prevent port stealing if multiple jobs start at the same time.
lock (portLock)
{
this.instance = task.IsPreviewEncode ? HandBrakeInstanceManager.GetPreviewInstance(verbosity, this.userSettingService) : HandBrakeInstanceManager.GetEncodeInstance(verbosity, configuration, this.encodeLogService, userSettingService);
this.instance.EncodeCompleted += this.InstanceEncodeCompleted;
this.instance.EncodeProgress += this.InstanceEncodeProgress;
this.IsEncoding = true;
this.isPreviewInstance = task.IsPreviewEncode;
// Verify the Destination Path Exists, and if not, create it.
this.VerifyEncodeDestinationPath(task);
// Get an EncodeJob object for the Interop Library
this.instance.StartEncode(EncodeTaskFactory.Create(task, configuration, hbFunctionsProvider.GetHbFunctionsWrapper()));
}
// Fire the Encode Started Event
this.InvokeEncodeStarted(System.EventArgs.Empty);
}
catch (Exception exc)
{
this.IsEncoding = false;
this.ServiceLogMessage("Failed to start encoding ..." + Environment.NewLine + exc);
this.InvokeEncodeCompleted(new EventArgs.EncodeCompletedEventArgs(false, exc, "Unable to start encoding", this.currentTask.Source, this.currentTask.Destination, null, 0));
}
}
public void Pause()
{
if (this.instance != null)
{
this.instance.PauseEncode();
this.ServiceLogMessage("Encode Paused");
this.IsPasued = true;
}
}
public void Resume()
{
if (this.instance != null)
{
this.instance.ResumeEncode();
this.ServiceLogMessage("Encode Resumed");
this.IsPasued = false;
}
}
public void Stop()
{
try
{
this.IsEncoding = false;
if (this.instance != null)
{
this.instance.StopEncode();
this.ServiceLogMessage("Encode Stopped");
}
}
catch (Exception exc)
{
Debug.WriteLine(exc);
}
}
public EncodeTask GetActiveJob()
{
if (this.currentTask != null)
{
EncodeTask task = new EncodeTask(this.currentTask); // Shallow copy our current instance.
return task;
}
return null;
}
protected void ServiceLogMessage(string message)
{
this.encodeLogService.LogMessage(string.Format("{0}# {1}", Environment.NewLine, message));
}
protected void TimedLogMessage(string message)
{
this.encodeLogService.LogMessage(string.Format("[{0}] {1}", DateTime.Now.ToString("hh:mm:ss"), message));
}
private void InstanceEncodeProgress(object sender, EncodeProgressEventArgs e)
{
EventArgs.EncodeProgressEventArgs args = new EventArgs.EncodeProgressEventArgs
{
AverageFrameRate = e.AverageFrameRate,
CurrentFrameRate = e.CurrentFrameRate,
EstimatedTimeLeft = e.EstimatedTimeLeft,
PercentComplete = e.FractionComplete * 100,
Task = e.Pass,
TaskCount = e.PassCount,
ElapsedTime = DateTime.Now - this.startTime,
PassId = e.PassId,
IsMuxing = e.StateCode == TaskState.Muxing.Code,
IsSearching = e.StateCode == TaskState.Searching.Code
};
this.InvokeEncodeStatusChanged(args);
}
private void InstanceEncodeCompleted(object sender, EncodeCompletedEventArgs e)
{
this.IsEncoding = false;
string completeMessage = "Job Completed!";
switch (e.Error)
{
case 0:
break;
case 1:
completeMessage = "Job Cancelled!";
break;
case 2:
completeMessage = string.Format("Job Failed. Check log and input settings ({0})", e.Error);
break;
case 3:
completeMessage = string.Format("Job Failed to Initialise. Check log and input settings ({0})", e.Error);
break;
default:
completeMessage = string.Format("Job Failed ({0})", e.Error);
break;
}
this.ServiceLogMessage(completeMessage);
// Handling Log Data
string hbLog = this.ProcessLogs(this.currentTask.Destination, this.isPreviewInstance, this.currentConfiguration);
long filesize = this.GetFilesize(this.currentTask.Destination);
// Raise the Encode Completed Event.
this.InvokeEncodeCompleted(
e.Error != 0
? new EventArgs.EncodeCompletedEventArgs(false, null, e.Error.ToString(), this.currentTask.Source, this.currentTask.Destination, hbLog, filesize)
: new EventArgs.EncodeCompletedEventArgs(true, null, string.Empty, this.currentTask.Source, this.currentTask.Destination, hbLog, filesize));
}
private long GetFilesize(string destination)
{
try
{
if (!string.IsNullOrEmpty(destination) && File.Exists(destination))
{
return new FileInfo(destination).Length;
}
return 0;
}
catch (Exception e)
{
this.ServiceLogMessage("Unable to get final filesize ..." + Environment.NewLine + e);
Debug.WriteLine(e);
}
return 0;
}
private void InitLogging(bool isPreview)
{
if (!isLoggingInitialised)
{
string logType = isPreview ? "preview" : "encode";
string filename = string.Format("activity_log.{0}.{1}.{2}.txt", encodeCounter, logType, GeneralUtilities.ProcessId);
string logFile = Path.Combine(DirectoryUtilities.GetLogDirectory(), filename);
this.encodeLogService = new LogService();
this.encodeLogService.ConfigureLogging(logFile);
this.logInstanceManager.RegisterLoggerInstance(filename, this.encodeLogService, false);
isLoggingInitialised = true;
}
}
}
}
|