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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="RemoteInstance.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>
// An Implementation of IEncodeInstance that works with a remote process rather than locally in-process.
// This class is effectivly just a shim.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Instance
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using System.Timers;
using HandBrake.Interop.Interop.EventArgs;
using HandBrake.Interop.Interop.Interfaces;
using HandBrake.Interop.Interop.Json.Encode;
using HandBrake.Interop.Interop.Json.State;
using HandBrakeWPF.Instance.Model;
using Newtonsoft.Json;
/*
* TODO:
* 1. Add support for logging.
* 2. Code to detect what ports are in use / select one within range.
* 3. Add support for communciating via socket instead of HTTP.
*/
public class RemoteInstance : IEncodeInstance, IDisposable
{
private const double EncodePollIntervalMs = 500;
private readonly HttpClient client = new HttpClient();
private readonly string serverUrl;
private readonly int port;
private Process workerProcess;
private Timer encodePollTimer;
public RemoteInstance(int port)
{
this.port = port;
this.serverUrl = "http://localhost/";
}
public event EventHandler<EncodeCompletedEventArgs> EncodeCompleted;
public event EventHandler<EncodeProgressEventArgs> EncodeProgress;
public async void PauseEncode()
{
this.StopPollingProgres();
await this.MakeHttpGetRequest("PauseEncode");
}
public async void ResumeEncode()
{
await this.MakeHttpGetRequest("ResumeEncode");
this.MonitorEncodeProgress();
}
public async void StartEncode(JsonEncodeObject jobToStart)
{
JsonSerializerSettings settings = new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore };
string job = JsonConvert.SerializeObject(jobToStart, Formatting.Indented, settings);
var values = new Dictionary<string, string> { { "jpb", job } };
await this.MakeHttpPostRequest("StartEncode", values);
this.MonitorEncodeProgress();
}
public async void StopEncode()
{
this.StopPollingProgres();
await this.MakeHttpGetRequest("StopEncode");
}
public JsonState GetEncodeProgress()
{
Task<ServerResponse> response = this.MakeHttpGetRequest("PollEncodeProgress");
response.Wait();
if (!response.Result.WasSuccessful)
{
return null;
}
string statusJson = response.Result?.JsonResponse;
JsonState state = JsonConvert.DeserializeObject<JsonState>(statusJson);
return state;
}
public void Initialize(int verbosity, bool noHardware)
{
this.StartServer();
}
public void Dispose()
{
this.client?.Dispose();
this.workerProcess?.Dispose();
this.StopEncode();
this.StopServer();
}
private void StartServer()
{
if (this.workerProcess == null || this.workerProcess.HasExited)
{
this.workerProcess = new Process();
this.workerProcess.StartInfo =
new ProcessStartInfo("HandBrake.Worker.exe", string.Format("--port={0}", this.port))
{
WindowStyle = ProcessWindowStyle.Normal
};
this.workerProcess.Start();
this.workerProcess.Exited += this.WorkerProcess_Exited;
Debug.WriteLine("Worker Process Started. PID = {0}", this.workerProcess.Id);
}
}
private void MonitorEncodeProgress()
{
this.encodePollTimer = new Timer();
this.encodePollTimer.Interval = EncodePollIntervalMs;
this.encodePollTimer.Elapsed += (o, e) =>
{
try
{
this.PollEncodeProgress();
}
catch (Exception exc)
{
Debug.WriteLine(exc);
}
};
this.encodePollTimer.Start();
}
private void StopPollingProgres()
{
this.encodePollTimer?.Stop();
}
private void WorkerProcess_Exited(object sender, EventArgs e)
{
Debug.WriteLine("Worker Process has exited");
}
private void StopServer()
{
if (this.workerProcess != null && !this.workerProcess.HasExited)
{
this.workerProcess.Kill();
}
}
private async void PollEncodeProgress()
{
ServerResponse response = await this.MakeHttpGetRequest("PollEncodeProgress");
if (!response.WasSuccessful)
{
return;
}
string statusJson = response.JsonResponse;
JsonState state = JsonConvert.DeserializeObject<JsonState>(statusJson);
TaskState taskState = state != null ? TaskState.FromRepositoryValue(state.State) : null;
if (taskState != null && (taskState == TaskState.Working || taskState == TaskState.Muxing || taskState == TaskState.Searching))
{
if (this.EncodeProgress != null)
{
var progressEventArgs = new EncodeProgressEventArgs(
fractionComplete: state.Working.Progress,
currentFrameRate: state.Working.Rate,
averageFrameRate: state.Working.RateAvg,
estimatedTimeLeft: new TimeSpan(state.Working.Hours, state.Working.Minutes, state.Working.Seconds),
passId: state.Working.PassID,
pass: state.Working.Pass,
passCount: state.Working.PassCount,
stateCode: taskState.Code);
this.EncodeProgress(this, progressEventArgs);
}
}
else if (taskState != null && taskState == TaskState.WorkDone)
{
this.encodePollTimer.Stop();
this.EncodeCompleted?.Invoke(sender: this, e: new EncodeCompletedEventArgs(state.WorkDone.Error != 0));
}
}
private async Task<ServerResponse> MakeHttpPostRequest(string urlPath, Dictionary<string, string> postValues)
{
if (postValues == null || !postValues.Any())
{
throw new InvalidOperationException("No Post Values Found.");
}
if (postValues.Any())
{
FormUrlEncodedContent content = new FormUrlEncodedContent(postValues);
HttpResponseMessage response = await this.client.PostAsync(this.serverUrl + urlPath, content);
if (response != null)
{
string returnContent = await response.Content.ReadAsStringAsync();
ServerResponse serverResponse = new ServerResponse(response.IsSuccessStatusCode, returnContent);
return serverResponse;
}
}
return null;
}
private async Task<ServerResponse> MakeHttpGetRequest(string urlPath)
{
HttpResponseMessage response = await this.client.GetAsync(this.serverUrl + urlPath);
if (response != null)
{
string returnContent = await response.Content.ReadAsStringAsync();
ServerResponse serverResponse = new ServerResponse(response.IsSuccessStatusCode, returnContent);
return serverResponse;
}
return null;
}
}
}
|