/* */ #ifndef D_POLL_EVENT_POLL_H #define D_POLL_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 PollEventPoll : 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 pollfd getEvents(); }; friend int accumulateEvent(int events, const KEvent& event); private: typedef std::set, DerefLess > > KSocketEntrySet; KSocketEntrySet socketEntries_; #ifdef ENABLE_ASYNC_DNS typedef std::set, DerefLess > > KAsyncNameResolverEntrySet; KAsyncNameResolverEntrySet nameResolverEntries_; #endif // ENABLE_ASYNC_DNS // Allocated the number of struct pollfd in pollfds_. int pollfdCapacity_; // The number of valid struct pollfd in pollfds_. int pollfdNum_; struct pollfd* pollfds_; 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); static int translateEvents(EventPoll::EventType events); public: PollEventPoll(); virtual ~PollEventPoll(); 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 = POLLIN; static const int IEV_WRITE = POLLOUT; static const int IEV_ERROR = POLLERR; static const int IEV_HUP = POLLHUP; }; } // namespace aria2 #endif // D_POLL_EVENT_POLL_H