/* Parser.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.IO; using System.Text; using System.Text.RegularExpressions; using System; using System.Globalization; namespace Handbrake.Parsing { /// /// A delegate to handle custom events regarding data being parsed from the buffer /// /// The object which raised this delegate /// The data parsed from the stream public delegate void DataReadEventHandler(object Sender, string Data); /// /// A delegate to handle events regarding progress during DVD scanning /// /// The object who's raising the event /// The title number currently being processed /// The total number of titiles to be processed public delegate void ScanProgressEventHandler(object Sender, int CurrentTitle, int TitleCount); /// /// A delegate to handle encode progress updates // EXPERIMENTAL /// /// The object which raised the event /// The current task being processed from the queue /// The total number of tasks in queue /// The percentage this task is complete /// The current encoding fps /// The average encoding fps for this task /// The estimated time remaining for this task to complete public delegate void EncodeProgressEventHandler(object Sender, int CurrentTask, int TaskCount, float PercentComplete, float CurrentFps, float AverageFps, TimeSpan TimeRemaining); /// /// A simple wrapper around a StreamReader to keep track of the entire output from a cli process /// internal class Parser : StreamReader { private StringBuilder _buffer = new StringBuilder(""); /// /// The output from the CLI process /// public String Buffer { get { return _buffer.ToString(); } } /// /// Raised upon a new line being read from stdout/stderr /// public event DataReadEventHandler OnReadLine; /// /// Raised upon the entire stdout/stderr stream being read in a single call /// public event DataReadEventHandler OnReadToEnd; /// /// Raised upon the catching of a "Scanning title # of #..." in the stream /// public event ScanProgressEventHandler OnScanProgress; #region Experimetnal Code /// /// Raised upon the catching of a "Scanning title # of #..." in the stream /// public event EncodeProgressEventHandler OnEncodeProgress; #endregion /// /// Default constructor for this object /// /// The stream to parse from public Parser(Stream baseStream) : base(baseStream) { } public override string ReadLine() { string tmp = base.ReadLine(); _buffer.Append(tmp + Environment.NewLine); Match m = null; if (tmp.Contains("Scanning title")) m = Regex.Match(tmp, "^Scanning title ([0-9]*) of ([0-9]*)"); if (OnReadLine != null) OnReadLine(this, tmp); if (m != null) if (m.Success && OnScanProgress != null) OnScanProgress(this, int.Parse(m.Groups[1].Value), int.Parse(m.Groups[2].Value)); return tmp; } public override string ReadToEnd() { string tmp = base.ReadToEnd(); _buffer.Append(tmp + Environment.NewLine); if (OnReadToEnd != null) OnReadToEnd(this, tmp); return tmp; } /// /// Pase the CLI status output (from standard output) /// public void readEncodeStatus() { CultureInfo culture = CultureInfo.CreateSpecificCulture("en-US"); string tmp = base.ReadLine(); Match m = Regex.Match(tmp, @"^Encoding: task ([0-9]*) of ([0-9]*), ([0-9]*\.[0-9]*) %( \(([0-9]*\.[0-9]*) fps, avg ([0-9]*\.[0-9]*) fps, ETA ([0-9]{2})h([0-9]{2})m([0-9]{2})s\))?"); if (m.Success && OnEncodeProgress != null) { int currentTask = int.Parse(m.Groups[1].Value); int totalTasks = int.Parse(m.Groups[2].Value); float percent = float.Parse(m.Groups[3].Value, culture); float currentFps = m.Groups[5].Value == string.Empty ? 0.0F : float.Parse(m.Groups[5].Value, culture); float avgFps = m.Groups[6].Value == string.Empty ? 0.0F : float.Parse(m.Groups[6].Value, culture); TimeSpan remaining = TimeSpan.Zero; if (m.Groups[7].Value != string.Empty) { remaining = TimeSpan.Parse(m.Groups[7].Value + ":" + m.Groups[8].Value + ":" + m.Groups[9].Value); } OnEncodeProgress(this, currentTask, totalTasks, percent, currentFps, avgFps, remaining); } } } }