/* Subtitle.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.Collections.Generic; using System.IO; using System.Text.RegularExpressions; namespace Handbrake.Parsing { /// /// An object that represents a subtitle associated with a Title, in a DVD /// public class Subtitle { private string m_language; private int m_trackNumber; private string m_type; private string m_typecode; /// /// The track number of this Subtitle /// public int TrackNumber { get { return m_trackNumber; } } /// /// The language (if detected) of this Subtitle /// public string Language { get { return m_language; } } /// /// Langauage Code /// public string LanguageCode { get { return m_typecode; } } /// /// Subtitle Type /// public string Type { get { return m_type; } } /// /// Override of the ToString method to make this object easier to use in the UI /// /// A string formatted as: {track #} {language} public override string ToString() { return string.Format("{0} {1} ({2})", m_trackNumber, m_language, m_type); } public static Subtitle Parse(StringReader output) { string curLine = output.ReadLine(); Match m = Regex.Match(curLine, @"^ \+ ([0-9]*), ([A-Za-z, ]*) \((.*)\) \(([a-zA-Z]*)\)"); if (m.Success && !curLine.Contains("HandBrake has exited.")) { var thisSubtitle = new Subtitle { m_trackNumber = int.Parse(m.Groups[1].Value.Trim()), m_language = m.Groups[2].Value, m_typecode = m.Groups[3].Value, m_type = m.Groups[4].Value }; return thisSubtitle; } return null; } public static Subtitle[] ParseList(StringReader output) { var subtitles = new List(); while ((char) output.Peek() != '+') { Subtitle thisSubtitle = Parse(output); if (thisSubtitle != null) subtitles.Add(thisSubtitle); else break; } return subtitles.ToArray(); } } }