Free cookie consent management tool by TermsFeed Policy Generator

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

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

Fixed issue related to the streaming of results (#680)

File size: 4.4 KB
RevLine 
[1101]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;
[1445]29using HeuristicLab.PluginInfrastructure;
[1939]30using System.IO;
31using System.Runtime.Serialization.Formatters.Binary;
[1941]32using System.ServiceModel;
[2117]33using HeuristicLab.Hive.Server.Core.InternalInterfaces;
[1101]34
35namespace HeuristicLab.Hive.Server.Core {
[1941]36  [ServiceBehavior(InstanceContextMode =
37    InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple)]
[1101]38  class ClientFacade: IClientFacade {
39
40    private IClientCommunicator clientCommunicator =
41      ServiceLocator.GetClientCommunicator();
42
43    #region IClientCommunicator Members
44
45    public Response Login(ClientInfo clientInfo) {
46      return clientCommunicator.Login(clientInfo);
47    }
48
[1365]49    public ResponseHB ProcessHeartBeat(HeartBeatData hbData) {
50      return clientCommunicator.ProcessHeartBeat(hbData);
[1101]51    }
52
[1365]53    public ResponseJob SendJob(Guid clientId) {
54      return clientCommunicator.SendJob(clientId);
[1101]55    }
56
[2117]57    public ResponseSerializedJob SendSerializedJob(Guid clientId) {
58      return clientCommunicator.SendSerializedJob(clientId);
59    }
60
[1374]61    public ResponseResultReceived StoreFinishedJobResult(Guid clientId,
[1449]62      Guid jobId,
[1103]63      byte[] result,
[1133]64      double percentage,
[1374]65      Exception exception) {
66      return clientCommunicator.StoreFinishedJobResult(clientId, jobId, result, percentage, exception);
[1101]67    }
68
69    public Response Logout(Guid clientId) {
70      return clientCommunicator.Logout(clientId);
71    }
72
[1449]73    public Response IsJobStillNeeded(Guid jobId) {
[1369]74      return clientCommunicator.IsJobStillNeeded(jobId);
75    }
76
[1593]77    public ResponsePlugin SendPlugins(List<HivePluginInfo> pluginList) {
[1369]78      return clientCommunicator.SendPlugins(pluginList);
79    }
80
[1449]81    public ResponseResultReceived ProcessSnapshot(Guid clientId, Guid jobId, byte[] result, double percentage, Exception exception) {
[1600]82      return clientCommunicator.ProcessSnapshot(clientId, jobId, result, percentage, exception);
[1374]83    }
84
[1101]85    #endregion
[1939]86
87    #region IClientFacade Members
88
89    public Stream SendStreamedJob(Guid clientId) {
[2117]90      MultiStream stream =
91        new MultiStream();
92
93      ResponseJob job =
94        this.SendJob(clientId);
95
96      //first send response
97      stream.AddStream(
98        new StreamedObject<ResponseJob>(job));
99
100      IJobManager jobManager =
101        ServiceLocator.GetJobManager();
102
103      //second stream the job binary data
104      stream.AddStream(
105        ((IInternalJobManager)(jobManager)).
106        GetJobStreamById(
107          job.Job.Id));
108
109      OperationContext clientContext = OperationContext.Current;
110        clientContext.OperationCompleted += new EventHandler(delegate(object sender, EventArgs args) {
111          if (stream != null) {
112            stream.Dispose();
113          }
114        });
115
116      return stream;
[1939]117    }
118
119    public Stream SendStreamedPlugins(List<HivePluginInfo> pluginList) {
120      return
121        new StreamedObject<ResponsePlugin>(
122          this.SendPlugins(pluginList));
123    }
124
125    public ResponseResultReceived StoreFinishedJobResultStreamed(Stream stream) {
[2117]126      return ((IInternalClientCommunicator)
[2122]127        clientCommunicator).ProcessJobResult(stream, true);
[1939]128    }
129
130    public ResponseResultReceived ProcessSnapshotStreamed(Stream stream) {
[2117]131      return ((IInternalClientCommunicator)
[2122]132        clientCommunicator).ProcessJobResult(stream, false);
[1939]133    }
134
135    #endregion
[1101]136  }
137}
Note: See TracBrowser for help on using the repository browser.