ModularMovementModel.java 10.8 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * 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/>.
 *
 */

package de.tud.kom.p2psim.impl.topology.movement.modular;

import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Random;
import java.util.Set;
import java.util.Vector;

import de.tud.kom.p2psim.api.scenario.ConfigurationException;
33
import de.tud.kom.p2psim.api.topology.Topology;
34
import de.tud.kom.p2psim.api.topology.TopologyComponent;
35
import de.tud.kom.p2psim.api.topology.movement.MovementModel;
36
import de.tud.kom.p2psim.api.topology.movement.SimLocationActuator;
37
import de.tud.kom.p2psim.api.topology.movement.local.LocalMovementStrategy;
38
import de.tud.kom.p2psim.api.topology.placement.PlacementModel;
39
40
import de.tud.kom.p2psim.impl.simengine.Simulator;
import de.tud.kom.p2psim.impl.topology.PositionVector;
41
import de.tud.kom.p2psim.impl.topology.TopologyFactory;
42
43
44
45
46
47
48
49
50
51
import de.tud.kom.p2psim.impl.topology.movement.AbstractWaypointMovementModel;
import de.tud.kom.p2psim.impl.topology.movement.CsvMovement;
import de.tud.kom.p2psim.impl.topology.movement.NoMovement;
import de.tud.kom.p2psim.impl.topology.movement.RandomPathMovement;
import de.tud.kom.p2psim.impl.topology.movement.modular.attraction.AttractionGenerator;
import de.tud.kom.p2psim.impl.topology.movement.modular.attraction.AttractionPoint;
import de.tud.kom.p2psim.impl.topology.movement.modular.transition.FixedAssignmentStrategy;
import de.tud.kom.p2psim.impl.topology.movement.modular.transition.TransitionStrategy;
import de.tud.kom.p2psim.impl.topology.views.VisualizationTopologyView.VisualizationInjector;
import de.tud.kom.p2psim.impl.util.Either;
52
import de.tudarmstadt.maki.simonstrator.api.Binder;
53
54
55
import de.tudarmstadt.maki.simonstrator.api.Event;
import de.tudarmstadt.maki.simonstrator.api.EventHandler;
import de.tudarmstadt.maki.simonstrator.api.Randoms;
56
import de.tudarmstadt.maki.simonstrator.api.component.sensor.location.Location;
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

/**
 * Modular Movement Model uses different models/strategies to create a movement
 * model. In this implementation, it has 4 different models/strategies.
 * <p>
 * M0: AttractionGenerator -> Generates the {@link AttractionPoint}s and place
 * them on the map. The {@link AttractionPoint}s can be moved!
 * <p>
 * M1: A general {@link MovementModel}, like {@link RandomPathMovement} or
 * {@link NoMovement}. It takes the {@link AttractionPoint}s and move them
 * around the world.
 * <p>
 * M2: The {@link TransitionStrategy}! It takes the Hosts, which should be moved
 * around, but calculates only the assignment to the {@link AttractionPoint}s.
 * It doesn't move the Hosts! It will be only assignment a new AttractionPoint!
 * 
 * <p>
 * M3: The {@link LocalMovementStrategy} is responsible for the movement of the
 * Hosts. It moves the hosts to the assigned AttractionPoint, and if the
 * AttractionPoint has moved, then will be followed. The
 * {@link LocalMovementStrategy} will be called from the
 * {@link ModularMovementModel} to do a Movement!
 * <p>
 * This class contains all four components and manage the data exchange.
 * Additionally it contains an periodic operation, which handle the movement of
 * all hosts. This mean, that it will be call the {@link LocalMovementStrategy}
 * with the destination. Please take care, that the handling of the movement of
 * the AttractionPoints will be handled by the movement model in M1! <br>
 * Further it contains an offset for every Host, which will be added to the
 * destination point (AttractionPoint), so that not all hosts, which are
 * assigned to one {@link AttractionPoint}, lies on the same point.<br>
 * 
 * @author Christoph Muenker
 * @version 1.0, 02.07.2013
 */
public class ModularMovementModel implements MovementModel, EventHandler {

	private final int EVENT_MOVE = 1;

	private final int EVENT_INIT = 2;

	protected PositionVector worldDimensions;

	protected MovementModel movementModel = new NoMovement();

	protected TransitionStrategy transition;

	protected AttractionGenerator attractionGenerator;

	protected LocalMovementStrategy localMovementStrategy;

108
	private Set<SimLocationActuator> movementListeners = new LinkedHashSet<SimLocationActuator>();
109

110
	private Set<SimLocationActuator> moveableHosts = new LinkedHashSet<SimLocationActuator>();
111

112
	private Map<SimLocationActuator, PositionVector> offsetPosition = new LinkedHashMap<SimLocationActuator, PositionVector>();
113
114
115
116
117
118
119
120

	private boolean initialized = false;

	private long timeBetweenMoveOperation = Simulator.SECOND_UNIT;

	private Random rand;

	public ModularMovementModel() {
121
122
		this.worldDimensions = Binder.getComponentOrNull(Topology.class)
				.getWorldDimensions();
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
		this.rand = Randoms.getRandom(ModularMovementModel.class);

		// scheduling initalization!
		Event.scheduleImmediately(this, null, EVENT_INIT);
	}

	/**
	 * This Method will be not called from the Components. So we call this
	 * manually!
	 */
	public void initialize() {
		if (!initialized) {
			VisualizationInjector.injectComponent("AttractionPoints", -1,
					new ModularMovementModelViz(this), false);

			checkConfiguration();

			// FIXME NR: Special implementation for crater to give movement model
			// the mapping of APs to Hosts to enable offline/online going of the
			// respective nodes when necessary
			if (movementModel.getClass() == CsvMovement.class && transition.getClass() == FixedAssignmentStrategy.class) {
				CsvMovement csvMovement = (CsvMovement) movementModel;
				FixedAssignmentStrategy transitionStrategy = (FixedAssignmentStrategy) transition;
				csvMovement.addTransitionStrategy(transitionStrategy);				
			}

			// setWayPointModel
150
151
152
153
			localMovementStrategy.setObstacleModel(Binder
					.getComponentOrNull(Topology.class).getObstacleModel());
			localMovementStrategy.setWaypointModel(Binder
					.getComponentOrNull(Topology.class).getWaypointModel());
154
155
156

			if (movementModel instanceof AbstractWaypointMovementModel) {
				AbstractWaypointMovementModel awmm = (AbstractWaypointMovementModel) movementModel;
157
158
				awmm.setWaypointModel(Binder.getComponentOrNull(Topology.class)
						.getWaypointModel());
159
160
161
162
163
164
165
166
167
			}

			List<AttractionPoint> attractionPoints = attractionGenerator
					.getAttractionPoints();
			for (AttractionPoint att : attractionPoints) {
				movementModel.addComponent(att);
			}

			transition.setAttractionPoints(attractionPoints);
168
			for (SimLocationActuator ms : moveableHosts) {
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
				transition.addComponent(ms);
			}

			setTimeBetweenMoveOperations(timeBetweenMoveOperation);

			// initial move
			move();

			initialized = true;
		}
	}

	private void checkConfiguration() {
		if (localMovementStrategy == null) {
			throw new ConfigurationException(
					"LocalMovementStrategy is missing in ModularMovementModel!");
		}
		if (movementModel == null) {
			throw new ConfigurationException(
					"MovementModel is missing in ModularMovementModel!");
		}
		if (transition == null) {
			throw new ConfigurationException(
					"TransitionStrategy is missing in ModularMovementModel!");
		}
		if (attractionGenerator == null) {
			throw new ConfigurationException(
					"AttractionGenerator is missing in ModularMovementModel!");
		}
		if (movementModel instanceof AbstractWaypointMovementModel
199
200
				&& Binder.getComponentOrNull(Topology.class)
						.getWaypointModel() == null) {
201
202
203
204
			throw new ConfigurationException(
					"Missing WaypointModel for the ModuloarMovementModel.movementModel");
		}
	}
205
206
207
208
209
210
211
212
213
	
	/**
	 * This default implementation relies on {@link PlacementModel}s to be
	 * configured in the {@link TopologyFactory}
	 */
	@Override
	public void placeComponent(SimLocationActuator actuator) {
		// not supported
	}
214
215
216
217
218
219
	
	@Override
	public void changeTargetLocation(SimLocationActuator actuator,
			double longitude, double latitude) throws UnsupportedOperationException {
		throw new UnsupportedOperationException();
	}
220
221

	@Override
222
	public void addComponent(SimLocationActuator comp) {
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
		moveableHosts.add(comp);
		offsetPosition.put(comp, randomOffsetVector());
	}

	@Override
	public void setTimeBetweenMoveOperations(long time) {
		if (time > 0) {
			this.timeBetweenMoveOperation = time;
		} else {
			throw new ConfigurationException(
					"time is negative for the Move Operations");
		}
	}

	private PositionVector randomOffsetVector() {
		double x = rand.nextGaussian() * 6;
		double y = rand.nextGaussian() * 6;

		return new PositionVector(x, y);
	}

	protected void move() {
245
		Map<SimLocationActuator, AttractionPoint> assigns = transition
246
				.getAssignments();
247
		for (Entry<SimLocationActuator, AttractionPoint> entry : assigns
248
				.entrySet()) {
249
			SimLocationActuator ms = entry.getKey();
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
			PositionVector attractionCenter = entry.getValue()
					.getRealPosition();
			PositionVector destination = new PositionVector(attractionCenter);
			destination.add(offsetPosition.get(ms));

			doLocalMovement(ms, destination);

		}

		Event.scheduleWithDelay(timeBetweenMoveOperation, this, null,
				EVENT_MOVE);
	}

	/**
	 * 
	 * Ask the local movement strategy for the next position. It may return the
	 * next position or a boolean with true to notify the movement model that it
	 * can't get any closer to the current way point.
	 * 
	 * @param ms
	 * @param destination
	 */
272
	private void doLocalMovement(SimLocationActuator ms,
273
274
275
276
277
			PositionVector destination) {

		Either<PositionVector, Boolean> either = localMovementStrategy
				.nextPosition(ms, destination);
		if (either.hasLeft()) {
278
			ms.updateCurrentLocation(either.getLeft().getLongitude(), either.getLeft().getLatitude());
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
		}
	}

	public void setMovementModel(MovementModel mm) {
		this.movementModel = mm;
	}

	public void setAttractionGenerator(AttractionGenerator attractionGenerator) {
		this.attractionGenerator = attractionGenerator;
	}

	public void setLocalMovementStrategy(
			LocalMovementStrategy localMovementStrategy) {
		this.localMovementStrategy = localMovementStrategy;
	}

	public void setTransitionStrategy(TransitionStrategy transition) {
		this.transition = transition;
	}

	@Override
	public void eventOccurred(Object content, int type) {
		if (type == EVENT_INIT) {
			initialize();
		} else if (type == EVENT_MOVE) {
			move();
		}
	}

	/**
	 * Only for visualization!
	 * 
	 * @return
	 */
	protected List<AttractionPoint> getAttractionPoints() {
		return new Vector<AttractionPoint>(transition.getAssignments().values());
	}
}