/* Copyright (c) 2007-2009 FastMQ Inc. 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 . */ #include "object.hpp" #include "dispatcher.hpp" #include "err.hpp" #include "pipe_reader.hpp" #include "pipe_writer.hpp" #include "session.hpp" #include "io_thread.hpp" #include "simple_semaphore.hpp" #include "i_engine.hpp" zs::object_t::object_t (dispatcher_t *dispatcher_, int thread_slot_) : dispatcher (dispatcher_), thread_slot (thread_slot_) { } zs::object_t::object_t (object_t *parent_) : dispatcher (parent_->dispatcher), thread_slot (parent_->thread_slot) { } zs::object_t::~object_t () { } int zs::object_t::thread_slot_count () { return dispatcher->thread_slot_count (); } int zs::object_t::get_thread_slot () { return thread_slot; } void zs::object_t::process_command (command_t &cmd_) { switch (cmd_.type) { case command_t::head: process_head (cmd_.args.head.bytes); break; case command_t::tail: process_tail (cmd_.args.tail.bytes); break; case command_t::engine: process_engine (cmd_.args.engine.engine); break; case command_t::bind: process_bind (cmd_.args.bind.reader, cmd_.args.bind.peer); break; case command_t::reg: process_reg (cmd_.args.reg.smph); break; case command_t::reg_and_bind: process_reg_and_bind (cmd_.args.reg_and_bind.peer, cmd_.args.reg_and_bind.flow_in, cmd_.args.reg_and_bind.flow_out); break; case command_t::unreg: process_unreg (cmd_.args.unreg.smph); break; case command_t::terminate: process_terminate (); break; case command_t::terminate_ack: process_terminate_ack (); break; case command_t::stop: process_stop (); return; default: zs_assert (false); } } void zs::object_t::create_pipe (object_t *reader_parent_, object_t *writer_parent_, uint64_t hwm_, uint64_t lwm_, pipe_reader_t **reader_, pipe_writer_t **writer_) { dispatcher->create_pipe (reader_parent_, writer_parent_, hwm_, lwm_, reader_, writer_); } void zs::object_t::destroy_pipe (pipe_t *pipe_) { dispatcher->destroy_pipe (pipe_); } int zs::object_t::register_inproc_endpoint (const char *endpoint_, session_t *session_) { return dispatcher->register_inproc_endpoint (endpoint_, session_); } zs::object_t *zs::object_t::get_inproc_endpoint (const char *endpoint_) { return dispatcher->get_inproc_endpoint (endpoint_); } void zs::object_t::unregister_inproc_endpoints (session_t *session_) { dispatcher->unregister_inproc_endpoints (session_); } zs::io_thread_t *zs::object_t::choose_io_thread (uint64_t taskset_) { return dispatcher->choose_io_thread (taskset_); } void zs::object_t::send_stop () { // Send command goes always to the current object. To-self pipe is // used exclusively for sending this command. command_t cmd; cmd.destination = this; cmd.type = command_t::stop; dispatcher->write (thread_slot, thread_slot, cmd); } void zs::object_t::send_bind (object_t *destination_, pipe_reader_t *reader_, session_t *peer_) { command_t cmd; cmd.destination = destination_; cmd.type = command_t::bind; cmd.args.bind.reader = reader_; cmd.args.bind.peer = peer_; send_command (cmd); } void zs::object_t::send_head (object_t *destination_, uint64_t bytes_) { command_t cmd; cmd.destination = destination_; cmd.type = command_t::head; cmd.args.head.bytes = bytes_; send_command (cmd); } void zs::object_t::send_tail (object_t *destination_, uint64_t bytes_) { command_t cmd; cmd.destination = destination_; cmd.type = command_t::tail; cmd.args.tail.bytes = bytes_; send_command (cmd); } void zs::object_t::send_reg (object_t *destination_, simple_semaphore_t *smph_) { command_t cmd; cmd.destination = destination_; cmd.type = command_t::reg; cmd.args.reg.smph = smph_; send_command (cmd); } void zs::object_t::send_reg_and_bind (object_t *destination_, session_t *peer_, bool flow_in_, bool flow_out_) { command_t cmd; cmd.destination = destination_; cmd.type = command_t::reg_and_bind; cmd.args.reg_and_bind.peer = peer_; cmd.args.reg_and_bind.flow_in = flow_in_; cmd.args.reg_and_bind.flow_out = flow_out_; send_command (cmd); } void zs::object_t::send_unreg (object_t *destination_, simple_semaphore_t *smph_) { command_t cmd; cmd.destination = destination_; cmd.type = command_t::unreg; cmd.args.unreg.smph = smph_; send_command (cmd); } void zs::object_t::send_engine (object_t *destination_, i_engine *engine_) { command_t cmd; cmd.destination = destination_; cmd.type = command_t::engine; cmd.args.engine.engine = engine_; send_command (cmd); } void zs::object_t::send_terminate (object_t *destination_) { command_t cmd; cmd.destination = destination_; cmd.type = command_t::terminate; send_command (cmd); } void zs::object_t::send_terminate_ack (object_t *destination_) { command_t cmd; cmd.destination = destination_; cmd.type = command_t::terminate_ack; send_command (cmd); } void zs::object_t::process_stop () { zs_assert (false); } void zs::object_t::process_bind (pipe_reader_t *reader_, session_t *peer_) { zs_assert (false); } void zs::object_t::process_head (uint64_t bytes_) { zs_assert (false); } void zs::object_t::process_tail (uint64_t bytes_) { zs_assert (false); } void zs::object_t::process_reg (simple_semaphore_t *smph_) { zs_assert (false); } void zs::object_t::process_reg_and_bind (session_t *session_, bool flow_in_, bool flow_out_) { zs_assert (false); } void zs::object_t::process_unreg (simple_semaphore_t *smph_) { zs_assert (false); } void zs::object_t::process_engine (i_engine *engine_) { zs_assert (false); } void zs::object_t::process_terminate () { zs_assert (false); } void zs::object_t::process_terminate_ack () { zs_assert (false); } void zs::object_t::send_command (command_t &cmd_) { int destination_thread_slot = cmd_.destination->get_thread_slot (); if (destination_thread_slot == thread_slot) cmd_.destination->process_command (cmd_); else dispatcher->write (thread_slot, destination_thread_slot, cmd_); }