packages feed

tidal-link-1.2.1: link/include/ableton/link/Measurement.hpp

/* Copyright 2016, Ableton AG, Berlin. All rights reserved.
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 *  If you would like to incorporate Link into a proprietary software application,
 *  please contact <link-devs@ableton.com>.
 */

#pragma once

#include <ableton/discovery/Payload.hpp>
#include <ableton/link/PayloadEntries.hpp>
#include <ableton/link/PeerState.hpp>
#include <ableton/link/SessionId.hpp>
#include <ableton/link/v1/Messages.hpp>
#include <ableton/util/Injected.hpp>
#include <ableton/util/SafeAsyncHandler.hpp>
#include <chrono>
#include <memory>

namespace ableton
{
namespace link
{

template <typename Clock, typename IoContext>
struct Measurement
{
  using Callback = std::function<void(std::vector<double>&)>;
  using Micros = std::chrono::microseconds;
  using Socket =
    typename util::Injected<IoContext>::type::template Socket<v1::kMaxMessageSize>;

  static const std::size_t kNumberDataPoints = 100;
  static const std::size_t kNumberMeasurements = 5;

  Measurement(const PeerState& state,
              Callback callback,
              discovery::IpAddress address,
              Clock clock,
              util::Injected<IoContext> io,
              Socket& socket)
    : mpImpl(std::make_shared<Impl>(std::move(state),
                                    std::move(callback),
                                    std::move(address),
                                    std::move(clock),
                                    std::move(io),
                                    socket))
  {
  }

  Measurement(const Measurement&) = delete;
  Measurement& operator=(Measurement&) = delete;
  Measurement(const Measurement&&) = delete;
  Measurement& operator=(Measurement&&) = delete;

  template <typename It>
  void operator()(const discovery::UdpEndpoint& from,
                  const It messageBegin,
                  const It messageEnd)
  {
    (*mpImpl)(from, messageBegin, messageEnd);
  }

  struct Impl : std::enable_shared_from_this<Impl>
  {
    using Timer = typename util::Injected<IoContext>::type::Timer;
    using Log = typename util::Injected<IoContext>::type::Log;

    Impl(const PeerState& state,
         Callback callback,
         discovery::IpAddress address,
         Clock clock,
         util::Injected<IoContext> io,
         Socket& socket)
      : mIo(std::move(io))
      , mSocket(socket)
      , mSessionId(state.nodeState.sessionId)
      , mCallback(std::move(callback))
      , mClock(std::move(clock))
      , mTimer(mIo->makeTimer())
      , mMeasurementsStarted(0)
      , mLog(channel(mIo->log(), "Measurement on gateway@" + address.to_string()))
      , mSuccess(false)
    {
      if (state.measurementEndpoint.address().is_v4())
      {
        mEndpoint = state.measurementEndpoint;
      }
      else
      {
        auto v6Address = state.measurementEndpoint.address().to_v6();
        v6Address.scope_id(address.to_v6().scope_id());
        mEndpoint = {v6Address, state.measurementEndpoint.port()};
      }

      const auto ht = HostTime{mClock.micros()};
      sendPing(mEndpoint, discovery::makePayload(ht));
      resetTimer();
    }

    void resetTimer()
    {
      mTimer.cancel();
      mTimer.expires_from_now(std::chrono::milliseconds(50));
      mTimer.async_wait(
        [this](const typename Timer::ErrorCode e)
        {
          if (!e)
          {
            if (mMeasurementsStarted < kNumberMeasurements)
            {
              const auto ht = HostTime{mClock.micros()};
              sendPing(mEndpoint, discovery::makePayload(ht));
              ++mMeasurementsStarted;
              resetTimer();
            }
            else
            {
              fail();
            }
          }
        });
    }

    // Operator to handle incoming messages on the interface
    template <typename It>
    void operator()(const discovery::UdpEndpoint& from,
                    const It messageBegin,
                    const It messageEnd)
    {
      using namespace std;
      const auto result = v1::parseMessageHeader(messageBegin, messageEnd);
      const auto& header = result.first;
      const auto payloadBegin = result.second;

      if (header.messageType == v1::kPong)
      {
        debug(mLog) << "Received Pong message from " << from;

        // parse for all entries
        SessionId sessionId{};
        std::chrono::microseconds ghostTime{0};
        std::chrono::microseconds prevGHostTime{0};
        std::chrono::microseconds prevHostTime{0};

        try
        {
          discovery::parsePayload<SessionMembership, GHostTime, PrevGHostTime, HostTime>(
            payloadBegin,
            messageEnd,
            [&sessionId](const SessionMembership& sms) { sessionId = sms.sessionId; },
            [&ghostTime](GHostTime gt) { ghostTime = std::move(gt.time); },
            [&prevGHostTime](PrevGHostTime gt) { prevGHostTime = std::move(gt.time); },
            [&prevHostTime](HostTime ht) { prevHostTime = std::move(ht.time); });
        }
        catch (const std::runtime_error& err)
        {
          warning(mLog) << "Failed parsing payload, caught exception: " << err.what();
          return;
        }

        if (mSessionId == sessionId)
        {
          const auto hostTime = mClock.micros();

          const auto payload =
            discovery::makePayload(HostTime{hostTime}, PrevGHostTime{ghostTime});

          sendPing(from, payload);

          if (ghostTime != Micros{0} && prevHostTime != Micros{0})
          {
            mData.push_back(
              static_cast<double>(ghostTime.count())
              - (static_cast<double>((hostTime + prevHostTime).count()) * 0.5));

            if (prevGHostTime != Micros{0})
            {
              mData.push_back(
                (static_cast<double>((ghostTime + prevGHostTime).count()) * 0.5)
                - static_cast<double>(prevHostTime.count()));
            }
          }

          if (mData.size() > kNumberDataPoints)
          {
            finish();
          }
          else
          {
            resetTimer();
          }
        }
        else
        {
          fail();
        }
      }
      else
      {
        debug(mLog) << "Received invalid message from " << from;
      }
    }

    template <typename Payload>
    void sendPing(discovery::UdpEndpoint to, const Payload& payload)
    {
      v1::MessageBuffer buffer;
      const auto msgBegin = std::begin(buffer);
      const auto msgEnd = v1::pingMessage(payload, msgBegin);
      const auto numBytes = static_cast<size_t>(std::distance(msgBegin, msgEnd));

      try
      {
        mSocket.send(buffer.data(), numBytes, to);
      }
      catch (const std::runtime_error& err)
      {
        info(mLog) << "Failed to send Ping to " << to.address().to_string() << ": "
                   << err.what();
      }
    }

    void finish()
    {
      mTimer.cancel();
      mSuccess = true;
      debug(mLog) << "Measuring " << mEndpoint << " done.";
      std::weak_ptr<Impl> pHandle = this->shared_from_this();
      mIo->async(
        [pHandle]()
        {
          if (auto pLocked = pHandle.lock())
          {
            pLocked->mCallback(pLocked->mData);
          }
        });
    }

    void fail()
    {
      debug(mLog) << "Measuring " << mEndpoint << " failed.";
      std::weak_ptr<Impl> pHandle = this->shared_from_this();
      mIo->async(
        [pHandle]()
        {
          if (auto pLocked = pHandle.lock())
          {
            pLocked->mData.clear();
            pLocked->mCallback(pLocked->mData);
          }
        });
    }

    util::Injected<IoContext> mIo;
    Socket& mSocket;
    SessionId mSessionId;
    discovery::UdpEndpoint mEndpoint;
    std::vector<double> mData;
    Callback mCallback;
    Clock mClock;
    Timer mTimer;
    std::size_t mMeasurementsStarted;
    Log mLog;
    bool mSuccess;
  };

  std::shared_ptr<Impl> mpImpl;
};

} // namespace link
} // namespace ableton