Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ClientFacade.cs @ 1939

Last change on this file since 1939 was 1939, checked in by svonolfe, 15 years ago

Large amounts of data are now transferred streamed (fixed ticket #660)

File size: 3.8 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Hive.Contracts.Interfaces;
27using HeuristicLab.Hive.Contracts.BusinessObjects;
28using HeuristicLab.Hive.Contracts;
29using HeuristicLab.PluginInfrastructure;
30using System.IO;
31using System.Runtime.Serialization.Formatters.Binary;
32
33namespace HeuristicLab.Hive.Server.Core {
34  class ClientFacade: IClientFacade {
35
36    private IClientCommunicator clientCommunicator =
37      ServiceLocator.GetClientCommunicator();
38
39    #region IClientCommunicator Members
40
41    public Response Login(ClientInfo clientInfo) {
42      return clientCommunicator.Login(clientInfo);
43    }
44
45    public ResponseHB ProcessHeartBeat(HeartBeatData hbData) {
46      return clientCommunicator.ProcessHeartBeat(hbData);
47    }
48
49    public ResponseJob SendJob(Guid clientId) {
50      return clientCommunicator.SendJob(clientId);
51    }
52
53    public ResponseResultReceived StoreFinishedJobResult(Guid clientId,
54      Guid jobId,
55      byte[] result,
56      double percentage,
57      Exception exception) {
58      return clientCommunicator.StoreFinishedJobResult(clientId, jobId, result, percentage, exception);
59    }
60
61    public Response Logout(Guid clientId) {
62      return clientCommunicator.Logout(clientId);
63    }
64
65    public Response IsJobStillNeeded(Guid jobId) {
66      return clientCommunicator.IsJobStillNeeded(jobId);
67    }
68
69    public ResponsePlugin SendPlugins(List<HivePluginInfo> pluginList) {
70      return clientCommunicator.SendPlugins(pluginList);
71    }
72
73    public ResponseResultReceived ProcessSnapshot(Guid clientId, Guid jobId, byte[] result, double percentage, Exception exception) {
74      return clientCommunicator.ProcessSnapshot(clientId, jobId, result, percentage, exception);
75    }
76
77    #endregion
78
79    #region IClientFacade Members
80
81    public Stream SendStreamedJob(Guid clientId) {
82      return
83        new StreamedObject<ResponseJob>(
84          this.SendJob(clientId));
85    }
86
87    public Stream SendStreamedPlugins(List<HivePluginInfo> pluginList) {
88      return
89        new StreamedObject<ResponsePlugin>(
90          this.SendPlugins(pluginList));
91    }
92
93    public ResponseResultReceived StoreFinishedJobResultStreamed(Stream stream) {
94      BinaryFormatter formatter =
95          new BinaryFormatter();
96      JobResult result = (JobResult)formatter.Deserialize(stream);
97
98      return this.StoreFinishedJobResult(
99          result.ClientId,
100          result.JobId,
101          result.Result,
102          result.Percentage,
103          result.Exception);
104    }
105
106    public ResponseResultReceived ProcessSnapshotStreamed(Stream stream) {
107      BinaryFormatter formatter =
108          new BinaryFormatter();
109      JobResult result = (JobResult)formatter.Deserialize(stream);
110
111      return this.ProcessSnapshot(
112          result.ClientId,
113          result.JobId,
114          result.Result,
115          result.Percentage,
116          result.Exception);
117    }
118
119    #endregion
120  }
121}
Note: See TracBrowser for help on using the repository browser.