Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/Transformation.cs @ 16628

Last change on this file since 16628 was 16628, checked in by gkronber, 5 years ago

#2971: made branch compile with current version of trunk

File size: 3.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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.Collections.Generic;
23using System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29using HEAL.Attic;
30
31namespace HeuristicLab.Problems.DataAnalysis {
32
33  [Item("Transformation", "Represents the base class for a transformation.")]
34  [StorableType("1EC26D29-A49D-4928-A982-F54641C8186A")]
35  public abstract class Transformation : ParameterizedNamedItem, ITransformation {
36    protected const string ColumnParameterName = "Column";
37    #region parameter properties
38    public IConstrainedValueParameter<StringValue> ColumnParameter {
39      get { return (IConstrainedValueParameter<StringValue>)Parameters[ColumnParameterName]; }
40    }
41    #endregion
42
43    #region properties
44    public abstract string ShortName { get; }
45
46    public string Column {
47      get { return ColumnParameter.Value.Value; }
48    }
49    #endregion
50
51    [StorableConstructor]
52    protected Transformation(StorableConstructorFlag _) : base(_) { }
53    protected Transformation(Transformation original, Cloner cloner) : base(original, cloner) { }
54    protected Transformation(IEnumerable<string> allowedColumns) {
55      var allowed = new ItemSet<StringValue>(allowedColumns.Select(e => new StringValue(e)));
56      Parameters.Add(new ConstrainedValueParameter<StringValue>(ColumnParameterName, "Column used for the Transformation", allowed));
57    }
58  }
59
60  [Item("Transformation", "Represents the base class for a transformation.")]
61  [StorableType("F3B02F56-5133-4A66-A834-11FD63D89358")]
62  public abstract class Transformation<T> : Transformation, ITransformation<T> {
63
64    [StorableConstructor]
65    protected Transformation(StorableConstructorFlag _) : base(_) { }
66    protected Transformation(Transformation<T> original, Cloner cloner) : base(original, cloner) { }
67    protected Transformation(IEnumerable<string> allowedColumns) : base(allowedColumns) { }
68
69    public virtual void ConfigureParameters(IEnumerable<T> data) {
70      // override in transformations with parameters
71    }
72
73    public abstract IEnumerable<T> Apply(IEnumerable<T> data);
74    public IEnumerable<T> ConfigureAndApply(IEnumerable<T> data) {
75      ConfigureParameters(data);
76      return Apply(data);
77    }
78
79    public abstract bool Check(IEnumerable<T> data, out string errorMsg);
80  }
81}
Note: See TracBrowser for help on using the repository browser.