TimeProvider.cpp 514 B

123456789101112131415
  1. #include "TimeProvider.h"
  2. #include "Utils.h"
  3. TimeProvider::TimeProvider() {
  4. }
  5. void TimeProvider::syncWithPingPacket(const std::vector<uint8_t>& pongPacket) {
  6. // Spotify's timestamp is in seconds since unix time - convert to millis.
  7. uint64_t remoteTimestamp = ((uint64_t) ntohl(extract<uint32_t>(pongPacket, 0))) * 1000;
  8. this->timestampDiff = remoteTimestamp - getCurrentTimestamp();
  9. }
  10. unsigned long long TimeProvider::getSyncedTimestamp() {
  11. return getCurrentTimestamp() + this->timestampDiff;
  12. }