zeromq / zmqpp

0mq 'highlevel' C++ bindings
http://zeromq.github.io/zmqpp
Mozilla Public License 2.0
439 stars 195 forks source link

Have a const ref to the message in socket::send? #212

Open CharlesB2 opened 6 years ago

CharlesB2 commented 6 years ago

I'm not very experienced with 0mq, so correct me if I'm wrong, but it seems like socket::send(message&) doesn't modify the message at all? If no, shouldn't the signature be socket::send(const message& )?

benjamg commented 6 years ago

For a successful send we actually swap out the message object so that code, the reasoning behind this, assuming my memory serves, is twofold;

First off, and most importantly the underlying libzmq can modify the sent frame, mostly due to the way it allows zero copy processing. This leaves us with a potentially invalid message structure.

Secondly a lot of code does a loop around the a poller and receives then sends using the same object, by returning a 'new' empty message we allow an easier time for users. Obviously we wouldn't do this if we didn't have an invalid message in the first place, but as we do we take advantage of it.

Sorry its taken me so long to reply, I really need to allocate more time to maintaining this project.

See: https://github.com/zeromq/zmqpp/blob/develop/src/zmqpp/socket.cpp#L205 for the swap code