summaryrefslogtreecommitdiffstats
path: root/win/C#/Functions/CLI.cs
blob: 548148517f6aba6eacc93110ebc7822a7f1bd6be (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
using System;
using System.Collections.Generic;
using System.Threading;
using System.Diagnostics;
using System.Windows.Forms;
using System.Globalization;
 

namespace Handbrake.Functions
{
    class CLI
    {
        /// <summary>
        /// CLI output is based on en-US locale,
        /// we use this CultureInfo as IFormatProvider to *.Parse() calls
        /// </summary>
        static readonly public CultureInfo Culture = new CultureInfo("en-US", false); 

        Process hbProc = new Process();
        
        public Process runCli(object s, string query, bool stderr, bool stdout, bool useShellExec, bool noWindow)
        {
            try
            {
                hbProc = new Process();
                hbProc.StartInfo.FileName = "HandBrakeCLI.exe";
                hbProc.StartInfo.Arguments = query;
                hbProc.StartInfo.RedirectStandardOutput = stdout;
                hbProc.StartInfo.RedirectStandardError = stderr;
                hbProc.StartInfo.UseShellExecute = useShellExec;
                hbProc.StartInfo.CreateNoWindow = noWindow;
                hbProc.Start();   
            }
            catch
            {
                MessageBox.Show("Internal Software Error. Please Restart the Program");
            }
            return hbProc;
        }

        public void killCLI()
        {
            try
            {
                hbProc.Kill();
            }
            catch (Exception)
            {
                // No need to do anything. Chances are the process was already dead.
            }
        }

        public void closeCLI()
        {
            hbProc.Close();
            hbProc.Dispose();
        }

        public void setNull()
        {
            hbProc = new Process();
        }   
    }
}