mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-30 13:47:13 +01:00
Message atomicity problem solved in PUB socket
When new peer connects to a PUB socket while it is in the middle of sending of multi-part messages, it gets just the remaining part of the message, i.e. message atomicity is broken. This patch drops the tail part of the message and starts sending to the peer only when new message is started. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
This commit is contained in:
15
src/dist.hpp
15
src/dist.hpp
@@ -21,6 +21,8 @@
|
||||
#ifndef __ZMQ_DIST_HPP_INCLUDED__
|
||||
#define __ZMQ_DIST_HPP_INCLUDED__
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "array.hpp"
|
||||
#include "pipe.hpp"
|
||||
|
||||
@@ -51,10 +53,23 @@ namespace zmq
|
||||
// fails. In such a case false is returned.
|
||||
bool write (class writer_t *pipe_, zmq_msg_t *msg_);
|
||||
|
||||
// Put the message to all active pipes.
|
||||
void distribute (zmq_msg_t *msg_, int flags_);
|
||||
|
||||
// Plug in all the delayed pipes.
|
||||
void clear_new_pipes ();
|
||||
|
||||
// List of outbound pipes.
|
||||
typedef array_t <class writer_t> pipes_t;
|
||||
pipes_t pipes;
|
||||
|
||||
// List of new pipes that were not yet inserted into 'pipes' list.
|
||||
// These pipes are moves to 'pipes' list once the current multipart
|
||||
// message is fully sent. This way we avoid sending incomplete messages
|
||||
// to peers.
|
||||
typedef std::vector <class writer_t*> new_pipes_t;
|
||||
new_pipes_t new_pipes;
|
||||
|
||||
// Number of active pipes. All the active pipes are located at the
|
||||
// beginning of the pipes array.
|
||||
pipes_t::size_type active;
|
||||
|
||||
Reference in New Issue
Block a user