123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- #ifndef RTC_BASE_PHYSICAL_SOCKET_SERVER_H_
- #define RTC_BASE_PHYSICAL_SOCKET_SERVER_H_
- #if defined(WEBRTC_POSIX) && defined(WEBRTC_LINUX)
- #include <sys/epoll.h>
- #define WEBRTC_USE_EPOLL 1
- #endif
- #include <array>
- #include <memory>
- #include <unordered_map>
- #include <vector>
- #include "rtc_base/deprecated/recursive_critical_section.h"
- #include "rtc_base/net_helpers.h"
- #include "rtc_base/socket_server.h"
- #include "rtc_base/system/rtc_export.h"
- #include "rtc_base/thread_annotations.h"
- #if defined(WEBRTC_POSIX)
- typedef int SOCKET;
- #endif
- namespace rtc {
- enum DispatcherEvent {
- DE_READ = 0x0001,
- DE_WRITE = 0x0002,
- DE_CONNECT = 0x0004,
- DE_CLOSE = 0x0008,
- DE_ACCEPT = 0x0010,
- };
- class Signaler;
- class Dispatcher {
- public:
- virtual ~Dispatcher() {}
- virtual uint32_t GetRequestedEvents() = 0;
- virtual void OnPreEvent(uint32_t ff) = 0;
- virtual void OnEvent(uint32_t ff, int err) = 0;
- #if defined(WEBRTC_WIN)
- virtual WSAEVENT GetWSAEvent() = 0;
- virtual SOCKET GetSocket() = 0;
- virtual bool CheckSignalClose() = 0;
- #elif defined(WEBRTC_POSIX)
- virtual int GetDescriptor() = 0;
- virtual bool IsDescriptorClosed() = 0;
- #endif
- };
- class RTC_EXPORT PhysicalSocketServer : public SocketServer {
- public:
- PhysicalSocketServer();
- ~PhysicalSocketServer() override;
-
- Socket* CreateSocket(int family, int type) override;
- AsyncSocket* CreateAsyncSocket(int family, int type) override;
-
- virtual AsyncSocket* WrapSocket(SOCKET s);
-
- bool Wait(int cms, bool process_io) override;
- void WakeUp() override;
- void Add(Dispatcher* dispatcher);
- void Remove(Dispatcher* dispatcher);
- void Update(Dispatcher* dispatcher);
- private:
-
- static constexpr size_t kNumEpollEvents = 128;
- #if defined(WEBRTC_POSIX)
- bool WaitSelect(int cms, bool process_io);
- #endif
- #if defined(WEBRTC_USE_EPOLL)
- void AddEpoll(Dispatcher* dispatcher, uint64_t key);
- void RemoveEpoll(Dispatcher* dispatcher);
- void UpdateEpoll(Dispatcher* dispatcher, uint64_t key);
- bool WaitEpoll(int cms);
- bool WaitPoll(int cms, Dispatcher* dispatcher);
-
-
-
-
- std::array<epoll_event, kNumEpollEvents> epoll_events_;
- const int epoll_fd_ = INVALID_SOCKET;
- #endif
-
-
-
- uint64_t next_dispatcher_key_ RTC_GUARDED_BY(crit_) = 0;
- std::unordered_map<uint64_t, Dispatcher*> dispatcher_by_key_
- RTC_GUARDED_BY(crit_);
-
- std::unordered_map<Dispatcher*, uint64_t> key_by_dispatcher_
- RTC_GUARDED_BY(crit_);
-
-
-
-
-
-
- std::vector<uint64_t> current_dispatcher_keys_;
- Signaler* signal_wakeup_;
- RecursiveCriticalSection crit_;
- #if defined(WEBRTC_WIN)
- const WSAEVENT socket_ev_;
- #endif
- bool fWait_;
-
-
- bool waiting_ = false;
- };
- class PhysicalSocket : public AsyncSocket, public sigslot::has_slots<> {
- public:
- PhysicalSocket(PhysicalSocketServer* ss, SOCKET s = INVALID_SOCKET);
- ~PhysicalSocket() override;
-
- virtual bool Create(int family, int type);
- SocketAddress GetLocalAddress() const override;
- SocketAddress GetRemoteAddress() const override;
- int Bind(const SocketAddress& bind_addr) override;
- int Connect(const SocketAddress& addr) override;
- int GetError() const override;
- void SetError(int error) override;
- ConnState GetState() const override;
- int GetOption(Option opt, int* value) override;
- int SetOption(Option opt, int value) override;
- int Send(const void* pv, size_t cb) override;
- int SendTo(const void* buffer,
- size_t length,
- const SocketAddress& addr) override;
- int Recv(void* buffer, size_t length, int64_t* timestamp) override;
- int RecvFrom(void* buffer,
- size_t length,
- SocketAddress* out_addr,
- int64_t* timestamp) override;
- int Listen(int backlog) override;
- AsyncSocket* Accept(SocketAddress* out_addr) override;
- int Close() override;
- SocketServer* socketserver() { return ss_; }
- protected:
- int DoConnect(const SocketAddress& connect_addr);
-
- virtual SOCKET DoAccept(SOCKET socket, sockaddr* addr, socklen_t* addrlen);
-
- virtual int DoSend(SOCKET socket, const char* buf, int len, int flags);
-
- virtual int DoSendTo(SOCKET socket,
- const char* buf,
- int len,
- int flags,
- const struct sockaddr* dest_addr,
- socklen_t addrlen);
- void OnResolveResult(AsyncResolverInterface* resolver);
- void UpdateLastError();
- void MaybeRemapSendError();
- uint8_t enabled_events() const { return enabled_events_; }
- virtual void SetEnabledEvents(uint8_t events);
- virtual void EnableEvents(uint8_t events);
- virtual void DisableEvents(uint8_t events);
- int TranslateOption(Option opt, int* slevel, int* sopt);
- PhysicalSocketServer* ss_;
- SOCKET s_;
- bool udp_;
- int family_ = 0;
- RecursiveCriticalSection crit_;
- int error_ RTC_GUARDED_BY(crit_);
- ConnState state_;
- AsyncResolver* resolver_;
- #if !defined(NDEBUG)
- std::string dbg_addr_;
- #endif
- private:
- uint8_t enabled_events_ = 0;
- };
- class SocketDispatcher : public Dispatcher, public PhysicalSocket {
- public:
- explicit SocketDispatcher(PhysicalSocketServer* ss);
- SocketDispatcher(SOCKET s, PhysicalSocketServer* ss);
- ~SocketDispatcher() override;
- bool Initialize();
- virtual bool Create(int type);
- bool Create(int family, int type) override;
- #if defined(WEBRTC_WIN)
- WSAEVENT GetWSAEvent() override;
- SOCKET GetSocket() override;
- bool CheckSignalClose() override;
- #elif defined(WEBRTC_POSIX)
- int GetDescriptor() override;
- bool IsDescriptorClosed() override;
- #endif
- uint32_t GetRequestedEvents() override;
- void OnPreEvent(uint32_t ff) override;
- void OnEvent(uint32_t ff, int err) override;
- int Close() override;
- #if defined(WEBRTC_USE_EPOLL)
- protected:
- void StartBatchedEventUpdates();
- void FinishBatchedEventUpdates();
- void SetEnabledEvents(uint8_t events) override;
- void EnableEvents(uint8_t events) override;
- void DisableEvents(uint8_t events) override;
- #endif
- private:
- #if defined(WEBRTC_WIN)
- static int next_id_;
- int id_;
- bool signal_close_;
- int signal_err_;
- #endif
- #if defined(WEBRTC_USE_EPOLL)
- void MaybeUpdateDispatcher(uint8_t old_events);
- int saved_enabled_events_ = -1;
- #endif
- };
- }
- #endif
|