/* Copyright (c) 2007-2017 Contributors as noted in the AUTHORS file This file is part of libzmq, the ZeroMQ core engine in C++. libzmq is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. As a special exception, the Contributors give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you must extend this exception to your version of the library. libzmq 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 . */ #include "testutil.hpp" void test_get_peer_state () { #ifdef ZMQ_BUILD_DRAFT_API void *ctx = zmq_ctx_new (); assert (ctx); void *router = zmq_socket (ctx, ZMQ_ROUTER); assert (router); int rc; int mandatory = 1; rc = zmq_setsockopt (router, ZMQ_ROUTER_MANDATORY, &mandatory, sizeof (mandatory)); rc = zmq_bind (router, "tcp://127.0.0.1:*"); assert (rc == 0); size_t my_endpoint_len = MAX_SOCKET_STRING; char my_endpoint[MAX_SOCKET_STRING]; rc = zmq_getsockopt (router, ZMQ_LAST_ENDPOINT, my_endpoint, &my_endpoint_len); assert (rc == 0); void *dealer1 = zmq_socket (ctx, ZMQ_DEALER); assert (dealer1); void *dealer2 = zmq_socket (ctx, ZMQ_DEALER); assert (dealer2); // Lower HWMs to allow doing the test with fewer messages int hwm = 100; zmq_setsockopt (router, ZMQ_SNDHWM, &hwm, sizeof (int)); zmq_setsockopt (dealer1, ZMQ_RCVHWM, &hwm, sizeof (int)); zmq_setsockopt (dealer2, ZMQ_RCVHWM, &hwm, sizeof (int)); // Name dealer1 "X" and connect it to our router rc = zmq_setsockopt (dealer1, ZMQ_IDENTITY, "X", 1); assert (rc == 0); rc = zmq_connect (dealer1, my_endpoint); assert (rc == 0); // Name dealer2 "Y" and connect it to our router rc = zmq_setsockopt (dealer2, ZMQ_IDENTITY, "Y", 1); assert (rc == 0); rc = zmq_connect (dealer2, my_endpoint); assert (rc == 0); // Get message from both dealers to know when connection is ready char buffer[255]; rc = zmq_send (dealer1, "Hello", 5, 0); assert (rc == 5); rc = zmq_recv (router, buffer, 255, 0); assert (rc == 1); assert (buffer[0] == 'X'); rc = zmq_recv (router, buffer, 255, 0); assert (rc == 5); rc = zmq_send (dealer2, "Hello", 5, 0); assert (rc == 5); rc = zmq_recv (router, buffer, 255, 0); assert (rc == 1); assert (buffer[0] == 'Y'); rc = zmq_recv (router, buffer, 255, 0); assert (rc == 5); void *poller = zmq_poller_new (); assert (poller); // Poll on router and dealer1, but not on dealer2 rc = zmq_poller_add (poller, router, NULL, ZMQ_POLLOUT); assert (rc == 0); rc = zmq_poller_add (poller, dealer1, NULL, ZMQ_POLLIN); assert (rc == 0); const size_t count = 10000; const size_t event_size = 2; bool dealer2_blocked = false; size_t dealer1_sent = 0, dealer2_sent = 0, dealer1_received = 0; zmq_poller_event_t events[event_size]; for (size_t iterations = 0; iterations < count; ++iterations) { rc = zmq_poller_wait_all (poller, events, event_size, -1); assert (rc != -1); for (size_t i = 0; i < event_size; ++i) { if (events[i].socket == router && events[i].events & ZMQ_POLLOUT) { rc = zmq_socket_get_peer_state (router, "X", 1); if (rc == -1) printf ("zmq_socket_get_peer_state failed: %i\n", errno); assert (rc != -1); if (rc & ZMQ_POLLOUT) { rc = zmq_send (router, "X", 1, ZMQ_SNDMORE | ZMQ_DONTWAIT); assert (rc == 1); rc = zmq_send (router, "Hello", 5, ZMQ_DONTWAIT); assert (rc == 5); ++dealer1_sent; } rc = zmq_socket_get_peer_state (router, "Y", 1); if (rc == -1) printf ("zmq_socket_get_peer_state failed: %i\n", errno); assert (rc != -1); if (rc & ZMQ_POLLOUT) { rc = zmq_send (router, "Y", 1, ZMQ_SNDMORE | ZMQ_DONTWAIT); assert (rc == 1); rc = zmq_send (router, "Hello", 5, ZMQ_DONTWAIT); assert (rc == 5); ++dealer2_sent; } else { dealer2_blocked = true; } } if (events[i].socket == dealer1 && events[i].events & ZMQ_POLLIN) { rc = zmq_recv (dealer1, buffer, 255, ZMQ_DONTWAIT); assert (rc == 5); ++dealer1_received; } // never read from dealer2, so its pipe becomes full eventually } } printf ("dealer1_sent = %zu, dealer2_sent = %zu, dealer1_received = %zu\n", dealer1_sent, dealer2_sent, dealer1_received); assert (dealer2_blocked); zmq_poller_destroy (&poller); rc = zmq_close (router); assert (rc == 0); rc = zmq_close (dealer1); assert (rc == 0); rc = zmq_close (dealer2); assert (rc == 0); rc = zmq_ctx_term (ctx); assert (rc == 0); #endif } void test_basic () { size_t len = MAX_SOCKET_STRING; char my_endpoint[MAX_SOCKET_STRING]; void *ctx = zmq_ctx_new (); assert (ctx); void *router = zmq_socket (ctx, ZMQ_ROUTER); assert (router); int rc = zmq_bind (router, "tcp://127.0.0.1:*"); assert (rc == 0); rc = zmq_getsockopt (router, ZMQ_LAST_ENDPOINT, my_endpoint, &len); assert (rc == 0); // Send a message to an unknown peer with the default setting // This will not report any error rc = zmq_send (router, "UNKNOWN", 7, ZMQ_SNDMORE); assert (rc == 7); rc = zmq_send (router, "DATA", 4, 0); assert (rc == 4); // Send a message to an unknown peer with mandatory routing // This will fail int mandatory = 1; rc = zmq_setsockopt (router, ZMQ_ROUTER_MANDATORY, &mandatory, sizeof (mandatory)); assert (rc == 0); rc = zmq_send (router, "UNKNOWN", 7, ZMQ_SNDMORE); assert (rc == -1 && errno == EHOSTUNREACH); // Create dealer called "X" and connect it to our router void *dealer = zmq_socket (ctx, ZMQ_DEALER); assert (dealer); rc = zmq_setsockopt (dealer, ZMQ_IDENTITY, "X", 1); assert (rc == 0); rc = zmq_connect (dealer, my_endpoint); assert (rc == 0); // Get message from dealer to know when connection is ready char buffer[255]; rc = zmq_send (dealer, "Hello", 5, 0); assert (rc == 5); rc = zmq_recv (router, buffer, 255, 0); assert (rc == 1); assert (buffer[0] == 'X'); // Send a message to connected dealer now // It should work rc = zmq_send (router, "X", 1, ZMQ_SNDMORE); assert (rc == 1); rc = zmq_send (router, "Hello", 5, 0); assert (rc == 5); rc = zmq_close (router); assert (rc == 0); rc = zmq_close (dealer); assert (rc == 0); rc = zmq_ctx_term (ctx); assert (rc == 0); } int main (void) { setup_test_environment (); test_basic (); test_get_peer_state (); return 0; }