/* LibEncode.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.Diagnostics; using System.Text; using System.Threading; using HandBrake.ApplicationServices.Functions; using HandBrake.ApplicationServices.Model; using HandBrake.ApplicationServices.Services.Base; using HandBrake.ApplicationServices.Services.Interfaces; using HandBrake.Interop; using HandBrake.Interop.Model; using EncodeCompletedEventArgs = HandBrake.ApplicationServices.EventArgs.EncodeCompletedEventArgs; using EncodeProgressEventArgs = HandBrake.ApplicationServices.EventArgs.EncodeProgressEventArgs; /// /// TODO: Update summary. /// 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 IUserSettingService userSettingService = ServiceManager.UserSettingService; /// /// The Start time of the current Encode; /// private DateTime startTime; /// /// An Instance of the HandBrake Interop Library /// private HandBrakeInstance instance; /// /// A flag to indicate if logging is enabled or not. /// private bool loggingEnabled; #endregion /// /// Initializes a new instance of the class. /// public LibEncode() { // Setup the HandBrake Instance this.instance = new HandBrakeInstance(); this.instance.EncodeCompleted += this.InstanceEncodeCompleted; this.instance.EncodeProgress += this.InstanceEncodeProgress; HandBrakeUtils.MessageLogged += this.HandBrakeInstanceMessageLogged; HandBrakeUtils.ErrorLogged += this.HandBrakeInstanceErrorLogged; GrowlCommunicator.Register(); } /// /// Start with a LibHb EncodeJob Object /// /// /// The job. /// /// /// The enable Logging. /// public void Start(QueueTask job, bool enableLogging) { throw new NotImplementedException("This Method has not been completed yet"); this.startTime = DateTime.Now; this.loggingEnabled = enableLogging; try { // Sanity Checking and Setup if (this.IsEncoding) { throw new Exception("HandBrake is already encodeing."); } 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.Invoke_encodeStarted(EventArgs.Empty); } catch (Exception exc) { this.Invoke_encodeCompleted(new EncodeCompletedEventArgs(false, exc, "An Error has occured in EncodeService.Run()")); } } /// /// 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) { this.instance.StopEncode(); this.Invoke_encodeCompleted( exc == null ? new EncodeCompletedEventArgs(true, null, string.Empty) : new EncodeCompletedEventArgs(false, exc, "An Error has occured.")); } /// /// Attempt to Safely kill a DirectRun() CLI /// NOTE: This will not work with a MinGW CLI /// Note: http://www.cygwin.com/ml/cygwin/2006-03/msg00330.html /// public void SafelyStop() { throw new NotImplementedException("This Method is not used in the LibEncode service. You should use the Stop() method instead! "); } #region HandBrakeInstance Event Handlers. /// /// Log a message /// /// /// The sender. /// /// /// The MessageLoggedEventArgs. /// private void HandBrakeInstanceErrorLogged(object sender, MessageLoggedEventArgs e) { if (this.loggingEnabled) { lock (logLock) { this.LogBuffer.AppendLine(e.Message); } } } /// /// Log a message /// /// /// The sender. /// /// /// The MessageLoggedEventArgs. /// private void HandBrakeInstanceMessageLogged(object sender, MessageLoggedEventArgs e) { if (this.loggingEnabled) { lock (logLock) { this.LogBuffer.AppendLine(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, Task = e.Pass, ElapsedTime = DateTime.Now - this.startTime, }; this.Invoke_encodeStatusChanged(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.Invoke_encodeCompleted(new EncodeCompletedEventArgs(e.Error, null, string.Empty)); if (this.WindowsSeven.IsWindowsSeven) { this.WindowsSeven.SetTaskBarProgressToNoProgress(); } if (this.userSettingService.GetUserSetting(ASUserSettingConstants.PreventSleep)) { Win32.AllowSleep(); } } #endregion } }