0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-16 20:41:18 +08:00

PUB socket was blocking occassionally - fixed

This commit is contained in:
Martin Sustrik 2010-03-20 19:50:36 +01:00
parent cbaf10978a
commit 93bdb792a9
2 changed files with 52 additions and 59 deletions

View File

@ -26,7 +26,7 @@
zmq::pub_t::pub_t (class app_thread_t *parent_) : zmq::pub_t::pub_t (class app_thread_t *parent_) :
socket_base_t (parent_), socket_base_t (parent_),
stalled_pipe (NULL) active (0)
{ {
options.requires_in = false; options.requires_in = false;
options.requires_out = true; options.requires_out = true;
@ -34,16 +34,18 @@ zmq::pub_t::pub_t (class app_thread_t *parent_) :
zmq::pub_t::~pub_t () zmq::pub_t::~pub_t ()
{ {
for (out_pipes_t::size_type i = 0; i != out_pipes.size (); i++) for (pipes_t::size_type i = 0; i != pipes.size (); i++)
out_pipes [i]->term (); pipes [i]->term ();
out_pipes.clear (); pipes.clear ();
} }
void zmq::pub_t::xattach_pipes (class reader_t *inpipe_, void zmq::pub_t::xattach_pipes (class reader_t *inpipe_,
class writer_t *outpipe_, const blob_t &peer_identity_) class writer_t *outpipe_, const blob_t &peer_identity_)
{ {
zmq_assert (!inpipe_); zmq_assert (!inpipe_);
out_pipes.push_back (outpipe_); pipes.push_back (outpipe_);
pipes.swap (active, pipes.size () - 1);
active++;
} }
void zmq::pub_t::xdetach_inpipe (class reader_t *pipe_) void zmq::pub_t::xdetach_inpipe (class reader_t *pipe_)
@ -53,9 +55,11 @@ void zmq::pub_t::xdetach_inpipe (class reader_t *pipe_)
void zmq::pub_t::xdetach_outpipe (class writer_t *pipe_) void zmq::pub_t::xdetach_outpipe (class writer_t *pipe_)
{ {
out_pipes.erase (pipe_); // Remove the pipe from the list; adjust number of active pipes
if (pipe_ == stalled_pipe) // accordingly.
stalled_pipe = NULL; if (pipes.index (pipe_) < active)
active--;
pipes.erase (pipe_);
} }
void zmq::pub_t::xkill (class reader_t *pipe_) void zmq::pub_t::xkill (class reader_t *pipe_)
@ -70,8 +74,9 @@ void zmq::pub_t::xrevive (class reader_t *pipe_)
void zmq::pub_t::xrevive (class writer_t *pipe_) void zmq::pub_t::xrevive (class writer_t *pipe_)
{ {
zmq_assert (stalled_pipe = pipe_); // Move the pipe to the list of active pipes.
stalled_pipe = NULL; pipes.swap (pipes.index (pipe_), active);
active++;
} }
int zmq::pub_t::xsetsockopt (int option_, const void *optval_, int zmq::pub_t::xsetsockopt (int option_, const void *optval_,
@ -83,10 +88,8 @@ int zmq::pub_t::xsetsockopt (int option_, const void *optval_,
int zmq::pub_t::xsend (zmq_msg_t *msg_, int flags_) int zmq::pub_t::xsend (zmq_msg_t *msg_, int flags_)
{ {
out_pipes_t::size_type pipes_count = out_pipes.size (); // If there are no active pipes available, simply drop the message.
if (active == 0) {
// If there are no pipes available, simply drop the message.
if (pipes_count == 0) {
int rc = zmq_msg_close (msg_); int rc = zmq_msg_close (msg_);
zmq_assert (rc == 0); zmq_assert (rc == 0);
rc = zmq_msg_init (msg_); rc = zmq_msg_init (msg_);
@ -94,21 +97,13 @@ int zmq::pub_t::xsend (zmq_msg_t *msg_, int flags_)
return 0; return 0;
} }
// First check whether all pipes are available for writing.
if (!check_write ()) {
errno = EAGAIN;
return -1;
}
msg_content_t *content = (msg_content_t*) msg_->content; msg_content_t *content = (msg_content_t*) msg_->content;
// For VSMs the copying is straighforward. // For VSMs the copying is straighforward.
if (content == (msg_content_t*) ZMQ_VSM) { if (content == (msg_content_t*) ZMQ_VSM) {
for (out_pipes_t::size_type i = 0; i != pipes_count; i++) { for (pipes_t::size_type i = 0; i != active;)
bool written = out_pipes [i]->write (msg_); if (write (pipes [i], msg_))
zmq_assert (written); i++;
out_pipes [i]->flush ();
}
int rc = zmq_msg_init (msg_); int rc = zmq_msg_init (msg_);
zmq_assert (rc == 0); zmq_assert (rc == 0);
return 0; return 0;
@ -117,10 +112,11 @@ int zmq::pub_t::xsend (zmq_msg_t *msg_, int flags_)
// Optimisation for the case when there's only a single pipe // Optimisation for the case when there's only a single pipe
// to send the message to - no refcount adjustment i.e. no atomic // to send the message to - no refcount adjustment i.e. no atomic
// operations are needed. // operations are needed.
if (pipes_count == 1) { if (active == 1) {
bool written = out_pipes [0]->write (msg_); if (!write (pipes [0], msg_)) {
zmq_assert (written); int rc = zmq_msg_close (msg_);
out_pipes [0]->flush (); zmq_assert (rc == 0);
}
int rc = zmq_msg_init (msg_); int rc = zmq_msg_init (msg_);
zmq_assert (rc == 0); zmq_assert (rc == 0);
return 0; return 0;
@ -130,17 +126,18 @@ int zmq::pub_t::xsend (zmq_msg_t *msg_, int flags_)
// to deal with reference counting. First add N-1 references to // to deal with reference counting. First add N-1 references to
// the content (we are holding one reference anyway, that's why -1). // the content (we are holding one reference anyway, that's why -1).
if (msg_->flags & ZMQ_MSG_SHARED) if (msg_->flags & ZMQ_MSG_SHARED)
content->refcnt.add (pipes_count - 1); content->refcnt.add (active - 1);
else { else {
content->refcnt.set (pipes_count); content->refcnt.set (active);
msg_->flags |= ZMQ_MSG_SHARED; msg_->flags |= ZMQ_MSG_SHARED;
} }
// Push the message to all destinations. // Push the message to all destinations.
for (out_pipes_t::size_type i = 0; i != pipes_count; i++) { for (pipes_t::size_type i = 0; i != active;) {
bool written = out_pipes [i]->write (msg_); if (!write (pipes [i], msg_))
zmq_assert (written); content->refcnt.sub (1);
out_pipes [i]->flush (); else
i++;
} }
// Detach the original message from the data buffer. // Detach the original message from the data buffer.
@ -163,22 +160,17 @@ bool zmq::pub_t::xhas_in ()
bool zmq::pub_t::xhas_out () bool zmq::pub_t::xhas_out ()
{ {
return check_write (); return true;
} }
bool zmq::pub_t::check_write () bool zmq::pub_t::write (class writer_t *pipe_, zmq_msg_t *msg_)
{ {
if (stalled_pipe != NULL) if (!pipe_->write (msg_)) {
return false; active--;
pipes.swap (pipes.index (pipe_), active);
out_pipes_t::size_type pipes_num = out_pipes.size (); return false;
for (out_pipes_t::size_type i = 0; i < pipes_num; i++) { }
if (!out_pipes [i]->check_write ()) { pipe_->flush ();
stalled_pipe = out_pipes [i];
return false;
}
}
return true; return true;
} }

View File

@ -49,16 +49,17 @@ namespace zmq
private: private:
// Write the message to the pipe. Make the pipe inactive if writing
// fails. In such a case false is returned.
bool write (class writer_t *pipe_, zmq_msg_t *msg_);
// Outbound pipes, i.e. those the socket is sending messages to. // Outbound pipes, i.e. those the socket is sending messages to.
typedef yarray_t <class writer_t> out_pipes_t; typedef yarray_t <class writer_t> pipes_t;
out_pipes_t out_pipes; pipes_t pipes;
// Pointer to the pipe we are waiting for to became writable // Number of active pipes. All the active pipes are located at the
// again; NULL if tha last send operation was successful. // beginning of the pipes array.
class writer_t *stalled_pipe; pipes_t::size_type active;
// Check whether we can write a message to all pipes.
bool check_write ();
pub_t (const pub_t&); pub_t (const pub_t&);
void operator = (const pub_t&); void operator = (const pub_t&);