/* */ #ifndef _D_EPOLL_EVENT_POLL_H_ #define _D_EPOLL_EVENT_POLL_H_ #include "EventPoll.h" # include #include #include "Event.h" #ifdef ENABLE_ASYNC_DNS # include "AsyncNameResolver.h" #endif // ENABLE_ASYNC_DNS namespace aria2 { class Logger; 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); struct epoll_event getEvents(); }; friend int accumulateEvent(int events, const KEvent& event); private: std::deque > socketEntries_; #ifdef ENABLE_ASYNC_DNS std::deque > nameResolverEntries_; #endif // ENABLE_ASYNC_DNS int epfd_; size_t epEventsSize_; struct epoll_event* epEvents_; static const size_t EPOLL_EVENTS_MAX = 1024; Logger* logger_; 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 SharedHandle& rs); bool deleteEvents(sock_t socket, Command* command, const SharedHandle& rs); public: EpollEventPoll(); bool good() const; virtual ~EpollEventPoll(); virtual void poll(const struct timeval& tv); virtual bool addEvents(sock_t socket, Command* command, EventPoll::EventType events); virtual bool deleteEvents(sock_t socket, Command* command, EventPoll::EventType events); #ifdef ENABLE_ASYNC_DNS virtual bool addNameResolver(const SharedHandle& resolver, Command* command); virtual bool deleteNameResolver (const SharedHandle& resolver, Command* command); #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_