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/>.
|
|
|
|
*/
|
|
|
|
|
2010-02-12 20:49:00 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
#include "object.hpp"
|
2009-08-08 16:01:58 +02:00
|
|
|
#include "dispatcher.hpp"
|
2009-07-29 12:07:54 +02:00
|
|
|
#include "err.hpp"
|
2009-08-27 10:54:28 +02:00
|
|
|
#include "pipe.hpp"
|
2009-07-29 12:07:54 +02:00
|
|
|
#include "io_thread.hpp"
|
2009-08-20 11:32:23 +02:00
|
|
|
#include "owned.hpp"
|
|
|
|
#include "session.hpp"
|
|
|
|
#include "socket_base.hpp"
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2010-04-29 20:34:48 +02:00
|
|
|
zmq::object_t::object_t (dispatcher_t *dispatcher_, uint32_t thread_slot_) :
|
2009-08-08 16:01:58 +02:00
|
|
|
dispatcher (dispatcher_),
|
2009-07-29 12:07:54 +02:00
|
|
|
thread_slot (thread_slot_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq::object_t::object_t (object_t *parent_) :
|
2009-08-08 16:01:58 +02:00
|
|
|
dispatcher (parent_->dispatcher),
|
2009-07-29 12:07:54 +02:00
|
|
|
thread_slot (parent_->thread_slot)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq::object_t::~object_t ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-04-29 20:34:48 +02:00
|
|
|
uint32_t zmq::object_t::get_thread_slot ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
return thread_slot;
|
|
|
|
}
|
|
|
|
|
2009-09-04 16:02:41 +02:00
|
|
|
zmq::dispatcher_t *zmq::object_t::get_dispatcher ()
|
|
|
|
{
|
|
|
|
return dispatcher;
|
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::object_t::process_command (command_t &cmd_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
switch (cmd_.type) {
|
|
|
|
|
2009-08-27 10:54:28 +02:00
|
|
|
case command_t::revive:
|
|
|
|
process_revive ();
|
|
|
|
break;
|
|
|
|
|
2009-08-08 16:01:58 +02:00
|
|
|
case command_t::stop:
|
|
|
|
process_stop ();
|
2009-07-29 12:07:54 +02:00
|
|
|
break;
|
|
|
|
|
2009-08-08 16:01:58 +02:00
|
|
|
case command_t::plug:
|
|
|
|
process_plug ();
|
2009-12-02 21:26:47 +01:00
|
|
|
process_seqnum ();
|
2009-08-08 16:01:58 +02:00
|
|
|
return;
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2009-08-08 16:01:58 +02:00
|
|
|
case command_t::own:
|
|
|
|
process_own (cmd_.args.own.object);
|
2010-04-08 08:33:38 +02:00
|
|
|
process_seqnum ();
|
2010-02-12 20:03:02 +01:00
|
|
|
break;
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2009-08-20 11:32:23 +02:00
|
|
|
case command_t::attach:
|
2010-02-12 20:49:00 +01:00
|
|
|
process_attach (cmd_.args.attach.engine,
|
2010-02-13 14:07:30 +01:00
|
|
|
blob_t (cmd_.args.attach.peer_identity,
|
|
|
|
cmd_.args.attach.peer_identity_size));
|
2009-12-02 21:26:47 +01:00
|
|
|
process_seqnum ();
|
2010-02-12 20:03:02 +01:00
|
|
|
break;
|
2009-08-20 11:32:23 +02:00
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
case command_t::bind:
|
2010-02-13 15:30:03 +01:00
|
|
|
process_bind (cmd_.args.bind.in_pipe, cmd_.args.bind.out_pipe,
|
|
|
|
blob_t (cmd_.args.bind.peer_identity,
|
|
|
|
cmd_.args.bind.peer_identity_size));
|
2009-12-02 21:26:47 +01:00
|
|
|
process_seqnum ();
|
2010-02-12 20:03:02 +01:00
|
|
|
break;
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2010-03-01 10:13:26 +01:00
|
|
|
case command_t::reader_info:
|
|
|
|
process_reader_info (cmd_.args.reader_info.msgs_read);
|
|
|
|
break;
|
|
|
|
|
2009-08-28 16:51:46 +02:00
|
|
|
case command_t::pipe_term:
|
|
|
|
process_pipe_term ();
|
|
|
|
return;
|
|
|
|
|
|
|
|
case command_t::pipe_term_ack:
|
|
|
|
process_pipe_term_ack ();
|
2010-02-12 20:03:02 +01:00
|
|
|
break;
|
2009-08-28 16:51:46 +02:00
|
|
|
|
2009-08-08 16:01:58 +02:00
|
|
|
case command_t::term_req:
|
|
|
|
process_term_req (cmd_.args.term_req.object);
|
2010-02-12 20:03:02 +01:00
|
|
|
break;
|
2009-08-08 16:01:58 +02:00
|
|
|
|
|
|
|
case command_t::term:
|
|
|
|
process_term ();
|
2010-02-12 20:03:02 +01:00
|
|
|
break;
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2009-08-08 16:01:58 +02:00
|
|
|
case command_t::term_ack:
|
|
|
|
process_term_ack ();
|
2010-02-12 20:03:02 +01:00
|
|
|
break;
|
2009-07-29 12:07:54 +02:00
|
|
|
|
|
|
|
default:
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (false);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
2010-02-12 20:03:02 +01:00
|
|
|
|
|
|
|
// The assumption here is that each command is processed once only,
|
|
|
|
// so deallocating it after processing is all right.
|
|
|
|
deallocate_command (&cmd_);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-28 16:51:46 +02:00
|
|
|
void zmq::object_t::register_pipe (class pipe_t *pipe_)
|
|
|
|
{
|
|
|
|
dispatcher->register_pipe (pipe_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void zmq::object_t::unregister_pipe (class pipe_t *pipe_)
|
|
|
|
{
|
|
|
|
dispatcher->unregister_pipe (pipe_);
|
|
|
|
}
|
|
|
|
|
2009-11-21 20:59:55 +01:00
|
|
|
int zmq::object_t::register_endpoint (const char *addr_, socket_base_t *socket_)
|
|
|
|
{
|
|
|
|
return dispatcher->register_endpoint (addr_, socket_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void zmq::object_t::unregister_endpoints (socket_base_t *socket_)
|
|
|
|
{
|
|
|
|
return dispatcher->unregister_endpoints (socket_);
|
|
|
|
}
|
|
|
|
|
|
|
|
zmq::socket_base_t *zmq::object_t::find_endpoint (const char *addr_)
|
|
|
|
{
|
|
|
|
return dispatcher->find_endpoint (addr_);
|
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq::io_thread_t *zmq::object_t::choose_io_thread (uint64_t taskset_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-08-08 16:01:58 +02:00
|
|
|
return dispatcher->choose_io_thread (taskset_);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::object_t::send_stop ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2010-02-07 09:14:43 +01:00
|
|
|
// 'stop' command goes always from administrative thread to
|
|
|
|
// the current object.
|
2009-07-29 12:07:54 +02:00
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = this;
|
|
|
|
cmd.type = command_t::stop;
|
2010-05-04 10:22:16 +02:00
|
|
|
dispatcher->send_command (thread_slot, cmd);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-12-02 21:26:47 +01:00
|
|
|
void zmq::object_t::send_plug (owned_t *destination_, bool inc_seqnum_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-12-02 21:26:47 +01:00
|
|
|
if (inc_seqnum_)
|
|
|
|
destination_->inc_seqnum ();
|
2009-08-20 11:32:23 +02:00
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
2009-08-08 16:01:58 +02:00
|
|
|
cmd.type = command_t::plug;
|
2009-07-29 12:07:54 +02:00
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
2009-08-20 11:32:23 +02:00
|
|
|
void zmq::object_t::send_own (socket_base_t *destination_, owned_t *object_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2010-04-08 08:33:38 +02:00
|
|
|
destination_->inc_seqnum ();
|
2009-07-29 12:07:54 +02:00
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
2009-08-08 16:01:58 +02:00
|
|
|
cmd.type = command_t::own;
|
|
|
|
cmd.args.own.object = object_;
|
2009-07-29 12:07:54 +02:00
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
2009-12-02 21:26:47 +01:00
|
|
|
void zmq::object_t::send_attach (session_t *destination_, i_engine *engine_,
|
2010-02-13 14:07:30 +01:00
|
|
|
const blob_t &peer_identity_, bool inc_seqnum_)
|
2009-08-20 11:32:23 +02:00
|
|
|
{
|
2009-12-02 21:26:47 +01:00
|
|
|
if (inc_seqnum_)
|
|
|
|
destination_->inc_seqnum ();
|
|
|
|
|
2009-08-20 11:32:23 +02:00
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
|
|
|
cmd.type = command_t::attach;
|
|
|
|
cmd.args.attach.engine = engine_;
|
2010-02-13 14:07:30 +01:00
|
|
|
if (peer_identity_.empty ()) {
|
2010-02-12 20:49:00 +01:00
|
|
|
cmd.args.attach.peer_identity_size = 0;
|
|
|
|
cmd.args.attach.peer_identity = NULL;
|
|
|
|
}
|
|
|
|
else {
|
2010-02-13 15:30:03 +01:00
|
|
|
zmq_assert (peer_identity_.size () <= 0xff);
|
|
|
|
cmd.args.attach.peer_identity_size =
|
|
|
|
(unsigned char) peer_identity_.size ();
|
2010-02-12 20:49:00 +01:00
|
|
|
cmd.args.attach.peer_identity =
|
2010-02-13 14:07:30 +01:00
|
|
|
(unsigned char*) malloc (peer_identity_.size ());
|
2010-02-12 20:49:00 +01:00
|
|
|
zmq_assert (cmd.args.attach.peer_identity_size);
|
2010-02-13 14:07:30 +01:00
|
|
|
memcpy (cmd.args.attach.peer_identity, peer_identity_.data (),
|
|
|
|
peer_identity_.size ());
|
2010-02-12 20:49:00 +01:00
|
|
|
}
|
2009-08-20 11:32:23 +02:00
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
2009-12-01 18:50:54 +01:00
|
|
|
void zmq::object_t::send_bind (socket_base_t *destination_,
|
2010-02-13 15:30:03 +01:00
|
|
|
reader_t *in_pipe_, writer_t *out_pipe_, const blob_t &peer_identity_,
|
|
|
|
bool inc_seqnum_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-12-02 21:26:47 +01:00
|
|
|
if (inc_seqnum_)
|
|
|
|
destination_->inc_seqnum ();
|
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
2009-08-08 16:01:58 +02:00
|
|
|
cmd.type = command_t::bind;
|
2009-08-27 10:54:28 +02:00
|
|
|
cmd.args.bind.in_pipe = in_pipe_;
|
|
|
|
cmd.args.bind.out_pipe = out_pipe_;
|
2010-02-13 15:30:03 +01:00
|
|
|
if (peer_identity_.empty ()) {
|
|
|
|
cmd.args.bind.peer_identity_size = 0;
|
|
|
|
cmd.args.bind.peer_identity = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
zmq_assert (peer_identity_.size () <= 0xff);
|
|
|
|
cmd.args.bind.peer_identity_size =
|
|
|
|
(unsigned char) peer_identity_.size ();
|
|
|
|
cmd.args.bind.peer_identity =
|
|
|
|
(unsigned char*) malloc (peer_identity_.size ());
|
|
|
|
zmq_assert (cmd.args.bind.peer_identity_size);
|
|
|
|
memcpy (cmd.args.bind.peer_identity, peer_identity_.data (),
|
|
|
|
peer_identity_.size ());
|
|
|
|
}
|
2009-08-27 10:54:28 +02:00
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void zmq::object_t::send_revive (object_t *destination_)
|
|
|
|
{
|
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
|
|
|
cmd.type = command_t::revive;
|
2009-07-29 12:07:54 +02:00
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
2010-03-01 10:13:26 +01:00
|
|
|
void zmq::object_t::send_reader_info (writer_t *destination_,
|
|
|
|
uint64_t msgs_read_)
|
|
|
|
{
|
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
|
|
|
cmd.type = command_t::reader_info;
|
|
|
|
cmd.args.reader_info.msgs_read = msgs_read_;
|
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
2009-08-28 16:51:46 +02:00
|
|
|
void zmq::object_t::send_pipe_term (writer_t *destination_)
|
|
|
|
{
|
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
|
|
|
cmd.type = command_t::pipe_term;
|
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void zmq::object_t::send_pipe_term_ack (reader_t *destination_)
|
|
|
|
{
|
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
|
|
|
cmd.type = command_t::pipe_term_ack;
|
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
2009-08-20 11:32:23 +02:00
|
|
|
void zmq::object_t::send_term_req (socket_base_t *destination_,
|
|
|
|
owned_t *object_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
2009-08-08 16:01:58 +02:00
|
|
|
cmd.type = command_t::term_req;
|
|
|
|
cmd.args.term_req.object = object_;
|
2009-07-29 12:07:54 +02:00
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
2009-08-20 11:32:23 +02:00
|
|
|
void zmq::object_t::send_term (owned_t *destination_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
2009-08-08 16:01:58 +02:00
|
|
|
cmd.type = command_t::term;
|
2009-07-29 12:07:54 +02:00
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
2009-08-20 11:32:23 +02:00
|
|
|
void zmq::object_t::send_term_ack (socket_base_t *destination_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
|
|
|
command_t cmd;
|
|
|
|
cmd.destination = destination_;
|
2009-08-08 16:01:58 +02:00
|
|
|
cmd.type = command_t::term_ack;
|
2009-07-29 12:07:54 +02:00
|
|
|
send_command (cmd);
|
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::object_t::process_stop ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (false);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-08 16:01:58 +02:00
|
|
|
void zmq::object_t::process_plug ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (false);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-20 11:32:23 +02:00
|
|
|
void zmq::object_t::process_own (owned_t *object_)
|
|
|
|
{
|
|
|
|
zmq_assert (false);
|
|
|
|
}
|
|
|
|
|
2010-02-12 20:49:00 +01:00
|
|
|
void zmq::object_t::process_attach (i_engine *engine_,
|
2010-02-13 14:07:30 +01:00
|
|
|
const blob_t &peer_identity_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (false);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2010-02-13 15:30:03 +01:00
|
|
|
void zmq::object_t::process_bind (reader_t *in_pipe_, writer_t *out_pipe_,
|
|
|
|
const blob_t &peer_identity_)
|
2009-08-27 10:54:28 +02:00
|
|
|
{
|
|
|
|
zmq_assert (false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void zmq::object_t::process_revive ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (false);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2010-03-01 10:13:26 +01:00
|
|
|
void zmq::object_t::process_reader_info (uint64_t msgs_read_)
|
|
|
|
{
|
|
|
|
zmq_assert (false);
|
|
|
|
}
|
|
|
|
|
2009-08-28 16:51:46 +02:00
|
|
|
void zmq::object_t::process_pipe_term ()
|
|
|
|
{
|
|
|
|
zmq_assert (false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void zmq::object_t::process_pipe_term_ack ()
|
|
|
|
{
|
|
|
|
zmq_assert (false);
|
|
|
|
}
|
|
|
|
|
2009-08-20 11:32:23 +02:00
|
|
|
void zmq::object_t::process_term_req (owned_t *object_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (false);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-08 16:01:58 +02:00
|
|
|
void zmq::object_t::process_term ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (false);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-08-08 16:01:58 +02:00
|
|
|
void zmq::object_t::process_term_ack ()
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2009-08-03 11:30:13 +02:00
|
|
|
zmq_assert (false);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|
2009-12-02 21:26:47 +01:00
|
|
|
void zmq::object_t::process_seqnum ()
|
|
|
|
{
|
|
|
|
zmq_assert (false);
|
|
|
|
}
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
void zmq::object_t::send_command (command_t &cmd_)
|
2009-07-29 12:07:54 +02:00
|
|
|
{
|
2010-05-04 10:22:16 +02:00
|
|
|
dispatcher->send_command (cmd_.destination->get_thread_slot (), cmd_);
|
2009-07-29 12:07:54 +02:00
|
|
|
}
|
|
|
|
|