Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/3.3/Collections/DirectedGraph/DirectedGraph.cs @ 11248

Last change on this file since 11248 was 11248, checked in by bburlacu, 10 years ago

#2223: Added item attributes and firing of events in the DirectedGraph.

File size: 5.9 KB
RevLine 
[10267]1#region License Information
2/* HeuristicLab
[10278]3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[10267]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.Drawing;
25using System.Linq;
26using HeuristicLab.Common;
[11241]27using HeuristicLab.Common.Resources;
[10267]28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
[11241]30namespace HeuristicLab.Core {
[10278]31  [Item("DirectedGraph", "Generic class representing a directed graph with custom vertices and content")]
[10267]32  [StorableClass]
[10300]33  public class DirectedGraph : Item, IDirectedGraph {
[11241]34    public override Image ItemImage { get { return VSImageLibrary.Graph; } }
35
36    private HashSet<IVertex> vertices;
[10267]37    [Storable]
[10903]38    public IEnumerable<IVertex> Vertices {
39      get { return vertices; }
[11229]40      private set { vertices = new HashSet<IVertex>(value); }
[10267]41    }
[10884]42
[11241]43    private HashSet<IArc> arcs;
[10300]44    [Storable]
[10903]45    public IEnumerable<IArc> Arcs {
46      get { return arcs; }
[11229]47      private set { arcs = new HashSet<IArc>(value); }
[10903]48    }
49
[11241]50    public DirectedGraph() {
51      vertices = new HashSet<IVertex>();
52      arcs = new HashSet<IArc>();
53    }
54
55    protected DirectedGraph(DirectedGraph original, Cloner cloner)
56      : base(original, cloner) {
57      vertices = new HashSet<IVertex>(original.vertices.Select(cloner.Clone));
58      arcs = new HashSet<IArc>(original.arcs.Select(cloner.Clone));
59    }
60
61    public override IDeepCloneable Clone(Cloner cloner) {
62      return new DirectedGraph(this, cloner);
63    }
64
[10897]65    [StorableConstructor]
66    protected DirectedGraph(bool serializing)
67      : base(serializing) {
68    }
69
[10903]70    [StorableHook(HookType.AfterDeserialization)]
71    private void AfterDeserialization() {
[11229]72      foreach (var vertex in vertices) {
[11248]73        vertex.ArcAdded += OnVertexArcAdded;
74        vertex.ArcRemoved += OnVertexArcRemoved;
[10903]75      }
76
[11229]77      foreach (var arc in arcs) {
78        var source = arc.Source;
79        var target = arc.Target;
80        source.AddArc(arc);
81        target.AddArc(arc);
[10903]82      }
83    }
84
[11229]85    public virtual void Clear() {
86      vertices.Clear();
87      arcs.Clear();
[10267]88    }
89
[11229]90    public virtual void AddVertex(IVertex vertex) {
91      vertices.Add(vertex);
92      // register event handlers
[11248]93      vertex.ArcAdded += OnVertexArcAdded;
94      vertex.ArcRemoved += OnVertexArcRemoved;
95      OnVertedAdded(this, EventArgs.Empty);
[10300]96    }
[10884]97
[11229]98    public virtual void RemoveVertex(IVertex vertex) {
99      vertices.Remove(vertex);
100      // remove connections to/from the removed vertex
[11238]101      var arcList = vertex.InArcs.Concat(vertex.OutArcs).ToList(); // avoid invalid operation exception: "collection was modified" below
[11234]102      foreach (var arc in arcList)
[11229]103        RemoveArc(arc);
104      // deregister event handlers
[11248]105      vertex.ArcAdded -= OnVertexArcAdded;
106      vertex.ArcRemoved -= OnVertexArcRemoved;
107      OnVertexRemoved(this, EventArgs.Empty); // do not pass the removed vertex in the event as we don't need it anymore
[10884]108    }
109
[11241]110    public virtual IArc AddArc(IVertex source, IVertex target) {
[11229]111      var arc = new Arc(source, target);
112      AddArc(arc);
113      return arc;
[10300]114    }
[10897]115
[11241]116    public virtual void AddArc(IArc arc) {
[11229]117      var source = (Vertex)arc.Source;
118      var target = (Vertex)arc.Target;
119      source.AddArc(arc);
120      target.AddArc(arc);
121      arcs.Add(arc);
[11248]122      OnArcAdded(this, EventArgs.Empty);
[10267]123    }
[10897]124
[11241]125    public virtual void RemoveArc(IArc arc) {
[11229]126      arcs.Remove(arc);
127      var source = (Vertex)arc.Source;
128      var target = (Vertex)arc.Target;
129      source.RemoveArc(arc);
130      target.RemoveArc(arc);
[11248]131      OnArcRemoved(this, EventArgs.Empty);
[10267]132    }
[10897]133
[11248]134    protected virtual void OnVertexArcAdded(object sender, EventArgs<IArc> args) {
[11229]135      var arc = args.Value;
[11248]136      // the ArcAdded event is fired by a vertex when an arc from/to another vertex is added to its list of connections
[11229]137      // because the arc is added in both directions by both the source and the target, this event will get fired twice
138      // here, we only want to add the arc once, so if its already contained, we return without complaining
139      if (arcs.Contains(arc)) return;
[10903]140      arcs.Add(arc);
[10888]141    }
142
[11248]143    protected virtual void OnVertexArcRemoved(object sender, EventArgs<IArc> args) {
[11229]144      var arc = args.Value;
145      if (!arcs.Contains(arc)) return; // the same rationale as above
146      arcs.Remove(arc);
[10267]147    }
[10888]148
[11238]149    // events
150    public event EventHandler VertexAdded;
[11248]151    protected virtual void OnVertedAdded(object sender, EventArgs args) {
152      var added = VertexAdded;
153      if (added != null)
154        added(sender, args);
155    }
156
[11238]157    public event EventHandler VertexRemoved;
[11248]158    protected virtual void OnVertexRemoved(object sender, EventArgs args) {
159      var removed = VertexRemoved;
160      if (removed != null)
161        removed(sender, args);
162    }
163
164    public event EventHandler ArcAdded;
165    protected virtual void OnArcAdded(object sender, EventArgs args) {
166      var added = ArcAdded;
167      if (added != null)
168        added(sender, args);
169    }
170
171    public event EventHandler ArcRemoved;
172    protected virtual void OnArcRemoved(object sender, EventArgs args) {
173      var removed = ArcRemoved;
174      if (removed != null)
175        removed(sender, args);
176    }
[10267]177  }
178}
Note: See TracBrowser for help on using the repository browser.