NTPClient/NTPClient.cpp

232 lines
7.4 KiB
C++
Raw Normal View History

2015-12-12 16:35:04 +01:00
/**
2015-12-08 17:21:16 +01:00
* The MIT License (MIT)
* Original work Copyright (c) 2015 by Fabrice Weinberg
* Modified work Copyright (c) 2020 by Thomas Haggett
2015-12-12 16:35:04 +01:00
*
2015-12-08 17:21:16 +01:00
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "NTPClient.h"
NTPClient::NTPClient(UDP& udp) {
this->_udp = &udp;
}
2015-12-12 16:36:34 +01:00
NTPClient::NTPClient(UDP& udp, long timeOffset) {
this->_udp = &udp;
2015-12-08 17:21:16 +01:00
this->_timeOffset = timeOffset;
}
NTPClient::NTPClient(UDP& udp, const char* poolServerName) {
this->_udp = &udp;
2015-12-08 17:21:16 +01:00
this->_poolServerName = poolServerName;
}
NTPClient::NTPClient(UDP& udp, IPAddress poolServerIP) {
this->_udp = &udp;
this->_poolServerIP = poolServerIP;
this->_poolServerName = NULL;
}
NTPClient::NTPClient(UDP& udp, const char* poolServerName, long timeOffset) {
this->_udp = &udp;
2015-12-08 17:21:16 +01:00
this->_timeOffset = timeOffset;
this->_poolServerName = poolServerName;
}
NTPClient::NTPClient(UDP& udp, IPAddress poolServerIP, long timeOffset){
this->_udp = &udp;
this->_timeOffset = timeOffset;
this->_poolServerIP = poolServerIP;
this->_poolServerName = NULL;
}
NTPClient::NTPClient(UDP& udp, const char* poolServerName, long timeOffset, unsigned long updateInterval) {
this->_udp = &udp;
2015-12-08 17:21:16 +01:00
this->_timeOffset = timeOffset;
this->_poolServerName = poolServerName;
this->_updateInterval = updateInterval;
}
NTPClient::NTPClient(UDP& udp, IPAddress poolServerIP, long timeOffset, unsigned long updateInterval) {
this->_udp = &udp;
this->_timeOffset = timeOffset;
this->_poolServerIP = poolServerIP;
this->_poolServerName = NULL;
this->_updateInterval = updateInterval;
}
void NTPClient::begin() {
this->begin(NTP_DEFAULT_LOCAL_PORT);
}
void NTPClient::begin(int port) {
this->_port = port;
this->_udp->begin(this->_port);
this->_udpSetup = true;
}
bool NTPClient::forceUpdate() {
this->_lastUpdate = 0;
this->_requestSent = 0;
this->_requestDelay = 1;
return true;
}
#define REQUEST_TIMEOUT 1000UL
bool NTPClient::update() {
int now = millis();
2015-12-08 17:21:16 +01:00
if(!this->_udpSetup)
this->begin();
2015-12-12 16:35:04 +01:00
// are we due to send a request?
if(this->_lastUpdate > 0 && now < this->_lastUpdate + this->_updateInterval) {
// update isn't due. carry on.
return false;
}
2015-12-12 16:35:04 +01:00
// we're due an update - have we sent a request and it has timed out,
// or not actually sent a request yet?
if(this->_requestSent == 0 || now > this->_requestSent + this->_requestDelay + REQUEST_TIMEOUT) {
// if we had already sent a request, let's bump up the _requestDelay so we don't constantly
// hammer a potentially down NTP server!
if(this->_requestSent > 0) {
this->_requestDelay *= 2;
if(this->_requestDelay > 30000)
this->_requestDelay = 30000;
} else {
// this is the first time we're attempting a send.
// purge any old packets that might be buffered
while(this->_udp->parsePacket() != 0) {
this->_udp->flush();
}
}
// Right. Send an NTP packet!
// Serial.printf("Sending an NTP packet (timeout=%i)!\n", this->_requestDelay + REQUEST_TIMEOUT);
this->sendNTPPacket();
// remember when we last sent a request
this->_requestSent = now;
}
2015-12-08 17:21:16 +01:00
// check for any replies!
int length = this->_udp->parsePacket();
if( length > 0 ) {
Serial.println("Got an NTP reply!");
this->_udp->read(this->_packetBuffer, NTP_PACKET_SIZE);
this->_udp->flush();
2015-12-12 16:35:04 +01:00
unsigned long highWord = word(this->_packetBuffer[40], this->_packetBuffer[41]);
unsigned long lowWord = word(this->_packetBuffer[42], this->_packetBuffer[43]);
// combine the four bytes (two words) into a long integer
// this is NTP time (seconds since Jan 1 1900):
unsigned long secsSince1900 = highWord << 16 | lowWord;
this->_currentEpoc = secsSince1900 - SEVENZYYEARS;
2015-12-08 17:21:16 +01:00
// cleanup and reset our state
this->_requestSent = 0;
this->_requestDelay = 1;
this->_lastUpdate = now;
return true;
2015-12-08 17:21:16 +01:00
}
return false;
2015-12-08 17:21:16 +01:00
}
2018-02-20 21:32:17 +01:00
unsigned long NTPClient::getEpochTime() const {
2015-12-08 17:21:16 +01:00
return this->_timeOffset + // User offset
this->_currentEpoc + // Epoc returned by the NTP server
((millis() - this->_lastUpdate) / 1000); // Time since last update
}
2018-02-20 21:32:17 +01:00
int NTPClient::getDay() const {
return (((this->getEpochTime() / 86400L) + 4 ) % 7); //0 is Sunday
}
2018-02-20 21:32:17 +01:00
int NTPClient::getHours() const {
return ((this->getEpochTime() % 86400L) / 3600);
2015-12-08 17:21:16 +01:00
}
2018-02-20 21:32:17 +01:00
int NTPClient::getMinutes() const {
return ((this->getEpochTime() % 3600) / 60);
2015-12-08 17:21:16 +01:00
}
2018-02-20 21:32:17 +01:00
int NTPClient::getSeconds() const {
return (this->getEpochTime() % 60);
2015-12-08 17:21:16 +01:00
}
2018-02-20 21:32:17 +01:00
String NTPClient::getFormattedTime() const {
2016-04-13 15:41:16 +02:00
unsigned long rawTime = this->getEpochTime();
2015-12-08 17:21:16 +01:00
unsigned long hours = (rawTime % 86400L) / 3600;
String hoursStr = hours < 10 ? "0" + String(hours) : String(hours);
2015-12-12 16:35:04 +01:00
2015-12-08 17:21:16 +01:00
unsigned long minutes = (rawTime % 3600) / 60;
String minuteStr = minutes < 10 ? "0" + String(minutes) : String(minutes);
2015-12-12 16:35:04 +01:00
2015-12-08 17:21:16 +01:00
unsigned long seconds = rawTime % 60;
String secondStr = seconds < 10 ? "0" + String(seconds) : String(seconds);
return hoursStr + ":" + minuteStr + ":" + secondStr;
}
2016-04-12 16:45:21 +02:00
void NTPClient::end() {
this->_udp->stop();
this->_udpSetup = false;
2016-04-12 16:45:21 +02:00
}
void NTPClient::setTimeOffset(int timeOffset) {
this->_timeOffset = timeOffset;
}
void NTPClient::setUpdateInterval(unsigned long updateInterval) {
this->_updateInterval = updateInterval;
}
2017-10-31 10:01:47 +01:00
void NTPClient::setPoolServerName(const char* poolServerName) {
this->_poolServerName = poolServerName;
}
void NTPClient::sendNTPPacket() {
2015-12-08 17:21:16 +01:00
// set all bytes in the buffer to 0
memset(this->_packetBuffer, 0, NTP_PACKET_SIZE);
// Initialize values needed to form NTP request
// (see URL above for details on the packets)
this->_packetBuffer[0] = 0b11100011; // LI, Version, Mode
this->_packetBuffer[1] = 0; // Stratum, or type of clock
this->_packetBuffer[2] = 6; // Polling Interval
this->_packetBuffer[3] = 0xEC; // Peer Clock Precision
// 8 bytes of zero for Root Delay & Root Dispersion
this->_packetBuffer[12] = 49;
this->_packetBuffer[13] = 0x4E;
this->_packetBuffer[14] = 49;
this->_packetBuffer[15] = 52;
// all NTP fields have been given values, now
// you can send a packet requesting a timestamp:
if (this->_poolServerName) {
this->_udp->beginPacket(this->_poolServerName, 123);
} else {
this->_udp->beginPacket(this->_poolServerIP, 123);
}
this->_udp->write(this->_packetBuffer, NTP_PACKET_SIZE);
this->_udp->endPacket();
2015-12-08 17:21:16 +01:00
}