2011-11-06 14:03:51 +01:00
|
|
|
/*
|
2014-01-02 12:00:57 +01:00
|
|
|
Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file
|
2011-11-06 14:03:51 +01:00
|
|
|
|
|
|
|
This file is part of 0MQ.
|
|
|
|
|
|
|
|
0MQ is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU Lesser 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
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-08-17 14:43:45 +02:00
|
|
|
#include "testutil.hpp"
|
2011-11-06 14:03:51 +01:00
|
|
|
|
2012-08-28 01:10:47 +02:00
|
|
|
int main (void)
|
2011-11-06 14:03:51 +01:00
|
|
|
{
|
2013-08-17 14:43:45 +02:00
|
|
|
setup_test_environment();
|
2011-11-06 14:03:51 +01:00
|
|
|
// Create the infrastructure
|
2013-01-31 09:10:49 +01:00
|
|
|
void *ctx = zmq_ctx_new ();
|
2011-11-06 14:03:51 +01:00
|
|
|
assert (ctx);
|
2014-07-29 20:43:38 +02:00
|
|
|
|
2012-04-25 01:03:38 +02:00
|
|
|
void *sb = zmq_socket (ctx, ZMQ_ROUTER);
|
2011-11-06 14:03:51 +01:00
|
|
|
assert (sb);
|
2014-07-29 20:43:38 +02:00
|
|
|
|
2011-11-06 14:03:51 +01:00
|
|
|
int rc = zmq_bind (sb, "inproc://a");
|
|
|
|
assert (rc == 0);
|
2014-07-29 20:43:38 +02:00
|
|
|
|
2012-04-25 01:03:38 +02:00
|
|
|
void *sc = zmq_socket (ctx, ZMQ_DEALER);
|
2011-11-06 14:03:51 +01:00
|
|
|
assert (sc);
|
2014-07-29 20:43:38 +02:00
|
|
|
|
2011-11-06 14:03:51 +01:00
|
|
|
rc = zmq_connect (sc, "inproc://a");
|
|
|
|
assert (rc == 0);
|
2014-07-29 20:43:38 +02:00
|
|
|
|
2011-11-06 14:03:51 +01:00
|
|
|
// Send 2-part message.
|
|
|
|
rc = zmq_send (sc, "A", 1, ZMQ_SNDMORE);
|
|
|
|
assert (rc == 1);
|
|
|
|
rc = zmq_send (sc, "B", 1, 0);
|
|
|
|
assert (rc == 1);
|
|
|
|
|
|
|
|
// Identity comes first.
|
|
|
|
zmq_msg_t msg;
|
|
|
|
rc = zmq_msg_init (&msg);
|
|
|
|
assert (rc == 0);
|
2013-01-31 19:46:22 +01:00
|
|
|
rc = zmq_msg_recv (&msg, sb, 0);
|
2011-11-06 14:03:51 +01:00
|
|
|
assert (rc >= 0);
|
2013-01-31 19:46:22 +01:00
|
|
|
int more = zmq_msg_more (&msg);
|
2011-11-06 14:03:51 +01:00
|
|
|
assert (more == 1);
|
|
|
|
|
|
|
|
// Then the first part of the message body.
|
2013-01-31 19:46:22 +01:00
|
|
|
rc = zmq_msg_recv (&msg, sb, 0);
|
2011-11-06 14:03:51 +01:00
|
|
|
assert (rc == 1);
|
2013-01-31 19:46:22 +01:00
|
|
|
more = zmq_msg_more (&msg);
|
2011-11-06 14:03:51 +01:00
|
|
|
assert (more == 1);
|
|
|
|
|
|
|
|
// And finally, the second part of the message body.
|
2013-01-31 19:46:22 +01:00
|
|
|
rc = zmq_msg_recv (&msg, sb, 0);
|
2011-11-06 14:03:51 +01:00
|
|
|
assert (rc == 1);
|
2013-01-31 19:46:22 +01:00
|
|
|
more = zmq_msg_more (&msg);
|
2011-11-06 14:03:51 +01:00
|
|
|
assert (more == 0);
|
|
|
|
|
2014-07-29 20:43:38 +02:00
|
|
|
// Test ZMQ_SHARED property (case 1, refcounted messages)
|
2014-07-13 01:05:49 +02:00
|
|
|
zmq_msg_t msg_a;
|
|
|
|
rc = zmq_msg_init_size(&msg_a, 1024); // large enough to be a type_lmsg
|
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
// Message is not shared
|
|
|
|
rc = zmq_msg_get(&msg_a, ZMQ_SHARED);
|
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
zmq_msg_t msg_b;
|
|
|
|
rc = zmq_msg_init(&msg_b);
|
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
rc = zmq_msg_copy(&msg_b, &msg_a);
|
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
// Message is now shared
|
|
|
|
rc = zmq_msg_get(&msg_b, ZMQ_SHARED);
|
|
|
|
assert (rc == 1);
|
|
|
|
|
2014-07-29 20:43:38 +02:00
|
|
|
// cleanup
|
|
|
|
rc = zmq_msg_close(&msg_a);
|
|
|
|
assert (rc == 0);
|
|
|
|
rc = zmq_msg_close(&msg_b);
|
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
// Test ZMQ_SHARED property (case 2, constant data messages)
|
|
|
|
rc = zmq_msg_init_data(&msg_a, (void*) "TEST", 5, 0, 0);
|
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
// Message reports as shared
|
|
|
|
rc = zmq_msg_get(&msg_a, ZMQ_SHARED);
|
|
|
|
assert (rc == 1);
|
|
|
|
|
|
|
|
// cleanup
|
|
|
|
rc = zmq_msg_close(&msg_a);
|
|
|
|
assert (rc == 0);
|
|
|
|
|
2011-11-06 14:03:51 +01:00
|
|
|
// Deallocate the infrastructure.
|
|
|
|
rc = zmq_close (sc);
|
|
|
|
assert (rc == 0);
|
2014-07-29 20:43:38 +02:00
|
|
|
|
2011-11-06 14:03:51 +01:00
|
|
|
rc = zmq_close (sb);
|
|
|
|
assert (rc == 0);
|
2014-07-29 20:43:38 +02:00
|
|
|
|
2013-01-31 09:10:49 +01:00
|
|
|
rc = zmq_ctx_term (ctx);
|
2011-11-06 14:03:51 +01:00
|
|
|
assert (rc == 0);
|
|
|
|
return 0 ;
|
|
|
|
}
|
|
|
|
|