2011-01-30 11:51:30 +01:00
|
|
|
/*
|
2013-03-12 17:04:51 +01:00
|
|
|
Copyright (c) 2007-2013 Contributors as noted in the AUTHORS file
|
2011-01-30 11:51:30 +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-01-31 19:46:22 +01:00
|
|
|
#include "../include/zmq.h"
|
2011-11-01 13:54:28 +01:00
|
|
|
#include <stdio.h>
|
2013-01-31 19:46:22 +01:00
|
|
|
#include <string.h>
|
2013-08-17 14:43:45 +02:00
|
|
|
#include "testutil.hpp"
|
2011-01-30 11:51:30 +01:00
|
|
|
|
2012-08-28 01:10:47 +02:00
|
|
|
int main (void)
|
2011-01-30 11:51:30 +01:00
|
|
|
{
|
2013-08-17 14:43:45 +02:00
|
|
|
setup_test_environment();
|
2013-01-31 09:10:49 +01:00
|
|
|
void *ctx = zmq_ctx_new ();
|
2011-03-24 10:03:49 +01:00
|
|
|
assert (ctx);
|
|
|
|
|
|
|
|
// Create pair of socket, each with high watermark of 2. Thus the total
|
|
|
|
// buffer space should be 4 messages.
|
|
|
|
void *sb = zmq_socket (ctx, ZMQ_PULL);
|
|
|
|
assert (sb);
|
2011-03-24 15:43:03 +01:00
|
|
|
int hwm = 2;
|
2011-03-24 16:47:33 +01:00
|
|
|
int rc = zmq_setsockopt (sb, ZMQ_RCVHWM, &hwm, sizeof (hwm));
|
2011-03-24 10:03:49 +01:00
|
|
|
assert (rc == 0);
|
|
|
|
rc = zmq_bind (sb, "inproc://a");
|
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
void *sc = zmq_socket (ctx, ZMQ_PUSH);
|
|
|
|
assert (sc);
|
2011-03-24 16:47:33 +01:00
|
|
|
rc = zmq_setsockopt (sc, ZMQ_SNDHWM, &hwm, sizeof (hwm));
|
2011-03-24 10:03:49 +01:00
|
|
|
assert (rc == 0);
|
|
|
|
rc = zmq_connect (sc, "inproc://a");
|
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
// Try to send 10 messages. Only 4 should succeed.
|
2011-01-30 11:51:30 +01:00
|
|
|
for (int i = 0; i < 10; i++)
|
|
|
|
{
|
2011-03-26 10:38:40 +01:00
|
|
|
int rc = zmq_send (sc, NULL, 0, ZMQ_DONTWAIT);
|
2011-03-24 10:03:49 +01:00
|
|
|
if (i < 4)
|
|
|
|
assert (rc == 0);
|
|
|
|
else
|
2011-03-24 11:53:55 +01:00
|
|
|
assert (rc < 0 && errno == EAGAIN);
|
2011-03-24 10:03:49 +01:00
|
|
|
}
|
2011-01-30 11:51:30 +01:00
|
|
|
|
2011-03-24 10:03:49 +01:00
|
|
|
// There should be now 4 messages pending, consume them.
|
|
|
|
for (int i = 0; i != 4; i++) {
|
2011-03-24 11:53:55 +01:00
|
|
|
rc = zmq_recv (sb, NULL, 0, 0);
|
2011-03-24 10:03:49 +01:00
|
|
|
assert (rc == 0);
|
|
|
|
}
|
2011-01-30 11:51:30 +01:00
|
|
|
|
2011-03-24 10:03:49 +01:00
|
|
|
// Now it should be possible to send one more.
|
2011-03-24 11:53:55 +01:00
|
|
|
rc = zmq_send (sc, NULL, 0, 0);
|
2011-03-24 10:03:49 +01:00
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
// Consume the remaining message.
|
2011-03-24 11:53:55 +01:00
|
|
|
rc = zmq_recv (sb, NULL, 0, 0);
|
2011-03-24 10:03:49 +01:00
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
rc = zmq_close (sc);
|
|
|
|
assert (rc == 0);
|
|
|
|
|
|
|
|
rc = zmq_close (sb);
|
|
|
|
assert (rc == 0);
|
|
|
|
|
2013-01-31 09:10:49 +01:00
|
|
|
rc = zmq_ctx_term (ctx);
|
2011-03-24 10:03:49 +01:00
|
|
|
assert (rc == 0);
|
2011-01-30 11:51:30 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|