blob: 0ed9c00336fcf4f0bb8c9a47c76bd78e21e3a4f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* Source.cs $ This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace HandBrake.ApplicationServices.Parsing
{
using System.Collections.Generic;
using System.IO;
/// <summary>
/// An object representing a scanned DVD
/// </summary>
public class Source
{
/// <summary>
/// Initializes a new instance of the <see cref="Source"/> class.
/// Default constructor for this object
/// </summary>
public Source()
{
Titles = new List<Title>();
}
/// <summary>
/// Gets or sets Titles. A list of titles from the source
/// </summary>
public List<Title> Titles { get; set; }
/// <summary>
/// Parse the StreamReader output into a List of Titles
/// </summary>
/// <param name="output">
/// The output.
/// </param>
/// <returns>
/// A DVD object which contains a list of title inforamtion
/// </returns>
public static Source Parse(StreamReader output)
{
var thisDVD = new Source();
while (!output.EndOfStream)
{
if ((char) output.Peek() == '+')
thisDVD.Titles.AddRange(Title.ParseList(output.ReadToEnd()));
else
output.ReadLine();
}
return thisDVD;
}
}
}
|