1 // :vim ts=4 sw=4 noet:
3 ==================================================================================
4 Copyright (c) 2019 Nokia
5 Copyright (c) 2018-2019 AT&T Intellectual Property.
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
11 http://www.apache.org/licenses/LICENSE-2.0
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ==================================================================================
23 Abstract: Very simple test sender. Sends messages with a given delay between each.
24 The sender also uses epoll_wait() to ensure that any received messages
27 Parms: The following positional parameters are recognised on the command line:
28 [listen_port [delay [stats-freq] [msg-type]]]]
32 delay (mu-sec) 1000000 (1 sec)
44 #include <sys/epoll.h>
49 int main( int argc, char** argv ) {
50 void* mrc; //msg router context
51 struct epoll_event events[1]; // list of events to give to epoll
52 struct epoll_event epe; // event definition for event to listen to
53 int ep_fd = -1; // epoll's file des (given to epoll_wait)
54 int rcv_fd; // file des that NNG tickles -- give this to epoll to listen on
55 int nready; // number of events ready for receive
56 rmr_mbuf_t* sbuf; // send buffer
57 rmr_mbuf_t* rbuf; // received buffer
60 char* listen_port = "43086";
61 int delay = 1000000; // mu-sec delay between messages
66 listen_port = argv[1];
69 delay = atoi( argv[2] );
72 mtype = atoi( argv[3] );
75 fprintf( stderr, "<DEMO> listen port: %s; mtype: %d; delay: %d\n", listen_port, mtype, delay );
77 if( (mrc = rmr_init( listen_port, 1400, RMRFL_NONE )) == NULL ) {
78 fprintf( stderr, "<DEMO> unable to initialise RMr\n" );
82 rcv_fd = rmr_get_rcvfd( mrc ); // set up epoll things, start by getting the FD from MRr
84 fprintf( stderr, "<DEMO> unable to set up polling fd\n" );
87 if( (ep_fd = epoll_create1( 0 )) < 0 ) {
88 fprintf( stderr, "[FAIL] unable to create epoll fd: %d\n", errno );
94 if( epoll_ctl( ep_fd, EPOLL_CTL_ADD, rcv_fd, &epe ) != 0 ) {
95 fprintf( stderr, "[FAIL] epoll_ctl status not 0 : %s\n", strerror( errno ) );
99 sbuf = rmr_alloc_msg( mrc, 256 ); // alloc first send buffer; subsequent buffers allcoated on send
100 rbuf = NULL; // don't need to alloc receive buffer
102 while( ! rmr_ready( mrc ) ) { // must have a route table before we can send; wait til RMr say it has one
105 fprintf( stderr, "<DEMO> rmr is ready\n" );
108 while( 1 ) { // send messages until the cows come home
109 snprintf( sbuf->payload, 200, "count=%d received= %d ts=%lld %d stand up and cheer!", // create the payload
110 count, rcvd_count, (long long) time( NULL ), rand() );
112 sbuf->mtype = mtype; // fill in the message bits
113 sbuf->len = strlen( sbuf->payload ) + 1; // our receiver likely wants a nice acsii-z string
115 sbuf = rmr_send_msg( mrc, sbuf ); // send it (send returns an empty payload on success, or the original payload on fail/retry)
116 while( sbuf->state == RMR_ERR_RETRY ) { // soft failure (device busy?) retry
117 sbuf = rmr_send_msg( mrc, sbuf ); // retry send until it's good (simple test; real programmes should do better)
121 while( (nready = epoll_wait( ep_fd, events, 1, 0 )) > 0 ) { // if something ready to receive (non-blocking check)
122 if( events[0].data.fd == rcv_fd ) { // we only are waiting on 1 thing, so [0] is ok
124 rbuf = rmr_rcv_msg( mrc, rbuf );
131 if( (count % stats_freq) == 0 ) {
132 fprintf( stderr, "<DEMO> sent %d received %d\n", count, rcvd_count );