summaryrefslogtreecommitdiffstats
path: root/win/C#/Parsing/Chapter.cs
blob: c74f0d56e8bf8f31ab97cc0116d5c80e422849d3 (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
61
62
63
64
65
66
67
68
69
70
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;

namespace Handbrake.Parsing
{
    public class Chapter
    {
        private int m_chapterNumber;
        public int ChapterNumber
        {
            get
            {
                return this.m_chapterNumber;
            }
        }

        private TimeSpan m_duration;
        public TimeSpan Duration
        {
            get
            {
                return this.m_duration;
            }
        }

        public override string ToString()
        {
            return this.m_chapterNumber.ToString();
        }

        public static Chapter Parse(StreamReader output)
        {
            string curLine = output.ReadLine();
            if (!curLine.Contains("  + audio tracks:"))
            {
                Chapter thisChapter = new Chapter();
                string[] splitter = curLine.Split(new string[] { "    + ", ": cells ", ", ", " blocks, duration ", "->" }, StringSplitOptions.RemoveEmptyEntries);
                thisChapter.m_chapterNumber = int.Parse(splitter[0]);
                thisChapter.m_duration = TimeSpan.Parse(splitter[4]);
                return thisChapter;
            }
            else
            {
                return null;
            }
        }

        public static Chapter[] ParseList(StreamReader output)
        {
            List<Chapter> chapters = new List<Chapter>();
            string curLine = output.ReadLine();
            while (!curLine.Contains("  + audio tracks:"))
            {
                Chapter thisChapter = Chapter.Parse(output);
           
                if (thisChapter != null)
                {
                    chapters.Add(thisChapter);
                }
                else
                {
                    break;
                }
            }
            return chapters.ToArray();
        }
    }
}