2020-05-22 16:18:41 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2020, The PurpleI2P Project
|
|
|
|
*
|
|
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
|
|
*
|
|
|
|
* See full license text in LICENSE file at top of project tree
|
|
|
|
*/
|
|
|
|
|
2013-10-27 19:29:34 +04:00
|
|
|
#ifndef TIMESTAMP_H__
|
|
|
|
#define TIMESTAMP_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2018-11-16 20:49:04 +03:00
|
|
|
#include <thread>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <boost/asio.hpp>
|
2013-10-27 19:29:34 +04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace util
|
|
|
|
{
|
2018-11-14 19:06:53 +03:00
|
|
|
uint64_t GetMillisecondsSinceEpoch ();
|
|
|
|
uint32_t GetHoursSinceEpoch ();
|
|
|
|
uint64_t GetSecondsSinceEpoch ();
|
2013-10-27 19:29:34 +04:00
|
|
|
|
2020-03-01 13:25:50 +03:00
|
|
|
void GetCurrentDate (char * date); // returns date as YYYYMMDD string, 9 bytes
|
|
|
|
void GetDateString (uint64_t timestamp, char * date); // timestap is seconds since epoch, returns date as YYYYMMDD string, 9 bytes
|
2019-03-07 19:55:47 +03:00
|
|
|
|
2018-11-16 20:49:04 +03:00
|
|
|
class NTPTimeSync
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
NTPTimeSync ();
|
|
|
|
~NTPTimeSync ();
|
|
|
|
|
|
|
|
void Start ();
|
2020-03-01 13:25:50 +03:00
|
|
|
void Stop ();
|
2018-11-16 20:49:04 +03:00
|
|
|
|
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2018-11-16 20:49:04 +03:00
|
|
|
void Run ();
|
2020-03-01 13:25:50 +03:00
|
|
|
void Sync ();
|
2018-11-16 20:49:04 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
bool m_IsRunning;
|
2020-03-01 13:25:50 +03:00
|
|
|
std::unique_ptr<std::thread> m_Thread;
|
2018-11-16 20:49:04 +03:00
|
|
|
boost::asio::io_service m_Service;
|
|
|
|
boost::asio::deadline_timer m_Timer;
|
|
|
|
int m_SyncInterval;
|
|
|
|
std::vector<std::string> m_NTPServersList;
|
|
|
|
};
|
2013-10-27 19:29:34 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|