summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services
diff options
context:
space:
mode:
authorsr55 <[email protected]>2019-03-09 21:13:45 +0000
committersr55 <[email protected]>2019-03-09 21:14:24 +0000
commitd74ab1b93a14fb40ef5beebded7d9bdc4b0d8191 (patch)
treeb7505a9354e6109f3e5081cc151922329a452b27 /win/CS/HandBrakeWPF/Services
parent033edbf0ef660ec02f219d7ef429463d732015c0 (diff)
WinGui: Add log messages around preset service actions that were not previously logged.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services')
-rw-r--r--win/CS/HandBrakeWPF/Services/Presets/PresetService.cs33
1 files changed, 16 insertions, 17 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Presets/PresetService.cs b/win/CS/HandBrakeWPF/Services/Presets/PresetService.cs
index a8a06d74d..c54780042 100644
--- a/win/CS/HandBrakeWPF/Services/Presets/PresetService.cs
+++ b/win/CS/HandBrakeWPF/Services/Presets/PresetService.cs
@@ -29,6 +29,9 @@ namespace HandBrakeWPF.Services.Presets
using HandBrakeWPF.Properties;
using HandBrakeWPF.Services.Encode.Model.Models;
using HandBrakeWPF.Services.Interfaces;
+ using HandBrakeWPF.Services.Logging;
+ using HandBrakeWPF.Services.Logging.Interfaces;
+ using HandBrakeWPF.Services.Logging.Model;
using HandBrakeWPF.Services.Presets.Factories;
using HandBrakeWPF.Services.Presets.Interfaces;
using HandBrakeWPF.Services.Presets.Model;
@@ -43,10 +46,6 @@ namespace HandBrakeWPF.Services.Presets
/// </summary>
public class PresetService : IPresetService
{
- // TODO Strip out the error handling from this service and let upstream UI layer handle it.
-
- #region Private Variables
-
public const int ForcePresetReset = 3;
public static string UserPresetCatgoryName = "Custom Presets";
private readonly string presetFile = Path.Combine(DirectoryUtilities.GetUserStoragePath(VersionHelper.IsNightly()), "presets.json");
@@ -55,8 +54,8 @@ namespace HandBrakeWPF.Services.Presets
private readonly List<Preset> flatPresetList = new List<Preset>();
private readonly IErrorService errorService;
private readonly IUserSettingService userSettingService;
+ private ILog log = LogService.GetLogger();
- #endregion
/// <summary>
/// Initializes a new instance of the <see cref="PresetService"/> class.
@@ -95,8 +94,6 @@ namespace HandBrakeWPF.Services.Presets
}
}
- #region Public Methods
-
/// <summary>
/// The load.
/// </summary>
@@ -487,6 +484,7 @@ namespace HandBrakeWPF.Services.Presets
// Verify we have presets.
if (this.presets.Count == 0)
{
+ this.ServiceLogMessage("Failed to load built-in presets.");
throw new GeneralApplicationException("Failed to load built-in presets.", "Restarting HandBrake may resolve this issue", null);
}
@@ -601,10 +599,6 @@ namespace HandBrakeWPF.Services.Presets
return categoriesList;
}
- #endregion
-
- #region Private Helpers
-
/// <summary>
/// Recover from a corrupted preset file
/// Add .old to the current filename, and delete the current file.
@@ -632,8 +626,9 @@ namespace HandBrakeWPF.Services.Presets
return disabledFile;
}
- catch (IOException)
+ catch (IOException e)
{
+ this.ServiceLogMessage(e.ToString());
// Give up
}
@@ -694,13 +689,14 @@ namespace HandBrakeWPF.Services.Presets
}
catch (Exception exc)
{
- Debug.WriteLine("Failed to parse presets file: " + exc);
+ this.ServiceLogMessage("Corrupted Presets File Detected: " + Environment.NewLine + exc);
}
}
// Sanity Check. Did the container deserialise.
- if (container == null || container.PresetList == null)
+ if (container?.PresetList == null)
{
+ this.ServiceLogMessage("Attempting Preset Recovery ...");
string filename = this.RecoverFromCorruptedPresetFile(this.presetFile);
this.errorService.ShowMessageBox(
Resources.PresetService_UnableToLoadPresets + filename,
@@ -709,6 +705,7 @@ namespace HandBrakeWPF.Services.Presets
MessageBoxImage.Exclamation);
this.UpdateBuiltInPresets();
+ this.ServiceLogMessage("Recovery Completed!");
return; // Update built-in presets stores the presets locally, so just return.
}
@@ -749,7 +746,7 @@ namespace HandBrakeWPF.Services.Presets
}
catch (Exception ex)
{
- Debug.WriteLine(ex);
+ this.ServiceLogMessage(ex.ToString());
this.RecoverFromCorruptedPresetFile(this.presetFile);
this.UpdateBuiltInPresets();
}
@@ -858,7 +855,6 @@ namespace HandBrakeWPF.Services.Presets
}
catch (Exception exc)
{
- Debug.WriteLine(exc);
throw new GeneralApplicationException("Unable to write to the presets file.", "The details section below may indicate why this error has occurred.", exc);
}
}
@@ -937,6 +933,9 @@ namespace HandBrakeWPF.Services.Presets
}
}
- #endregion
+ protected void ServiceLogMessage(string message)
+ {
+ this.log.LogMessage(string.Format("Preset Service: {0}{1}{0}", Environment.NewLine, message), LogMessageType.Application, LogLevel.Info);
+ }
}
} \ No newline at end of file