diff options
author | sr55 <[email protected]> | 2013-08-24 16:40:26 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-08-24 16:40:26 +0000 |
commit | f8e7adc789a0a426907bad279c0c6741da32aba5 (patch) | |
tree | f1195bfc0e45a9056d7f29adc80b94db5d9fc860 /win/CS/HandBrake.ApplicationServices | |
parent | 2526f515e8221cf8a955a3ea2dd405806d3aa259 (diff) |
WinGui: Additional fixes to libhb logging, libdvdnav option and min duration setting.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5745 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/LibScan.cs | 43 |
1 files changed, 38 insertions, 5 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs b/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs index a082bd2a4..d6f312e24 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs @@ -53,6 +53,11 @@ namespace HandBrake.ApplicationServices.Services private readonly IHandBrakeInstance instance;
/// <summary>
+ /// The user setting service.
+ /// </summary>
+ private readonly IUserSettingService userSettingService;
+
+ /// <summary>
/// Log data from HandBrakeInstance
/// </summary>
private readonly StringBuilder logging;
@@ -90,13 +95,17 @@ namespace HandBrake.ApplicationServices.Services /// <param name="handBrakeInstance">
/// The hand Brake Instance.
/// </param>
- public LibScan(IHandBrakeInstance handBrakeInstance)
+ /// <param name="userSettingService">
+ /// The user Setting Service.
+ /// </param>
+ public LibScan(IHandBrakeInstance handBrakeInstance, IUserSettingService userSettingService)
{
logging = new StringBuilder();
header = GeneralUtilities.CreateCliLogHeader();
instance = handBrakeInstance;
+ this.userSettingService = userSettingService;
instance.Initialize(1);
instance.ScanProgress += this.InstanceScanProgress;
instance.ScanCompleted += this.InstanceScanCompleted;
@@ -170,7 +179,28 @@ namespace HandBrake.ApplicationServices.Services /// </param>
public void Scan(string sourcePath, int title, int previewCount, Action<bool> postAction)
{
+ // Clear down the logging
this.logging.Clear();
+
+
+ try
+ {
+ // Make we don't pick up a stale last_scan_log_xyz.txt (and that we have rights to the file)
+ if (File.Exists(dvdInfoPath))
+ {
+ File.Delete(dvdInfoPath);
+ }
+ }
+ catch (Exception)
+ {
+ // Do nothing.
+ }
+
+ if (!Directory.Exists(Path.GetDirectoryName(dvdInfoPath)))
+ {
+ Directory.CreateDirectory(Path.GetDirectoryName(dvdInfoPath));
+ }
+
scanLog = new StreamWriter(dvdInfoPath);
Thread t = new Thread(unused => this.ScanSource(sourcePath, title, previewCount));
@@ -236,10 +266,13 @@ namespace HandBrake.ApplicationServices.Services if (this.ScanStared != null)
this.ScanStared(this, new EventArgs());
- if (title != 0)
- instance.StartScan(sourcePath.ToString(), previewCount, title);
- else
- instance.StartScan(sourcePath.ToString(), previewCount);
+ TimeSpan minDuration =
+ TimeSpan.FromSeconds(
+ this.userSettingService.GetUserSetting<int>(ASUserSettingConstants.MinScanDuration));
+
+ HandBrakeUtils.SetDvdNav(this.userSettingService.GetUserSetting<bool>(ASUserSettingConstants.DisableLibDvdNav));
+
+ this.instance.StartScan(sourcePath.ToString(), previewCount, minDuration, title != 0 ? title : 0);
}
catch (Exception exc)
{
|