/* */ #include "PollEventPoll.h" #include #include #include #include "Command.h" #include "LogFactory.h" #include "Logger.h" namespace aria2 { PollEventPoll::KSocketEntry::KSocketEntry(sock_t s): SocketEntry(s) {} int accumulateEvent(int events, const PollEventPoll::KEvent& event) { return events|event.getEvents(); } struct pollfd PollEventPoll::KSocketEntry::getEvents() { struct pollfd pollEvent; pollEvent.fd = _socket; #ifdef ENABLE_ASYNC_DNS pollEvent.events = std::accumulate(_adnsEvents.begin(), _adnsEvents.end(), std::accumulate(_commandEvents.begin(), _commandEvents.end(), 0, accumulateEvent), accumulateEvent); #else // !ENABLE_ASYNC_DNS pollEvent.events = std::accumulate(_commandEvents.begin(), _commandEvents.end(), 0, accumulateEvent); #endif // !ENABLE_ASYNC_DNS pollEvent.revents = 0; return pollEvent; } PollEventPoll::PollEventPoll(): _pollfdCapacity(1024), _pollfdNum(0), _logger(LogFactory::getInstance()) { _pollfds = new struct pollfd[_pollfdCapacity]; } PollEventPoll::~PollEventPoll() { delete [] _pollfds; } void PollEventPoll::poll(const struct timeval& tv) { // timeout is millisec int timeout = tv.tv_sec*1000+tv.tv_usec/1000; int res; while((res = ::poll(_pollfds, _pollfdNum, timeout)) == -1 && errno == EINTR); if(res > 0) { SharedHandle se(new KSocketEntry(0)); for(struct pollfd* first = _pollfds, *last = _pollfds+_pollfdNum; first != last; ++first) { if(first->revents) { se->setSocket(first->fd); std::deque >::iterator itr = std::lower_bound(_socketEntries.begin(), _socketEntries.end(), se); if(itr != _socketEntries.end() && (*itr) == se) { (*itr)->processEvents(first->revents); } else { if(_logger->debug()) { _logger->debug("Socket %d is not found in SocketEntries.", first->fd); } } } } } #ifdef ENABLE_ASYNC_DNS // It turns out that we have to call ares_process_fd before ares's // own timeout and ares may create new sockets or closes socket in // their API. So we call ares_process_fd for all ares_channel and // re-register their sockets. for(std::deque >::iterator i = _nameResolverEntries.begin(), eoi = _nameResolverEntries.end(); i != eoi; ++i) { (*i)->processTimeout(); (*i)->removeSocketEvents(this); (*i)->addSocketEvents(this); } #endif // ENABLE_ASYNC_DNS // TODO timeout of name resolver is determined in Command(AbstractCommand, // DHTEntryPoint...Command) } int PollEventPoll::translateEvents(EventPoll::EventType events) { int newEvents = 0; if(EventPoll::EVENT_READ&events) { newEvents |= IEV_READ; } if(EventPoll::EVENT_WRITE&events) { newEvents |= IEV_WRITE; } if(EventPoll::EVENT_ERROR&events) { newEvents |= IEV_ERROR; } if(EventPoll::EVENT_HUP&events) { newEvents |= IEV_HUP; } return newEvents; } bool PollEventPoll::addEvents (sock_t socket, const PollEventPoll::KEvent& event) { SharedHandle socketEntry(new KSocketEntry(socket)); std::deque >::iterator i = std::lower_bound(_socketEntries.begin(), _socketEntries.end(), socketEntry); if(i != _socketEntries.end() && (*i) == socketEntry) { event.addSelf(*i); for(struct pollfd* first = _pollfds, *last = _pollfds+_pollfdNum; first != last; ++first) { if(first->fd == socket) { *first = (*i)->getEvents(); break; } } } else { _socketEntries.insert(i, socketEntry); event.addSelf(socketEntry); if(_pollfdCapacity == _pollfdNum) { _pollfdCapacity *= 2; struct pollfd* newPollfds = new struct pollfd[_pollfdCapacity]; memcpy(newPollfds, _pollfds, _pollfdNum*sizeof(struct pollfd)); delete [] _pollfds; _pollfds = newPollfds; } _pollfds[_pollfdNum] = socketEntry->getEvents(); ++_pollfdNum; } return true; } bool PollEventPoll::addEvents (sock_t socket, Command* command, EventPoll::EventType events) { int pollEvents = translateEvents(events); return addEvents(socket, KCommandEvent(command, pollEvents)); } #ifdef ENABLE_ASYNC_DNS bool PollEventPoll::addEvents (sock_t socket, Command* command, int events, const SharedHandle& rs) { return addEvents(socket, KADNSEvent(rs, command, socket, events)); } #endif // ENABLE_ASYNC_DNS bool PollEventPoll::deleteEvents (sock_t socket, const PollEventPoll::KEvent& event) { SharedHandle socketEntry(new KSocketEntry(socket)); std::deque >::iterator i = std::lower_bound(_socketEntries.begin(), _socketEntries.end(), socketEntry); if(i != _socketEntries.end() && (*i) == socketEntry) { event.removeSelf(*i); for(struct pollfd* first = _pollfds, *last = _pollfds+_pollfdNum; first != last; ++first) { if(first->fd == socket) { if((*i)->eventEmpty()) { if(_pollfdNum >= 2) { *first = *(last-1); } --_pollfdNum; _socketEntries.erase(i); } else { *first = (*i)->getEvents(); } break; } } return true; } else { if(_logger->debug()) { _logger->debug("Socket %d is not found in SocketEntries.", socket); } return false; } } #ifdef ENABLE_ASYNC_DNS bool PollEventPoll::deleteEvents (sock_t socket, Command* command, const SharedHandle& rs) { return deleteEvents(socket, KADNSEvent(rs, command, socket, 0)); } #endif // ENABLE_ASYNC_DNS bool PollEventPoll::deleteEvents (sock_t socket, Command* command, EventPoll::EventType events) { int pollEvents = translateEvents(events); return deleteEvents(socket, KCommandEvent(command, pollEvents)); } #ifdef ENABLE_ASYNC_DNS bool PollEventPoll::addNameResolver (const SharedHandle& resolver, Command* command) { SharedHandle entry (new KAsyncNameResolverEntry(resolver, command)); std::deque >::iterator itr = std::find(_nameResolverEntries.begin(), _nameResolverEntries.end(), entry); if(itr == _nameResolverEntries.end()) { _nameResolverEntries.push_back(entry); entry->addSocketEvents(this); return true; } else { return false; } } bool PollEventPoll::deleteNameResolver (const SharedHandle& resolver, Command* command) { SharedHandle entry (new KAsyncNameResolverEntry(resolver, command)); std::deque >::iterator itr = std::find(_nameResolverEntries.begin(), _nameResolverEntries.end(), entry); if(itr == _nameResolverEntries.end()) { return false; } else { (*itr)->removeSocketEvents(this); _nameResolverEntries.erase(itr); return true; } } #endif // ENABLE_ASYNC_DNS } // namespace aria2