i2pd/libi2pd/Timestamp.h

50 lines
916 B
C
Raw Normal View History

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
2019-03-07 19:55:47 +03:00
void GetCurrentDate (char * date); // returns date as YYYYMMDD string, 9 bytes
2019-04-12 21:05:07 +03:00
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 ();
void Stop ();
private:
void Run ();
void Sync ();
private:
bool m_IsRunning;
std::unique_ptr<std::thread> m_Thread;
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