Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Logging/Logger.cs @ 283

Last change on this file since 283 was 283, checked in by gkronber, 16 years ago
  • added a more generic logging operator that allows to specify which variable to read from the sub-scopes and log.
  • changed LogView to display entries by calling .ToString() instead of the hard-coded cast to DoubleArrayData.
File size: 2.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.Text;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Operators;
28
29namespace HeuristicLab.Logging {
30  public class Logger : OperatorBase {
31    public override string Description {
32      get { return @"TODO\r\nOperator description still missing ..."; }
33    }
34
35    public Logger()
36      : base() {
37      AddVariableInfo(new VariableInfo("Value", "The value that should be logged", typeof(ObjectData), VariableKind.In));
38      AddVariableInfo(new VariableInfo("Log", "Log into which the values are written", typeof(Log), VariableKind.In | VariableKind.Out | VariableKind.New));
39    }
40
41    public override IOperation Apply(IScope scope) {
42      ObjectData[] values = new ObjectData[scope.SubScopes.Count];
43
44      for (int i = 0; i < scope.SubScopes.Count; i++)
45        values[i] = scope.SubScopes[i].GetVariableValue<ObjectData>("Value", false);
46
47      Log log = GetVariableValue<Log>("Log", scope, false, false);
48      if (log == null) {
49        log = new Log(new ItemList());
50        IVariableInfo info = GetVariableInfo("Log");
51        if (info.Local)
52          AddVariable(new Variable(info.ActualName, log));
53        else
54          scope.AddVariable(new Variable(scope.TranslateName(info.FormalName), log));
55      }
56      ItemList row = new ItemList();
57      row.AddRange(values);
58      log.Items.Add(row);
59
60      return null;
61    }
62  }
63}
Note: See TracBrowser for help on using the repository browser.