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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Program.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// Manage the HandBrake Worker Process Service.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Worker
{
using System;
using System.Collections.Generic;
using System.Net;
using System.Threading;
using HandBrake.Worker.Registration;
using HandBrake.Worker.Routing;
public class Program
{
private static ApiRouter router;
private static ManualResetEvent manualResetEvent = new ManualResetEvent(false);
private static ConnectionRegistrar registrar = new ConnectionRegistrar();
public static void Main(string[] args)
{
int port = 8037; // Default Port;
int verbosity = 1;
if (args.Length != 0)
{
foreach (string argument in args)
{
if (argument.StartsWith("--port"))
{
string value = argument.TrimStart("--port=".ToCharArray());
if (int.TryParse(value, out var parsedPort))
{
port = parsedPort;
}
}
if (argument.StartsWith("--verbosity"))
{
string value = argument.TrimStart("--port=".ToCharArray());
if (int.TryParse(value, out var verbosityVal))
{
verbosity = verbosityVal;
}
}
}
}
Console.WriteLine("Starting HandBrake Engine ...");
router = new ApiRouter();
router.Initialise(verbosity);
Console.WriteLine("Starting Web Server ...");
Console.WriteLine("Using Port: {0}", port);
Dictionary<string, Func<HttpListenerRequest, string>> apiHandlers = RegisterApiHandlers();
HttpServer webServer = new HttpServer(apiHandlers, port);
webServer.Run();
Console.WriteLine("Web Server Started");
manualResetEvent.WaitOne();
webServer.Stop();
}
public static Dictionary<string, Func<HttpListenerRequest, string>> RegisterApiHandlers()
{
Dictionary<string, Func<HttpListenerRequest, string>> apiHandlers =
new Dictionary<string, Func<HttpListenerRequest, string>>();
// Worker APIs
apiHandlers.Add("Pair", registrar.Pair);
apiHandlers.Add("GetToken", registrar.GetToken);
apiHandlers.Add("Shutdown", ShutdownServer);
// Logging
apiHandlers.Add("GetAllLogMessages", router.GetAllLogMessages);
apiHandlers.Add("GetLogMessagesFromIndex", router.GetLogMessagesFromIndex);
apiHandlers.Add("ResetLogging", router.ResetLogging);
// HandBrake APIs
apiHandlers.Add("Version", router.GetVersionInfo);
apiHandlers.Add("StartEncode", router.StartEncode);
apiHandlers.Add("PauseEncode", router.PauseEncode);
apiHandlers.Add("ResumeEncode", router.ResumeEncode);
apiHandlers.Add("StopEncode", router.StopEncode);
apiHandlers.Add("PollEncodeProgress", router.PollEncodeProgress);
apiHandlers.Add("SetConfiguration", router.SetConfiguration);
return apiHandlers;
}
public static string ShutdownServer(HttpListenerRequest request)
{
manualResetEvent.Set();
return "Server Terminated";
}
}
}
|