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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ScanService.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 HandBrake.ApplicationServices.Services
{
using System;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading;
using System.Windows.Forms;
using Caliburn.Micro;
using HandBrake.ApplicationServices.EventArgs;
using HandBrake.ApplicationServices.Exceptions;
using HandBrake.ApplicationServices.Parsing;
using HandBrake.ApplicationServices.Services.Interfaces;
using HandBrake.ApplicationServices.Utilities;
using Parser = HandBrake.ApplicationServices.Parsing.Parser;
/// <summary>
/// Scan a Source
/// </summary>
public class ScanService : IScan
{
#region Private Variables
/// <summary>
/// The CLI data parser
/// </summary>
private Parser readData;
/// <summary>
/// The Log Buffer
/// </summary>
private StringBuilder logBuffer;
/// <summary>
/// The Process belonging to the CLI
/// </summary>
private Process hbProc;
/// <summary>
/// The Log File Header
/// </summary>
StringBuilder header = GeneralUtilities.CreateCliLogHeader();
/// <summary>
/// The User Setting Service
/// </summary>
private IUserSettingService userSettingService = IoC.Get<IUserSettingService>();
#endregion
/// <summary>
/// Initializes a new instance of the <see cref="ScanService"/> class.
/// </summary>
public ScanService()
{
this.logBuffer = new StringBuilder();
}
#region Events
/// <summary>
/// Scan has Started
/// </summary>
public event EventHandler ScanStared;
/// <summary>
/// Scan has completed
/// </summary>
public event ScanCompletedStatus ScanCompleted;
/// <summary>
/// Encode process has progressed
/// </summary>
public event ScanProgessStatus ScanStatusChanged;
#endregion
#region Public Properties
/// <summary>
/// Gets a value indicating whether IsScanning.
/// </summary>
public bool IsScanning { get; private set; }
/// <summary>
/// Gets the Souce Data.
/// </summary>
public Source SouceData { get; private set; }
/// <summary>
/// Gets ActivityLog.
/// </summary>
public string ActivityLog
{
get
{
string noLog = "No log data available... Log data will show here after you scan a source. \n\nOpen the log file directory to get previous log files.";
return string.IsNullOrEmpty(this.logBuffer.ToString()) ? this.header + noLog : this.header + this.logBuffer.ToString();
}
}
#endregion
#region Public Methods
/// <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="previewCount">
/// The preview Count.
/// </param>
/// <param name="postScanAction">
/// The post Scan Action.
/// </param>
public void Scan(string sourcePath, int title, int previewCount, Action<bool> postScanAction)
{
Thread t = new Thread(unused => this.ScanSource(sourcePath, title, previewCount, postScanAction));
t.Start();
}
/// <summary>
/// Kill the scan
/// </summary>
public void Stop()
{
try
{
// Try to clean things up as best as possible.
if (this.readData != null)
{
this.readData.OnScanProgress -= this.OnScanProgress;
}
if (this.hbProc != null && !this.hbProc.HasExited)
{
this.hbProc.Kill();
}
}
catch
{
// We don't really need to notify the user of any errors here.
}
}
/// <summary>
/// Take a Scan Log file, and process it as if it were from the CLI.
/// </summary>
/// <param name="path">
/// The path to the log file.
/// </param>
public void DebugScanLog(string path)
{
try
{
StreamReader parseLog = new StreamReader(path);
this.readData = new Parser(parseLog.BaseStream);
this.SouceData = Source.Parse(this.readData);
this.SouceData.ScanPath = path;
if (this.ScanCompleted != null)
{
this.ScanCompleted(this, new ScanCompletedEventArgs(true, null, string.Empty));
}
}
catch (Exception e)
{
throw new GeneralApplicationException("Debug Run Failed", string.Empty, e);
}
}
#endregion
#region Private Methods
/// <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>
/// <param name="postScanAction">
/// The post Scan Action. Disables the Scan Completed Event
/// </param>
private void ScanSource(object sourcePath, int title, int previewCount, Action<bool> postScanAction)
{
try
{
this.IsScanning = true;
if (this.ScanStared != null)
{
this.ScanStared(this, new EventArgs());
}
this.logBuffer = new StringBuilder();
string handbrakeCLIPath = Path.Combine(Application.StartupPath, "HandBrakeCLI.exe");
string logDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) +
"\\HandBrake\\logs";
string dvdInfoPath = Path.Combine(
logDir,
string.Format("last_scan_log{0}.txt", GeneralUtilities.GetInstanceCount));
if (!Directory.Exists(logDir))
{
Directory.CreateDirectory(logDir);
}
// Make we don't pick up a stale last_encode_log.txt (and that we have rights to the file)
if (File.Exists(dvdInfoPath))
{
File.Delete(dvdInfoPath);
}
string extraArguments = string.Empty;
if (previewCount != 10)
{
extraArguments += " --previews " + previewCount;
}
if (this.userSettingService.GetUserSetting<bool>(ASUserSettingConstants.DisableLibDvdNav))
{
extraArguments += " --no-dvdnav";
}
extraArguments += string.Format(" --min-duration={0}", this.userSettingService.GetUserSetting<int>(ASUserSettingConstants.MinScanDuration));
if (title > 0)
{
extraArguments += " --scan ";
}
// Quick fix for "F:\\" style paths. We need \\\\ (Escaped \ twice)
string source = sourcePath.ToString().EndsWith("\\") ? string.Format("\"{0}\\\\\"", sourcePath.ToString().TrimEnd('\\'))
: "\"" + sourcePath + "\"";
string query = string.Format(@" -i {0} -t{1} {2} -v ", source, title, extraArguments);
this.hbProc = new Process
{
StartInfo =
{
FileName = handbrakeCLIPath,
Arguments = string.Format(@" -i {0} -t{1} {2} -v ", source, title, extraArguments),
RedirectStandardOutput = true,
RedirectStandardError = true,
UseShellExecute = false,
CreateNoWindow = true
}
};
// Start the Scan
this.hbProc.Start();
this.readData = new Parser(this.hbProc.StandardError.BaseStream);
this.readData.OnScanProgress += this.OnScanProgress;
this.SouceData = Source.Parse(this.readData);
this.SouceData.ScanPath = (string)sourcePath;
// Write the Buffer out to file.
using (StreamWriter scanLog = new StreamWriter(dvdInfoPath))
{
// Only write the log file to disk if it's less than 50MB.
if (this.readData.Buffer.Length < 50000000)
{
scanLog.WriteLine(GeneralUtilities.CreateCliLogHeader());
scanLog.WriteLine(query);
scanLog.Write(this.readData.Buffer);
this.logBuffer.AppendLine(query);
this.logBuffer.AppendLine(this.readData.Buffer.ToString());
}
else
{
throw new Exception(
"The Log file has not been written to disk as it has grown above the 100MB limit. This indicates there was a problem during the scan process.");
}
}
this.IsScanning = false;
if (postScanAction != null)
{
postScanAction(true);
}
else
{
if (this.ScanCompleted != null)
{
this.ScanCompleted(this, new ScanCompletedEventArgs(true, null, string.Empty));
}
}
}
catch (Exception exc)
{
this.Stop();
if (postScanAction != null)
{
postScanAction(false);
}
else
{
if (this.ScanCompleted != null)
{
this.ScanCompleted(this, new ScanCompletedEventArgs(false, exc, "An Error has occured in ScanService.ScanSource()"));
}
}
}
}
/// <summary>
/// Fire an event when the scan process progresses
/// </summary>
/// <param name="sender">the sender</param>
/// <param name="currentTitle">the current title being scanned</param>
/// <param name="titleCount">the total number of titles</param>
private void OnScanProgress(object sender, int currentTitle, int titleCount)
{
ScanProgressEventArgs eventArgs = new ScanProgressEventArgs
{
CurrentTitle = currentTitle,
Titles = titleCount
};
if (this.ScanStatusChanged != null)
{
this.ScanStatusChanged(this, eventArgs);
}
}
#endregion
}
}
|