/* */ #ifndef D_EPOLL_EVENT_POLL_H #define D_EPOLL_EVENT_POLL_H #include "EventPoll.h" #include #include #include "Event.h" #include "a2functional.h" #ifdef ENABLE_ASYNC_DNS #include "AsyncNameResolver.h" #endif // ENABLE_ASYNC_DNS namespace aria2 { class EpollEventPoll : public EventPoll { private: class KSocketEntry; typedef Event KEvent; typedef CommandEvent KCommandEvent; typedef ADNSEvent KADNSEvent; typedef AsyncNameResolverEntry KAsyncNameResolverEntry; friend class AsyncNameResolverEntry; class KSocketEntry : public SocketEntry { public: KSocketEntry(sock_t socket); KSocketEntry(const KSocketEntry&) = delete; KSocketEntry(KSocketEntry&&) = default; struct epoll_event getEvents(); }; friend int accumulateEvent(int events, const KEvent& event); private: typedef std::map KSocketEntrySet; KSocketEntrySet socketEntries_; #ifdef ENABLE_ASYNC_DNS typedef std::map, KAsyncNameResolverEntry> KAsyncNameResolverEntrySet; KAsyncNameResolverEntrySet nameResolverEntries_; #endif // ENABLE_ASYNC_DNS int epfd_; size_t epEventsSize_; std::unique_ptr epEvents_; static const size_t EPOLL_EVENTS_MAX = 1024; bool addEvents(sock_t socket, const KEvent& event); bool deleteEvents(sock_t socket, const KEvent& event); bool addEvents(sock_t socket, Command* command, int events, const std::shared_ptr& rs); bool deleteEvents(sock_t socket, Command* command, const std::shared_ptr& rs); public: EpollEventPoll(); bool good() const; virtual ~EpollEventPoll(); virtual void poll(const struct timeval& tv) CXX11_OVERRIDE; virtual bool addEvents(sock_t socket, Command* command, EventPoll::EventType events) CXX11_OVERRIDE; virtual bool deleteEvents(sock_t socket, Command* command, EventPoll::EventType events) CXX11_OVERRIDE; #ifdef ENABLE_ASYNC_DNS virtual bool addNameResolver(const std::shared_ptr& resolver, Command* command) CXX11_OVERRIDE; virtual bool deleteNameResolver(const std::shared_ptr& resolver, Command* command) CXX11_OVERRIDE; #endif // ENABLE_ASYNC_DNS static const int IEV_READ = EPOLLIN; static const int IEV_WRITE = EPOLLOUT; static const int IEV_ERROR = EPOLLERR; static const int IEV_HUP = EPOLLHUP; }; } // namespace aria2 #endif // D_EPOLL_EVENT_POLL_H