SimpleStaticLatencyModel.java 2.94 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
/*
 * Copyright (c) 2005-2011 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/>.
 *
 */



23
24
25
package de.tud.kom.p2psim.impl.network.modular.st.latency;


26
27
28
29
30
import de.tud.kom.p2psim.api.network.NetMessage;
import de.tud.kom.p2psim.impl.network.AbstractNetLayer;
import de.tud.kom.p2psim.impl.network.modular.db.NetMeasurementDB;
import de.tud.kom.p2psim.impl.network.modular.st.LatencyStrategy;
import de.tudarmstadt.maki.simonstrator.api.Time;
31
32
import de.tudarmstadt.maki.simonstrator.api.component.sensor.location.Location;

33
public class SimpleStaticLatencyModel implements LatencyStrategy {
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
	
	protected long propagationDelay = 10; // 10 ms

	public SimpleStaticLatencyModel(long staticLatency) {
		this.setLatency(staticLatency);
	}

	/**
	 * Sets the static latency which is expected in millseconds. That is, if
	 * <code>staticLatency</code> is set to 10, the simulator will translate it
	 * into simulation units as follows: staticLatency *
	 * Simulator.MILLISECOND_UNIT.
	 * 
	 * @param staticLatency
	 *            the static latency in milliseconds.
	 */
	public void setLatency(long staticLatency) {
		this.propagationDelay = staticLatency;
52
53
54
55
56
57
58
59
60
61
62
	}
	
	/**
	 * Gets the distance.
	 *
	 * @param nlSender the nl sender
	 * @param nlReceiver the nl receiver
	 * @return the distance
	 */
	protected double getDistance(AbstractNetLayer nlSender, AbstractNetLayer nlReceiver){
			
63
64
		Location ps = nlSender.getNetPosition();
		Location pr = nlReceiver.getNetPosition();
65
		
66
		return ps.distanceTo(pr);
67
68
		
	}
69
	
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87

	/* (non-Javadoc)
	 * @see de.tud.kom.p2psim.impl.network.modular.st.LatencyStrategy#getMessagePropagationDelay(de.tud.kom.p2psim.api.network.NetMessage, de.tud.kom.p2psim.impl.network.AbstractNetLayer, de.tud.kom.p2psim.impl.network.AbstractNetLayer, de.tud.kom.p2psim.impl.network.modular.db.NetMeasurementDB)
	 */
	@Override
	public long getMessagePropagationDelay(NetMessage msg, AbstractNetLayer nlSender, AbstractNetLayer nlReceiver,	NetMeasurementDB db) {
		
		return (long) (getDistance(nlSender, nlReceiver) * propagationDelay * Time.MILLISECOND);
		
	}
	

	/* (non-Javadoc)
	 * @see de.tud.kom.p2psim.impl.util.BackToXMLWritable#writeBackToXML(de.tud.kom.p2psim.impl.util.BackToXMLWritable.BackWriter)
	 */
	@Override
	public void writeBackToXML(BackWriter bw) {
		bw.writeTime("propagationDelay", propagationDelay);
88
89
90
	}

}