2010-04-19 12:53:58 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
|
|
|
* aria2 - The high speed download utility
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give
|
|
|
|
* permission to link the code of portions of this program with the
|
|
|
|
* OpenSSL library under certain conditions as described in each
|
|
|
|
* individual source file, and distribute linked combinations
|
|
|
|
* including the two.
|
|
|
|
* You must obey the GNU General Public License in all respects
|
|
|
|
* for all of the code used other than OpenSSL. If you modify
|
|
|
|
* file(s) with this exception, you may extend this exception to your
|
|
|
|
* version of the file(s), but you are not obligated to do so. If you
|
|
|
|
* do not wish to do so, delete this exception statement from your
|
|
|
|
* version. If you delete this exception statement from all source
|
|
|
|
* files in the program, then also delete it here.
|
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
#include "PollEventPoll.h"
|
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <numeric>
|
|
|
|
|
|
|
|
#include "Command.h"
|
|
|
|
#include "LogFactory.h"
|
|
|
|
#include "Logger.h"
|
|
|
|
|
|
|
|
namespace aria2 {
|
|
|
|
|
2010-04-19 15:04:38 +00:00
|
|
|
PollEventPoll::KSocketEntry::KSocketEntry(sock_t s):
|
2010-04-20 13:19:36 +00:00
|
|
|
SocketEntry<KCommandEvent, KADNSEvent>(s) {}
|
2010-04-19 12:53:58 +00:00
|
|
|
|
2010-04-19 15:04:38 +00:00
|
|
|
int accumulateEvent(int events, const PollEventPoll::KEvent& event)
|
2010-04-19 12:53:58 +00:00
|
|
|
{
|
|
|
|
return events|event.getEvents();
|
|
|
|
}
|
|
|
|
|
2010-04-19 15:04:38 +00:00
|
|
|
struct pollfd PollEventPoll::KSocketEntry::getEvents()
|
2010-04-19 12:53:58 +00:00
|
|
|
{
|
2010-04-19 15:04:38 +00:00
|
|
|
struct pollfd pollEvent;
|
|
|
|
pollEvent.fd = _socket;
|
2010-04-19 12:53:58 +00:00
|
|
|
#ifdef ENABLE_ASYNC_DNS
|
2010-04-19 15:04:38 +00:00
|
|
|
pollEvent.events =
|
2010-04-19 12:53:58 +00:00
|
|
|
std::accumulate(_adnsEvents.begin(),
|
|
|
|
_adnsEvents.end(),
|
|
|
|
std::accumulate(_commandEvents.begin(),
|
|
|
|
_commandEvents.end(), 0, accumulateEvent),
|
|
|
|
accumulateEvent);
|
|
|
|
#else // !ENABLE_ASYNC_DNS
|
2010-04-19 15:04:38 +00:00
|
|
|
pollEvent.events =
|
2010-04-19 12:53:58 +00:00
|
|
|
std::accumulate(_commandEvents.begin(), _commandEvents.end(), 0,
|
|
|
|
accumulateEvent);
|
|
|
|
#endif // !ENABLE_ASYNC_DNS
|
2010-04-19 15:04:38 +00:00
|
|
|
pollEvent.revents = 0;
|
|
|
|
return pollEvent;
|
2010-04-19 12:53:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2010-04-19 15:04:38 +00:00
|
|
|
SharedHandle<KSocketEntry> se(new KSocketEntry(0));
|
2010-04-19 12:53:58 +00:00
|
|
|
for(struct pollfd* first = _pollfds, *last = _pollfds+_pollfdNum;
|
|
|
|
first != last; ++first) {
|
|
|
|
if(first->revents) {
|
|
|
|
se->setSocket(first->fd);
|
2010-04-19 15:04:38 +00:00
|
|
|
std::deque<SharedHandle<KSocketEntry> >::iterator itr =
|
2010-04-19 12:53:58 +00:00
|
|
|
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.
|
2010-04-19 15:04:38 +00:00
|
|
|
for(std::deque<SharedHandle<KAsyncNameResolverEntry> >::iterator i =
|
2010-04-19 12:53:58 +00:00
|
|
|
_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) {
|
2010-04-19 15:04:38 +00:00
|
|
|
newEvents |= IEV_READ;
|
2010-04-19 12:53:58 +00:00
|
|
|
}
|
|
|
|
if(EventPoll::EVENT_WRITE&events) {
|
2010-04-19 15:04:38 +00:00
|
|
|
newEvents |= IEV_WRITE;
|
2010-04-19 12:53:58 +00:00
|
|
|
}
|
|
|
|
if(EventPoll::EVENT_ERROR&events) {
|
2010-04-19 15:04:38 +00:00
|
|
|
newEvents |= IEV_ERROR;
|
2010-04-19 12:53:58 +00:00
|
|
|
}
|
|
|
|
if(EventPoll::EVENT_HUP&events) {
|
2010-04-19 15:04:38 +00:00
|
|
|
newEvents |= IEV_HUP;
|
2010-04-19 12:53:58 +00:00
|
|
|
}
|
|
|
|
return newEvents;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PollEventPoll::addEvents
|
2010-04-19 15:04:38 +00:00
|
|
|
(sock_t socket, const PollEventPoll::KEvent& event)
|
2010-04-19 12:53:58 +00:00
|
|
|
{
|
2010-04-19 15:04:38 +00:00
|
|
|
SharedHandle<KSocketEntry> socketEntry(new KSocketEntry(socket));
|
|
|
|
std::deque<SharedHandle<KSocketEntry> >::iterator i =
|
2010-04-19 12:53:58 +00:00
|
|
|
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) {
|
2010-04-19 15:04:38 +00:00
|
|
|
*first = (*i)->getEvents();
|
2010-04-19 12:53:58 +00:00
|
|
|
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;
|
|
|
|
}
|
2010-04-19 15:04:38 +00:00
|
|
|
_pollfds[_pollfdNum] = socketEntry->getEvents();
|
2010-04-19 12:53:58 +00:00
|
|
|
++_pollfdNum;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PollEventPoll::addEvents
|
|
|
|
(sock_t socket, Command* command, EventPoll::EventType events)
|
|
|
|
{
|
|
|
|
int pollEvents = translateEvents(events);
|
2010-04-19 15:04:38 +00:00
|
|
|
return addEvents(socket, KCommandEvent(command, pollEvents));
|
2010-04-19 12:53:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ENABLE_ASYNC_DNS
|
|
|
|
bool PollEventPoll::addEvents
|
|
|
|
(sock_t socket, Command* command, int events,
|
|
|
|
const SharedHandle<AsyncNameResolver>& rs)
|
|
|
|
{
|
2010-04-19 15:04:38 +00:00
|
|
|
return addEvents(socket, KADNSEvent(rs, command, socket, events));
|
2010-04-19 12:53:58 +00:00
|
|
|
}
|
|
|
|
#endif // ENABLE_ASYNC_DNS
|
|
|
|
|
|
|
|
bool PollEventPoll::deleteEvents
|
2010-04-19 15:04:38 +00:00
|
|
|
(sock_t socket, const PollEventPoll::KEvent& event)
|
2010-04-19 12:53:58 +00:00
|
|
|
{
|
2010-04-19 15:04:38 +00:00
|
|
|
SharedHandle<KSocketEntry> socketEntry(new KSocketEntry(socket));
|
|
|
|
std::deque<SharedHandle<KSocketEntry> >::iterator i =
|
2010-04-19 12:53:58 +00:00
|
|
|
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 {
|
2010-04-19 15:04:38 +00:00
|
|
|
*first = (*i)->getEvents();
|
2010-04-19 12:53:58 +00:00
|
|
|
}
|
|
|
|
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<AsyncNameResolver>& rs)
|
|
|
|
{
|
2010-04-19 15:04:38 +00:00
|
|
|
return deleteEvents(socket, KADNSEvent(rs, command, socket, 0));
|
2010-04-19 12:53:58 +00:00
|
|
|
}
|
|
|
|
#endif // ENABLE_ASYNC_DNS
|
|
|
|
|
|
|
|
bool PollEventPoll::deleteEvents
|
|
|
|
(sock_t socket, Command* command, EventPoll::EventType events)
|
|
|
|
{
|
|
|
|
int pollEvents = translateEvents(events);
|
2010-04-19 15:04:38 +00:00
|
|
|
return deleteEvents(socket, KCommandEvent(command, pollEvents));
|
2010-04-19 12:53:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ENABLE_ASYNC_DNS
|
|
|
|
bool PollEventPoll::addNameResolver
|
|
|
|
(const SharedHandle<AsyncNameResolver>& resolver, Command* command)
|
|
|
|
{
|
2010-04-19 15:04:38 +00:00
|
|
|
SharedHandle<KAsyncNameResolverEntry> entry
|
|
|
|
(new KAsyncNameResolverEntry(resolver, command));
|
|
|
|
std::deque<SharedHandle<KAsyncNameResolverEntry> >::iterator itr =
|
2010-04-19 12:53:58 +00:00
|
|
|
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<AsyncNameResolver>& resolver, Command* command)
|
|
|
|
{
|
2010-04-19 15:04:38 +00:00
|
|
|
SharedHandle<KAsyncNameResolverEntry> entry
|
|
|
|
(new KAsyncNameResolverEntry(resolver, command));
|
|
|
|
std::deque<SharedHandle<KAsyncNameResolverEntry> >::iterator itr =
|
2010-04-19 12:53:58 +00:00
|
|
|
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
|