mediasoup-sys 0.2.3

FFI bindings to C++ libmediasoup-worker
Documentation
#define MS_CLASS "Timer"
// #define MS_LOG_DEV_LEVEL 3

#include "handles/Timer.hpp"
#include "DepLibUV.hpp"
#include "Logger.hpp"
#include "MediaSoupErrors.hpp"

/* Static methods for UV callbacks. */

inline static void onTimer(uv_timer_t* handle)
{
	static_cast<Timer*>(handle->data)->OnUvTimer();
}

inline static void onClose(uv_handle_t* handle)
{
	delete handle;
}

/* Instance methods. */

Timer::Timer(Listener* listener) : listener(listener)
{
	MS_TRACE();

	this->uvHandle       = new uv_timer_t;
	this->uvHandle->data = static_cast<void*>(this);

	int err = uv_timer_init(DepLibUV::GetLoop(), this->uvHandle);

	if (err != 0)
	{
		delete this->uvHandle;
		this->uvHandle = nullptr;

		MS_THROW_ERROR("uv_timer_init() failed: %s", uv_strerror(err));
	}
}

Timer::~Timer()
{
	MS_TRACE();

	if (!this->closed)
		Close();
}

void Timer::Close()
{
	MS_TRACE();

	if (this->closed)
		return;

	this->closed = true;

	uv_close(reinterpret_cast<uv_handle_t*>(this->uvHandle), static_cast<uv_close_cb>(onClose));
}

void Timer::Start(uint64_t timeout, uint64_t repeat)
{
	MS_TRACE();

	if (this->closed)
		MS_THROW_ERROR("closed");

	this->timeout = timeout;
	this->repeat  = repeat;

	if (uv_is_active(reinterpret_cast<uv_handle_t*>(this->uvHandle)) != 0)
		Stop();

	int err = uv_timer_start(this->uvHandle, static_cast<uv_timer_cb>(onTimer), timeout, repeat);

	if (err != 0)
		MS_THROW_ERROR("uv_timer_start() failed: %s", uv_strerror(err));
}

void Timer::Stop()
{
	MS_TRACE();

	if (this->closed)
		MS_THROW_ERROR("closed");

	int err = uv_timer_stop(this->uvHandle);

	if (err != 0)
		MS_THROW_ERROR("uv_timer_stop() failed: %s", uv_strerror(err));
}

void Timer::Reset()
{
	MS_TRACE();

	if (this->closed)
		MS_THROW_ERROR("closed");

	if (uv_is_active(reinterpret_cast<uv_handle_t*>(this->uvHandle)) == 0)
		return;

	if (this->repeat == 0u)
		return;

	int err =
	  uv_timer_start(this->uvHandle, static_cast<uv_timer_cb>(onTimer), this->repeat, this->repeat);

	if (err != 0)
		MS_THROW_ERROR("uv_timer_start() failed: %s", uv_strerror(err));
}

void Timer::Restart()
{
	MS_TRACE();

	if (this->closed)
		MS_THROW_ERROR("closed");

	if (uv_is_active(reinterpret_cast<uv_handle_t*>(this->uvHandle)) != 0)
		Stop();

	int err =
	  uv_timer_start(this->uvHandle, static_cast<uv_timer_cb>(onTimer), this->timeout, this->repeat);

	if (err != 0)
		MS_THROW_ERROR("uv_timer_start() failed: %s", uv_strerror(err));
}

inline void Timer::OnUvTimer()
{
	MS_TRACE();

	// Notify the listener.
	this->listener->OnTimer(this);
}