Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 11249 was 11249, checked in by mkommend, 10 years ago

#2223: Minor code changes in DirectedGraph (renaming of methods, code simplification).

File size: 5.7 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 System;
23using System.Collections.Generic;
24using System.Drawing;
25using System.Linq;
26using HeuristicLab.Common;
27using HeuristicLab.Common.Resources;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Core {
31  [Item("DirectedGraph", "Generic class representing a directed graph with custom vertices and content")]
32  [StorableClass]
33  public class DirectedGraph : Item, IDirectedGraph {
34    public override Image ItemImage { get { return VSImageLibrary.Graph; } }
35
36    private HashSet<IVertex> vertices;
37    [Storable]
38    public IEnumerable<IVertex> Vertices {
39      get { return vertices; }
40      private set { vertices = new HashSet<IVertex>(value); }
41    }
42
43    private HashSet<IArc> arcs;
44    [Storable]
45    public IEnumerable<IArc> Arcs {
46      get { return arcs; }
47      private set { arcs = new HashSet<IArc>(value); }
48    }
49
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
65    [StorableConstructor]
66    protected DirectedGraph(bool serializing)
67      : base(serializing) {
68    }
69
70    [StorableHook(HookType.AfterDeserialization)]
71    private void AfterDeserialization() {
72      foreach (var vertex in vertices) {
73        vertex.ArcAdded += Vertex_ArcAdded;
74        vertex.ArcRemoved += Vertex_ArcRemoved;
75      }
76
77      foreach (var arc in arcs) {
78        var source = arc.Source;
79        var target = arc.Target;
80        source.AddArc(arc);
81        target.AddArc(arc);
82      }
83    }
84
85    public virtual void Clear() {
86      vertices.Clear();
87      arcs.Clear();
88    }
89
90    public virtual void AddVertex(IVertex vertex) {
91      vertices.Add(vertex);
92      // register event handlers
93      vertex.ArcAdded += Vertex_ArcAdded;
94      vertex.ArcRemoved += Vertex_ArcRemoved;
95      OnVertedAdded(this, new EventArgs<IVertex>(vertex));
96    }
97
98    public virtual void RemoveVertex(IVertex vertex) {
99      vertices.Remove(vertex);
100      // remove connections to/from the removed vertex
101      var arcList = vertex.InArcs.Concat(vertex.OutArcs).ToList(); // avoid invalid operation exception: "collection was modified" below
102      foreach (var arc in arcList)
103        RemoveArc(arc);
104      // deregister event handlers
105      vertex.ArcAdded -= Vertex_ArcAdded;
106      vertex.ArcRemoved -= Vertex_ArcRemoved;
107      OnVertexRemoved(this, new EventArgs<IVertex>(vertex));
108    }
109
110    public virtual IArc AddArc(IVertex source, IVertex target) {
111      var arc = new Arc(source, target);
112      AddArc(arc);
113      return arc;
114    }
115
116    public virtual void AddArc(IArc arc) {
117      var source = (Vertex)arc.Source;
118      var target = (Vertex)arc.Target;
119      source.AddArc(arc);
120      target.AddArc(arc);
121      arcs.Add(arc);
122    }
123
124    public virtual void RemoveArc(IArc arc) {
125      arcs.Remove(arc);
126      var source = (Vertex)arc.Source;
127      var target = (Vertex)arc.Target;
128      source.RemoveArc(arc);
129      target.RemoveArc(arc);
130    }
131
132    protected virtual void Vertex_ArcAdded(object sender, EventArgs<IArc> args) {
133      // the ArcAdded event is fired by a vertex when an arc from/to another vertex is added to its list of connections
134      // because the arc is added in both directions by both the source and the target, this event will get fired twice here
135      var arc = args.Value;
136      if (arcs.Add(arc)) OnArcAdded(this, new EventArgs<IArc>(arc));
137    }
138
139    protected virtual void Vertex_ArcRemoved(object sender, EventArgs<IArc> args) {
140      var arc = args.Value;
141      if (arcs.Remove(arc)) OnArcRemoved(this, new EventArgs<IArc>(arc));
142    }
143
144    // events
145    public event EventHandler VertexAdded;
146    protected virtual void OnVertedAdded(object sender, EventArgs<IVertex> args) {
147      var added = VertexAdded;
148      if (added != null)
149        added(sender, args);
150    }
151
152    public event EventHandler VertexRemoved;
153    protected virtual void OnVertexRemoved(object sender, EventArgs<IVertex> args) {
154      var removed = VertexRemoved;
155      if (removed != null)
156        removed(sender, args);
157    }
158
159    public event EventHandler ArcAdded;
160    protected virtual void OnArcAdded(object sender, EventArgs<IArc> args) {
161      var added = ArcAdded;
162      if (added != null)
163        added(sender, args);
164    }
165
166    public event EventHandler ArcRemoved;
167    protected virtual void OnArcRemoved(object sender, EventArgs<IArc> args) {
168      var removed = ArcRemoved;
169      if (removed != null)
170        removed(sender, args);
171    }
172  }
173}
Note: See TracBrowser for help on using the repository browser.