mirror of
				https://github.com/zeromq/libzmq.git
				synced 2025-10-28 11:31:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			152 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			152 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|     Copyright (c) 2007-2016 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 <http://www.gnu.org/licenses/>.
 | |
| */
 | |
| 
 | |
| #include "testutil.hpp"
 | |
| 
 | |
| /// Initialize a zeromq message with a given null-terminated string
 | |
| #define ZMQ_PREPARE_STRING(msg, data, size)                                    \
 | |
|                                                                                \
 | |
|     zmq_msg_init (&msg)                                                        \
 | |
|       && printf ("zmq_msg_init: %s\n", zmq_strerror (errno));                  \
 | |
|                                                                                \
 | |
|     zmq_msg_init_size (&msg, size + 1)                                         \
 | |
|       && printf ("zmq_msg_init_size: %s\n", zmq_strerror (errno));             \
 | |
|                                                                                \
 | |
|     memcpy (zmq_msg_data (&msg), data, size + 1);
 | |
| 
 | |
| //  TODO: this code fails to meet our style guidelines, and needs rewriting
 | |
| 
 | |
| static int publicationsReceived = 0;
 | |
| static bool isSubscribed = false;
 | |
| 
 | |
| int main (int, char **)
 | |
| {
 | |
|     setup_test_environment ();
 | |
|     void *context = zmq_ctx_new ();
 | |
|     void *pub_socket;
 | |
|     void *sub_socket;
 | |
| 
 | |
|     (pub_socket = zmq_socket (context, ZMQ_XPUB))
 | |
|       || printf ("zmq_socket: %s\n", zmq_strerror (errno));
 | |
|     (sub_socket = zmq_socket (context, ZMQ_SUB))
 | |
|       || printf ("zmq_socket: %s\n", zmq_strerror (errno));
 | |
|     zmq_setsockopt (sub_socket, ZMQ_SUBSCRIBE, "foo", 3)
 | |
|       && printf ("zmq_setsockopt: %s\n", zmq_strerror (errno));
 | |
| 
 | |
|     zmq_bind (pub_socket, "inproc://someInProcDescriptor")
 | |
|       && printf ("zmq_bind: %s\n", zmq_strerror (errno));
 | |
|     //zmq_bind(pubSocket, "tcp://127.0.0.1:30010") && printf("zmq_bind: %s\n", zmq_strerror(errno));
 | |
| 
 | |
|     int more;
 | |
|     size_t more_size = sizeof (more);
 | |
|     int iteration = 0;
 | |
| 
 | |
|     while (1) {
 | |
|         zmq_pollitem_t items[] = {
 | |
|           {sub_socket, 0, ZMQ_POLLIN, 0}, // read publications
 | |
|           {pub_socket, 0, ZMQ_POLLIN, 0}, // read subscriptions
 | |
|         };
 | |
|         int rc = zmq_poll (items, 2, 100);
 | |
| 
 | |
|         if (items[1].revents & ZMQ_POLLIN) {
 | |
|             while (1) {
 | |
|                 zmq_msg_t msg;
 | |
|                 zmq_msg_init (&msg);
 | |
|                 zmq_msg_recv (&msg, pub_socket, 0);
 | |
|                 char *buffer = (char *) zmq_msg_data (&msg);
 | |
| 
 | |
|                 if (buffer[0] == 0) {
 | |
|                     assert (isSubscribed);
 | |
|                     isSubscribed = false;
 | |
|                 } else {
 | |
|                     assert (!isSubscribed);
 | |
|                     isSubscribed = true;
 | |
|                 }
 | |
| 
 | |
|                 zmq_getsockopt (pub_socket, ZMQ_RCVMORE, &more, &more_size);
 | |
|                 zmq_msg_close (&msg);
 | |
| 
 | |
|                 if (!more)
 | |
|                     break; //  Last message part
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if (items[0].revents & ZMQ_POLLIN) {
 | |
|             while (1) {
 | |
|                 zmq_msg_t msg;
 | |
|                 zmq_msg_init (&msg);
 | |
|                 zmq_msg_recv (&msg, sub_socket, 0);
 | |
|                 zmq_getsockopt (sub_socket, ZMQ_RCVMORE, &more, &more_size);
 | |
|                 zmq_msg_close (&msg);
 | |
| 
 | |
|                 if (!more) {
 | |
|                     publicationsReceived++;
 | |
|                     break; //  Last message part
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         if (iteration == 1) {
 | |
|             zmq_connect (sub_socket, "inproc://someInProcDescriptor")
 | |
|               && printf ("zmq_connect: %s\n", zmq_strerror (errno));
 | |
|             msleep (SETTLE_TIME);
 | |
|         }
 | |
|         if (iteration == 4) {
 | |
|             zmq_disconnect (sub_socket, "inproc://someInProcDescriptor")
 | |
|               && printf ("zmq_disconnect(%d): %s\n", errno,
 | |
|                          zmq_strerror (errno));
 | |
|         }
 | |
|         if (iteration > 4 && rc == 0)
 | |
|             break;
 | |
| 
 | |
|         zmq_msg_t channel_envlp;
 | |
|         ZMQ_PREPARE_STRING (channel_envlp, "foo", 3);
 | |
|         zmq_msg_send (&channel_envlp, pub_socket, ZMQ_SNDMORE) >= 0
 | |
|           || printf ("zmq_msg_send: %s\n", zmq_strerror (errno));
 | |
|         zmq_msg_close (&channel_envlp)
 | |
|           && printf ("zmq_msg_close: %s\n", zmq_strerror (errno));
 | |
| 
 | |
|         zmq_msg_t message;
 | |
|         ZMQ_PREPARE_STRING (message, "this is foo!", 12);
 | |
|         zmq_msg_send (&message, pub_socket, 0) >= 0
 | |
|           || printf ("zmq_msg_send: %s\n", zmq_strerror (errno));
 | |
|         zmq_msg_close (&message)
 | |
|           && printf ("zmq_msg_close: %s\n", zmq_strerror (errno));
 | |
| 
 | |
|         iteration++;
 | |
|     }
 | |
|     assert (publicationsReceived == 3);
 | |
|     assert (!isSubscribed);
 | |
| 
 | |
|     zmq_close (pub_socket) && printf ("zmq_close: %s", zmq_strerror (errno));
 | |
|     zmq_close (sub_socket) && printf ("zmq_close: %s", zmq_strerror (errno));
 | |
| 
 | |
|     zmq_ctx_term (context);
 | |
|     return 0;
 | |
| }
 | 
