Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Converters/BoolConverter.cs @ 14927

Last change on this file since 14927 was 14927, checked in by gkronber, 7 years ago

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File size: 3.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Persistence;
28
29namespace HeuristicLab.Problems.ExternalEvaluation {
30  [Item("BoolConverter", "Converts a ValueTypeValue<bool>, ValueTypeArray<bool>, or ValueTypeMatrix<bool> and adds it to the SolutionMessage's BoolVars or BoolArrayVars. A matrix is encoded as array by concatenating all rows and setting length as the length of a row.")]
31  [StorableType("cbb2f15b-e753-4e55-ae88-e593ca1f9599")]
32  public class BoolConverter : Item, IItemToSolutionMessageConverter {
33    private static readonly Type[] itemTypes = new Type[] { typeof(ValueTypeValue<bool>), typeof(ValueTypeArray<bool>), typeof(ValueTypeMatrix<bool>) };
34    [StorableConstructor]
35    protected BoolConverter(bool deserializing) : base(deserializing) { }
36    protected BoolConverter(BoolConverter original, Cloner cloner) : base(original, cloner) { }
37    public override IDeepCloneable Clone(Cloner cloner) {
38      return new BoolConverter(this, cloner);
39    }
40    public BoolConverter() : base() { }
41
42    #region IItemToSolutionMessageConverter Members
43
44    public Type[] ItemTypes {
45      get { return itemTypes; }
46    }
47
48    public void AddItemToBuilder(IItem item, string name, SolutionMessage.Builder builder) {
49      ValueTypeValue<bool> value = (item as ValueTypeValue<bool>);
50      if (value != null) {
51        SolutionMessage.Types.BoolVariable.Builder var = SolutionMessage.Types.BoolVariable.CreateBuilder();
52        var.SetName(name).SetData(value.Value);
53        builder.AddBoolVars(var.Build());
54      } else {
55        ValueTypeArray<bool> array = (item as ValueTypeArray<bool>);
56        if (array != null) {
57          SolutionMessage.Types.BoolArrayVariable.Builder var = SolutionMessage.Types.BoolArrayVariable.CreateBuilder();
58          var.SetName(name).AddRangeData(array).SetLength(array.Length);
59          builder.AddBoolArrayVars(var.Build());
60        } else {
61          ValueTypeMatrix<bool> matrix = (item as ValueTypeMatrix<bool>);
62          if (matrix != null) {
63            SolutionMessage.Types.BoolArrayVariable.Builder var = SolutionMessage.Types.BoolArrayVariable.CreateBuilder();
64            var.SetName(name).AddRangeData(matrix.AsEnumerable()).SetLength(matrix.Columns);
65            builder.AddBoolArrayVars(var.Build());
66          } else {
67            throw new ArgumentException(ItemName + ": Item is not of a supported type.", "item");
68          }
69        }
70      }
71    }
72
73    #endregion
74  }
75}
Note: See TracBrowser for help on using the repository browser.