FixedAssignmentStrategy.java 4.83 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
/*
 * 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.modularosm.transition;

import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
28

29
30
import de.tud.kom.p2psim.api.common.SimHost;
import de.tud.kom.p2psim.api.common.SimHostComponent;
31
import de.tud.kom.p2psim.api.topology.movement.SimLocationActuator;
32
import de.tud.kom.p2psim.impl.topology.movement.modularosm.ModularMovementModel;
33
import de.tudarmstadt.maki.simonstrator.api.component.sensor.location.AttractionPoint;
34
35

/**
36
 * A {@link TransitionStrategy} for a case in which nodes are affiliated to an {@link AttractionPoint} only
37
38
 * in the beginning. No further transition will take place.
 * 
39
40
 * @author Martin Hellwig
 * @version 1.0, 07.07.2015
41
42
43
 */
public class FixedAssignmentStrategy implements ITransitionStrategy {
	
44
	private List<SimLocationActuator> comps = new LinkedList<SimLocationActuator>();
45
46
47

	private List<AttractionPoint> aPoints = new LinkedList<AttractionPoint>();

48
	private Map<SimLocationActuator, AttractionPoint> assignments = new LinkedHashMap<SimLocationActuator, AttractionPoint>();
49

50
	private Map<SimLocationActuator, SimHost> mappingMSHost = new LinkedHashMap<SimLocationActuator, SimHost>();
51

52
	private Map<SimHost, SimLocationActuator> mappingHostMS = new LinkedHashMap<SimHost, SimLocationActuator>();
53
54
55
56
57
58

	private Map<String, AttractionPoint> mappingGroupIdAP = new LinkedHashMap<String, AttractionPoint>();

	private Map<AttractionPoint, String> mappingAPGroupId = new LinkedHashMap<AttractionPoint, String>();
	
	@Override
59
60
	public Map<SimLocationActuator, AttractionPoint> getAssignments() {
		return new HashMap<SimLocationActuator, AttractionPoint>(assignments);
61
62
63
64
65
66
	}

	@Override
	public void setAttractionPoints(List<AttractionPoint> attractionPoints) {
		aPoints.addAll(attractionPoints);
	}
67
68
69
70
71
	
	@Override
	public List<AttractionPoint> getAllAttractionPoints() {
		return aPoints;
	}
72
73

	@Override
74
	public void addComponent(SimLocationActuator ms) {
75
		comps.add(ms);
76
		mappingHost(ms);	
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
		
		// No assignments been done before.
		if (assignments.isEmpty()) {
			AttractionPoint aPoint = aPoints.iterator().next();
			assignments.put(ms, aPoint);
			mappingGroupId(ms, aPoint);
		}
		// GroupId is not mapped.
		else if (!mappingGroupIdAP.containsKey(mappingMSHost.get(ms)
				.getProperties().getGroupID())) {
			for (AttractionPoint actAP : aPoints) {
				if (!mappingAPGroupId.containsKey(actAP)) {
					assignments.put(ms, actAP);
					mappingGroupId(ms, actAP);
					break;
				}
			}
		}
		// GroupId is already mapped.
		else if (mappingGroupIdAP.containsKey(mappingMSHost.get(ms)
				.getProperties().getGroupID())) {
			AttractionPoint aPoint = mappingGroupIdAP.get(mappingMSHost.get(ms)
					.getProperties().getGroupID());
			assignments.put(ms, aPoint);
		} else {
			throw new Error("Should not happen.");
		}
		
		

Björn Richerzhagen's avatar
Björn Richerzhagen committed
107
108
109
	}
	
	@Override
110
	public void reachedAttractionPoint(SimLocationActuator ms) {
Björn Richerzhagen's avatar
Björn Richerzhagen committed
111
		// don't care, as no further assignment takes place.
112
	}
113
114
115
116
117
118
	
	@Override
	public void updateTargetAttractionPoint(SimLocationActuator comp,
			AttractionPoint attractionPoint) {
		assignments.put(comp, attractionPoint);
	}
119

120
	private void mappingHost(SimLocationActuator ms) {
121
122
123
124
125
126
127
128
129
		SimHostComponent comp = (SimHostComponent) ms;
		SimHost host = comp.getHost();

		assert host != null;

		mappingHostMS.put(host, ms);
		mappingMSHost.put(ms, host);
	}

130
	private void mappingGroupId(SimLocationActuator ms, AttractionPoint AP) {
131
132
133
134
135
136
137
138
139
140
		SimHostComponent comp = (SimHostComponent) ms;
		SimHost host = comp.getHost();

		assert host != null;

		mappingAPGroupId.put(AP, mappingMSHost.get(ms).getProperties()
				.getGroupID());
		mappingGroupIdAP.put(
				mappingMSHost.get(ms).getProperties().getGroupID(), AP);
	}
141
	
142
143
144
145
146
147
148
149
150
151
152
153
	/**
	 * Used by the MobilityModel (M1) of the {@link ModularMovementModel} to get
	 * the groupId of the affiliated nodes to that {@link AttractionPoint}. Once
	 * the groupId is known nodes can be set <b>offline</b> or <b>online</b>.
	 * 
	 * @param attractionPoint
	 * @return
	 */
	public String getGroupIdOfAttractionPoint(AttractionPoint attractionPoint) {
		return mappingAPGroupId.get(attractionPoint);
	}
}