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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="LibScan.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>
// Scan a Source
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Services.Scan
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Windows.Media.Imaging;
using HandBrake.Interop.Interop;
using HandBrake.Interop.Interop.Interfaces;
using HandBrake.Interop.Interop.Interfaces.Model;
using HandBrake.Interop.Interop.Json.Scan;
using HandBrake.Interop.Interop.Model;
using HandBrake.Interop.Interop.Model.Encoding;
using HandBrake.Interop.Interop.Model.Preview;
using HandBrakeWPF.Instance;
using HandBrakeWPF.Services.Encode.Model;
using HandBrakeWPF.Services.Interfaces;
using HandBrakeWPF.Services.Logging.Interfaces;
using HandBrakeWPF.Services.Scan.EventArgs;
using HandBrakeWPF.Services.Scan.Factories;
using HandBrakeWPF.Services.Scan.Interfaces;
using HandBrakeWPF.Services.Scan.Model;
using HandBrakeWPF.Utilities;
using ILog = Logging.Interfaces.ILog;
using ScanProgressEventArgs = HandBrake.Interop.Interop.EventArgs.ScanProgressEventArgs;
using Title = Model.Title;
public class LibScan : IScan, IDisposable
{
private readonly ILog log = null;
private readonly IUserSettingService userSettingService;
private readonly ILogInstanceManager logInstanceManager;
private TitleFactory titleFactory = new TitleFactory();
private string currentSourceScanPath;
private IHandBrakeInstance instance;
private Action<bool, Source> postScanOperation;
private bool isCancelled = false;
public LibScan(ILog logService, IUserSettingService userSettingService, ILogInstanceManager logInstanceManager)
{
this.log = logService;
this.userSettingService = userSettingService;
this.logInstanceManager = logInstanceManager;
this.IsScanning = false;
}
public event EventHandler ScanStarted;
public event ScanCompletedStatus ScanCompleted;
public event ScanProgessStatus ScanStatusChanged;
public bool IsScanning { get; private set; }
/// <summary>
/// Scan a Source Path.
/// Title 0: scan all
/// </summary>
/// <param name="sourcePath">
/// Path to the file to scan
/// </param>
/// <param name="title">
/// int title number. 0 for scan all
/// </param>
/// <param name="postAction">
/// The post Action.
/// </param>
public void Scan(string sourcePath, int title, Action<bool, Source> postAction)
{
// Try to cleanup any previous scan instances.
if (this.instance != null)
{
try
{
this.instance.Dispose();
}
catch (Exception)
{
// Do Nothing
}
}
this.isCancelled = false;
// Reset the log
this.logInstanceManager.ResetApplicationLog();
// Handle the post scan operation.
this.postScanOperation = postAction;
// Create a new HandBrake Instance.
this.instance = HandBrakeInstanceManager.GetScanInstance(this.userSettingService.GetUserSetting<int>(UserSettingConstants.Verbosity));
this.instance.ScanProgress += this.InstanceScanProgress;
this.instance.ScanCompleted += this.InstanceScanCompleted;
// Start the scan on a back
this.ScanSource(sourcePath, title, this.userSettingService.GetUserSetting<int>(UserSettingConstants.PreviewScanCount));
}
/// <summary>
/// Kill the scan
/// </summary>
public void Stop()
{
try
{
this.ServiceLogMessage("Manually Stopping Scan ...");
this.IsScanning = false;
var handBrakeInstance = this.instance;
if (handBrakeInstance != null)
{
handBrakeInstance.StopScan();
handBrakeInstance.ScanProgress -= this.InstanceScanProgress;
handBrakeInstance.ScanCompleted -= this.InstanceScanCompleted;
handBrakeInstance.Dispose();
this.instance = null;
}
}
catch (Exception exc)
{
this.ServiceLogMessage(exc.ToString());
}
finally
{
this.ScanCompleted?.Invoke(this, new ScanCompletedEventArgs(this.isCancelled, null, null, null));
this.instance = null;
this.ServiceLogMessage("Scan Stopped ...");
}
}
/// <summary>
/// Cancel the current scan.
/// </summary>
public void Cancel()
{
this.isCancelled = true;
this.Stop();
}
/// <summary>
/// Get a Preview image for the current job and preview number.
/// </summary>
/// <param name="job">
/// The job.
/// </param>
/// <param name="preview">
/// The preview.
/// </param>
/// <returns>
/// The <see cref="BitmapImage"/>.
/// </returns>
public BitmapImage GetPreview(EncodeTask job, int preview)
{
if (this.instance == null)
{
return null;
}
BitmapImage bitmapImage = null;
try
{
PreviewSettings settings = new PreviewSettings
{
Cropping = new Cropping(job.Cropping),
MaxWidth = job.MaxWidth ?? 0,
MaxHeight = job.MaxHeight ?? 0,
KeepDisplayAspect = job.KeepDisplayAspect,
TitleNumber = job.Title,
Anamorphic = job.Anamorphic,
Modulus = job.Modulus,
Width = job.Width ?? 0,
Height = job.Height ?? 0,
PixelAspectX = job.PixelAspectX,
PixelAspectY = job.PixelAspectY
};
RawPreviewData bitmapData = this.instance.GetPreview(settings, preview, job.DeinterlaceFilter != DeinterlaceFilter.Off);
bitmapImage = BitmapUtilities.ConvertToBitmapImage(BitmapUtilities.ConvertByteArrayToBitmap(bitmapData));
}
catch (AccessViolationException e)
{
Debug.WriteLine(e);
}
return bitmapImage;
}
/// <summary>
/// The service log message.
/// </summary>
/// <param name="message">
/// The message.
/// </param>
protected void ServiceLogMessage(string message)
{
this.log.LogMessage(string.Format("{0} # {1}{0}", Environment.NewLine, message));
}
/// <summary>
/// Start a scan for a given source path and title
/// </summary>
/// <param name="sourcePath">
/// Path to the source file
/// </param>
/// <param name="title">
/// the title number to look at
/// </param>
/// <param name="previewCount">
/// The preview Count.
/// </param>
private void ScanSource(object sourcePath, int title, int previewCount)
{
try
{
string source = sourcePath.ToString().EndsWith("\\") ? string.Format("\"{0}\\\\\"", sourcePath.ToString().TrimEnd('\\'))
: "\"" + sourcePath + "\"";
this.currentSourceScanPath = source;
this.IsScanning = true;
TimeSpan minDuration = TimeSpan.FromSeconds(this.userSettingService.GetUserSetting<int>(UserSettingConstants.MinScanDuration));
HandBrakeUtils.SetDvdNav(!this.userSettingService.GetUserSetting<bool>(UserSettingConstants.DisableLibDvdNav));
this.ServiceLogMessage("Starting Scan ...");
this.instance.StartScan(sourcePath.ToString(), previewCount, minDuration, title != 0 ? title : 0);
this.ScanStarted?.Invoke(this, System.EventArgs.Empty);
}
catch (Exception exc)
{
this.ServiceLogMessage("Scan Failed ..." + Environment.NewLine + exc);
this.Stop();
}
}
/// <summary>
/// Scan Completed Event Handler
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The EventArgs.
/// </param>
private void InstanceScanCompleted(object sender, System.EventArgs e)
{
try
{
this.ServiceLogMessage("Processing Scan Information ...");
bool cancelled = this.isCancelled;
this.isCancelled = false;
// TODO -> Might be a better place to fix this.
string path = this.currentSourceScanPath;
if (this.currentSourceScanPath.Contains("\""))
{
path = this.currentSourceScanPath.Trim('\"');
}
// Process into internal structures.
Source sourceData = null;
if (this.instance?.Titles != null)
{
sourceData = new Source { Titles = this.ConvertTitles(this.instance.Titles), ScanPath = path };
}
this.IsScanning = false;
if (this.postScanOperation != null)
{
try
{
this.postScanOperation(true, sourceData);
}
catch (Exception exc)
{
Debug.WriteLine(exc);
}
this.postScanOperation = null; // Reset
this.ServiceLogMessage("Scan Finished for Queue Edit ...");
}
else
{
this.ScanCompleted?.Invoke(
this,
new ScanCompletedEventArgs(cancelled, null, string.Empty, sourceData));
this.ServiceLogMessage("Scan Finished ...");
}
}
finally
{
var handBrakeInstance = this.instance;
if (handBrakeInstance != null)
{
handBrakeInstance.ScanProgress -= this.InstanceScanProgress;
handBrakeInstance.ScanCompleted -= this.InstanceScanCompleted;
}
}
}
/// <summary>
/// Scan Progress Event Handler
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The EventArgs.
/// </param>
private void InstanceScanProgress(object sender, ScanProgressEventArgs e)
{
if (this.ScanStatusChanged != null)
{
EventArgs.ScanProgressEventArgs eventArgs =
new EventArgs.ScanProgressEventArgs
{
CurrentTitle = e.CurrentTitle,
Titles = e.Titles,
Percentage = Math.Round((decimal)e.Progress * 100, 0)
};
this.ScanStatusChanged(this, eventArgs);
}
}
/// <summary>
/// Convert Interop Title objects to App Services Title object
/// </summary>
/// <param name="titles">
/// The titles.
/// </param>
/// <returns>
/// The convert titles.
/// </returns>
private List<Title> ConvertTitles(JsonScanObject titles)
{
List<Title> titleList = new List<Title>();
foreach (SourceTitle title in titles.TitleList)
{
Title converted = this.titleFactory.CreateTitle(title, titles.MainFeature);
titleList.Add(converted);
}
return titleList;
}
public void Dispose()
{
if (this.instance != null)
{
try
{
this.instance.Dispose();
this.instance = null;
}
catch (Exception e)
{
this.ServiceLogMessage("Unable to Dispose of LibScan: " + e);
}
}
}
}
}
|