blob: 300c21e483517f6f5a9b282e635bab6bb24829ae (
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
|
/* frmReadDVD.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.m0k.org/>.
It may be used under the terms of the GNU General Public License. */
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 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
{
lbl_status.Visible = true;
ThreadPool.QueueUserWorkItem(startProc);
}
catch (Exception exc)
{
MessageBox.Show("frmReadDVD.cs - startScan " + exc.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)
{
MessageBox.Show("frmReadDVD.cs - updateUIElements " + exc.ToString());
}
}
Functions.CLI process = new Functions.CLI();
private void startProc(object state)
{
try
{
string handbrakeCLIPath = Path.Combine(Application.StartupPath, "HandBrakeCLI.exe");
string dvdInfoPath = Path.Combine(Path.GetTempPath(), "dvdinfo.dat");
// Make we don't pick up a stale dvdinfo.dat (and that we have rights to the file)
if (File.Exists(dvdInfoPath))
File.Delete(dvdInfoPath);
string strCmdLine = String.Format(@"cmd /c """"{0}"" -i ""{1}"" -t0 -v >""{2}"" 2>&1""", handbrakeCLIPath, inputFile, dvdInfoPath);
ProcessStartInfo hbParseDvd = new ProcessStartInfo("CMD.exe", strCmdLine);
hbParseDvd.WindowStyle = ProcessWindowStyle.Hidden;
using (Process hbproc = Process.Start(hbParseDvd))
{
hbproc.WaitForExit();
// TODO: Verify exit code if the CLI supports it properly
}
if (!File.Exists(dvdInfoPath))
{
throw new Exception("Unable to retrieve the DVD Info. dvdinfo.dat missing.");
}
using (StreamReader sr = new StreamReader(dvdInfoPath))
{
thisDvd = Parsing.DVD.Parse(sr);
}
updateUIElements();
}
catch (Exception exc)
{
MessageBox.Show("frmReadDVD.cs - startProc " + exc.ToString());
}
}
}
}
|