Package org.apache.commons.net.ntp
Class NtpV3Impl
java.lang.Object
org.apache.commons.net.ntp.NtpV3Impl
- All Implemented Interfaces:
NtpV3Packet
Implements
NtpV3Packet
to convert Java objects to and from the Network Time Protocol (NTP) data message header format described in RFC-1305.-
Field Summary
Fields inherited from interface org.apache.commons.net.ntp.NtpV3Packet
LI_ALARM_CONDITION, LI_LAST_MINUTE_HAS_59_SECONDS, LI_LAST_MINUTE_HAS_61_SECONDS, LI_NO_WARNING, MODE_BROADCAST, MODE_CLIENT, MODE_CONTROL_MESSAGE, MODE_PRIVATE, MODE_RESERVED, MODE_SERVER, MODE_SYMMETRIC_ACTIVE, MODE_SYMMETRIC_PASSIVE, NTP_MAXCLOCK, NTP_MAXPOLL, NTP_MINCLOCK, NTP_MINPOLL, NTP_PORT, TYPE_DAYTIME, TYPE_ICMP, TYPE_NTP, TYPE_TIME, VERSION_3, VERSION_4
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Compares this object against the specified object.Returns the datagram packet with the NTP details already filled in.int
Returns leap indicator as defined in RFC-1305 which is a two-bit code: 0=no warning 1=last minute has 61 seconds 2=last minute has 59 seconds 3=alarm condition (clock not synchronized)int
getMode()
Returns mode as defined in RFC-1305 which is a 3-bit integer whose value is indicated by the MODE_xxx parameters.Return human-readable name of message mode type as described in RFC 1305.Returns theoriginate
time as defined in RFC-1305.int
getPoll()
Returns poll interval as defined in RFC-1305, which is an eight-bit signed integer indicating the maximum interval between successive messages, in seconds to the nearest power of two (e.g.int
Returns precision as defined in RFC-1305 encoded as an 8-bit signed integer (seconds to the nearest power of two).Returnsreceive
timestamp as defined in RFC-1305.int
Returns the reference id as defined in RFC-1305, which is a 32-bit integer whose value is dependent on several criteria.Returns the reference id string.Returns the reference time as defined in RFC-1305.int
Return root delay as defined in RFC-1305, which is the total roundtrip delay to the primary reference source, in seconds.double
Return root delay as defined in RFC-1305 in milliseconds, which is the total roundtrip delay to the primary reference source, in seconds.int
Returns root dispersion as defined in RFC-1305.long
Returns root dispersion (as defined in RFC-1305) in milliseconds.double
Returns root dispersion (as defined in RFC-1305) in milliseconds as double precision value.int
Returns Stratum as defined in RFC-1305, which indicates the stratum level of the local clock, with values defined as follows: 0=unspecified, 1=primary ref clock, and all others a secondary reference (via NTP).Returns thetransmit
timestamp as defined in RFC-1305.getType()
Return type of time packet.int
Returns NTP version number as defined in RFC-1305.int
hashCode()
Computes a hash code for this object.void
setDatagramPacket
(DatagramPacket srcDp) Sets the contents of this object from source datagram packet.void
setLeapIndicator
(int li) Sets leap indicator as defined in RFC-1305.void
setMode
(int mode) Sets mode as defined in RFC-1305.void
Sets originate timestamp given NTP TimeStamp object.void
setPoll
(int poll) Sets poll interval as defined in RFC-1305.void
setPrecision
(int precision) Sets precision as defined in RFC-1305.void
Sets receive timestamp given NTP TimeStamp object.void
setReferenceId
(int refId) Sets reference clock identifier field with 32-bit unsigned integer value.void
Sets Reference time with NTP timestamp.void
setRootDelay
(int delay) Sets root delay as defined in RFC-1305.void
setRootDispersion
(int dispersion) Sets root dispersion as defined in RFC-1305.void
setStratum
(int stratum) Sets stratum level as defined in RFC-1305.void
Sets transmit time with NTP timestamp.void
setVersion
(int version) Sets NTP version as defined in RFC-1305.toString()
Returns details of NTP packet as a string.protected static final int
ui
(byte b) Convert byte to unsigned integer.protected static final long
ul
(byte b) Convert byte to unsigned long.
-
Constructor Details
-
NtpV3Impl
public NtpV3Impl()Creates a new instance of NtpV3Impl
-
-
Method Details
-
ui
Convert byte to unsigned integer. Java only has signed types, so we have to do more work to get unsigned ops.- Parameters:
b
- input byte- Returns:
- unsigned int value of byte
-
ul
Convert byte to unsigned long. Java only has signed types, so we have to do more work to get unsigned ops- Parameters:
b
- input byte- Returns:
- unsigned long value of byte
-
equals
Compares this object against the specified object. The result istrue
if and only if the argument is notnull
and is aNtpV3Impl
object that contains the same values as this object. -
getDatagramPacket
Returns the datagram packet with the NTP details already filled in.- Specified by:
getDatagramPacket
in interfaceNtpV3Packet
- Returns:
- a datagram packet.
-
getLeapIndicator
Returns leap indicator as defined in RFC-1305 which is a two-bit code: 0=no warning 1=last minute has 61 seconds 2=last minute has 59 seconds 3=alarm condition (clock not synchronized)- Specified by:
getLeapIndicator
in interfaceNtpV3Packet
- Returns:
- leap indicator as defined in RFC-1305.
-
getMode
Returns mode as defined in RFC-1305 which is a 3-bit integer whose value is indicated by the MODE_xxx parameters.- Specified by:
getMode
in interfaceNtpV3Packet
- Returns:
- mode as defined in RFC-1305.
-
getModeName
Return human-readable name of message mode type as described in RFC 1305.- Specified by:
getModeName
in interfaceNtpV3Packet
- Returns:
- mode name as string.
-
getOriginateTimeStamp
Returns theoriginate
time as defined in RFC-1305.- Specified by:
getOriginateTimeStamp
in interfaceNtpV3Packet
- Returns:
- the
originate
time. Never returns null.
-
getPoll
Returns poll interval as defined in RFC-1305, which is an eight-bit signed integer indicating the maximum interval between successive messages, in seconds to the nearest power of two (e.g. value of six indicates an interval of 64 seconds). The values that can appear in this field range from NTP_MINPOLL to NTP_MAXPOLL inclusive.- Specified by:
getPoll
in interfaceNtpV3Packet
- Returns:
- poll interval as defined in RFC-1305.
-
getPrecision
Returns precision as defined in RFC-1305 encoded as an 8-bit signed integer (seconds to the nearest power of two). Values normally range from -6 to -20.- Specified by:
getPrecision
in interfaceNtpV3Packet
- Returns:
- precision as defined in RFC-1305.
-
getReceiveTimeStamp
Returnsreceive
timestamp as defined in RFC-1305.- Specified by:
getReceiveTimeStamp
in interfaceNtpV3Packet
- Returns:
- the
receive
time. Never returns null.
-
getReferenceId
Returns the reference id as defined in RFC-1305, which is a 32-bit integer whose value is dependent on several criteria.- Specified by:
getReferenceId
in interfaceNtpV3Packet
- Returns:
- the reference id as defined in RFC-1305.
-
getReferenceIdString
Returns the reference id string. String cannot be null but value is dependent on the version of the NTP spec supported and stratum level. Value can be an empty string, clock type string, IP address, or a hexadecimal string.- Specified by:
getReferenceIdString
in interfaceNtpV3Packet
- Returns:
- the reference id string.
-
getReferenceTimeStamp
Returns the reference time as defined in RFC-1305.- Specified by:
getReferenceTimeStamp
in interfaceNtpV3Packet
- Returns:
- the reference time as
TimeStamp
object. Never returns null.
-
getRootDelay
Return root delay as defined in RFC-1305, which is the total roundtrip delay to the primary reference source, in seconds. Values can take positive and negative values, depending on clock precision and skew.- Specified by:
getRootDelay
in interfaceNtpV3Packet
- Returns:
- root delay as defined in RFC-1305.
-
getRootDelayInMillisDouble
Return root delay as defined in RFC-1305 in milliseconds, which is the total roundtrip delay to the primary reference source, in seconds. Values can take positive and negative values, depending on clock precision and skew.- Specified by:
getRootDelayInMillisDouble
in interfaceNtpV3Packet
- Returns:
- root delay in milliseconds
-
getRootDispersion
Returns root dispersion as defined in RFC-1305.- Specified by:
getRootDispersion
in interfaceNtpV3Packet
- Returns:
- root dispersion.
-
getRootDispersionInMillis
Returns root dispersion (as defined in RFC-1305) in milliseconds.- Specified by:
getRootDispersionInMillis
in interfaceNtpV3Packet
- Returns:
- root dispersion in milliseconds
-
getRootDispersionInMillisDouble
Returns root dispersion (as defined in RFC-1305) in milliseconds as double precision value.- Specified by:
getRootDispersionInMillisDouble
in interfaceNtpV3Packet
- Returns:
- root dispersion in milliseconds
-
getStratum
Returns Stratum as defined in RFC-1305, which indicates the stratum level of the local clock, with values defined as follows: 0=unspecified, 1=primary ref clock, and all others a secondary reference (via NTP).- Specified by:
getStratum
in interfaceNtpV3Packet
- Returns:
- Stratum level as defined in RFC-1305.
-
getTransmitTimeStamp
Returns thetransmit
timestamp as defined in RFC-1305.- Specified by:
getTransmitTimeStamp
in interfaceNtpV3Packet
- Returns:
- the
transmit
timestamp as defined in RFC-1305. Never returns a null object.
-
getType
Return type of time packet. The values (e.g. NTP, TIME, ICMP, ...) correspond to the protocol used to obtain the timing information.- Specified by:
getType
in interfaceNtpV3Packet
- Returns:
- packet type string identifier which in this case is "NTP".
-
getVersion
Returns NTP version number as defined in RFC-1305.- Specified by:
getVersion
in interfaceNtpV3Packet
- Returns:
- NTP version number.
-
hashCode
Computes a hash code for this object. The result is the exclusive OR of the values of this object stored as a byte array. -
setDatagramPacket
Sets the contents of this object from source datagram packet.- Specified by:
setDatagramPacket
in interfaceNtpV3Packet
- Parameters:
srcDp
- source DatagramPacket to copy contents from, never null.- Throws:
IllegalArgumentException
- if srcDp is null or byte length is less than minimum length of 48 bytes
-
setLeapIndicator
Sets leap indicator as defined in RFC-1305.- Specified by:
setLeapIndicator
in interfaceNtpV3Packet
- Parameters:
li
- leap indicator.
-
setMode
Sets mode as defined in RFC-1305.- Specified by:
setMode
in interfaceNtpV3Packet
- Parameters:
mode
- the mode to set
-
setOriginateTimeStamp
Sets originate timestamp given NTP TimeStamp object. Ifts
is null then zero time is used.- Specified by:
setOriginateTimeStamp
in interfaceNtpV3Packet
- Parameters:
ts
- NTP timestamp
-
setPoll
Sets poll interval as defined in RFC-1305.- Specified by:
setPoll
in interfaceNtpV3Packet
- Parameters:
poll
- poll interval.
-
setPrecision
Sets precision as defined in RFC-1305.- Specified by:
setPrecision
in interfaceNtpV3Packet
- Parameters:
precision
- the precision to set- Since:
- 3.4
-
setReceiveTimeStamp
Sets receive timestamp given NTP TimeStamp object. Ifts
is null then zero time is used.- Specified by:
setReceiveTimeStamp
in interfaceNtpV3Packet
- Parameters:
ts
- timestamp
-
setReferenceId
Sets reference clock identifier field with 32-bit unsigned integer value. See RFC-1305 for description.- Specified by:
setReferenceId
in interfaceNtpV3Packet
- Parameters:
refId
- reference clock identifier.
-
setReferenceTime
Sets Reference time with NTP timestamp. Ifts
is null then zero time is used.- Specified by:
setReferenceTime
in interfaceNtpV3Packet
- Parameters:
ts
- NTP timestamp
-
setRootDelay
Sets root delay as defined in RFC-1305.- Specified by:
setRootDelay
in interfaceNtpV3Packet
- Parameters:
delay
- root delay- Since:
- 3.4
-
setRootDispersion
Sets root dispersion as defined in RFC-1305.- Specified by:
setRootDispersion
in interfaceNtpV3Packet
- Parameters:
dispersion
- root dispersion- Since:
- 3.4
-
setStratum
Sets stratum level as defined in RFC-1305.- Specified by:
setStratum
in interfaceNtpV3Packet
- Parameters:
stratum
- stratum level.
-
setTransmitTime
Sets transmit time with NTP timestamp. Ifts
is null then zero time is used.- Specified by:
setTransmitTime
in interfaceNtpV3Packet
- Parameters:
ts
- NTP timestamp
-
setVersion
Sets NTP version as defined in RFC-1305.- Specified by:
setVersion
in interfaceNtpV3Packet
- Parameters:
version
- NTP version.
-
toString
Returns details of NTP packet as a string.
-