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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BackgroundServiceConnector.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>
// Background Service Connector.
// HandBrake has the ability to connect to a service app that will control HandBrakeCLI or Libhb.
// This acts as process isolation.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Isolation
{
using System;
using System.Diagnostics;
using System.ServiceModel;
using System.Threading;
using HandBrake.ApplicationServices.EventArgs;
using HandBrake.ApplicationServices.Services.Interfaces;
using HandBrakeWPF.Services.Interfaces;
/// <summary>
/// Background Service Connector.
/// HandBrake has the ability to connect to a service app that will control HandBrakeCLI or Libhb.
/// This acts as process isolation.
/// </summary>
public class BackgroundServiceConnector : IHbServiceCallback, IDisposable
{
#region Constants and Fields
/// <summary>
/// The error service.
/// </summary>
private readonly IErrorService errorService;
/// <summary>
/// The user setting service.
/// </summary>
private readonly IUserSettingService userSettingService;
/// <summary>
/// Gets or sets the pipe factory.
/// DuplexChannelFactory is necessary for Callbacks.
/// </summary>
private static DuplexChannelFactory<IServerService> pipeFactory;
/// <summary>
/// The background process.
/// </summary>
private static Process backgroundProcess;
#endregion
#region Properties
/// <summary>
/// Initializes a new instance of the <see cref="BackgroundServiceConnector"/> class.
/// </summary>
/// <param name="errorService">
/// The error service.
/// </param>
/// <param name="userSettingService">
/// The user Setting Service.
/// </param>
public BackgroundServiceConnector(IErrorService errorService, IUserSettingService userSettingService)
{
this.errorService = errorService;
this.userSettingService = userSettingService;
}
/// <summary>
/// Gets or sets a value indicating whether is connected.
/// </summary>
public bool IsConnected { get; set; }
/// <summary>
/// Gets or sets the service.
/// </summary>
public IServerService Service { get; set; }
#endregion
#region Public Server Management Methods
/// <summary>
/// The can connect.
/// </summary>
/// <returns>
/// The System.Boolean.
/// </returns>
public bool CanConnect()
{
return true;
}
/// <summary>
/// The connect.
/// </summary>
public void Connect()
{
string port = this.userSettingService.GetUserSetting<string>(UserSettingConstants.ServerPort);
if (backgroundProcess == null)
{
ProcessStartInfo processStartInfo = new ProcessStartInfo(
"HandBrake.Server.exe", port)
{
UseShellExecute = false,
CreateNoWindow = false,
};
backgroundProcess = new Process { StartInfo = processStartInfo };
backgroundProcess.Start();
}
ThreadPool.QueueUserWorkItem(delegate
{
try
{
pipeFactory = new DuplexChannelFactory<IServerService>(
new InstanceContext(this),
new NetTcpBinding(),
new EndpointAddress(string.Format("net.tcp://127.0.0.1:{0}/IHbService", port)));
// Connect and Subscribe to the Server
Service = pipeFactory.CreateChannel();
Service.Subscribe();
IsConnected = true;
}
catch (Exception exc)
{
Caliburn.Micro.Execute.OnUIThread(() => this.errorService.ShowError("Unable to connect to background worker service", "Please restart HandBrake", exc));
}
});
}
/// <summary>
/// The disconnect.
/// </summary>
public void Disconnect()
{
if (backgroundProcess != null && !backgroundProcess.HasExited)
{
try
{
Service.Unsubscribe();
}
catch (Exception exc)
{
this.errorService.ShowError("Unable to disconnect from service", "It may have already close. Check for any left over HandBrake.Server.exe processes", exc);
}
}
}
#endregion
#region Public Service Methods
///// <summary>
///// The scan source.
///// </summary>
///// <param name="path">
///// The path.
///// </param>
///// <param name="title">
///// The title.
///// </param>
///// <param name="previewCount">
///// The preview count.
///// </param>
//public void ScanSource(string path, int title, int previewCount)
//{
// ThreadPool.QueueUserWorkItem(delegate { this.Service.ScanSource(path, title, previewCount); });
//}
///// <summary>
///// The stop scan.
///// </summary>
//public void StopScan()
//{
// ThreadPool.QueueUserWorkItem(delegate { this.Service.StopScan(); });
//}
///// <summary>
///// Start an Encode
///// </summary>
///// <param name="job">
///// The job.
///// </param>
///// <param name="enableLogging">
///// The enable logging.
///// </param>
//public void StartEncode(QueueTask job, bool enableLogging)
//{
// ThreadPool.QueueUserWorkItem(delegate { this.Service.StartEncode(job, enableLogging); });
//}
///// <summary>
///// Stop an Encode
///// </summary>
//public void StopEncode()
//{
// ThreadPool.QueueUserWorkItem(delegate { this.Service.StopEncode(); });
//}
#endregion
#region Implemented Interfaces
#region IDisposable
/// <summary>
/// The dispose.
/// </summary>
public void Dispose()
{
Service.Unsubscribe();
}
#endregion
#region IHbServiceCallback
/// <summary>
/// The scan completed.
/// </summary>
/// <param name="eventArgs">
/// The event args.
/// </param>
public virtual void ScanCompletedCallback(ScanCompletedEventArgs eventArgs)
{
}
/// <summary>
/// The scan progress.
/// </summary>
/// <param name="eventArgs">
/// The event args.
/// </param>
public virtual void ScanProgressCallback(ScanProgressEventArgs eventArgs)
{
}
/// <summary>
/// The scan started callback.
/// </summary>
public virtual void ScanStartedCallback()
{
}
/// <summary>
/// The encode progress callback.
/// </summary>
/// <param name="eventArgs">
/// The event Args.
/// </param>
public virtual void EncodeProgressCallback(EncodeProgressEventArgs eventArgs)
{
}
/// <summary>
/// The encode completed callback.
/// </summary>
/// <param name="eventArgs">
/// The event Args.
/// </param>
public virtual void EncodeCompletedCallback(EncodeCompletedEventArgs eventArgs)
{
}
/// <summary>
/// The encode started callback.
/// </summary>
public virtual void EncodeStartedCallback()
{
}
#endregion
#endregion
}
}
|