/* AudioTrack.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;
namespace Handbrake.Parsing
{
///
/// An object represending an AudioTrack associated with a Title, in a DVD
///
public class AudioTrack
{
private int m_trackNumber;
///
/// The track number of this Audio Track
///
public int TrackNumber
{
get
{
return this.m_trackNumber;
}
}
private string m_language;
///
/// The language (if detected) of this Audio Track
///
public string Language
{
get
{
return this.m_language;
}
}
private string m_format;
///
/// The primary format of this Audio Track
///
public string Format
{
get
{
return this.m_format;
}
}
private string m_subFormat;
///
/// Additional format info for this Audio Track
///
public string SubFormat
{
get
{
return this.m_subFormat;
}
}
private int m_frequency;
///
/// The frequency (in MHz) of this Audio Track
///
public int Frequency
{
get
{
return this.m_frequency;
}
}
private int m_bitrate;
///
/// The bitrate (in kbps) of this Audio Track
///
public int Bitrate
{
get
{
return this.m_bitrate;
}
}
///
/// Override of the ToString method to make this object easier to use in the UI
///
/// A string formatted as: {track #} {language} ({format}) ({sub-format})
public override string ToString()
{
return string.Format("{0} {1} ({2}) ({3})", this.m_trackNumber, this.m_language, this.m_format, this.m_subFormat);
}
public static AudioTrack Parse(StringReader output)
{
Match m = Regex.Match(output.ReadLine(), @"^ \+ ([0-9]*), ([A-Za-z0-9]*) \((.*)\) \((.*)\), ([0-9]*)Hz, ([0-9]*)bps");
if (m.Success)
{
AudioTrack thisTrack = new AudioTrack();
thisTrack.m_trackNumber = int.Parse(m.Groups[1].Value.Trim().ToString());
thisTrack.m_language = m.Groups[2].Value;
thisTrack.m_format = m.Groups[3].Value;
thisTrack.m_subFormat = m.Groups[4].Value;
thisTrack.m_frequency = int.Parse(m.Groups[5].Value.Trim().ToString());
thisTrack.m_bitrate = int.Parse(m.Groups[6].Value.Trim().ToString());
return thisTrack;
}
else
return null;
}
public static AudioTrack[] ParseList(StringReader output)
{
List tracks = new List();
while (true)
{
AudioTrack thisTrack = AudioTrack.Parse(output);
if (thisTrack != null)
tracks.Add(thisTrack);
else
break;
}
return tracks.ToArray();
}
}
}