![]() 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 : /proc/thread-self/root/usr/local/lib/node_modules/mediasoup/worker/include/ |
Upload File : |
#ifndef MS_WORKER_HPP #define MS_WORKER_HPP #include "common.hpp" #include "Channel/Request.hpp" #include "Channel/UnixStreamSocket.hpp" #include "PayloadChannel/Notification.hpp" #include "PayloadChannel/Request.hpp" #include "PayloadChannel/UnixStreamSocket.hpp" #include "RTC/Router.hpp" #include "handles/SignalsHandler.hpp" #include <json.hpp> #include <string> #include <unordered_map> using json = nlohmann::json; class Worker : public Channel::UnixStreamSocket::Listener, public PayloadChannel::UnixStreamSocket::Listener, public SignalsHandler::Listener { public: explicit Worker(Channel::UnixStreamSocket* channel, PayloadChannel::UnixStreamSocket* payloadChannel); ~Worker(); private: void Close(); void FillJson(json& jsonObject) const; void FillJsonResourceUsage(json& jsonObject) const; void SetNewRouterIdFromInternal(json& internal, std::string& routerId) const; RTC::Router* GetRouterFromInternal(json& internal) const; /* Methods inherited from Channel::lUnixStreamSocket::Listener. */ public: void OnChannelRequest(Channel::UnixStreamSocket* channel, Channel::Request* request) override; void OnChannelClosed(Channel::UnixStreamSocket* channel) override; /* Methods inherited from PayloadChannel::lUnixStreamSocket::Listener. */ public: void OnPayloadChannelNotification( PayloadChannel::UnixStreamSocket* payloadChannel, PayloadChannel::Notification* notification) override; void OnPayloadChannelRequest( PayloadChannel::UnixStreamSocket* payloadChannel, PayloadChannel::Request* request) override; void OnPayloadChannelClosed(PayloadChannel::UnixStreamSocket* payloadChannel) override; /* Methods inherited from SignalsHandler::Listener. */ public: void OnSignal(SignalsHandler* signalsHandler, int signum) override; private: // Passed by argument. Channel::UnixStreamSocket* channel{ nullptr }; PayloadChannel::UnixStreamSocket* payloadChannel{ nullptr }; // Allocated by this. SignalsHandler* signalsHandler{ nullptr }; std::unordered_map<std::string, RTC::Router*> mapRouters; // Others. bool closed{ false }; }; #endif