i2pd/libi2pd/Timestamp.h

64 lines
1.4 KiB
C
Raw Permalink Normal View History

/*
2024-02-27 20:33:07 +03:00
* Copyright (c) 2013-2024, 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 ();
uint64_t GetSecondsSinceEpoch ();
2020-10-23 22:53:22 +03:00
uint32_t GetMinutesSinceEpoch ();
uint32_t GetHoursSinceEpoch ();
2013-10-27 19:29:34 +04:00
2024-02-27 20:33:07 +03:00
uint64_t GetMonotonicMicroseconds ();
uint64_t GetMonotonicMilliseconds ();
uint64_t GetMonotonicSeconds ();
void GetCurrentDate (char * date); // returns UTC date as YYYYMMDD string, 9 bytes
void GetNextDayDate (char * date); // returns next UTC day as YYYYMMDD string, 9 bytes
2022-11-25 23:37:52 +03:00
void GetDateString (uint64_t timestamp, char * date); // timestamp is seconds since epoch, returns date as YYYYMMDD string, 9 bytes
void AdjustTimeOffset (int64_t offset); // in seconds from current
2018-11-16 20:49:04 +03:00
class NTPTimeSync
{
public:
NTPTimeSync ();
~NTPTimeSync ();
void Start ();
void Stop ();
2018-11-16 20:49:04 +03:00
private:
2018-11-16 20:49:04 +03:00
void Run ();
void Sync ();
2018-11-16 20:49:04 +03:00
private:
bool m_IsRunning;
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