Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/InputPort.cs @ 11452

Last change on this file since 11452 was 11452, checked in by swagner, 10 years ago

#2205: Worked on optimization networks

File size: 3.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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 HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
25using System;
26using System.Drawing;
27
28namespace HeuristicLab.Optimization.Networks {
29  [Item("InputPort", "An asynchronous input port of an optimization network node.")]
30  [StorableClass]
31  public class InputPort<T> : ValuePort<T>, IInputPort<T> where T : class, IItem {
32    public static new Image StaticItemImage {
33      get { return HeuristicLab.Common.Resources.VSImageLibrary.ArrowDown; }
34    }
35
36    [Storable]
37    private IOutputPort<T> outputPort;
38    public IOutputPort<T> OutputPort {
39      get { return outputPort; }
40      set {
41        if (outputPort != value) {
42          DeregisterOutputPortEvents();
43          outputPort = value;
44          RegisterOutputPortEvents();
45          OnOutputPortChanged();
46          UpdateValue();
47        }
48      }
49    }
50    IOutputPort IInputPort.OutputPort {
51      get { return outputPort; }
52      set {
53        var val = value as IOutputPort<T>;
54        if ((value != null) && (val == null))
55          throw new InvalidOperationException(
56            string.Format("Type mismatch. OutputPort is not a \"{0}\".",
57                          typeof(IOutputPort<T>).GetPrettyName())
58          );
59        OutputPort = val;
60      }
61    }
62
63    [StorableConstructor]
64    protected InputPort(bool deserializing) : base(deserializing) { }
65    protected InputPort(InputPort<T> original, Cloner cloner) : base(original, cloner) {
66      outputPort = cloner.Clone(original.outputPort);
67      RegisterOutputPortEvents();
68    }
69    public InputPort() : base("InputPort") { }
70    public InputPort(string name) : base(name) { }
71    public InputPort(string name, string description) : base(name, description) { }
72
73    [StorableHook(HookType.AfterDeserialization)]
74    private void AfterDeserialization() {
75      RegisterOutputPortEvents();
76    }
77
78    public override IDeepCloneable Clone(Cloner cloner) {
79      return new InputPort<T>(this, cloner);
80    }
81
82    protected virtual void UpdateValue() {
83      if (OutputPort != null) {
84        var value = OutputPort.Value;
85        if (value != null)
86          value = (T)value.Clone();
87        Value = value;
88        //DISCUSS: clone value?
89        //DISCUSS: switch threads to decouple value propagation and to make communication asynchronous -> should be done in Node?
90      }
91    }
92
93    public event EventHandler OutputPortChanged;
94    protected void OnOutputPortChanged() {
95      var handler = OutputPortChanged;
96      if (handler != null) handler(this, EventArgs.Empty);
97    }
98
99    protected void RegisterOutputPortEvents() {
100      if (outputPort != null) {
101        outputPort.ValueChanged += OutputPort_ValueChanged;
102      }
103    }
104    protected void DeregisterOutputPortEvents() {
105      if (outputPort != null) {
106        outputPort.ValueChanged -= OutputPort_ValueChanged;
107      }
108    }
109    protected void OutputPort_ValueChanged(object sender, EventArgs e) {
110      UpdateValue();
111    }
112  }
113}
Note: See TracBrowser for help on using the repository browser.