summaryrefslogtreecommitdiffstats
path: root/win/C#/frmReadDVD.cs
blob: ff50275866251c7a0e028a21f8718a9f124648df (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Threading;
using System.Diagnostics;


namespace Handbrake
{
    public partial class frmReadDVD : Form
    {
        private string inputFile;
        private frmMain mainWindow;
        private frmDvdInfo dvdInfo;
        private Parsing.DVD thisDvd;
        private Process hbProc;
        private delegate void UpdateUIHandler();

        public frmReadDVD(string inputFile, frmMain parent, frmDvdInfo dvdInfoWindow)
        {
            InitializeComponent();
            this.inputFile = inputFile;
            this.mainWindow = parent;
            this.dvdInfo = dvdInfoWindow;
            startScan();
            
        }

        private void startScan()
        {
            try
            {
                //btn_skip.Visible = true;
                lbl_progress.Text = "0%";
                //lbl_progress.Visible = true;
                lbl_status.Visible = true;
                // throw cli call and parsing on it's own thread
                ThreadPool.QueueUserWorkItem(startProc);
            }
            catch (Exception exc)
            {
                if (Properties.Settings.Default.GuiDebug == "Checked")
                {
                    MessageBox.Show("frmReadDVD.cs - startScan " + exc.ToString());
                }
                else
                {
                    MessageBox.Show(Properties.Settings.Default.defaultError.ToString());
                }
            }
        }
   
        private void updateUIElements()
        {
            try
            {
                if (this.InvokeRequired)
                {
                    this.BeginInvoke(new UpdateUIHandler(updateUIElements));
                    return;
                }
                // Now pass this streamreader to frmMain so that it can be used there.
                mainWindow.setStreamReader(thisDvd);

                mainWindow.drp_dvdtitle.Items.Clear();
                mainWindow.drp_dvdtitle.Items.AddRange(thisDvd.Titles.ToArray());
                mainWindow.drp_dvdtitle.Text = "Automatic";
                mainWindow.drop_chapterFinish.Text = "Auto";
                mainWindow.drop_chapterStart.Text = "Auto";
  
                this.Close();
            }
            catch(Exception exc)
            {
                if (Properties.Settings.Default.GuiDebug == "Checked")
                {
                    MessageBox.Show("frmReadDVD.cs - updateUIElements " + exc.ToString());
                }
                else
                {
                    MessageBox.Show(Properties.Settings.Default.defaultError.ToString());
                }
            }
        }

        Functions.CLI process = new Functions.CLI();

        private void startProc(object state)
        {
            //string query = "-i " + '"' + inputFile + '"' + " -t0";
            // hbProc = process.runCli(this, query, true, true, false, true);

            try
            {
                string appPath = Application.StartupPath.ToString()+ "\\";
                string strCmdLine = "cmd /c " + '"' + '"' + appPath + "hbcli.exe" + '"' +  " -i " + '"' + inputFile + '"' + " -t0 >" + '"'+ appPath + "dvdinfo.dat" + '"' + " 2>&1" + '"';
                Process hbproc = Process.Start("CMD.exe", strCmdLine);
                hbproc.WaitForExit();
                hbproc.Dispose();
                hbproc.Close();

          
                StreamReader sr = new StreamReader(appPath + "dvdinfo.dat");
                thisDvd = Parsing.DVD.Parse(sr);
                sr.Close();

                updateUIElements();
            }
            catch (Exception exc)
            {
                if (Properties.Settings.Default.GuiDebug == "Checked")
                {
                    MessageBox.Show("frmReadDVD.cs - startProc " + exc.ToString());
                }
                else
                {
                    MessageBox.Show(Properties.Settings.Default.defaultError.ToString());
                }
            }

        }

            //*********************************************************************************************************************************************
            /*
             * This has been temporily disabled due to the stderr issue
             * 
             * 
            Parsing.Parser readData = new Parsing.Parser(hbProc.StandardError.BaseStream);
            readData.OnScanProgress += Parser_OnScanProgress;
            readData.OnReadLine += dvdInfo.HandleParsedData;
            readData.OnReadToEnd += dvdInfo.HandleParsedData;

            // Setup the parser
            

            if (cancel != 1)
            {
                updateUIElements();
                process.killCLI();
                process.closeCLI();
            }
            */
            //*********************************************************************************************************************************************


        /*private void Parser_OnScanProgress(object Sender, int CurrentTitle, int TitleCount)
        {
            if (this.InvokeRequired)
            {
                this.BeginInvoke(new Parsing.ScanProgressEventHandler(Parser_OnScanProgress), new object[] { Sender, CurrentTitle, TitleCount });
                return;
            }
            int progress = Convert.ToInt32(Convert.ToDouble(CurrentTitle) / Convert.ToDouble(TitleCount) * 100) + 1;
            if (progress > 100)
            {
                progress = 100;
            }
            this.lbl_progress.Text = progress.ToString() + "%";
        }*/

    }
}