Free cookie consent management tool by TermsFeed Policy Generator

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

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

#866

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