TimeProvider.cpp 777 B

12345678910111213141516171819202122232425
  1. #include "TimeProvider.h"
  2. #ifndef _WIN32
  3. #include <arpa/inet.h>
  4. #endif
  5. #include "BellLogger.h" // for AbstractLogger
  6. #include "Logger.h" // for CSPOT_LOG
  7. #include "Utils.h" // for extract, getCurrentTimestamp
  8. using namespace cspot;
  9. TimeProvider::TimeProvider() {
  10. }
  11. void TimeProvider::syncWithPingPacket(const std::vector<uint8_t>& pongPacket) {
  12. CSPOT_LOG(debug, "Time synced with spotify servers");
  13. // Spotify's timestamp is in seconds since unix time - convert to millis.
  14. uint64_t remoteTimestamp = ((uint64_t) ntohl(extract<uint32_t>(pongPacket, 0))) * 1000;
  15. this->timestampDiff = remoteTimestamp - getCurrentTimestamp();
  16. }
  17. unsigned long long TimeProvider::getSyncedTimestamp() {
  18. return getCurrentTimestamp() + this->timestampDiff;
  19. }