// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // LibHB Implementation of IEncode // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Services { using System; using System.Diagnostics; using HandBrake.ApplicationServices.Exceptions; using HandBrake.ApplicationServices.Model; using HandBrake.ApplicationServices.Services.Base; using HandBrake.ApplicationServices.Services.Interfaces; using HandBrake.ApplicationServices.Utilities; using HandBrake.Interop; using HandBrake.Interop.Interfaces; using HandBrake.Interop.Model; using EncodeCompletedEventArgs = HandBrake.ApplicationServices.EventArgs.EncodeCompletedEventArgs; using EncodeProgressEventArgs = HandBrake.ApplicationServices.EventArgs.EncodeProgressEventArgs; /// /// LibHB Implementation of IEncode /// public class LibEncode : EncodeBase, IEncode { #region Private Variables /// /// Lock for the log file /// private static readonly object logLock = new object(); /// /// The User Setting Service /// private readonly IUserSettingService userSettingService; /// /// The Start time of the current Encode; /// private DateTime startTime; /// /// An Instance of the HandBrake Interop Library /// private IHandBrakeInstance instance; /// /// A flag to indicate if logging is enabled or not. /// private bool loggingEnabled; #endregion /// /// Initializes a new instance of the class. /// /// /// The user Setting Service. /// /// /// The hand Brake Instance. /// public LibEncode(IUserSettingService userSettingService, IHandBrakeInstance handBrakeInstance) : base(userSettingService) { this.userSettingService = userSettingService; // Setup the HandBrake Instance this.instance = handBrakeInstance; this.instance.EncodeCompleted += this.InstanceEncodeCompleted; this.instance.EncodeProgress += this.InstanceEncodeProgress; HandBrakeUtils.MessageLogged += this.HandBrakeInstanceMessageLogged; HandBrakeUtils.ErrorLogged += this.HandBrakeInstanceErrorLogged; } /// /// Start with a LibHb EncodeJob Object /// /// /// The job. /// /// /// The enable Logging. /// public void Start(QueueTask job, bool enableLogging) { this.startTime = DateTime.Now; this.loggingEnabled = enableLogging; try { // Sanity Checking and Setup if (this.IsEncoding) { throw new Exception("HandBrake is already encoding."); } this.IsEncoding = true; // Get an EncodeJob object for the Interop Library EncodeJob encodeJob = InteropModelCreator.GetEncodeJob(job); // Enable logging if required. if (enableLogging) { try { this.SetupLogging(job); } catch (Exception) { this.IsEncoding = false; throw; } } // Prvent the system from sleeping if the user asks if (this.userSettingService.GetUserSetting(ASUserSettingConstants.PreventSleep) ) { Win32.PreventSleep(); } // Verify the Destination Path Exists, and if not, create it. this.VerifyEncodeDestinationPath(job); // Start the Encode this.instance.StartEncode(encodeJob); // Set the Process Priority switch (this.userSettingService.GetUserSetting(ASUserSettingConstants.ProcessPriority)) { case "Realtime": Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.RealTime; break; case "High": Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.High; break; case "Above Normal": Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.AboveNormal; break; case "Normal": Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.Normal; break; case "Low": Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.Idle; break; default: Process.GetCurrentProcess().PriorityClass = ProcessPriorityClass.BelowNormal; break; } // Fire the Encode Started Event this.InvokeEncodeStarted(EventArgs.Empty); } catch (Exception exc) { this.InvokeEncodeCompleted(new EncodeCompletedEventArgs(false, exc, "An Error has occured.")); } } /// /// Kill the CLI process /// public void Stop() { this.Stop(null); } /// /// Kill the CLI process /// /// /// The Exception that has occured. /// This will get bubbled up through the EncodeCompletedEventArgs /// public override void Stop(Exception exc) { try { this.IsEncoding = false; this.instance.StopEncode(); } catch(Exception) { // Do Nothing. } this.InvokeEncodeCompleted( exc == null ? new EncodeCompletedEventArgs(true, null, string.Empty) : new EncodeCompletedEventArgs(false, exc, "An Error has occured.")); } /// /// Shutdown the service. /// public void Shutdown() { // Nothing to do for this implementation. } #region HandBrakeInstance Event Handlers. /// /// Log a message /// /// /// The sender. /// /// /// The MessageLoggedEventArgs. /// private void HandBrakeInstanceErrorLogged(object sender, MessageLoggedEventArgs e) { if (this.loggingEnabled) { lock (logLock) { this.ProcessLogMessage(e.Message); } } } /// /// Log a message /// /// /// The sender. /// /// /// The MessageLoggedEventArgs. /// private void HandBrakeInstanceMessageLogged(object sender, MessageLoggedEventArgs e) { if (this.loggingEnabled) { lock (logLock) { this.ProcessLogMessage(e.Message); } } } /// /// Encode Progress Event Handler /// /// /// The sender. /// /// /// The Interop.EncodeProgressEventArgs. /// private void InstanceEncodeProgress(object sender, Interop.EncodeProgressEventArgs e) { EncodeProgressEventArgs args = new EncodeProgressEventArgs { AverageFrameRate = e.AverageFrameRate, CurrentFrameRate = e.CurrentFrameRate, EstimatedTimeLeft = e.EstimatedTimeLeft, PercentComplete = e.FractionComplete * 100, Task = e.Pass, ElapsedTime = DateTime.Now - this.startTime, }; this.InvokeEncodeStatusChanged(args); if (this.WindowsSeven.IsWindowsSeven) { int percent; int.TryParse(Math.Round(e.FractionComplete).ToString(), out percent); this.WindowsSeven.SetTaskBarProgress(percent); } } /// /// Encode Completed Event Handler /// /// /// The sender. /// /// /// The e. /// private void InstanceEncodeCompleted(object sender, Interop.EncodeCompletedEventArgs e) { this.IsEncoding = false; this.InvokeEncodeCompleted( e.Error ? new EncodeCompletedEventArgs(false, null, string.Empty) : new EncodeCompletedEventArgs(true, null, string.Empty)); if (this.WindowsSeven.IsWindowsSeven) { this.WindowsSeven.SetTaskBarProgressToNoProgress(); } if (this.userSettingService.GetUserSetting(ASUserSettingConstants.PreventSleep)) { Win32.AllowSleep(); } this.ShutdownFileWriter(); } #endregion } }