/* 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; using System.Collections.Generic; using System.IO; using System.Text.RegularExpressions; using System.Windows.Forms; 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 simple wrapper around a StreamReader to keep track of the entire output from a cli process /// internal class Parser : StreamReader { private string m_buffer; /// /// The output from the CLI process /// public string Buffer { get { return this.m_buffer; } } /// /// 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; /// /// Default constructor for this object /// /// The stream to parse from public Parser(Stream baseStream) : base(baseStream) { this.m_buffer = string.Empty; } public override string ReadLine() { string tmp = base.ReadLine(); this.m_buffer += tmp; Match m = Regex.Match(tmp, "^Scanning title ([0-9]*) of ([0-9]*)"); if (OnReadLine != null) OnReadLine(this, tmp); 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(); this.m_buffer += tmp; if (OnReadToEnd != null) OnReadToEnd(this, tmp); return tmp; } } }