Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Drivers/ExternalEvaluationStreamDriver.cs @ 3865

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

#866

  • Worked on view for ExternalEvaluationProcessDriver

#1019

  • Added missing events in SingleObjectiveTestFunctionProblem
File size: 3.2 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("ExternalEvaluationStreamDriver", "A driver for external evaluation problems that communicates via an input and an output stream.")]
30  [StorableClass]
31  public class ExternalEvaluationStreamDriver : ExternalEvaluationDriver {
32    public override bool CanChangeName { get { return false; } }
33    public override bool CanChangeDescription { get { return false; } }
34
35    private CodedInputStream inputStream;
36    private Stream input;
37    private CodedOutputStream outputStream;
38    private Stream output;
39
40    public ExternalEvaluationStreamDriver() : base() { }
41    public ExternalEvaluationStreamDriver(Stream input, Stream output)
42      : base() {
43      if (!input.CanRead) throw new ArgumentException("Input stream cannot be read", "input");
44      this.inputStream = CodedInputStream.CreateInstance(input);
45      this.input = input;
46      if (!output.CanWrite) throw new ArgumentException("Output stream cannot be written", "output");
47      this.outputStream = CodedOutputStream.CreateInstance(output);
48      this.output = output;
49    }
50
51    #region Overrides
52    public override QualityMessage Evaluate(SolutionMessage solution) {
53      solution.WriteTo(outputStream);
54      outputStream.Flush();
55      output.Flush();
56      QualityMessage message = QualityMessage.ParseFrom(inputStream);
57      return message;
58    }
59
60    public override void EvaluateAsync(SolutionMessage solution, Action<QualityMessage> callback) {
61      solution.WriteTo(outputStream);
62      outputStream.Flush();
63      output.Flush();
64      System.Threading.ThreadPool.QueueUserWorkItem(new System.Threading.WaitCallback(ReceiveAsync), callback);
65    }
66
67    public override void Stop() {
68      base.Stop();
69      inputStream = null;
70      input.Close();
71      outputStream = null;
72      output.Close();
73    }
74    #endregion
75
76    private void ReceiveAsync(object callback) {
77      QualityMessage message;
78      lock (inputStream) { // only one thread can read from the stream at one time
79        message = QualityMessage.ParseFrom(inputStream);
80      }
81      ((Action<QualityMessage>)callback).Invoke(message);
82    }
83  }
84}
Note: See TracBrowser for help on using the repository browser.