/* PresetService.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace HandBrake.ApplicationServices.Services { using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Xml.Serialization; using HandBrake.ApplicationServices.Exceptions; using HandBrake.ApplicationServices.Model; using HandBrake.ApplicationServices.Services.Interfaces; /// /// The preset service manages HandBrake's presets /// public class PresetService : IPresetService { /** * TODO: * - Wire this into the Forms and WPF UI's * - Note: This is untested so far. It'll likely need fixes before it can be used. * - Maybe change the collection to a dictionary to allow easier lookups? **/ #region Private Variables /// /// XML Serializer /// private static readonly XmlSerializer Ser = new XmlSerializer(typeof(List)); /// /// The User Setting Service /// private IUserSettingService userSettingService = ServiceManager.UserSettingService; /// /// The User Preset file /// private readonly string userPresetFile = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\user_presets.xml"; /// /// The Built In Presets File /// private readonly string builtInPresetFile = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\presets.xml"; /// /// A Collection of presets /// private ObservableCollection presets = new ObservableCollection(); #endregion /// /// Initializes a new instance of the class. /// public PresetService() { // If the preset file doesn't exist. Create it. if (!File.Exists(this.builtInPresetFile)) { this.UpdateBuiltInPresets(); } this.LoadPresets(); } /// /// Gets a Collection of presets. /// public ObservableCollection Presets { get { return this.presets; } } /// /// Gets or sets LastPresetAdded. /// public Preset LastPresetAdded { get; set; } /// /// Gets the DefaultPreset. /// public Preset DefaultPreset { get { return this.presets.FirstOrDefault(p => p.IsDefault); } } #region Public Methods /// /// Add a new preset to the system /// /// /// A Preset to add /// /// /// True if added, /// False if name already exists /// public bool Add(Preset preset) { if (this.CheckIfPresetExists(preset.Name) == false) { this.presets.Add(preset); this.LastPresetAdded = preset; // Update the presets file this.UpdatePresetFiles(); return true; } return false; } /// /// Update a preset /// /// /// The updated preset /// public void Update(Preset update) { // TODO - Change this to be a lookup foreach (Preset preset in this.presets) { if (preset.Name == update.Name) { preset.Query = update.Query; // Update the presets file this.UpdatePresetFiles(); break; } } } /// /// Remove a preset with a given name from either the built in or user preset list. /// /// /// The Preset to remove /// public void Remove(Preset preset) { if (preset == null || preset.IsDefault) { return; } this.presets.Remove(preset); this.UpdatePresetFiles(); } /// /// Remove a group of presets by category /// /// /// The Category to remove /// public void RemoveGroup(string category) { List removeList = this.presets.Where(p => p.Category == category).ToList(); foreach (Preset preset in removeList) { if (preset.IsDefault) { // Skip default preset continue; } this.presets.Remove(preset); } this.UpdatePresetFiles(); } /// /// Set Default Preset /// /// /// The name. /// public void SetDefault(Preset name) { foreach (Preset preset in this.presets) { preset.IsDefault = false; } name.IsDefault = true; this.UpdatePresetFiles(); } /// /// Get a Preset /// /// /// The name of the preset to get /// /// /// A Preset or null object /// public Preset GetPreset(string name) { return this.presets.FirstOrDefault(item => item.Name == name); } /// /// Clear Built-in Presets /// public void ClearBuiltIn() { List remove = this.presets.Where(p => p.IsBuildIn).ToList(); foreach (Preset preset in remove) { this.presets.Remove(preset); } } /// /// Clear all presets /// public void ClearAll() { this.presets.Clear(); } /// /// Reads the CLI's CLI output format and load's them into the preset List Preset /// /// /// The Path to the CLI, leave blank for current folder. /// public void UpdateBuiltInPresets() { // Create a new tempory file and execute the CLI to get the built in Presets. string handbrakeCLIPath = Path.Combine(System.Windows.Forms.Application.StartupPath, "HandBrakeCLI.exe"); string presetsPath = Path.Combine(Path.GetTempPath(), "temp_presets.dat"); string strCmdLine = String.Format(@"cmd /c """"{0}"" --preset-list >""{1}"" 2>&1""", handbrakeCLIPath, presetsPath); ProcessStartInfo getPresets = new ProcessStartInfo("CMD.exe", strCmdLine) { WindowStyle = ProcessWindowStyle.Hidden }; Process hbproc = Process.Start(getPresets); hbproc.WaitForExit(); hbproc.Dispose(); hbproc.Close(); // Clear the current built in Presets and now parse the tempory Presets file. this.ClearBuiltIn(); if (File.Exists(presetsPath)) { using (StreamReader presetInput = new StreamReader(presetsPath)) { StringBuilder contents = new StringBuilder(); string category = String.Empty; while (!presetInput.EndOfStream) { string line = presetInput.ReadLine(); contents.AppendLine(line); // Found the beginning of a preset block ) if (line != null && line.Contains("<") && !line.Contains("<<")) { category = line.Replace("<", string.Empty).Trim(); } // Found a preset if (line != null && line.Contains("+")) { Regex r = new Regex("(: )"); // Split on hyphens. string[] presetName = r.Split(line); bool pic = false; if (presetName[2].Contains("crop")) { pic = true; } Preset newPreset = new Preset { Category = category, Name = presetName[0].Replace("+", string.Empty).Trim(), Query = presetName[2], Version = this.userSettingService.GetUserSetting(ASUserSettingConstants.HandBrakeVersion), CropSettings = pic, Description = string.Empty, // Maybe one day we will populate this. IsBuildIn = true }; if (newPreset.Name == "Normal") { newPreset.IsDefault = true; } this.presets.Add(newPreset); } } // Verify we have presets. if (this.presets.Count == 0) { throw new GeneralApplicationException("Failed to load built-in presets.", "Restarting HandBrake may resolve this issue", new Exception(contents.ToString())); } } } else { // Something really bad must have happened if the file is missing. throw new GeneralApplicationException("Preset Export Failed. Unable to load in Presets.", "Please restart HandBrake", null); } // Finally, Create a new or update the current Presets.xml file this.UpdatePresetFiles(); } /// /// Check if the built in Presets stored are not out of date. /// Update them if they are. /// /// true if out of date public bool CheckIfPresetsAreOutOfDate() { // Update built-in Presets if the built-in Presets belong to an older version. if (this.presets.Count != 0) { List preset = this.presets.Where(p => p.IsBuildIn).ToList(); if (preset.Count > 0) { if (preset[0].Version != this.userSettingService.GetUserSetting(ASUserSettingConstants.HandBrakeVersion)) { this.UpdateBuiltInPresets(); return true; } } } return false; } /// /// Check if the preset "name" exists in either Presets or UserPresets lists. /// /// Name of the preset /// True if found public bool CheckIfPresetExists(string name) { return name == string.Empty || this.presets.Any(item => item.Name == name); } /// /// Returns a value if the preset can be updated / resaved /// /// /// The name. /// /// /// True if it's not a built-in preset, false otherwise. /// public bool CanUpdatePreset(string name) { return this.presets.Where(preset => preset.Name == name).Any(preset => preset.IsBuildIn == false); } #endregion #region Private Helpers /// /// Recover from a courrpted preset file /// Add .old to the current filename, and delete the current file. /// /// /// The broken presets file. /// private static void RecoverFromCorruptedPresetFile(string file) { try { // Recover from Error. if (File.Exists(file)) { string disabledFile = file + ".old"; File.Move(file, disabledFile); if (File.Exists(file)) { File.Delete(file); } } } catch(IOException) { // Give up } } /// /// Load in the Built-in and User presets into the collection /// private void LoadPresets() { // First clear the Presets arraylists this.presets.Clear(); // Load in the Presets from Presets.xml try { if (File.Exists(this.builtInPresetFile)) { StreamReader reader = new StreamReader(this.builtInPresetFile); List list = (List)Ser.Deserialize(reader); foreach (Preset preset in list) { preset.IsBuildIn = true; // Older versions did not have this flag so explicitly make sure it is set. this.presets.Add(preset); } reader.Close(); } } catch (Exception exc) { RecoverFromCorruptedPresetFile(this.builtInPresetFile); this.UpdateBuiltInPresets(); throw new GeneralApplicationException("HandBrake has detected corruption in the presets file and has attempted to rebuild this file.", "Please restart HandBrake before continuing.", exc); } // Load in the users Presets from UserPresets.xml try { if (File.Exists(this.userPresetFile)) { StreamReader reader = new StreamReader(this.userPresetFile); List list = (List)Ser.Deserialize(reader); foreach (Preset preset in list) { this.presets.Add(preset); } reader.Close(); } } catch (Exception exc) { RecoverFromCorruptedPresetFile(this.userPresetFile); throw new GeneralApplicationException("HandBrake has detected corruption in the presets file and has attempted to rebuild this file.", "Please restart HandBrake before continuing.", exc); } } /// /// Update the preset files /// private void UpdatePresetFiles() { try { using (FileStream strm = new FileStream(this.builtInPresetFile, FileMode.Create, FileAccess.Write)) { Ser.Serialize(strm, this.presets.Where(p => p.IsBuildIn).ToList()); strm.Close(); strm.Dispose(); } using (FileStream strm = new FileStream(this.userPresetFile, FileMode.Create, FileAccess.Write)) { Ser.Serialize(strm, this.presets.Where(p => p.IsBuildIn == false).ToList()); strm.Close(); strm.Dispose(); } } catch (Exception exc) { throw new GeneralApplicationException("Unable to write to the presets file.", "The details section below may indicate why this error has occured.", exc); } } #endregion } }