Free cookie consent management tool by TermsFeed Policy Generator

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

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

#866

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