Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Drivers/EvaluationStreamChannel.cs @ 3872

Last change on this file since 3872 was 3872, checked in by abeham, 14 years ago

#866

  • Updated ExternalEvaluationProblem
  • Removed the custom crossover, manipulator, and solution creator (they're replaced with the UserDefined ones)
  • Renamed all drivers to channels
  • Added a client that takes the role of the previous driver
  • Moved the BestScopeSolutionAnalyzer into Analysis (it's a generic operator after all)
File size: 2.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.IO;
24using Google.ProtocolBuffers;
25using HeuristicLab.Core;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Problems.ExternalEvaluation {
29  [Item("EvaluationStreamChannel", "A channel that communicates via an input and an output stream.")]
30  [StorableClass]
31  public class EvaluationStreamChannel : EvaluationChannel {
32
33    private Stream input;
34    private Stream output;
35
36    public EvaluationStreamChannel() : base() { }
37    public EvaluationStreamChannel(Stream input, Stream output)
38      : base() {
39      if (!input.CanRead) throw new ArgumentException("Input stream cannot be read", "input");
40      this.input = input;
41      if (!output.CanWrite) throw new ArgumentException("Output stream cannot be written", "output");
42      this.output = output;
43    }
44
45    #region IExternalEvaluationChannel Members
46
47    public override void Send(IMessage solution) {
48      lock (output) {
49        solution.WriteDelimitedTo(output);
50        output.Flush();
51      }
52    }
53
54    public override IMessage Receive(IBuilder builder) {
55      QualityMessage message;
56      lock (input) { // only one thread can read from the stream at one time
57        message = QualityMessage.ParseDelimitedFrom(input);
58      }
59      return message;
60    }
61
62    public override void Close() {
63      base.Close();
64      input.Close();
65      output.Close();
66    }
67
68    #endregion
69  }
70}
Note: See TracBrowser for help on using the repository browser.