summaryrefslogtreecommitdiffstats
path: root/win/C#/Parsing/DVD.cs
blob: d2d2115386a05c8c7fc2b5549c68d9c7775800b0 (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
54
55
56
57
58
59
60
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Text.RegularExpressions; 
using System.Windows.Forms;
using System.IO;
using System.Threading;
using System.Diagnostics;

namespace Handbrake.Parsing
{
    
    /// <summary>
    /// An object representing a scanned DVD
    /// </summary>
    public class DVD
    {

        private List<Title> m_titles;
        /// <summary>
        /// Collection of Titles associated with this DVD
        /// </summary>
        public List<Title> Titles
        {
            get
            {
                return this.m_titles;
            }
        }

        /// <summary>
        /// Default constructor for this object
        /// </summary>
        public DVD()
        {
            this.m_titles = new List<Title>();
        }

        public static DVD Parse(StreamReader output)
        {
            DVD thisDVD = new DVD();
            while (!output.EndOfStream)
            {
                if ((char)output.Peek() == '+')
                {
                    string testb = output.ReadToEnd();
                    thisDVD.m_titles.AddRange(Title.ParseList(testb));
                }
                else
                {
                    output.ReadLine();
                }
            }
            return thisDVD;
        }
    }
}