/* UserSettingService.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ using System.Linq; namespace HandBrake.ApplicationServices.Services { using System; using System.Collections.Generic; using System.Collections.Specialized; using System.IO; using System.Windows.Forms; using System.Xml.Serialization; using HandBrake.ApplicationServices.Collections; using HandBrake.ApplicationServices.Exceptions; using HandBrake.ApplicationServices.Services.Interfaces; /// /// The User Setting Serivce /// public class UserSettingService : IUserSettingService { /// /// The Settings File /// private readonly string settingsFile = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\settings.xml"; /// /// The XML Serializer /// readonly XmlSerializer serializer = new XmlSerializer(typeof(SerializableDictionary)); /// /// The User Settings /// private SerializableDictionary userSettings; /// /// Initializes a new instance of the class. /// public UserSettingService() { this.Load(); if (userSettings == null || userSettings.Count == 0) { this.LoadDefaults(); } } /// /// Set the specified user setting. /// /// /// Name of the property /// /// /// The value to store. /// public void SetUserSetting(string name, object value) { this.userSettings[name] = value; this.Save(); } /// /// Get user setting for a given key. /// /// /// The name. /// /// /// The Type of the setting /// /// /// The user setting /// public T GetUserSetting(string name) { if (this.userSettings.ContainsKey(name)) { return (T)this.userSettings[name]; } return default(T); } /// /// Get an StringCollection type user setting /// /// /// The setting name /// /// /// The settings value /// public StringCollection GetUserSettingStringCollection(string name) { return (StringCollection)this.userSettings[name]; } /// /// Save the User Settings /// private void Save() { string directory = Path.GetDirectoryName(this.settingsFile); if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory)) { Directory.CreateDirectory(directory); } using (FileStream strm = new FileStream(this.settingsFile, FileMode.Create, FileAccess.Write)) { serializer.Serialize(strm, this.userSettings); } } /// /// Load the User Settings /// private void Load() { try { // Load up the users current settings file. if (File.Exists(this.settingsFile)) { using (StreamReader reader = new StreamReader(this.settingsFile)) { SerializableDictionary data = (SerializableDictionary)serializer.Deserialize(reader); this.userSettings = data; } } else { this.userSettings = new SerializableDictionary(); } // Add any missing / new settings SerializableDictionary defaults = this.GetDefaults(); foreach (var item in defaults.Where(item => !this.userSettings.Keys.Contains(item.Key))) { this.userSettings.Add(item.Key, item.Value); this.Save(); } } catch (Exception exc) { try { this.userSettings = this.GetDefaults(); if (File.Exists(this.settingsFile)) { File.Delete(this.settingsFile); } this.Save(); } catch (Exception) { } throw; } } /// /// Load Default Settings /// private void LoadDefaults() { string defaults = Path.Combine(Application.StartupPath, "defaultsettings.xml"); if (File.Exists(defaults)) { using (StreamReader reader = new StreamReader(defaults)) { SerializableDictionary data = (SerializableDictionary)serializer.Deserialize(reader); this.userSettings = data; } } } /// /// Load Default Settings /// /// /// The get defaults. /// private SerializableDictionary GetDefaults() { if (File.Exists("defaultsettings.xml")) { using (StreamReader reader = new StreamReader("defaultsettings.xml")) { return (SerializableDictionary)serializer.Deserialize(reader); } } return new SerializableDictionary(); } } }