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
285
286
287
288
289
290
291
292
293
294
295
296
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ServerService.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>
// HandBrake WCF Service
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Services
{
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Windows;
using HandBrake.ApplicationServices.EventArgs;
using HandBrake.ApplicationServices.Parsing;
using HandBrake.ApplicationServices.Services.Interfaces;
/// <summary>
/// HandBrake WCF Service
/// </summary>
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, IncludeExceptionDetailInFaults = true, ConcurrencyMode = ConcurrencyMode.Single)]
public class ServerService : IServerService
{
#region Constants and Fields
/// <summary>
/// List of connected Clients. For now, this should only be one.
/// </summary>
private static readonly List<IHbServiceCallback> Subscribers = new List<IHbServiceCallback>();
/// <summary>
/// The scan service.
/// </summary>
private static IScan scanService;
/// <summary>
/// The host.
/// </summary>
private ServiceHost host;
#endregion
#region Implemented Interfaces
#region IServerService
/// <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)
{
Console.WriteLine("Starting Source Scan for: " + path);
scanService.ScanStared += this.ScanStaredHandler;
scanService.ScanStatusChanged += this.ScanStatusChangedHandler;
scanService.ScanCompleted += this.ScanCompletedHandler;
scanService.Scan(path, title, previewCount, null);
}
/// <summary>
/// Gets the activity log.
/// </summary>
[DataMember]
public string ActivityLog
{
get
{
return scanService.ActivityLog;
}
}
/// <summary>
/// Gets the souce data.
/// </summary>
[DataMember]
public Source SouceData
{
get
{
return scanService.SouceData;
}
}
/// <summary>
/// Gets a value indicating whether is scanning.
/// </summary>
[DataMember]
public bool IsScanning
{
get
{
return scanService.IsScanning;
}
}
/// <summary>
/// Start the service
/// </summary>
public void Start()
{
using (this.host = new ServiceHost(typeof(ServerService), new Uri("net.tcp://localhost:8000")))
{
// Setup a listener
this.host.AddServiceEndpoint(typeof(IServerService), new NetTcpBinding(), "IHbService");
this.host.Open();
Console.WriteLine("::: HandBrake Server :::");
Console.WriteLine("Service Started");
// Setup the services we are going to use.
scanService = new ScanService(new UserSettingService());
Console.ReadLine();
}
}
/// <summary>
/// Stop this service
/// </summary>
public void Stop()
{
if (this.host != null)
{
this.host.Close();
Application.Current.Shutdown();
}
}
/// <summary>
/// Stop the scan.
/// </summary>
public void StopScan()
{
scanService.Stop();
}
/// <summary>
/// The subscribe.
/// </summary>
/// <returns>
/// The System.Boolean.
/// </returns>
public bool Subscribe()
{
try
{
// Get the hashCode of the connecting app and store it as a connection
var callback = OperationContext.Current.GetCallbackChannel<IHbServiceCallback>();
if (!Subscribers.Contains(callback))
{
Console.WriteLine("Client Connected");
Subscribers.Add(callback);
}
return true;
}
catch (Exception e)
{
Console.WriteLine(e.Message);
return false;
}
}
/// <summary>
/// The unsubscribe.
/// </summary>
/// <returns>
/// The System.Boolean.
/// </returns>
public bool Unsubscribe()
{
try
{
var callback = OperationContext.Current.GetCallbackChannel<IHbServiceCallback>();
if (Subscribers.Contains(callback))
{
Subscribers.Remove(callback);
if (Subscribers.Count == 0)
{
Console.WriteLine("Client Disconnected, Shutting down...");
// Shutdown the service. We no longer have any clients to serve.
// It is the responsibility of the UI to maintain a subscription while this service is in use.
this.Stop();
}
}
return true;
}
catch
{
return false;
}
}
#endregion
#endregion
#region Methods
/// <summary>
/// The scan service scan completed event handler
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void ScanCompletedHandler(object sender, ScanCompletedEventArgs e)
{
Subscribers.ForEach(
delegate(IHbServiceCallback callback)
{
if (((ICommunicationObject)callback).State == CommunicationState.Opened)
{
Console.WriteLine("Scan Completed Callback");
callback.ScanCompletedCallback(e);
}
else
{
Subscribers.Remove(callback);
}
});
scanService.ScanStared -= this.ScanStaredHandler;
scanService.ScanStatusChanged -= this.ScanStatusChangedHandler;
scanService.ScanCompleted -= this.ScanCompletedHandler;
}
/// <summary>
/// The scan service scan stared.
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void ScanStaredHandler(object sender, EventArgs e)
{
Subscribers.ForEach(
delegate(IHbServiceCallback callback)
{
if (((ICommunicationObject)callback).State == CommunicationState.Opened)
{
Console.WriteLine("Scan Started Callback");
callback.ScanStartedCallback();
}
else
{
Subscribers.Remove(callback);
}
});
}
/// <summary>
/// The scan service scan status changed event handler
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
private void ScanStatusChangedHandler(object sender, ScanProgressEventArgs e)
{
Subscribers.ForEach(
delegate(IHbServiceCallback callback)
{
if (((ICommunicationObject)callback).State == CommunicationState.Opened)
{
Console.WriteLine("Scan Changed Callback");
callback.ScanProgressCallback(e);
}
else
{
Subscribers.Remove(callback);
}
});
}
#endregion
}
}
|