![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/lib/node_modules/mediasoup/worker/src/handles/ |
Upload File : |
#define MS_CLASS "SignalsHandler" // #define MS_LOG_DEV_LEVEL 3 #include "handles/SignalsHandler.hpp" #include "DepLibUV.hpp" #include "Logger.hpp" #include "MediaSoupErrors.hpp" /* Static methods for UV callbacks. */ inline static void onSignal(uv_signal_t* handle, int signum) { static_cast<SignalsHandler*>(handle->data)->OnUvSignal(signum); } inline static void onClose(uv_handle_t* handle) { delete handle; } /* Instance methods. */ SignalsHandler::SignalsHandler(Listener* listener) : listener(listener) { MS_TRACE(); } SignalsHandler::~SignalsHandler() { MS_TRACE(); if (!this->closed) Close(); } void SignalsHandler::Close() { MS_TRACE(); if (this->closed) return; this->closed = true; for (auto* uvHandle : this->uvHandles) { uv_close(reinterpret_cast<uv_handle_t*>(uvHandle), static_cast<uv_close_cb>(onClose)); } } void SignalsHandler::AddSignal(int signum, const std::string& name) { MS_TRACE(); if (this->closed) MS_THROW_ERROR("closed"); int err; auto uvHandle = new uv_signal_t; uvHandle->data = static_cast<void*>(this); err = uv_signal_init(DepLibUV::GetLoop(), uvHandle); if (err != 0) { delete uvHandle; MS_THROW_ERROR("uv_signal_init() failed for signal %s: %s", name.c_str(), uv_strerror(err)); } err = uv_signal_start(uvHandle, static_cast<uv_signal_cb>(onSignal), signum); if (err != 0) MS_THROW_ERROR("uv_signal_start() failed for signal %s: %s", name.c_str(), uv_strerror(err)); // Enter the UV handle into the vector. this->uvHandles.push_back(uvHandle); } inline void SignalsHandler::OnUvSignal(int signum) { MS_TRACE(); // Notify the listener. this->listener->OnSignal(this, signum); }