diff options
author | sr55 <[email protected]> | 2013-07-20 14:37:53 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-07-20 14:37:53 +0000 |
commit | a3d27b2e6c41d8d856b935bf55f85c719a850cc3 (patch) | |
tree | 7d8d0f3dd753e88907b2df62a4e2a5db47fbe8de /win/CS/HandBrake.ApplicationServices | |
parent | 18611a4004bf4adc61d6923c565e363244ffa2b0 (diff) |
WinGui: Update the exception handling code to deal with Component Activation Exceptions, allowing for better error messages. Changed the defaultsettings.xml file to be an embedded resource.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5655 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs b/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs index db7389637..7f40bffff 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs @@ -13,6 +13,7 @@ namespace HandBrake.ApplicationServices.Services using System.Collections.Specialized;
using System.IO;
using System.Linq;
+ using System.Reflection;
using System.Xml.Serialization;
using HandBrake.ApplicationServices.Collections;
@@ -67,7 +68,7 @@ namespace HandBrake.ApplicationServices.Services this.userSettings[name] = value;
this.Save();
- this.OnSettingChanged(new SettingChangedEventArgs {Key = name, Value = value});
+ this.OnSettingChanged(new SettingChangedEventArgs { Key = name, Value = value });
}
/// <summary>
@@ -163,7 +164,7 @@ namespace HandBrake.ApplicationServices.Services SerializableDictionary<string, object> data = (SerializableDictionary<string, object>)serializer.Deserialize(reader);
this.userSettings = data;
}
- }
+ }
else
{
this.userSettings = new SerializableDictionary<string, object>();
@@ -192,7 +193,7 @@ namespace HandBrake.ApplicationServices.Services }
catch (Exception)
{
- throw new GeneralApplicationException("Unable to load user settings.", "Your user settings file appears to be inaccessible or corrupted. You may have to delete the file and let HandBrake generate a new one.", exc);
+ throw new GeneralApplicationException("Unable to load user settings file: " + this.settingsFile, "Your user settings file appears to be inaccessible or corrupted. You may have to delete the file and let HandBrake generate a new one.", exc);
}
}
}
@@ -205,13 +206,20 @@ namespace HandBrake.ApplicationServices.Services /// </returns>
private SerializableDictionary<string, object> GetDefaults()
{
- if (File.Exists("defaultsettings.xml"))
+ try
{
- using (StreamReader reader = new StreamReader("defaultsettings.xml"))
+ Assembly assembly = Assembly.GetEntryAssembly();
+ Stream stream = assembly.GetManifestResourceStream("HandBrakeWPF.defaultsettings.xml");
+ if (stream != null)
{
- return (SerializableDictionary<string, object>)serializer.Deserialize(reader);
+ return (SerializableDictionary<string, object>)this.serializer.Deserialize(stream);
}
}
+ catch (Exception exc)
+ {
+ return new SerializableDictionary<string, object>();
+ }
+
return new SerializableDictionary<string, object>();
}
}
|