2009-07-29 12:07:54 +02:00
|
|
|
/*
|
2013-03-12 13:17:00 +01:00
|
|
|
Copyright (c) 2007-2013 Contributors as noted in the AUTHORS file
|
2009-07-29 12:07:54 +02:00
|
|
|
|
|
|
|
This file is part of 0MQ.
|
|
|
|
|
|
|
|
0MQ is free software; you can redistribute it and/or modify it under
|
2010-10-30 15:08:28 +02:00
|
|
|
the terms of the GNU Lesser General Public License as published by
|
2009-07-29 12:07:54 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
0MQ 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
|
2010-10-30 15:08:28 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2010-10-30 15:08:28 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2009-07-29 12:07:54 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-07-24 18:13:29 +02:00
|
|
|
#include "select.hpp"
|
|
|
|
#if defined ZMQ_USE_SELECT
|
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
#include "platform.hpp"
|
2011-06-18 20:44:03 +02:00
|
|
|
#if defined ZMQ_HAVE_WINDOWS
|
|
|
|
#include "windows.hpp"
|
2009-08-03 11:30:13 +02:00
|
|
|
#elif defined ZMQ_HAVE_HPUX
|
2009-07-29 12:07:54 +02:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
2009-08-03 11:30:13 +02:00
|
|
|
#elif defined ZMQ_HAVE_OPENVMS
|
2009-07-29 12:07:54 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#else
|
|
|
|
#include <sys/select.h>
|
|
|
|
#endif
|
|
|
|
|
2011-06-18 20:44:03 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <algorithm>
|
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
#include "err.hpp"
|
|
|
|
#include "config.hpp"
|
|
|
|
#include "i_poll_events.hpp"
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq::select_t::select_t () :
|
2009-07-29 12:07:54 +02:00
|
|
|
maxfd (retired_fd),
|
|
|
|
retired (false),
|
|
|
|
stopping (false)
|
|
|
|
{
|
|
|
|
// Clear file descriptor sets.
|
|
|
|
FD_ZERO (&source_set_in);
|
|
|
|
FD_ZERO (&source_set_out);
|
|
|
|
FD_ZERO (&source_set_err);
|
|
|
|
}
|
|
|
|
|
2009-08-06 12:51:32 +02:00
|
|
|
zmq::select_t::~select_t ()
|
|
|
|
{
|
2009-09-14 12:28:13 +02:00
|
|
|
worker.stop ();
|
2009-08-06 12:51:32 +02:00
|
|
|
}
|
|
|
|
|
2009-10-02 10:46:36 +02:00
|
|
|
zmq::select_t::handle_t zmq::select_t::add_fd (fd_t fd_, i_poll_events *events_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
// Store the file descriptor.
|
|
|
|
fd_entry_t entry = {fd_, events_};
|
|
|
|
fds.push_back (entry);
|
|
|
|
|
2010-09-04 16:12:33 +02:00
|
|
|
// Ensure we do not attempt to select () on more than FD_SETSIZE
|
|
|
|
// file descriptors.
|
|
|
|
zmq_assert (fds.size () <= FD_SETSIZE);
|
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
// Start polling on errors.
|
|
|
|
FD_SET (fd_, &source_set_err);
|
|
|
|
|
|
|
|
// Adjust maxfd if necessary.
|
|
|
|
if (fd_ > maxfd)
|
|
|
|
maxfd = fd_;
|
|
|
|
|
|
|
|
// Increase the load metric of the thread.
|
2010-09-26 19:22:33 +02:00
|
|
|
adjust_load (1);
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2009-10-02 10:46:36 +02:00
|
|
|
return fd_;
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::select_t::rm_fd (handle_t handle_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
// Mark the descriptor as retired.
|
|
|
|
fd_set_t::iterator it;
|
2011-01-18 15:57:45 +01:00
|
|
|
for (it = fds.begin (); it != fds.end (); ++it)
|
2009-10-02 10:46:36 +02:00
|
|
|
if (it->fd == handle_)
|
2009-07-29 12:07:54 +02:00
|
|
|
break;
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (it != fds.end ());
|
2009-07-29 12:07:54 +02:00
|
|
|
it->fd = retired_fd;
|
|
|
|
retired = true;
|
|
|
|
|
|
|
|
// Stop polling on the descriptor.
|
2009-10-02 10:46:36 +02:00
|
|
|
FD_CLR (handle_, &source_set_in);
|
|
|
|
FD_CLR (handle_, &source_set_out);
|
|
|
|
FD_CLR (handle_, &source_set_err);
|
2009-07-29 12:07:54 +02:00
|
|
|
|
|
|
|
// Discard all events generated on this file descriptor.
|
2009-10-02 10:46:36 +02:00
|
|
|
FD_CLR (handle_, &readfds);
|
|
|
|
FD_CLR (handle_, &writefds);
|
|
|
|
FD_CLR (handle_, &exceptfds);
|
2009-07-29 12:07:54 +02:00
|
|
|
|
|
|
|
// Adjust the maxfd attribute if we have removed the
|
|
|
|
// highest-numbered file descriptor.
|
2009-10-02 10:46:36 +02:00
|
|
|
if (handle_ == maxfd) {
|
2009-07-29 12:07:54 +02:00
|
|
|
maxfd = retired_fd;
|
2011-01-18 15:57:45 +01:00
|
|
|
for (fd_set_t::iterator it = fds.begin (); it != fds.end (); ++it)
|
2009-07-29 12:07:54 +02:00
|
|
|
if (it->fd > maxfd)
|
|
|
|
maxfd = it->fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decrease the load metric of the thread.
|
2010-09-26 19:22:33 +02:00
|
|
|
adjust_load (-1);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::select_t::set_pollin (handle_t handle_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-10-02 10:46:36 +02:00
|
|
|
FD_SET (handle_, &source_set_in);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::select_t::reset_pollin (handle_t handle_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-10-02 10:46:36 +02:00
|
|
|
FD_CLR (handle_, &source_set_in);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::select_t::set_pollout (handle_t handle_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-10-02 10:46:36 +02:00
|
|
|
FD_SET (handle_, &source_set_out);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::select_t::reset_pollout (handle_t handle_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-10-02 10:46:36 +02:00
|
|
|
FD_CLR (handle_, &source_set_out);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::select_t::start ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
worker.start (worker_routine, this);
|
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::select_t::stop ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
stopping = true;
|
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::select_t::loop ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
while (!stopping) {
|
|
|
|
|
2010-10-09 19:19:50 +02:00
|
|
|
// Execute any due timers.
|
2010-10-15 11:21:56 +02:00
|
|
|
int timeout = (int) execute_timers ();
|
2010-10-09 19:19:50 +02:00
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
// Intialise the pollsets.
|
|
|
|
memcpy (&readfds, &source_set_in, sizeof source_set_in);
|
|
|
|
memcpy (&writefds, &source_set_out, sizeof source_set_out);
|
|
|
|
memcpy (&exceptfds, &source_set_err, sizeof source_set_err);
|
|
|
|
|
|
|
|
// Wait for events.
|
2010-09-27 11:18:21 +02:00
|
|
|
struct timeval tv = {(long) (timeout / 1000),
|
|
|
|
(long) (timeout % 1000 * 1000)};
|
2009-08-03 11:30:13 +02:00
|
|
|
#ifdef ZMQ_HAVE_WINDOWS
|
2011-05-15 13:12:09 +02:00
|
|
|
int rc = select (0, &readfds, &writefds, &exceptfds,
|
|
|
|
timeout ? &tv : NULL);
|
2009-07-29 12:07:54 +02:00
|
|
|
wsa_assert (rc != SOCKET_ERROR);
|
|
|
|
#else
|
2011-05-15 13:12:09 +02:00
|
|
|
int rc = select (maxfd + 1, &readfds, &writefds, &exceptfds,
|
|
|
|
timeout ? &tv : NULL);
|
2012-11-13 13:06:29 +01:00
|
|
|
if (rc == -1) {
|
|
|
|
errno_assert (errno == EINTR);
|
2009-07-29 12:07:54 +02:00
|
|
|
continue;
|
2012-11-13 13:06:29 +01:00
|
|
|
}
|
2009-07-29 12:07:54 +02:00
|
|
|
#endif
|
|
|
|
|
2010-09-26 21:42:23 +02:00
|
|
|
// If there are no events (i.e. it's a timeout) there's no point
|
|
|
|
// in checking the pollset.
|
|
|
|
if (rc == 0)
|
2009-07-29 12:07:54 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
for (fd_set_t::size_type i = 0; i < fds.size (); i ++) {
|
|
|
|
if (fds [i].fd == retired_fd)
|
|
|
|
continue;
|
|
|
|
if (FD_ISSET (fds [i].fd, &exceptfds))
|
|
|
|
fds [i].events->in_event ();
|
|
|
|
if (fds [i].fd == retired_fd)
|
|
|
|
continue;
|
|
|
|
if (FD_ISSET (fds [i].fd, &writefds))
|
|
|
|
fds [i].events->out_event ();
|
|
|
|
if (fds [i].fd == retired_fd)
|
|
|
|
continue;
|
|
|
|
if (FD_ISSET (fds [i].fd, &readfds))
|
|
|
|
fds [i].events->in_event ();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destroy retired event sources.
|
|
|
|
if (retired) {
|
2010-11-01 12:54:58 +01:00
|
|
|
fds.erase (std::remove_if (fds.begin (), fds.end (),
|
|
|
|
zmq::select_t::is_retired_fd), fds.end ());
|
2009-07-29 12:07:54 +02:00
|
|
|
retired = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::select_t::worker_routine (void *arg_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
((select_t*) arg_)->loop ();
|
|
|
|
}
|
2010-11-01 12:54:58 +01:00
|
|
|
|
|
|
|
bool zmq::select_t::is_retired_fd (const fd_entry_t &entry)
|
|
|
|
{
|
|
|
|
return (entry.fd == retired_fd);
|
|
|
|
}
|
|
|
|
|
2011-07-24 18:13:29 +02:00
|
|
|
#endif
|