|
A Discrete-Event Network Simulator
|
API
|
Go to the documentation of this file.
32 #include "ns3/double.h"
49 .SetGroupName (
"Internet")
50 .AddAttribute (
"InitialEstimation",
51 "Initial RTT estimate",
89 m_initialEstimatedRtt (c.m_initialEstimatedRtt),
90 m_estimatedRtt (c.m_estimatedRtt),
91 m_estimatedVariation (c.m_estimatedVariation),
92 m_nSamples (c.m_nSamples)
134 .SetGroupName (
"Internet")
136 .AddAttribute (
"Alpha",
137 "Gain used in estimating the RTT, must be 0 <= alpha <= 1",
140 MakeDoubleChecker<double> (0, 1))
141 .AddAttribute (
"Beta",
142 "Gain used in estimating the RTT variation, must be 0 <= beta <= 1",
145 MakeDoubleChecker<double> (0, 1))
156 :
RttEstimator (c), m_alpha (c.m_alpha), m_beta (c.m_beta)
250 if (rttShift && variationShift)
263 NS_LOG_DEBUG (
"(first sample) m_estimatedVariation += " << m);
272 return CopyObject<RttMeanDeviation> (
this);
a unique identifier for an interface.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
virtual void Reset()
Resets the estimation to its initial state.
static Time FromDouble(double value, enum Unit unit)
Create a Time equal to value in unit unit.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
void Reset()
Resets the estimator.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
static TypeId GetTypeId(void)
Get the type ID.
static Time From(const int64x64_t &value)
Create a Time in the current unit.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Base class for all RTT Estimators.
Time m_estimatedVariation
Current estimate variation.
void IntegerUpdate(Time m, uint32_t rttShift, uint32_t variationShift)
Method to update the rtt and variation estimates using integer arithmetic, used when the values of Al...
double m_alpha
Filter gain for average.
void Measurement(Time measure)
Add a new measurement to the estimator.
Time GetVariation(void) const
Note that this is not a formal statistical variance; it has the the same units as the estimate.
int64_t GetInteger(void) const
Get the raw time value, in the current resolution unit.
void ConstructSelf(const AttributeConstructionList &attributes)
Complete construction of ObjectBase; invoked by derived classes.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Ptr< RttEstimator > Copy() const
Copy object (including current internal state)
The "Mean--Deviation" RTT estimator, as discussed by Van Jacobson.
double ToDouble(enum Unit unit) const
Get the Time value expressed in a particular unit.
Smart pointer class similar to boost::intrusive_ptr.
uint32_t CheckForReciprocalPowerOfTwo(double val) const
Utility function to check for possible conversion of a double value (0 < value < 1) to a reciprocal p...
Time m_initialEstimatedRtt
Initial RTT estimation.
A base class which provides memory management and object aggregation.
static TypeId GetTypeId(void)
Get the type ID.
int64x64_t Abs(const int64x64_t &value)
Absolute value.
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Simulation virtual time values and global simulation resolution.
void FloatingPointUpdate(Time m)
Method to update the rtt and variation estimates using floating point arithmetic, used when the value...
static const double TOLERANCE
Tolerance used to check reciprocal of two numbers.
uint32_t m_nSamples
Number of samples.
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
double m_beta
Filter gain for variation.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Time Seconds(double value)
Construct a Time in the indicated unit.
Time m_estimatedRtt
Current estimate.
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
AttributeValue implementation for Time.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Time GetEstimate(void) const
gets the RTT estimate.
void(* Time)(Time oldValue, Time newValue)
TracedValue callback signature for Time.
List of Attribute name, value and checker triples used to construct Objects.
uint32_t GetNSamples(void) const
gets the number of samples used in the estimates
double GetSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.