2009-07-29 12:07:54 +02:00
|
|
|
/*
|
2010-01-05 08:29:35 +01:00
|
|
|
Copyright (c) 2007-2010 iMatix Corporation
|
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
|
|
|
|
the terms of the Lesser GNU General Public License as published by
|
|
|
|
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
|
|
|
|
Lesser GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the Lesser GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-12-15 23:49:55 +01:00
|
|
|
#include <new>
|
|
|
|
|
2010-03-11 20:33:27 +01:00
|
|
|
#include "../include/zmq.h"
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2009-08-08 16:01:58 +02:00
|
|
|
#include "dispatcher.hpp"
|
2009-11-21 20:59:55 +01:00
|
|
|
#include "socket_base.hpp"
|
2009-07-29 12:07:54 +02:00
|
|
|
#include "app_thread.hpp"
|
|
|
|
#include "io_thread.hpp"
|
|
|
|
#include "platform.hpp"
|
|
|
|
#include "err.hpp"
|
|
|
|
#include "pipe.hpp"
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
#if defined ZMQ_HAVE_WINDOWS
|
2009-07-29 12:07:54 +02:00
|
|
|
#include "windows.h"
|
|
|
|
#endif
|
|
|
|
|
2010-04-29 20:34:48 +02:00
|
|
|
zmq::dispatcher_t::dispatcher_t (uint32_t app_threads_, uint32_t io_threads_) :
|
2009-09-04 16:02:41 +02:00
|
|
|
sockets (0),
|
|
|
|
terminated (false)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-08-03 11:30:13 +02:00
|
|
|
#ifdef ZMQ_HAVE_WINDOWS
|
2009-07-29 12:07:54 +02:00
|
|
|
// Intialise Windows sockets. Note that WSAStartup can be called multiple
|
|
|
|
// times given that WSACleanup will be called for each WSAStartup.
|
|
|
|
WORD version_requested = MAKEWORD (2, 2);
|
|
|
|
WSADATA wsa_data;
|
|
|
|
int rc = WSAStartup (version_requested, &wsa_data);
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (rc == 0);
|
|
|
|
zmq_assert (LOBYTE (wsa_data.wVersion) == 2 &&
|
2009-07-29 12:07:54 +02:00
|
|
|
HIBYTE (wsa_data.wVersion) == 2);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Create application thread proxies.
|
2010-04-29 20:34:48 +02:00
|
|
|
for (uint32_t i = 0; i != app_threads_; i++) {
|
2010-02-08 18:37:48 +01:00
|
|
|
app_thread_info_t info;
|
|
|
|
info.associated = false;
|
2010-04-29 17:20:23 +02:00
|
|
|
info.app_thread = new (std::nothrow) app_thread_t (this, i);
|
2010-02-08 18:37:48 +01:00
|
|
|
zmq_assert (info.app_thread);
|
|
|
|
app_threads.push_back (info);
|
|
|
|
signalers.push_back (info.app_thread->get_signaler ());
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create I/O thread objects.
|
2010-04-29 20:34:48 +02:00
|
|
|
for (uint32_t i = 0; i != io_threads_; i++) {
|
2009-12-15 23:49:55 +01:00
|
|
|
io_thread_t *io_thread = new (std::nothrow) io_thread_t (this,
|
2010-04-29 17:20:23 +02:00
|
|
|
i + app_threads_);
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (io_thread);
|
2009-07-29 12:07:54 +02:00
|
|
|
io_threads.push_back (io_thread);
|
|
|
|
signalers.push_back (io_thread->get_signaler ());
|
|
|
|
}
|
|
|
|
|
2010-02-07 09:14:43 +01:00
|
|
|
// Create the administrative thread. Nothing special is needed. NULL
|
|
|
|
// is used instead of signaler given that as for now, administrative
|
|
|
|
// thread doesn't receive any commands. The only thing it is used for
|
|
|
|
// is sending 'stop' command to I/O threads on shutdown.
|
|
|
|
signalers.push_back (NULL);
|
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
// Create command pipe matrix.
|
2009-12-15 23:49:55 +01:00
|
|
|
command_pipes = new (std::nothrow) command_pipe_t [signalers.size () *
|
|
|
|
signalers.size ()];
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (command_pipes);
|
2009-07-29 12:07:54 +02:00
|
|
|
|
|
|
|
// Launch I/O threads.
|
2010-04-29 20:34:48 +02:00
|
|
|
for (uint32_t i = 0; i != io_threads_; i++)
|
2009-07-29 12:07:54 +02:00
|
|
|
io_threads [i]->start ();
|
|
|
|
}
|
|
|
|
|
2009-09-04 16:02:41 +02:00
|
|
|
int zmq::dispatcher_t::term ()
|
|
|
|
{
|
2010-04-11 16:36:27 +02:00
|
|
|
// First send stop command to application threads so that any
|
|
|
|
// blocking calls are interrupted.
|
|
|
|
for (app_threads_t::size_type i = 0; i != app_threads.size (); i++)
|
|
|
|
app_threads [i].app_thread->stop ();
|
|
|
|
|
|
|
|
// Then mark context as terminated.
|
2009-09-04 16:02:41 +02:00
|
|
|
term_sync.lock ();
|
|
|
|
zmq_assert (!terminated);
|
|
|
|
terminated = true;
|
|
|
|
bool destroy = (sockets == 0);
|
|
|
|
term_sync.unlock ();
|
|
|
|
|
2010-04-11 16:36:27 +02:00
|
|
|
// If there are no sockets open, destroy the context immediately.
|
2009-09-04 16:02:41 +02:00
|
|
|
if (destroy)
|
|
|
|
delete this;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-08 16:01:58 +02:00
|
|
|
zmq::dispatcher_t::~dispatcher_t ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-08-06 12:51:32 +02:00
|
|
|
// Ask I/O threads to terminate. If stop signal wasn't sent to I/O
|
|
|
|
// thread subsequent invocation of destructor would hang-up.
|
2009-07-29 12:07:54 +02:00
|
|
|
for (io_threads_t::size_type i = 0; i != io_threads.size (); i++)
|
|
|
|
io_threads [i]->stop ();
|
|
|
|
|
|
|
|
// Wait till I/O threads actually terminate.
|
|
|
|
for (io_threads_t::size_type i = 0; i != io_threads.size (); i++)
|
2009-08-06 12:51:32 +02:00
|
|
|
delete io_threads [i];
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2009-09-21 17:20:13 +02:00
|
|
|
// Close all application theads, sockets, io_objects etc.
|
|
|
|
for (app_threads_t::size_type i = 0; i != app_threads.size (); i++)
|
2010-02-08 18:37:48 +01:00
|
|
|
delete app_threads [i].app_thread;
|
2009-09-21 17:20:13 +02:00
|
|
|
|
2009-08-28 16:51:46 +02:00
|
|
|
// Deallocate all the orphaned pipes.
|
2009-09-16 14:02:43 +02:00
|
|
|
while (!pipes.empty ())
|
|
|
|
delete *pipes.begin ();
|
2009-08-28 16:51:46 +02:00
|
|
|
|
2010-02-12 20:03:02 +01:00
|
|
|
// TODO: Deallocate any commands still in the pipes. Keep in mind that
|
|
|
|
// simple reading from a pipe and deallocating commands won't do as
|
|
|
|
// command pipe has template parameter D set to true, meaning that
|
|
|
|
// read may return false even if there are still commands in the pipe.
|
2009-07-29 12:07:54 +02:00
|
|
|
delete [] command_pipes;
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
#ifdef ZMQ_HAVE_WINDOWS
|
2009-07-29 12:07:54 +02:00
|
|
|
// On Windows, uninitialise socket layer.
|
|
|
|
int rc = WSACleanup ();
|
|
|
|
wsa_assert (rc != SOCKET_ERROR);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-04-29 20:34:48 +02:00
|
|
|
uint32_t zmq::dispatcher_t::thread_slot_count ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2010-04-29 20:34:48 +02:00
|
|
|
return (uint32_t) signalers.size ();
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-09 16:30:22 +02:00
|
|
|
zmq::socket_base_t *zmq::dispatcher_t::create_socket (int type_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2010-02-08 18:37:48 +01:00
|
|
|
app_threads_sync.lock ();
|
|
|
|
|
|
|
|
// Find whether the calling thread has app_thread_t object associated
|
|
|
|
// already. At the same time find an unused app_thread_t so that it can
|
|
|
|
// be used if there's no associated object for the calling thread.
|
|
|
|
// Check whether thread ID is already assigned. If so, return it.
|
|
|
|
app_threads_t::size_type unused = app_threads.size ();
|
|
|
|
app_threads_t::size_type current;
|
|
|
|
for (current = 0; current != app_threads.size (); current++) {
|
|
|
|
if (app_threads [current].associated &&
|
|
|
|
thread_t::equal (thread_t::id (), app_threads [current].tid))
|
|
|
|
break;
|
|
|
|
if (!app_threads [current].associated)
|
|
|
|
unused = current;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no app_thread_t is associated with the calling thread,
|
|
|
|
// associate it with one of the unused app_thread_t objects.
|
|
|
|
if (current == app_threads.size ()) {
|
|
|
|
if (unused == app_threads.size ()) {
|
|
|
|
app_threads_sync.unlock ();
|
|
|
|
errno = EMTHREAD;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
app_threads [unused].associated = true;
|
|
|
|
app_threads [unused].tid = thread_t::id ();
|
|
|
|
current = unused;
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
2010-02-08 18:37:48 +01:00
|
|
|
|
|
|
|
app_thread_t *thread = app_threads [current].app_thread;
|
|
|
|
app_threads_sync.unlock ();
|
2009-08-08 16:01:58 +02:00
|
|
|
|
2010-02-02 08:46:35 +01:00
|
|
|
socket_base_t *s = thread->create_socket (type_);
|
|
|
|
if (!s)
|
|
|
|
return NULL;
|
|
|
|
|
2009-09-04 16:02:41 +02:00
|
|
|
term_sync.lock ();
|
|
|
|
sockets++;
|
|
|
|
term_sync.unlock ();
|
|
|
|
|
2010-02-02 08:46:35 +01:00
|
|
|
return s;
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-09-04 16:02:41 +02:00
|
|
|
void zmq::dispatcher_t::destroy_socket ()
|
|
|
|
{
|
|
|
|
// If zmq_term was already called and there are no more sockets,
|
|
|
|
// terminate the whole 0MQ infrastructure.
|
|
|
|
term_sync.lock ();
|
|
|
|
zmq_assert (sockets > 0);
|
|
|
|
sockets--;
|
|
|
|
bool destroy = (sockets == 0 && terminated);
|
|
|
|
term_sync.unlock ();
|
|
|
|
|
|
|
|
if (destroy)
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2010-02-08 18:37:48 +01:00
|
|
|
void zmq::dispatcher_t::no_sockets (app_thread_t *thread_)
|
|
|
|
{
|
|
|
|
app_threads_sync.lock ();
|
|
|
|
app_threads_t::size_type i;
|
|
|
|
for (i = 0; i != app_threads.size (); i++)
|
|
|
|
if (app_threads [i].app_thread == thread_) {
|
|
|
|
app_threads [i].associated = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
zmq_assert (i != app_threads.size ());
|
|
|
|
app_threads_sync.unlock ();
|
|
|
|
}
|
|
|
|
|
2010-04-29 20:34:48 +02:00
|
|
|
void zmq::dispatcher_t::write (uint32_t source_, uint32_t destination_,
|
2010-02-07 09:14:43 +01:00
|
|
|
const command_t &command_)
|
|
|
|
{
|
|
|
|
command_pipe_t &pipe =
|
|
|
|
command_pipes [source_ * signalers.size () + destination_];
|
|
|
|
pipe.write (command_);
|
|
|
|
if (!pipe.flush ())
|
|
|
|
signalers [destination_]->signal (source_);
|
|
|
|
}
|
|
|
|
|
2010-04-29 20:34:48 +02:00
|
|
|
bool zmq::dispatcher_t::read (uint32_t source_, uint32_t destination_,
|
2010-02-07 09:14:43 +01:00
|
|
|
command_t *command_)
|
|
|
|
{
|
|
|
|
return command_pipes [source_ * signalers.size () +
|
|
|
|
destination_].read (command_);
|
|
|
|
}
|
|
|
|
|
2010-02-02 13:29:31 +01:00
|
|
|
zmq::io_thread_t *zmq::dispatcher_t::choose_io_thread (uint64_t affinity_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
// Find the I/O thread with minimum load.
|
2010-02-02 13:29:31 +01:00
|
|
|
zmq_assert (io_threads.size () > 0);
|
|
|
|
int min_load = -1;
|
2009-07-29 12:07:54 +02:00
|
|
|
io_threads_t::size_type result = 0;
|
2010-02-02 13:29:31 +01:00
|
|
|
for (io_threads_t::size_type i = 0; i != io_threads.size (); i++) {
|
|
|
|
if (!affinity_ || (affinity_ & (uint64_t (1) << i))) {
|
2009-07-29 12:07:54 +02:00
|
|
|
int load = io_threads [i]->get_load ();
|
2010-02-02 13:29:31 +01:00
|
|
|
if (min_load == -1 || load < min_load) {
|
2009-07-29 12:07:54 +02:00
|
|
|
min_load = load;
|
|
|
|
result = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-02-02 13:29:31 +01:00
|
|
|
zmq_assert (min_load != -1);
|
2009-07-29 12:07:54 +02:00
|
|
|
return io_threads [result];
|
|
|
|
}
|
2009-08-28 16:51:46 +02:00
|
|
|
|
|
|
|
void zmq::dispatcher_t::register_pipe (class pipe_t *pipe_)
|
|
|
|
{
|
|
|
|
pipes_sync.lock ();
|
|
|
|
bool inserted = pipes.insert (pipe_).second;
|
|
|
|
zmq_assert (inserted);
|
|
|
|
pipes_sync.unlock ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void zmq::dispatcher_t::unregister_pipe (class pipe_t *pipe_)
|
|
|
|
{
|
|
|
|
pipes_sync.lock ();
|
|
|
|
pipes_t::size_type erased = pipes.erase (pipe_);
|
|
|
|
zmq_assert (erased == 1);
|
|
|
|
pipes_sync.unlock ();
|
|
|
|
}
|
2009-11-21 20:59:55 +01:00
|
|
|
|
|
|
|
int zmq::dispatcher_t::register_endpoint (const char *addr_,
|
|
|
|
socket_base_t *socket_)
|
|
|
|
{
|
|
|
|
endpoints_sync.lock ();
|
|
|
|
|
2010-03-19 09:14:26 +01:00
|
|
|
bool inserted = endpoints.insert (std::make_pair (std::string (addr_),
|
|
|
|
socket_)).second;
|
2009-11-21 20:59:55 +01:00
|
|
|
if (!inserted) {
|
|
|
|
errno = EADDRINUSE;
|
|
|
|
endpoints_sync.unlock ();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
endpoints_sync.unlock ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void zmq::dispatcher_t::unregister_endpoints (socket_base_t *socket_)
|
|
|
|
{
|
|
|
|
endpoints_sync.lock ();
|
|
|
|
|
|
|
|
endpoints_t::iterator it = endpoints.begin ();
|
|
|
|
while (it != endpoints.end ()) {
|
|
|
|
if (it->second == socket_) {
|
|
|
|
endpoints_t::iterator to_erase = it;
|
|
|
|
it++;
|
|
|
|
endpoints.erase (to_erase);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
it++;
|
|
|
|
}
|
|
|
|
|
|
|
|
endpoints_sync.unlock ();
|
|
|
|
}
|
|
|
|
|
|
|
|
zmq::socket_base_t *zmq::dispatcher_t::find_endpoint (const char *addr_)
|
|
|
|
{
|
|
|
|
endpoints_sync.lock ();
|
|
|
|
|
|
|
|
endpoints_t::iterator it = endpoints.find (addr_);
|
|
|
|
if (it == endpoints.end ()) {
|
|
|
|
endpoints_sync.unlock ();
|
|
|
|
errno = ECONNREFUSED;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
socket_base_t *endpoint = it->second;
|
|
|
|
|
|
|
|
// Increment the command sequence number of the peer so that it won't
|
|
|
|
// get deallocated until "bind" command is issued by the caller.
|
2009-12-02 21:26:47 +01:00
|
|
|
// The subsequent 'bind' has to be called with inc_seqnum parameter
|
|
|
|
// set to false, so that the seqnum isn't incremented twice.
|
2009-11-21 20:59:55 +01:00
|
|
|
endpoint->inc_seqnum ();
|
|
|
|
|
|
|
|
endpoints_sync.unlock ();
|
|
|
|
return endpoint;
|
|
|
|
}
|
|
|
|
|