1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using System.Text;
|
---|
26 | using HeuristicLab.Hive.Contracts.Interfaces;
|
---|
27 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
28 | using HeuristicLab.Hive.Contracts;
|
---|
29 | using HeuristicLab.PluginInfrastructure;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.Hive.Server.Core {
|
---|
32 | class ClientFacade: IClientFacade {
|
---|
33 |
|
---|
34 | private IClientCommunicator clientCommunicator =
|
---|
35 | ServiceLocator.GetClientCommunicator();
|
---|
36 |
|
---|
37 | #region IClientCommunicator Members
|
---|
38 |
|
---|
39 | public Response Login(ClientInfo clientInfo) {
|
---|
40 | return clientCommunicator.Login(clientInfo);
|
---|
41 | }
|
---|
42 |
|
---|
43 | public ResponseHB ProcessHeartBeat(HeartBeatData hbData) {
|
---|
44 | return clientCommunicator.ProcessHeartBeat(hbData);
|
---|
45 | }
|
---|
46 |
|
---|
47 | public ResponseJob SendJob(Guid clientId) {
|
---|
48 | return clientCommunicator.SendJob(clientId);
|
---|
49 | }
|
---|
50 |
|
---|
51 | public ResponseResultReceived StoreFinishedJobResult(Guid clientId,
|
---|
52 | Guid jobId,
|
---|
53 | byte[] result,
|
---|
54 | double percentage,
|
---|
55 | Exception exception) {
|
---|
56 | return clientCommunicator.StoreFinishedJobResult(clientId, jobId, result, percentage, exception);
|
---|
57 | }
|
---|
58 |
|
---|
59 | public Response Logout(Guid clientId) {
|
---|
60 | return clientCommunicator.Logout(clientId);
|
---|
61 | }
|
---|
62 |
|
---|
63 | public Response IsJobStillNeeded(Guid jobId) {
|
---|
64 | return clientCommunicator.IsJobStillNeeded(jobId);
|
---|
65 | }
|
---|
66 |
|
---|
67 | public ResponsePlugin SendPlugins(List<PluginInfo> pluginList) {
|
---|
68 | return clientCommunicator.SendPlugins(pluginList);
|
---|
69 | }
|
---|
70 |
|
---|
71 | public ResponseResultReceived ProcessSnapshot(Guid clientId, Guid jobId, byte[] result, double percentage, Exception exception) {
|
---|
72 | throw new NotImplementedException();
|
---|
73 | }
|
---|
74 |
|
---|
75 | #endregion
|
---|
76 | }
|
---|
77 | }
|
---|