LocalGraphView.java 7.94 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (c) 2005-2010 KOM – Multimedia Communications Lab
 *
 * This file is part of PeerfactSim.KOM.
 * 
 * PeerfactSim.KOM is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * any later version.
 * 
 * PeerfactSim.KOM is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with PeerfactSim.KOM.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

21
package de.tud.kom.p2psim.impl.topology.util;
22
23
24
25
26
27
28
29
30
31

import java.util.List;
import java.util.Set;

import de.tud.kom.p2psim.api.common.SimHost;
import de.tud.kom.p2psim.api.linklayer.mac.MacAddress;
import de.tud.kom.p2psim.api.linklayer.mac.MacLayer;
import de.tud.kom.p2psim.api.linklayer.mac.PhyType;
import de.tud.kom.p2psim.api.topology.Topology;
import de.tud.kom.p2psim.api.topology.views.TopologyView;
32
import de.tud.kom.p2psim.impl.topology.component.DefaultTopologyComponent;
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import de.tudarmstadt.maki.simonstrator.api.Graphs;
import de.tudarmstadt.maki.simonstrator.api.Host;
import de.tudarmstadt.maki.simonstrator.api.Oracle;
import de.tudarmstadt.maki.simonstrator.api.common.graph.Graph;
import de.tudarmstadt.maki.simonstrator.api.common.graph.IEdge;
import de.tudarmstadt.maki.simonstrator.api.common.graph.INode;
import de.tudarmstadt.maki.simonstrator.api.component.ComponentNotAvailableException;
import de.tudarmstadt.maki.simonstrator.api.component.network.NetInterface;
import de.tudarmstadt.maki.simonstrator.api.component.network.NetworkComponent.NetInterfaceName;
import de.tudarmstadt.maki.simonstrator.api.component.sensor.location.Location;
import de.tudarmstadt.maki.simonstrator.api.component.sensor.location.LocationListener;
import de.tudarmstadt.maki.simonstrator.api.component.sis.type.SiSTypes;
import de.tudarmstadt.maki.simonstrator.api.component.transport.ConnectivityListener;

/**
 * This is calculated based on global knowledge. It only registers as
 * {@link LocationListener}, if a range is specified by the Provider.
 *
 * @author Bjoern Richerzhagen
 * @version 1.0, May 13, 2015
 */
public class LocalGraphView implements LocationListener, ConnectivityListener {

	/**
	 * Marker: has there been any movement since the graph view was last
	 * requested? If so: recalculate! Otherwise, we ignore this object to
	 * not perform calculations if no one is interested...
	 */
	private final double distance;

	private final boolean isDistanceBased;

	private final NetInterfaceName medium;

	private final TopologyView topoView;

	private final boolean onlyOnline;

	private Graph currentView;

	private boolean isInvalid = true;

	private final PhyType phy;

	public LocalGraphView(NetInterfaceName medium, boolean onlyOnline, Topology topology) {
		this(medium, onlyOnline, -1, topology);
	}

	public LocalGraphView(NetInterfaceName medium, boolean onlyOnline,
			double distance, Topology topology) {
		this.medium = medium;
		PhyType localPhy = null;
		for (PhyType currPhy : PhyType.values()) {
			if (currPhy.getNetInterfaceName() == medium
					&& topology.getTopologyView(currPhy) != null) {
				localPhy = currPhy;
				break;
			}
		}
		phy = localPhy;
		assert localPhy != null;
		this.topoView = topology.getTopologyView(localPhy);
		this.distance = distance;
		this.onlyOnline = onlyOnline;
		this.isDistanceBased = (distance > 0);
		assert !isDistanceBased || phy.isBroadcastMedium();

		if (phy.isBroadcastMedium() || onlyOnline) {
			for (Host host : Oracle.getAllHosts()) {
				if (phy.isBroadcastMedium()) {
					try {
						DefaultTopologyComponent dcomp = host.getComponent(
								DefaultTopologyComponent.class);
						dcomp.requestLocationUpdates(null,
								LocalGraphView.this);
					} catch (ComponentNotAvailableException e) {
						continue;
					}
				}
				if (onlyOnline) {
					if (host.getNetworkComponent()
							.getByName(medium) != null) {
						host.getNetworkComponent().getByName(medium)
						.addConnectivityListener(
								LocalGraphView.this);
					}
				}
			}
		}
	}

	private void recalculateLocalView() {
		if (!isInvalid) {
			/*
			 * Graphs are invalidated (i) based on movement, IFF a range was
			 * specified, (ii) based on online/offline events, IFF only
			 * online hosts are to be considered.
			 */
			return;
		}
		/*
		 * Calculate a complete global connectivity graph
		 */

		// Create new, empty graph
		currentView = Graphs.createGraph();

		// Add all (online?) nodes
		for (MacLayer mac : topoView.getAllMacs()) {
			if (!onlyOnline || mac.isOnline()) {
				INode node = currentView.createNode(mac.getHost().getId());
				node.setProperty(SiSTypes.PHY_LOCATION,
						topoView.getPosition(mac.getMacAddress()).clone());
				currentView.addElement(node);
			}
		}

		if (isDistanceBased) {
			// Build neighbors solely based on an assumed range
			for (MacLayer mac : topoView.getAllMacs()) {
				// Fix Christoph Storm:
				// Do not take offline nodes into account, unless told to do
				// so...
				if (onlyOnline && !currentView
						.containsNode(mac.getHost().getId())) {
					continue;
				}
				// Consider all nodes as potential neighbors
				for (MacLayer neighborMac : topoView.getAllMacs()) {
					// create, but do NOT add the node object
					INode neighbor = currentView
							.createNode(neighborMac.getHost().getId());
					// only online nodes (already in graph)
					if (!onlyOnline
							|| currentView.containsNode(neighbor.getId())) {
						// Distance?
						if (topoView.getDistance(mac.getMacAddress(),
								neighborMac.getMacAddress()) <= distance) {
							IEdge edge = currentView.createEdge(
									mac.getHost().getId(),
									neighborMac.getHost().getId());
							currentView.addElement(edge);
						}
					}
				}
			}
		} else {
			// Build neighborhoods based on underlay neighbors (1-hop)
			for (MacLayer mac : topoView.getAllMacs()) {
				// Fix Christoph Storm:
				// Do not take offline nodes into account, unless told to do
				// so...
				if (onlyOnline && !currentView
						.containsNode(mac.getHost().getId())) {
					continue;
				}
				// Rely on underlay for neighbors
				List<MacAddress> neighbors = topoView
						.getNeighbors(mac.getMacAddress());
				for (MacAddress neighborMac : neighbors) {
					// create, but do NOT add the node object
					INode neighbor = currentView.createNode(
							topoView.getMac(neighborMac).getHost().getId());
					// only online nodes (already in graph)
					if (!onlyOnline
							|| currentView.containsNode(neighbor.getId())) {
						IEdge edge = currentView.createEdge(
								mac.getHost().getId(),
								topoView.getMac(neighborMac).getHost()
								.getId());
						currentView.addElement(edge);
						edge.setProperty(SiSTypes.PHY_DISTANCE,
								topoView.getDistance(mac.getMacAddress(),
										neighborMac));
					}
				}
			}
		}

		isInvalid = false;
	}

	public INode getOwnNode(SimHost ownHost) {
		MacLayer mac = ownHost.getLinkLayer().getMac(phy);
		if (!onlyOnline || mac.isOnline()) {
			return currentView.createNode(ownHost.getId());
		}
		return null;
	}

	public Set<IEdge> getNeighbors(SimHost ownHost) {
		recalculateLocalView();
		INode ownNode = getOwnNode(ownHost);
		return currentView.getOutgoingEdges(ownNode.getId());
	}

	/**
	 * This is the global view, therefore we do not distinguish between
	 * hosts.
	 *
	 * @return
	 */
	public Graph getLocalView() {
		recalculateLocalView();
		return currentView.clone();
	}

	@Override
	public void onLocationChanged(Host host, Location location) {
		this.isInvalid = true;
	}

	@Override
	public void wentOnline(Host host, NetInterface netInterface) {
		assert netInterface.getName() == medium;
		this.isInvalid = true;
	}

	@Override
	public void wentOffline(Host host, NetInterface netInterface) {
		assert netInterface.getName() == medium;
		this.isInvalid = true;
	}

}